geexbox-generator-1.1-rc3.i386/0000755000175000017500000000000010630554174014254 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/0000755000175000017500000000000010630554150015040 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/0000755000175000017500000000000010630554170016143 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/sbin/0000755000175000017500000000000010630554152017076 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/sbin/init0000755000175000017500000000126110630554150017765 0ustar benben#!/bin/sh /bin/busybox test ! -e /proc/cpuinfo && /bin/busybox mount -t proc none /proc /bin/busybox test ! -e /sys/kernel && /bin/busybox mount -t sysfs none /sys /bin/busybox test ! -e /bin/cp && /bin/busybox --install -s progress() { if test -f /proc/splash; then echo "show $1" > /proc/splash fi } count=0 for script in /etc/init.d/*; do grep -q -e "^# runlevels:.*$1" $script && count=$(($count+1)); done pos=47000 step=$(((65535-$pos)/$count)) RET=0 for script in /etc/init.d/*; do if grep -q -e "^# runlevels:.*$1" $script; then pos=$(($pos+$step)) progress $pos /bin/sh $script S_RET=$? test $S_RET -ge $RET && RET=$S_RET fi done exit $RET geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/sbin/installator0000755000175000017500000007536310630554152021376 0ustar benben#!/bin/sh # Detect whether partition ($1) mounted at ($2) with type ($3) is microsoft. detect_os_microsoft () { local longname if [ "$3" != ntfs -a "$3" != vfat -a "$3" != msdos ]; then return fi if [ -e "$2/ntldr" -a -e "$2/NTDETECT.COM" ]; then longname="Windows NT/2000/XP" elif [ -e "$2/windows/win.com" ]; then longname="Windows 95/98/Me" elif [ -d "$2/dos" ]; then longname="MS-DOS 5.x/6.x/Win3.1" else return fi echo "$1:$longname:chain" } detect_os () { local partname partition type mpoint mkdir -p tmpmnt for partname in `sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *[0-9][0-9][0-9]*\ \([a-z]*[0-9][0-9]*\)/\1/p" /proc/partitions`; do partition="/dev/$partname" if ! grep -q "^$partition " /proc/mounts; then if mount -o ro $partition tmpmnt >/dev/null 2>&1; then type=$(grep "^$partition " /proc/mounts | cut -d " " -f 3) detect_os_microsoft $partition tmpmnt $type umount tmpmnt >/dev/null || return fi else mpoint=$(grep "^$partition " /proc/mounts | cut -d " " -f 2) type=$(grep "^$partition " /proc/mounts | cut -d " " -f 3) detect_os_microsoft $partition $mpoint $type fi done rmdir tmpmnt } # Usage: convert os_device # Convert an OS device to the corresponding GRUB drive. # This part is OS-specific. # -- taken from `grub-install` convert () { local tmp_drive tmp_disk tmp_part if test ! -e "$1"; then echo "$1: Not found or not a block device." 1>&2 exit 1 fi tmp_disk=`echo "$1" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%'` tmp_part=`echo "$1" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%'` tmp_drive=`grep -v '^#' $device_map | grep "$tmp_disk *$" \ | sed 's%.*\(([hf]d[0-9][a-g0-9,]*)\).*%\1%'` if [ -z "$tmp_drive" ]; then echo "$1 does not have any corresponding BIOS drive." 1>&2 exit 1 fi if [ -n "$tmp_part" ]; then # If a partition is specified, we need to translate it into the # GRUB's syntax. echo "$tmp_drive" | sed "s%)$%,$(($tmp_part-1)))%" else # If no partition is specified, just print the drive name. echo "$tmp_drive" fi } # Configure network interface and parameters before installing GeeXboX to disk. setup_network () { local title phy_type wifi_mode wifi_enc wifi_key wpa_drv wifi_essid host_ip subnet gw_ip dns_ip smb_user smb_pwd val f title="$BACKTITLE : Network Configuration" f="$1/etc/network" # Get type of physical interface val=`grep PHY_TYPE $f | cut -d'"' -f2` phy_type=`$DIALOG --no-cancel --aspect 15 --default-item $val --stdout --backtitle "$title" --title "Network Physical Interface" --menu "\nGeeXboX can only use one network physical interface at a time. If you have more than one NIC, GeeXboX will use the first one. If you have both a traditional Ethernet adapter and a Wireless card, GeeXboX will use the wireless card by default. It is recommended to keep physical interface auto-detection but you may also want to force the use of one kind of interface.\n" 0 0 0 auto "Auto detection (recommended)" ethernet "Force using Ethernet card" wifi "Force using Wireless card"` || exit 1 # Get wireless settings only if required if [ $phy_type = "auto" -o $phy_type = "wifi" ]; then wifi_mode=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi Mode" --menu "\nAs you seem to be using your wireless adapter to connect this computer to your network, you will have to setup the networking mode.\n Are you connected to an access point (recommended) or directly to another computer ?\n" 0 0 0 managed "Connected to an access point (recommended)" ad-hoc "Direct Connection"` || exit 1 wifi_enc=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi Encryption" --menu "\nAs you seem to be using your wireless adapter to connect this computer to your network, you will have to setup the security mode.\n Are you using no ecnryption, WEP encryption or WPA encryption ?\n" 0 0 0 none "no encryption" WEP "WEP" WPA "WPA (experimental)"` || exit 1 val=`grep WIFI_ESSID $f | cut -d'"' -f2` wifi_essid=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi ESSID" --inputbox "\nAs you seem to be using your wireless adapter to connect this computer to your network, you probably are using an SSID. If so, please fill in the following input box with your SSID identifier or leave it blank if you do not have one (open network).\n" 0 0 "$val"` || exit 1 if [ $wifi_enc = WEP -o $wifi_enc = WPA ]; then val=`grep WIFI_KEY $f | cut -d'"' -f2` wifi_key=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WEP/WPA key" --inputbox "\nAs you have selected to use encryption for your wireless connection, please fill in the following input box with your access point WEP/WPA key.\n" 0 0 "$val"` || exit 1 fi if [ $wifi_enc = WPA ]; then wpa_drv=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Configuring WiFi WPA Driver" --menu "\nSince you are connecting to your network using WPA encryption, you will have to select the driver interface. Most native linux drivers can use wext, but atmel drivers might have to use atmel.\n" 0 0 0 wext "Wireless Extensions" atmel "atmel"` || exit 1 fi fi # get GeeXboX IP address val=`grep HOST $f | cut -d'"' -f2` host_ip=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX IP" --inputbox "\nGeeXboX needs to be allocated an IP address to be present on your network. Please fill in the following input box or leave it as it is for using DHCP autoconfiguration\n" 0 0 "$val"` || exit 1 # do not get more settings if DHCP if [ ! -z $host_ip ]; then val=`grep SUBNET $f | cut -d'"' -f2` subnet=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX Subnet" --inputbox "\nYou may want to connect GeeXboX to the Internet. Please fill in the following input box with your network Subnet mask or leave it blank if you do not want to set a subnet mask for this computer.\n" 0 0 "$val"` || exit 1 val=`grep GATEWAY $f | cut -d'"' -f2` gw_ip=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX GateWay" --inputbox "\nYou may want to connect GeeXboX to the Internet. Please fill in the following input box with your gateway IP address or leave it blank if you do not want to set a gateway for this computer.\n" 0 0 "$val"` || exit 1 val=`grep DNS_SERVER $f | cut -d'"' -f2` dns_ip=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "GeeXboX DNS Server" --inputbox "\nYou may want to connect GeeXboX to the Internet. Please fill in the following input box with your DNS Server IP address used for name resolving or leave it blank if you do not want to resolve names with this computer.\n" 0 0 "$val"` || exit 1 fi # get samba user name val=`grep SMB_USER $f | cut -d'"' -f2` smb_user=`$DIALOG --no-cancel --stdout --backtitle "$title" --title "Set Samba User name" --inputbox "\nWhen accessing to remote Samba shares, you may need to be authenticated. Most of Microsoft Windows computers let you anonymously access to remote shares using the guest account (SHARE). Please fill in the following input box with your user name for accesing to remote Samba shares or leave it blank if you do not have one.\n" 0 0 "$val"` || exit 1 # get samba password val=`grep SMB_PWD $f | cut -d'"' -f2` smb_pwd=`$DIALOG --no-cancel --stdout --backtitle "$title" --title "Set Samba Password" --inputbox "\nIf user needs to be authenticated through a password, please fill in the following input box with it or leave it blank if you do not have one.\n" 0 0 "$val"` || exit 1 sed -i "s%^PHY_TYPE=\".*\"\(.*\)%PHY_TYPE=\"$phy_type\"\1%" $f sed -i "s%^WIFI_MODE=\".*\"\(.*\)%WIFI_MODE=\"$wifi_mode\"\1%" $f sed -i "s%^WIFI_ENC=\".*\"\(.*\)%WIFI_ENC=\"$wifi_enc\"\1%" $f sed -i "s%^WIFI_KEY=\".*\"\(.*\)%WIFI_KEY=\"$wifi_key\"\1%" $f sed -i "s%^WIFI_ESSID=\".*\"\(.*\)%WIFI_ESSID=\"$wifi_essid\"\1%" $f sed -i "s%^WPA_DRV=\".*\"\(.*\)%WPA_DRV=\"$wpa_drv\"\1%" $f sed -i "s%^HOST=.*%HOST=\"$host_ip\"%" $f sed -i "s%^SUBNET=.*%SUBNET=\"$subnet\"%" $f sed -i "s%^GATEWAY=.*%GATEWAY=\"$gw_ip\"%" $f sed -i "s%^DNS_SERVER=.*%DNS_SERVER=\"$dns_ip\"%" $f sed -i "s%^SMB_USER=.*%SMB_USER=\"$smb_user\"%" $f sed -i "s%^SMB_PWD=.*%SMB_PWD=\"$smb_pwd\"%" $f } # Configure TV card and scan for channels. setup_tvscan () { MPTVSCAN=/usr/bin/mptvscan title="$BACKTITLE : Analog TV Channels Scanner" for i in `$MPTVSCAN -i`; do INPUTS="$INPUTS $i ''" done for i in `$MPTVSCAN -s`; do NORMS="$NORMS $i ''" done for i in `$MPTVSCAN -c`; do CHANLISTS="$CHANLISTS $i ''" done while [ -z "$DONE" ]; do INPUT=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "TV Input Selection" --menu "\nBelow is the list of your TV card's available inputs. Please select the one you want to use for channels scan (should be Television)." 0 0 0 $INPUTS` NORM=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "TV Norm Selection" --menu "\nBelow is the list of your TV card's supported video standards. Please select the one you want to use, according to your localization." 0 0 0 $NORMS` CHANLIST=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "TV Chanlist Selection" --menu "\nBelow is the list of pre-configured chanlists for scan. Select the one corresponding to your location." 0 0 0 $CHANLISTS` $MPTVSCAN -a "-i$INPUT" "-s$NORM" "-c$CHANLIST" -p 2>/tmp/chans | $DIALOG --no-cancel --aspect 15 --stdout --backtitle "$title" --title "Scanning Channels" --gauge "\nGeeXboX is currently scanning your channels. This operation may take a while. Please wait while processing ..." 0 0 CHANNELS=`sed -e 's/CHAN=//g' -e 's/:/ - /g' -e 's/\"//g' -e 's/$/\\\\n/g' /tmp/chans` $DIALOG --aspect 12 --stdout --yes-label "Accept" --no-label "Retry" --backtitle "$title" --title "Scan Done ..." --yesno "\nCongratulations, the TV channels scan is done. The following channels has been discoverd (if no channel has been found, you can then try again with new card/tuner/norm/chanlist settings).\n\n$CHANNELS" 0 0 && DONE=true done if [ -s /tmp/chans ]; then cat /tmp/chans >> $1/etc/tvcard fi rm -f /tmp/chans sed -i "s/^TVIN_STANDARD=.*/TVIN_STANDARD=$NORM/" $1/etc/tvcard sed -i "s/^CHANLIST=.*/CHANLIST=$CHANLIST/" $1/etc/tvcard } # Configure DVB card and scan for channels. setup_dvbscan () { DVB_LIST=/usr/share/dvb DVBSCAN=/usr/bin/dvbscan SCAN_ARGS="-x 0" # Scan FreeToAir channels only TITLE="$BACKTITLE : Digital TV Channels Scanner" CHANNELS_CONF="$1/etc/mplayer/channels.conf" if [ -f /usr/share/dvb.tar.lzma -a ! -d $DVB_LIST ]; then tar xaf /usr/share/dvb.tar.lzma -C /usr/share fi if [ -f /usr/share/dvb.tar.gz -a ! -d $DVB_LIST ]; then tar xzf /usr/share/dvb.tar.gz -C /usr/share fi DVB_TYPE=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "DVB Card Type Selection" --menu "\nBelow is the list of available DVB card types. Please select the one you want to use for channels scan." 0 0 0 dvb-s "DVB Sattelite" dvb-t "DVB Terrestrial" dvb-c "DVB Cable" atsc "ATSC (US)"` # DVB Terrestrial cards if [ $DVB_TYPE = "dvb-t" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do COUNTRIES="$COUNTRIES $i ''" done COUNTRY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "Country Selection" --menu "\nBelow is the list of countries with known DVB-T transponders frequencies. Please select the one where you live." 0 0 0 $COUNTRIES` for i in `ls $DVB_LIST/$DVB_TYPE/$COUNTRY`; do CITIES="$CITIES $i ''" done CITY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "City Selection" --menu "\nBelow is the list of locations from your country with known DVB-T transponders frequencies. If you live in place not present in this list, please contact your DVB provider, asking for your local transponders frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the town nearest to where you live." 0 0 0 $CITIES` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$COUNTRY/$CITY > $CHANNELS_CONF elif [ $DVB_TYPE = "dvb-s" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do SATS="$SATS $i ''" done SAT=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "Satellite Selection" --menu "\nBelow is the list of known DVB-S satellite transponders you may be able to be connected to. If you are using another transponder which is not present in this list, please contact your DVB provider, asking for your transponder frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the one that fits your needs." 0 0 0 $SATS` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$SAT > $CHANNELS_CONF elif [ $DVB_TYPE = "dvb-c" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do COUNTRIES="$COUNTRIES $i ''" done COUNTRY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "Country Selection" --menu "\nBelow is the list of countries with known DVB-C transponders frequencies. Please select the one where you live." 0 0 0 $COUNTRIES` for i in `ls $DVB_LIST/$DVB_TYPE/$COUNTRY`; do CITIES="$CITIES $i ''" done CITY=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "City Selection" --menu "\nBelow is the list of locations from your country with known DVB-C transponders frequencies. If you live in place not present in this list, please contact your DVB provider, asking for your local transponders frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the town nearest to the place you live." 0 0 0 $CITIES` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$COUNTRY/$CITY > $CHANNELS_CONF elif [ $DVB_TYPE = "atsc" ]; then for i in `ls $DVB_LIST/$DVB_TYPE`; do ATSC="$ATSC $i ''" done FREQ=`$DIALOG --no-cancel --aspect 15 --stdout --backtitle "$TITLE" --title "ATSC Transponder Selection" --menu "\nBelow is the list of known ATSC transponders you may be able to be connected to. If you are using another transponder which is not present in this list, please contact your ATSC provider, asking for your transponder frequencies and send this information to the LinuxTV (http://www.linuxtv.org/) team. Otherwise, simply choose the one that fits your needs." 0 0 0 $ATSC` $DVBSCAN $SCAN_ARGS $DVB_LIST/$DVB_TYPE/$FREQ > $CHANNELS_CONF fi if [ -s $CHANNELS_CONF ]; then # remove non-coherent detected channels grep -v "^\[.*\]:" $CHANNELS_CONF > /tmp/channels.conf mv /tmp/channels.conf $CHANNELS_CONF fi } /bin/busybox mount -t proc none /proc /bin/busybox mount -t sysfs none /sys /bin/busybox --install -s if [ "$1" = geexbox ]; then DIALOG=/usr/bin/dialog CFDISK=/usr/bin/cfdisk SFDISK=/usr/bin/sfdisk MKDOSFS=/usr/bin/mkdosfs MKE2FS=/sbin/mke2fs GRUB=/usr/bin/grub SYSLINUX=/usr/bin/syslinux else DIALOG=`which dialog` CFDISK=`which cfdisk` SFDISK=`which sfdisk` MKDOSFS=`which mkdosfs` MKE2FS=`which mke2fs` GRUB=`which grub` SYSLINUX=`which syslinux` fi VERSION=1.1-rc3 BACKTITLE="GeeXboX $VERSION installator" if [ "$UID" != "0" ]; then echo "" echo "**** You need to be root to install GeeXboX ****" echo "" exit 1 fi if [ -z "$SFDISK" -o -z "$GRUB" -o -z "$DIALOG" ]; then echo "" echo "**** You need to have sfdisk, grub and dialog installed to install GeeXboX ****" echo "" exit 1 fi if [ ! -d "/sys/block" ]; then echo "" echo "**** You need to have a mounted sysfs at /sys. try executing: mount -t sysfs none /sys ****" echo "" exit 1 fi # disable kernel messages to avoid screen corruption echo 0 > /proc/sys/kernel/printk title="$BACKTITLE : Keymap selection" KEYMAPS="qwerty qwerty" for i in `ls /etc/keymaps` do KEYMAPS="$KEYMAPS $i $i" done KEYMAP=`$DIALOG --no-cancel --stdout --backtitle "$title" --title "Choose Keymap" --default-item qwerty --menu "Which keymap do you want to use ?" 0 0 0 $KEYMAPS` || exit 1 test -f "/etc/keymaps/$KEYMAP" && loadkmap < "/etc/keymaps/$KEYMAP" while true; do if [ -e /dev/.devfsd ]; then DISKS=`cat /proc/partitions | sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *\([0-9][0-9]*\)\ \([a-z0-9/]*disc\).*$/\2 (\1_blocks)/p"` else DISKS=`cat /proc/partitions | sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *\([0-9][0-9]*\)\ \([a-z]*\)$/\2 (\1_blocks)/p"` fi if [ -z "$DISKS" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --yesno "\nNo disks found on this system.\nCheck again ?" 0 0 || exit 1 else DISKS="$DISKS refresh list" DISK=`$DIALOG --stdout --backtitle "$BACKTITLE" --title "Installation device" --menu "\nYou are going to install GeeXboX. For this you will need an empty partition with about 8 MB of free space.\nBe careful to choose the right disk! We won't take responsibility for any data loss." 0 0 0 $DISKS` || exit 1 [ $DISK != refresh ] && break fi done if [ "`cat /sys/block/$DISK/removable`" = 1 ]; then BOOTLOADER=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Linux partition type" --menu "Which type of boot loader you want ? " 0 0 0 grub "GNU GRUB - Doesn't work with oldest BIOS" syslinux "Syslinux - For oldest BIOS compatbility"` || exit 1 TYPE=REMOVABLE else BOOTLOADER=grub TYPE=HDD fi if [ $BOOTLOADER = syslinux ]; then PART_MSG="FAT partition (type=06)" elif [ $BOOTLOADER = grub ]; then PART_MSG="FAT partition (type=0B) or Linux ext2/3 partition (type=83)" fi if [ -z "$CFDISK" ]; then CFDISK_MSG="As you don't have cfdisk installed, the installator won't be able to create the partition for you. You'll have to create it yourself before installing." else CFDISK_MSG="Please edit your partition table to create a $PART_MSG with about 8 MB of free space.\nRemember to write the changes when done. We won't take responsibility for any data loss." fi $DIALOG --stdout --backtitle "$BACKTITLE" --title "Installation device" --msgbox "$CFDISK_MSG" 0 0 || exit 1 if [ -n "$CFDISK" ]; then $CFDISK /dev/$DISK || exit 1 fi while [ ! -b "$DEV" ]; do DISKS="" for i in `$SFDISK -l /dev/$DISK | grep ${DISK%disc} | cut -f1 -d' '`; do case `$SFDISK --print-id ${i%%[0-9]*} ${i#${i%%[0-9]*}}` in 1|11|6|e|16|1e|b|c|1b|1c) #FAT12/16/32 are supported both in syslinux and grub. S=`$SFDISK -s "$i" | sed 's/\([0-9]*\)[0-9]\{3\}/\1/'` DISKS="$DISKS $i ${S}MB" ;; 83) #Linux is supported only in grub. if [ $BOOTLOADER = grub ]; then S=`$SFDISK -s "$i" | sed 's/\([0-9]*\)[0-9]\{3\}/\1/'` DISKS="$DISKS $i ${S}MB" fi ;; esac done if [ -z "$DISKS" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\nYou don't have any $PART_MSG partition on your system. Please create a partition first using for example cfdisk.\n" 0 0 exit 1 else DEV=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Installation device" --menu "Where do you want to install GeeXboX ?" 0 0 0 $DISKS` || exit 1 fi if [ ! -b "$DEV" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\n'$DEV' is not a valid block device.\n" 0 0 fi done DEVNAME="${DEV#/dev/}" case `$SFDISK --print-id ${DEV%%[0-9]*} ${DEV#${DEV%%[0-9]*}}` in 1|11|6|e|16|1e|14|b|c|1b|1c) SUPPORTED_TYPES="vfat" PART_TYPE="FAT" ;; 83) # Linux SUPPORTED_TYPES="ext3 ext2" PART_TYPE="Linux" ;; esac mkdir di # Try to guess current partition type. MKFS_TYPE= for type in vfat ext3 ext2 auto; do if mount -o ro -t $type "$DEV" di; then MKFS_TYPE=`grep "^$DEV " /proc/mounts | cut -d " " -f 3` umount di break fi done NEED_FORMAT=yes if [ -z "$MKFS_TYPE" ]; then FORMAT_MSG="Partition is not formated. " else for type in $SUPPORTED_TYPES; do [ $type = $MKFS_TYPE ] && NEED_FORMAT=no done if [ "$NEED_FORMAT" = yes ]; then FORMAT_MSG="Partition format type ($MKFS_TYPE) is not supported in your partition type ($PART_TYPE). " else FORMAT_MSG="Partition is already formated. " fi fi $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Formatting" --defaultno --yesno "$FORMAT_MSG\nDo you want to format '$DEV' ?\n" 0 0 && FORMAT=yes if [ "$FORMAT" = yes ]; then case `$SFDISK --print-id ${DEV%%[0-9]*} ${DEV#${DEV%%[0-9]*}}` in 1|11|6|e|16|1e|14) # FAT12 and FAT16 MKFS=$MKDOSFS MKFS_OPT="-n GEEXBOX" MKFS_TYPE=vfat MKFS_TYPENAME="FAT" ;; b|c|1b|1c) # FAT32 MKFS=$MKDOSFS MKFS_OPT="-n GEEXBOX -F 32" MKFS_TYPE=vfat MKFS_TYPENAME="FAT" ;; 83) # Linux MKFS_TYPE=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Linux partition type" --menu "Which type of Linux partition you want ?" 0 0 0 ext2 "Linux ext2" ext3 "Linux ext3"` || exit 1 case $MKFS_TYPE in ext2) MKFS=$MKE2FS MKFS_OPT="-L GEEXBOX" MKFS_TYPENAME="Linux ext2" ;; ext3) MKFS=$MKE2FS MKFS_OPT="-L GEEXBOX -j" MKFS_TYPENAME="Linux ext3" ;; esac ;; esac if [ -z "$MKFS" -o ! -x $MKFS ]; then if [ "$NEED_FORMAT" = yes ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\n'$DEV' must be formated. As you don't have formatting tool installed, I won't be able to format the partition.\n" 0 0 rmdir di exit 1 else $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Warning" --msgbox "\n'$DEV' needs to be a $MKFS_TYPENAME partition. As you don't have formatting tool installed, I won't be able to format the partition. Hopefully it is already formatted.\n" 0 0 fi else $MKFS $MKFS_OPT "$DEV" fi elif [ "$NEED_FORMAT" = yes ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\n'$DEV' needs to be a formatted.\n" 0 0 rmdir di exit 1 fi mount -t $MKFS_TYPE "$DEV" di if [ $? -ne 0 ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\nFailed to mount '$DEV' as $MKFS_TYPENAME partition.\n" 0 0 rmdir di exit 1 fi if [ -d disk ]; then cp -a disk/* di 2>/dev/null else if [ -n "$NFS" ]; then GEEXBOX="$NFS" else GEEXBOX="$CDROM/GEEXBOX" fi cp -a "$GEEXBOX" di/GEEXBOX 2>/dev/null cd di/GEEXBOX/boot mv vmlinuz initrd.gz isolinux.cfg boot.msg help.msg splash.rle ../../ cd ../../../ rm -rf di/GEEXBOX/boot fi # Setup network is only available when booting from GeeXboX. if [ "$1" = geexbox ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Configure Network ?" --yesno "\nDo you want to configure your network parameters before installing GeeXboX to disk ?\n" 0 0 && setup_network "di/GEEXBOX" fi # Configure TV card and scan for channels. # (only available when booting from GeeXboX). if [ "$1" = geexbox ]; then if grep -q -e '0400: 109e:' \ -e '0480: 1131:' \ -e '0480: 14f1:88' \ /tmp/pci; then # Only scan if a TV card is detected /usr/bin/mptvscan -i >/dev/null 2>&1 if [ `echo $?` = 0 ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Scan for Analog TV Channels ?" --yesno "\nDo you want to configure your analog tv card and scan for channels before installing GeeXboX to disk ?\n" 0 0 && setup_tvscan "di/GEEXBOX" fi fi fi # Configure DVB card and scan for channels. # (only available when booting from GeeXboX). if [ "$1" = geexbox ]; then # Only scan if a DVB card is detected if [ -f /var/dvbcard ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "Scan for Digital (DVB) TV Channels ?" --yesno "\nDo you want to configure your digital (DVB) tv card and scan for channels before installing GeeXboX to disk ?\n" 0 0 && setup_dvbscan "di/GEEXBOX" fi fi VESA_MODE_OLD=`grep vga= di/isolinux.cfg | head -1 | sed "s%.*vga=\([^ ]*\).*%\1%"` VESA_RES=$((($VESA_MODE_OLD - 784) / 3)) VESA_DEPTH=$((($VESA_MODE_OLD - 784) % 3)) if [ $VESA_DEPTH != 0 -a $VESA_DEPTH != 1 -a $VESA_DEPTH != 2 ] || [ $VESA_RES != 0 -a $VESA_RES != 1 -a $VESA_RES != 2 -a $VESA_RES != 3 ]; then VESA_RES=1 VESA_DEPTH=2 fi VESA_RES=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Screen Resolution" --default-item $VESA_RES --menu "Select from options below" 000 0 0 0 "640x480" 1 "800x600" 2 "1024x768" 3 "1280x1024" 4 "1600x1200"` VESA_DEPTH=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Screen Color Depth" --default-item $VESA_DEPTH --menu "Select from options below" 000 0 0 0 "15 bit" 1 "16 bit" 2 "24 bit"` VESA_MODE=$((784 + VESA_RES*3 + VESA_DEPTH)) [ $VESA_MODE -ge 796 ] && VESA_MODE=$((VESA_MODE + 1)) REMOTES=`ls di/GEEXBOX/etc/lirc/lircrc_* | sed -e 's/.*lircrc_//g'` for r in $REMOTES; do LREMOTES="$LREMOTES $r $r" done REMOTE=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Remote" --menu "Select the remote to use" 000 0 0 $LREMOTES` RECEIVERS=`ls di/GEEXBOX/etc/lirc/lircd_* | grep -v ".conf" | sed -e 's/.*lircd_//g'` for r in $RECEIVERS; do LRECEIVERS="$LRECEIVERS $r $r" done RECEIVER=`$DIALOG --stdout --aspect 15 --backtitle "$BACKTITLE" --title "Receiver" --menu "Select the receiver to use" 000 0 0 $LRECEIVERS` if grep -q "splash=silent" di/isolinux.cfg; then SPLASH_ARGUMENT="" SPLASH_OLD="silent" else SPLASH_ARGUMENT="--defaultno" SPLASH_OLD="0" fi $DIALOG --aspect 15 --backtitle "$BACKTITLE" --defaultno --title "Bootsplash" $SPLASH_ARGUMENT --yesno "\nDo you want to disable bootsplash ?\n" 0 0 && SPLASH="0" || SPLASH="silent" grubprefix=/boot/grub grubdir=di$grubprefix device_map=$grubdir/device.map rm -rf $grubdir mkdir -p $grubdir [ -f "di/GEEXBOX/usr/share/grub-i386-pc.tar.lzma" ] && tar xaf "di/GEEXBOX/usr/share/grub-i386-pc.tar.lzma" -C $grubdir [ -f "di/GEEXBOX/usr/share/grub-i386-pc.tar.gz" ] && tar xzf "di/GEEXBOX/usr/share/grub-i386-pc.tar.gz" -C $grubdir if [ -f "di/GEEXBOX/usr/share/grub-splash.xpm.gz" ]; then cp -f "di/GEEXBOX/usr/share/grub-splash.xpm.gz" $grubdir || exit 1 disable_splashimage= else disable_splashimage="#" fi splashimage="$grubprefix/grub-splash.xpm.gz" if [ $BOOTLOADER = syslinux ]; then cp "di/GEEXBOX/usr/share/ldlinux.sys" di sed -e "s/boot=cdrom/boot=${DEV#/dev/}/" -e "s/vga=$VESA_MODE_OLD/vga=$VESA_MODE/" -e "s/splash=$SPLASH_OLD/splash=$SPLASH/" -e "s/keymap=.*/keymap=$KEYMAP/" di/isolinux.cfg > di/syslinux.cfg rm di/isolinux.cfg elif [ $BOOTLOADER = grub ]; then cp $grubdir/stage2 $grubdir/stage2_single rm di/isolinux.cfg di/boot.msg di/help.msg di/splash.rle fi if [ $TYPE = HDD ]; then echo "quit" | $GRUB --batch --no-floppy --device-map=$device_map elif [ $TYPE = REMOVABLE ]; then echo "(hd0) ${DEV%%[0-9]*}" > $device_map fi rootdev=$(convert $DEV) if [ -z "$rootdev" ]; then $DIALOG --aspect 15 --backtitle "$BACKTITLE" --title "ERROR" --msgbox "\nCouldn't find my GRUB partition representation\n" 0 0 umount di rmdir di exit 1 fi if [ $BOOTLOADER = syslinux ]; then umount di $SYSLINUX "$DEV" mount -t $MKFS_TYPE "$DEV" di elif [ $BOOTLOADER = grub ]; then if [ $TYPE = HDD ]; then rootdev_single=$rootdev fake_device= elif [ $TYPE = REMOVABLE ]; then rootdev_single="(fd0)" fake_device="device $rootdev_single $DEV" fi $GRUB --batch --no-floppy --device-map=$device_map < $grubdir/single.lst < $grubdir/menu.lst <> $grubdir/menu.lst <> $grubdir/menu.lst <> $grubdir/menu.lst <> $grubdir/menu.lst < /etc/img_ext; sed -i 's/.*set_menu view_img_timeout.*//' /etc/mplayer/menu.conf ) # build a single file extensions filter cat /etc/file_ext > /etc/extensions cat /etc/list_ext >> /etc/extensions cat /etc/img_ext >> /etc/extensions # add partitions space informations in menu for i in `mount | sed -n 's%/dev/\(disk[0-9]*\(part[0-9]*\)*\).*%\1%p'`; do MENU_DF="$MENU_DF " done # do the same for cdrom drives for i in `ls /dev/cdrom* | sed -n 's%/dev/\(cdrom[0-9]\).*%\1%p'`; do MENU_DF="$MENU_DF " done [ -n "$MENU_DF" ] && sed -i "s%property=\"MAC\"/>%property=\"MAC\"/> $MENU_DF%" /etc/mplayer/menu.conf # do not load geexbox OSD menu at movie playback if running through Freevo if [ -f /usr/bin/freevo ]; then mp_set_option menu-startup "no" fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/72_mp-audio0000755000175000017500000000413610630554150022056 0ustar benben#!/bin/sh # # configure MPlayer's audio settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's audio settings ###" # include audio configuration file . /etc/audio echo $ALSA_CARD | grep -q ".." || ALSA_CARD="0$ALSA_CARD" case $SOUNDCARD_MODE in SPDIF) ALSA_REAL_MODE=IEC958 ALSA_INTERFACE=plughw ;; analog) ALSA_REAL_MODE=DAC ALSA_INTERFACE=hw ;; esac ALSA_DEVICE=`sed -n "s/^$ALSA_CARD-\(..\): .*$ALSA_REAL_MODE.*/\1/p" /proc/asound/pcm | tail -n 1` [ -z "$ALSA_DEVICE" ] && ALSA_DEVICE=`grep -iv Modem /proc/asound/pcm | sed -n "s/^$ALSA_CARD-\(..\): .*playback.*/\1/p" | tail -n 1` [ -z "$ALSA_DEVICE" ] && ALSA_DEVICE=`sed -n "s/^$ALSA_CARD-\(..\): .*playback.*/\1/p" /proc/asound/pcm | tail -n 1` [ -n "$ALSA_DEVICE" ] && AO_DEVICE=":device=$ALSA_INTERFACE=$ALSA_CARD.$ALSA_DEVICE" # set alsa as audio output isn't forced already. mp_set_option ao "alsa$AO_DEVICE" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_AO_DEV "alsa$AO_DEVICE" fi # enable hardware AC3 output via S/PDIF if audio codec isn't forced already. if [ "$SOUNDCARD_MODE" = SPDIF ]; then if [ "$AC3_DECODER" = ac3 ]; then mp_set_option ac "hwac3," elif [ "$AC3_DECODER" = dts ]; then mp_set_option ac "hwdts," elif [ "$AC3_DECODER" = ac3dts ]; then mp_set_option afm "hwac3" fi fi # don't use Master mixer channel when not available if [ -z "`amixer -c $ALSA_CARD simple | grep "'Master'"`" ]; then sed -i 's/mixer-channel=Master//' /etc/mplayer/mplayer.conf fi # set number of playback channels if isn't forced already. mp_set_option channels "$CHANNELS" # set DVD default language echo "alang=`sed 's/^\(..\).*/\1/' /etc/lang | head -n 1`,en" >> /etc/mplayer/mplayer.conf # Set suitable background movie when playing audio-only. for i in background-audio.avi background.avi; do if [ -f /usr/share/mplayer/$i ]; then mp_set_option bgvideo "/usr/share/mplayer/$i" break fi done # set softvol for VIA 8235 rev80 and SiS SI7012 rev16 cards if grep -q -e '0401: 1106:3059 (rev 80)' -e '0401: 13f6:0111 (rev 16)' /tmp/pci; then mp_set_option softvol "yes" fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/74_mp-video0000755000175000017500000000362610630554150022070 0ustar benben#!/bin/sh # # configure MPlayer's video settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's video settings ###" # include tvout configuration file . /etc/tvout # set mplayer resolution when using offb if [ -e /dev/fb0 ]; then RES=`/usr/sbin/fbset | sed -n 's/mode "\(.*\)-.*"/\1/p'` RESX=`echo $RES | cut -f1 -dx` RESY=`echo $RES | cut -f2 -dx` mp_set_option screenw "$RESX" mp_set_option screenh "$RESY" else mp_set_option screenw 800 mp_set_option screenh 600 fi # set double to no for nvidia, sis and Kyro cards and VMWare for i in '0300: 10de:' '0300: 1039:' '0300: 104a:0010' '0300: 15ad:'; do if grep -q "$i" /tmp/pci; then # except if we want to try nvidia vidix if [ "$i" = '0300: 10de:' -a ! -f /etc/mplayer/no_nvidia_vidix ]; then mp_set_option vf "format=yuy2" concat # nvidia card on powerpc elif [ "$i" = '0300: 10de:' -a "`cat /etc/arch`" = powerpc ]; then mp_set_option vo "directfb:noinput" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "directfb:noinput" fi else mp_set_option vo "vesa" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "vesa" fi mp_set_option double "no" mp_set_option vf "expand=-1:-1:-1:-1:1" concat fi fi done # Force -vo vesa for some ATI Mobility Radeons if grep -q '0300: 1002:4c59' /tmp/pci; then mp_set_option vo "vesa" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "vesa" fi fi # do not use VESA Direct Graphic Access on Intel i855, i865, i910, # i915 and i945 cards if grep -q -e '0300: 8086:3582' -e '0300: 8086:2572' -e '0300: 8086:2592' -e '0300: 8086:2582' -e '0300: 8086:27a2' /tmp/pci; then mp_set_option vo "vesa:nodga" if [ -f /usr/bin/freevo ]; then freevo_set_option MPLAYER_VO_DEV "vesa:nodga" fi fi # set the tvout aspect mp_set_option monitoraspect "$TVOUT_ASPECT" exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/75_mp-tvcard0000755000175000017500000000555110630554150022245 0ustar benben#!/bin/sh # # configure MPlayer's v4l2 settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's v4l2 support ###" if [ -f /var/tvcard -a -c /dev/video0 ]; then . /etc/tvcard . /var/tvcard # configure mplayer v4l2 driver if [ -n "$TV_WIDTH" -a -n "$TV_HEIGHT" ]; then TV_OPTIONS=":width=$TV_WIDTH:height=$TV_HEIGHT" fi if [ -n "$TV_BRIGHTNESS" ]; then TV_OPTIONS="$TV_OPTIONS:brightness=$TV_BRIGHTNESS" fi if [ -n "$TV_CONTRAST" ]; then TV_OPTIONS="$TV_OPTIONS:contrast=$TV_CONTRAST" fi if [ -n "$TV_HUE" ]; then TV_OPTIONS="$TV_OPTIONS:hue=$TV_HUE" fi if [ -n "$TV_SATURATION" ]; then TV_OPTIONS="$TV_OPTIONS:saturation=$TV_SATURATION" fi if [ `grep -c ^CHAN /etc/tvcard` -gt 0 ]; then for CHAN in `sed -n 's/^CHAN="\(.*\):\(.*\)"/\1-\2/p' /etc/tvcard | sed 'y/ /_/' `; do mp_set_option tv=channels "$CHAN" concat done else sed "s/.*set_menu tv_chan.*//" /etc/mplayer/menu.conf fi echo "tv=driver=v4l2:norm=$TVIN_STANDARD:chanlist=$CHANLIST$TV_OPTIONS" >> /etc/mplayer/mplayer.conf IFS=' ' # set mplayer TV channels list echo "" >> /etc/mplayer/menu.conf for CHNAME in `sed -n 's/^tv=channels=//p' /etc/mplayer/mplayer.conf | sed -e 's/,/\n/g' -e 's/_/ /g' | sed 's/\(.*\)-\(.*\)/\2/'`; do echo "" >> /etc/mplayer/menu.conf done echo "" >> /etc/mplayer/menu.conf else # remove tv options from menu sed -i 's/.*ok="set_menu tv_settings".*//' /etc/mplayer/menu.conf sed -i 's/.*ok="set_menu tv_norm".*//' /etc/mplayer/menu.conf fi [ -f /var/digimatrix ] && sed -i 's/set_menu radio_settings/set_menu digimatrix_radio/' /etc/mplayer/menu.conf [ -f /etc/radio ] && . /etc/radio if [ "$RADIO" = yes ]; then # set mplayer menu radio stations list if [ `grep -c ^CHAN /etc/radio` -gt 0 ]; then for CHAN in `sed -n 's/^CHAN="\(.*\):\(.*\)"/\1-\2/p' /etc/radio | sed 'y/ /_/' `; do mp_set_option radio=channels "$CHAN" concat done else sed "s/.*set_menu radio_chan.*//" /etc/mplayer/menu.conf sed -i 's/^radio=.*//' /etc/mplayer/menu.conf fi # set mplayer Radio channels list n=0 echo "" >> /etc/mplayer/menu.conf for CHNAME in `sed -n 's/^radio=channels=//p' /etc/mplayer/mplayer.conf | sed -e 's/,/\n/g' -e 's/_/ /g' | sed 's/\(.*\)-\(.*\)/\2/'`; do echo "" >> /etc/mplayer/menu.conf done echo "" >> /etc/mplayer/menu.conf else # no supported radio card specified sed -i 's/.*ok="set_menu radio.*//' /etc/mplayer/menu.conf sed -i 's/^radio=.*//' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/76_mp-dvbcard0000755000175000017500000000143710630554150022367 0ustar benben#!/bin/sh # # configure MPlayer's DVB settings # # runlevels: geexbox, debug echo "### Configuring MPlayer's DVB support ###" CHANNELS_CONF=/etc/mplayer/channels.conf if [ -f /var/dvbcard ]; then . /var/dvbcard # build DVB channels configuration file if [ ! -f $CHANNELS_CONF ]; then if [ -f /etc/dvb.conf ]; then dvbscan -x 0 /etc/dvb.conf > $CHANNELS_CONF if [ -s $CHANNELS_CONF ]; then # remove non-coherent detected channels grep -v "^\[.*\]:" $CHANNELS_CONF > /tmp/channels.conf mv /tmp/channels.conf $CHANNELS_CONF fi fi fi fi # no DVB card or no configured channels if [ ! -f /var/dvbcard -o ! -s $CHANNELS_CONF ]; then # remove DVB options from menu sed -i 's/.*ok="set_menu dvb_sel".*//' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/77_mp-dxr30000755000175000017500000000166410630554150021645 0ustar benben#!/bin/sh # # configure DXR3/Hollywood+ cards for MPlayer # # runlevels: geexbox, debug # include audio configuration file . /etc/audio # include tvout configuration file . /etc/tvout # set ao, vo and vf for DXR3/Hollywood+ cards and upload microcode. if [ -e /var/use_dxr3 ]; then echo "### Configuring DXR3/Hollywood+ cards for MPlayer ###" mp_set_option vo "dxr3:sync:norm=0" mp_set_option ao "oss:/dev/em8300_ma-0" mp_set_option vf "expand=-1:-1:-1:-1:1" concat sed -i "s%play_dvd.*%quit 167\"/>%" /etc/mplayer/menu.conf em8300setup -p -a -o >/dev/null 2>&1 # TVOut standard (default is PAL) if [ "$TVOUT_STANDARD" = "ntsc" ]; then em8300setup -n >/dev/null 2>&1 fi # set display to WideScreen format (default is 4:3) if [ "$TVOUT_ASPECT" = "16:9" ]; then em8300setup -w >/dev/null 2>&1 fi # use SPDIF output ? if [ "$SOUNDCARD_MODE" = SPDIF ]; then em8300setup -d >/dev/null 2>&1 fi fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/78_mp-pvr0000755000175000017500000000113510630554150021566 0ustar benben#!/bin/sh # # configure PVR (mostly IVTV based) cards for MPlayer # # runlevels: geexbox, debug # set pvr arguments for PVR cards. if [ -e /var/use_pvr ]; then echo "### Configuring PVR cards for MPlayer ###" # include PVR configuration file . /etc/pvr mp_set_option pvr "aspect=$PVR_ASPECT:arate=$PVR_AUDIO_RATE:alayer=$PVR_AUDIO_LAYER:abitrate=$PVR_AUDIO_BITRATE:amode=$PVR_AUDIO_MODE:vbitrate=$PVR_VIDEO_BITRATE:vmode=$PVR_VIDEO_MODE:vpeak=$PVR_VIDEO_PEAK_BITRATE:fmt=$PVR_VIDEO_FORMAT" else # remove pvr from menu sed -i 's%.*ok="loadfile pvr://".*%%' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/79_mp-utils0000755000175000017500000000074010630554150022121 0ustar benben#!/bin/sh # # start MPlayer's utilities # # runlevels: geexbox, debug echo "### Starting MPlayer's utilities ###" # create the mplayer control pipe for external programs mkfifo /var/mp_control # start the autolaunching script . /etc/autoplay [ $AUTOPLAY == "yes" ] && echo -n "" > /var/autoplay /usr/bin/autoplay 8 > /var/mp_control & # proceed to dvdnav setting . /etc/dvd [ $DVDNAV == "yes" ] && echo -n "" > /var/dvdnav # start the file copy daemon /usr/bin/cpd & exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/82_mplayer0000755000175000017500000000255110630554150022014 0ustar benben#!/bin/sh # # configure and launch mplayer # # runlevels: geexbox, debug # do not start if Freevo is present if test -x /usr/bin/freevo; then exit 0 fi echo "### Starting MPlayer ###" # disable console blanking and cursor blinking for a proper MPlayer start echo -e "\033[?25l\033[9;0]" # disable kernel messages to avoid MPlayer screen corruption echo 0 > /proc/sys/kernel/printk # default directory echo -n /mnt/ > /tmp/mp_current_path # tty used for the video display and commands input TTY=4 RET=0 # start mplayer with gdb when built with debugging options if test -f /etc/debug; then echo "r /usr/share/mplayer/background.avi -loop 0" > /gdb_cmd gdb -x /gdb_cmd /usr/bin/mplayer else echo "0" > /tmp/mp_result # disable fbdev cursor echo -e "\033[9;0]\033[?25l\033[?1;;c" >/dev/tty$TTY chvt $TTY ( # start mplayer or fbi and keep them launched while true; do if [ -n "`pidof lircd`" ]; then irpty /etc/lircrc -- mp_wrapper else mp_wrapper fi test `cat /tmp/mp_result` -eq 165 -a -x /usr/bin/fbi && fbi_wrapper test `cat /tmp/mp_result` -eq 166 && return 0 test `cat /tmp/mp_result` -eq 167 && mplayer dvd://1 > /dev/null 2>&1 test `cat /tmp/mp_result` -eq 168 && return 64 test `cat /tmp/mp_result` -eq 169 && (chvt 1; /bin/sh < /dev/tty1; chvt $TTY) done ) /etc/asound.conf mixer() { parm=${3:-on} amixer -c $ALSA_CARD sset "$1" "$2" $parm >/dev/null 2>&1 amixer -c $ALSA_CARD sset "$1" $parm >/dev/null 2>&1 } # set alsa channel mode (6ch, 4ch, 2ch) mixer 'Channel Mode' "${CHANNELS}ch" # set common mixer params mixer Master 90% mixer Front 90% mixer PCM 90% mixer Synth 90% # mute CD, since using digital audio instead mixer CD 0% mute # Only unmute Line and Aux if they are possibly used. if [ -e /var/use_dxr3 -o -e /var/tvcard -o -e /var/dvbcard -o -e /var/digimatrix ]; then mixer Line 90% mixer Aux 90% else mixer Line 0% mute mixer Aux 0% mute fi # mute mic mixer Mic 0% mute # ESS 1969 chipset has 2 PCM channels mixer PCM,1 90% # Trident/YMFPCI/emu10k1 mixer Wave 100% mixer Music 100% mixer AC97 100% mixer Surround 90% mixer 'Surround Digital' 90% mixer 'Wave Surround' 90% if [ "$CHANNELS" = 6 ]; then mixer 'Duplicate Front' 0% off else mixer 'Duplicate Front' 90% fi mixer 'Sigmatel 4-Speaker Stereo' 90% # CS4237B chipset: mixer 'Master Digital' 90% # DRC mixer 'Dynamic Range Compression' 90% # Envy24 chips with analog outs mixer DAC 90% mixer DAC,0 90% mixer DAC,1 90% # some notebooks use headphone instead of master mixer Headphone 90% mixer 'Internal Speaker' 75% mixer Playback 100% mixer Center 90% mixer LFE 90% mixer Center/LFE 90% # Required for newer Via hardware mixer 'VIA DXS,0' 80% mixer 'VIA DXS,1' 80% mixer 'VIA DXS,2' 80% mixer 'VIA DXS,3' 80% # Intel P4P800-MX (Ubuntu bug #5813) mixer 'Master Playback Switch' on # Required at least for Via 823x hardware on DFI K8M800-MLVF Mobo mixer 'IEC958 Capture Monitor' 0% off # Required on some notebooks with ICH4: mixer 'Headphone Jack Sense' 0% off mixer 'Line Jack Sense' 0% off # Required for either Analog or Digital output mixer 'SB Live Analog/Digital Output Jack' $SBL_AUDIGY mixer 'Audigy Analog/Digital Output Jack' $SBL_AUDIGY # set SPDIF mixer params if [ "$SOUNDCARD_MODE" = SPDIF ]; then mixer 'IEC958' 90% mixer 'IEC958 Output' 90% mixer 'IEC958 Playback AC97-SPSA' $AC97_SPSA mixer 'IEC958 Coaxial' 90% mixer 'IEC958 LiveDrive' 90% mixer 'IEC958 Optical Raw' 90% mixer 'SPDIF Out' 90% mixer 'SPDIF Front' 90% mixer 'SPDIF Rear' 90% mixer 'SPDIF Center/LFE' 90% mixer 'Master Digital' 80% else mixer 'SPDIF Out' 0% off mixer 'Analog Front' 90% mixer 'Analog Rear' 90% mixer 'Analog Center/LFE' 90% fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/54_ftp0000755000175000017500000000040510630554150021127 0ustar benben#!/bin/sh # # start ftp server # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$FTP_SERVER" = "yes" -a -f /etc/bftpd.conf; then echo "### Starting FTP server ###" bftpd -d -c /etc/bftpd.conf & fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/10_eject0000755000175000017500000000156610630554150021431 0ustar benben#!/bin/sh # # eject CD if booted from cdrom and their is no media files on it # # runlevels: geexbox, debug if test -n "$CDROM"; then echo "### Eject CDROM ###" ( # add recognized files extension to the EXTS list for i in `cat /etc/file_ext`; do if [ -z "$EXTS" ]; then EXTS="$i" else EXTS="$EXTS\|$i" fi done # add recognized images extension to the EXTS list if [ -x /usr/bin/fbi -a -e /dev/fb0 ]; then for i in `cat /etc/img_ext`; do EXTS="$EXTS\|$i"; done fi # add recognized playlists extension to the EXTS list for i in `cat /etc/list_ext`; do EXTS="$EXTS\|$i"; done # check if their is recognized media files on the CD if [ -z "`find "$CDROM" | grep -v /GEEXBOX/ | grep -i "\.\($EXTS\)\$"`" ]; then # eject the CD (except when started with make exec) [ -e /dev/cdrom -a ! -f /EXEC ] && eject fi )& fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/52_telnet0000755000175000017500000000043510630554150021632 0ustar benben#!/bin/sh # # start telnet daemon # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$TELNET_SERVER" = "yes" -a -f /etc/issue; then echo "### Starting telnet daemon ###" /usr/sbin/telnetd -f /etc/issue >/dev/null 2>&1 & fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/53_httpd0000755000175000017500000000055610630554150021467 0ustar benben#!/bin/sh # # start http daemon # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$HTTP_SERVER" = "yes"; then echo "### Starting http daemon ###" if test -x /usr/bin/freevo-webserver; then /usr/bin/freevo-webserver >/dev/null 2>&1 & else /usr/sbin/httpd -h /var/www >/dev/null 2>&1 & fi fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/80_debug0000755000175000017500000000057610630554150021434 0ustar benben#!/bin/sh # # start a debugging shell # # runlevels: debug # give a shell to MPlayer in debug mode echo "### Starting debugging shell ###" sed -i 's%ok=\"quit 166\"/>%ok=\"quit 166\"/> %' /etc/mplayer/menu.conf # start shell /bin/sh # Add option to return to shell with F12 key echo "F12 quit 169" >> /etc/mplayer/input.conf exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/80_nodebug0000755000175000017500000000015710630554150021764 0ustar benben#!/bin/sh # # removes kernel modules from ramdisk # # runlevels: geexbox, install rm -rf /lib/modules exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/90_umount0000755000175000017500000000064410630554150021672 0ustar benben#!/bin/sh # # umount all mounted disks # # runlevels: geexbox, debug echo "### Unmounting disks and shares ###" # umount samba shares for DIR in /mnt/shares/*/*; do test -d "$DIR" && umount "$DIR" >/dev/null 2>&1 && rmdir "$DIR" done # when started with make exec, umount partitions if test -f /EXEC; then for DIR in /mnt/*; do test -d "$DIR" && umount "$DIR" >/dev/null 2>&1 done umount /proc fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/30_digitools0000755000175000017500000000067510630554150022336 0ustar benben#!/bin/sh # # setup the Digimatrix # # runlevels: geexbox, debug [ -f /proc/acpi/dsdt ] || exit 1 [ `grep -e P4SQ -c /proc/acpi/dsdt` -eq 0 ] && exit 1 echo "### Setting up Digimatrix ###" [ -x /usr/bin/digifan ] && digifan -g 5 -i [ -x /usr/bin/digipanel ] && digipanel -lts [ -x /usr/bin/digiradio ] && echo '' > /var/digimatrix # PAL-I/SECAM requires tda9887 options for audio echo "options tda9887 port2=0" >> /etc/modprobe.conf exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/89_digiwake0000755000175000017500000000041010630554150022126 0ustar benben#!/bin/sh # # setup the Digimatrix Wake-On-CIR # # runlevels: geexbox, debug [ -f /proc/acpi/dsdt ] || exit 1 [ `grep -e P4SQ -c /proc/acpi/dsdt` -eq 0 ] && exit 1 echo "### Setting up Digimatrix Wake-On-CIR ###" [ -x /usr/bin/digiwake ] && digiwake -w exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/59_upnp0000755000175000017500000000051410630554150021326 0ustar benben#!/bin/sh # # mount UPnP VFS # # runlevels: geexbox, debug # get options test -f /etc/network || exit 1 . /etc/network if test "$UPNP" = "yes" -a -f /usr/bin/djmount; then echo "### Mounting UPnP VFS ###" # Build UPnP VFS directory mkdir -p /tmp/UPnP # Mount UPnP VFS djmount -f /tmp/UPnP >/dev/null 2>&1 & fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/36_dxr30000755000175000017500000000063010630554150021216 0ustar benben#!/bin/sh # # setup tv cards # # runlevels: geexbox, debug, install if grep -q '0480: 1105:8300' /tmp/pci; then echo "### Setting up DXR3 card ###" # include module modprobe options . /etc/dxr3 # Drivers for DXR3/Hollywood+ cards modprobe bt865 2>&1 >/dev/null modprobe adv717x $ADV717X_OPTS 2>&1 >/dev/null modprobe em8300 $EM8300_OPTS 2>&1 >/dev/null echo '' > /var/use_dxr3 fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/82_freevo0000755000175000017500000000074410630554150021633 0ustar benben#!/bin/sh # # launch freevo # # runlevels: geexbox, debug # do not run if Freevo is NOT present if test ! -x /usr/bin/freevo; then exit 0 fi echo "### Starting Freevo ###" # disable console blanking and cursor blinking echo -e "\033[9;0]\033[?25l" # disable kernel messages echo 0 > /proc/sys/kernel/printk # tty used for the video display and commands input TTY=4 # disable fbdev cursor echo -e "\033[?1;;c" >/dev/tty$TTY chvt $TTY ( freevo ) &1 >/dev/null echo '' > /var/use_pvr fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/11_lcddisplay0000755000175000017500000000061310630554150022460 0ustar benben#!/bin/sh # # start lcd display # # runlevels: geexbox, debug # get options test -f /etc/lcddisplay || exit 1 . /etc/lcddisplay CONFIG=/etc/lcd4linux.conf if test "$LCD_ENABLED" = "yes" -a -f $CONFIG; then echo "### Starting LCD Display ###" sed -i -e "s/LCD_WIDTH/$LCD_WIDTH/g" -e "s/LCD_HEIGHT/$LCD_HEIGHT/g" $CONFIG /usr/bin/lcd4linux -c "Display='$LCD_MODEL'" -f $CONFIG fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/20_modules0000755000175000017500000000033310630554150021777 0ustar benben#!/bin/sh # # load modules # # runlevels: geexbox, debug, install echo "### Loading kernel modules ###" IFS=' ' for module in `cat /etc/modules|grep "^[^#]"`; do eval "modprobe $module" >/dev/null 2>&1 done exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/32_tvcard0000755000175000017500000000444610630554150021626 0ustar benben#!/bin/sh # # setup tv cards # # runlevels: geexbox, debug, install echo "### Setting up TV card ###" if ! grep -q -e '0400: 109e:' \ -e '0480: 1131:' \ -e '0480: 14f1:88' \ /tmp/pci; then # No supported TV card found exit 1 fi . /etc/tvcard [ -f /etc/radio ] && . /etc/radio CARD= test "$TV_CARD" != "AUTO" && CARD="card=$TV_CARD" TUNER= test "$TV_TUNER" != "AUTO" && TUNER="tuner=$TV_TUNER" RADIO_OPT= test "$RADIO" = yes && RADIO_OPT="radio=1" if grep -q '0400: 109e:' /tmp/pci; then # BT8x8 Card modprobe bttv $CARD $TUNER $RADIO_OPT >/dev/null 2>&1 if test "$TV_CARD" = "AUTO" \ -a -z "`dmesg | grep 'bttv0: detected'`"; then # Not autodetected test -z "$TUNER" && TUNER="tuner=3" rmmod bttv modprobe bttv card=1 $TUNER $RADIO_OPT >/dev/null 2>&1 fi echo "TV_WIDTH=768" > /var/tvcard echo "TV_HEIGHT=576" >> /var/tvcard elif grep -q '0480: 1131:' /tmp/pci; then # SAA7134 Card modprobe saa7134 $CARD $TUNER >/dev/null 2>&1 echo -n "" > /var/tvcard elif grep -q '0480: 14f1:88' /tmp/pci; then # Conexant BT881/CX88 Card modprobe tveeprom >/dev/null 2>&1 modprobe cx88xx $CARD $TUNER >/dev/null 2>&1 modprobe cx8800 >/dev/null 2>&1 # cx8800 module tries to autodetect/force tuner model according to eeprom. # It fails if eeprom is corrupted so force tuner module loading before cx8800 if test "$TV_CARD" != "AUTO" \ -a -n "`dmesg | grep 'tveeprom: Encountered bad packet header'`"; then rmmod cx8800 cx88xx tuner modprobe cx88xx $CARD $TUNER >/dev/null 2>&1 modprobe tuner >/dev/null 2>&1 modprobe cx8800 >/dev/null 2>&1 fi echo "TV_WIDTH=768" > /var/tvcard echo "TV_HEIGHT=576" >> /var/tvcard # CX88 driver reset color values to 0, so need to be forced. echo "TV_BRIGHTNESS=50" >> /var/tvcard echo "TV_CONTRAST=50" >> /var/tvcard echo "TV_HUE=100" >> /var/tvcard echo "TV_SATURATION=75" >> /var/tvcard fi TVIN_OPT= if test -n "$TVIN_STANDARD" -a -n "$TVIN_SUB_STANDARD"; then TVIN_OPT="$TVIN_STANDARD=$TVIN_SUB_STANDARD" fi modprobe tuner $TVIN_OPT >/dev/null 2>&1 modprobe tvaudio >/dev/null 2>&1 modprobe msp3400 >/dev/null 2>&1 modprobe tda7432 >/dev/null 2>&1 modprobe tda9875 >/dev/null 2>&1 modprobe tda9887 $TVIN_OPT >/dev/null 2>&1 modprobe tlv320aic23b >/dev/null 2>&1 exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/34_dvbcard0000755000175000017500000000300010630554150021733 0ustar benben#!/bin/sh # # setup dvb cards # # runlevels: geexbox, debug, install echo "### Setting up DVB card ###" # DVB frontends drivers are auto-loaded by main device drivers # PCI DVB Devices if grep -q '0400: 109e:' /tmp/pci; then # BT8x8 Card modprobe dvb-bt8xx >/dev/null 2>&1 modprobe dst >/dev/null 2>&1 elif grep -q '0480: 1131:' /tmp/pci; then # SAA7134 Card modprobe saa7134-dvb >/dev/null 2>&1 # SAA7146 Cards modprobe saa7146 >/dev/null 2>&1 modprobe saa7146_vv >/dev/null 2>&1 modprobe dvb-ttpci >/dev/null 2>&1 modprobe budget >/dev/null 2>&1 modprobe budget-ci >/dev/null 2>&1 modprobe budget-av >/dev/null 2>&1 elif grep -q '0280: 13d0:' /tmp/pci; then # B2C2 Cards modprobe budget >/dev/null 2>&1 modprobe b2c2-flexcop-pci >/dev/null 2>&1 modprobe b2c2-flexcop >/dev/null 2>&1 elif grep -q '0480: 14f1:88' /tmp/pci; then # Conexant CX88 Card modprobe cx88-blackbird >/dev/null 2>&1 modprobe cx88-dvb >/dev/null 2>&1 elif grep -q '0480: 0432:' /tmp/pci; then # SCM Pluto2 Card modprobe pluto2 >/dev/null 2>&1 fi # allow cold USB DVB devices time to load firmware if test -n "`dmesg | grep 'dvb-usb.*cold state'`"; then for I in 1 2 3 4 5 6 7 8 9 10; do # Loaded firmware, or failed to load firmware, so exit test -n "`dmesg | grep -e 'dvb-usb.*warm state' -e 'dvb-usb.*did not find firmware'`" && break sleep 1 done fi # ensure that DVB card has been discovered if test -n "`dmesg | grep 'DVB: registering new adapter'`"; then echo -n "" > /var/dvbcard fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/48_lirc0000755000175000017500000000164410630554150021300 0ustar benben#!/bin/sh # # setup lirc # # runlevels: geexbox, debug echo "### Starting LIRC daemon ###" # check for remote: if not found or invalid, use default remote REMOTE=`sed -n "s/.*remote=\([^ ]*\).*/\1/p" /proc/cmdline` if test -z "$REMOTE" \ -o ! -f "/etc/lirc/lircrc_$REMOTE" \ -o ! -f "/etc/lirc/lircd_$REMOTE.conf"; then REMOTE="atiusb" fi # check for receiver: if not found or invalid, use default receiver RECEIVER=`sed -n "s/.*receiver=\([^ ]*\).*/\1/p" /proc/cmdline` if test -z "$RECEIVER" \ -o ! -f "/etc/lirc/lircd_$RECEIVER"; then RECEIVER="atiusb" fi cp -f "/etc/lirc/lircrc_$REMOTE" /etc/lircrc cp -f "/etc/lirc/lircd_$RECEIVER" /etc/lircd cp -f "/etc/lirc/lircd_$REMOTE.conf" /etc/lircd.conf . /etc/lircd # insert needed modules IFS='|' for module in $LIRC_MODULES; do eval "modprobe $module" >/dev/null 2>&1 done # start lircd lircd --driver=$LIRC_DRIVER --device=$LIRC_DEVICE exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/38_ndiswrapper0000755000175000017500000000061610630554150022702 0ustar benben#!/bin/sh # # Load ndiswrapper # # runlevels: geexbox, debug DIR=/etc/ndiswrapper if [ `ls $DIR | grep -c -e ".*"` -gt 0 ]; then echo "### Loading NdisWrapper drivers ###" for DRVDIR in $DIR/*; do [ ! -f "$DRVDIR/ndiswrapper" ] && continue cat "$DRVDIR/ndiswrapper" | while read FILE LN; do ln -s "$DRVDIR/$FILE" "$DRVDIR/$LN" done done modprobe ndiswrapper fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/50_networking0000755000175000017500000000613610630554150022530 0ustar benben#!/bin/sh # # setup the network # # runlevels: geexbox, debug echo "### Setting up network ###" wpa_config_gen() { cat > /etc/wpa_supplicant.conf <&1 | grep -q -e "Cell:" -e "Access Point:" } # get options test -f /etc/network || exit 1 . /etc/network test -z "$HOST" && HOST=0.0.0.0 if [ -x /usr/bin/iwconfig ]; then for i in `iwconfig 2>&1 | grep '^[^\ ]' | grep -v '^lo' | cut -f1 -d' '`; do ifconfig $i up >/dev/null 2>&1 done WIFI=`iwconfig 2>&1 | grep '^[^\ ]' | grep -v "no wireless extensions" | cut -f1 -d' ' | head -n 1` ETH=`iwconfig 2>&1 | grep '^[^\ ]' | grep -v '^lo' | grep "no wireless extensions" | cut -f1 -d' ' | head -n 1` else ETH=eth0 fi if test -x /usr/bin/freevo; then # bring lo up and add a route for MBUS ifconfig lo 127.0.0.1 up route add -net 224.255.222.240 netmask 255.255.255.255 lo fi ( # select device if test $PHY_TYPE = wifi -o $PHY_TYPE = auto; then DEV=$WIFI if test -n "$DEV"; then test -n "$WIFI_MODE" && iwconfig "$DEV" mode "$WIFI_MODE" test -n "$WIFI_CHANNEL" && iwconfig "$DEV" channel "$WIFI_CHANNEL" test -n "$WIFI_ESSID" && iwconfig "$DEV" essid "$WIFI_ESSID" if test $WIFI_ENC = WEP; then test -n "$WIFI_KEY" && iwconfig "$DEV" key "$WIFI_KEY" elif test $WIFI_ENC = WPA; then if test -x /usr/bin/wpa_supplicant; then if test ! -f /etc/wpa_supplicant.conf; then wpa_config_gen "$WIFI_ESSID" "$WIFI_KEY" fi wpa_supplicant -B -w -i $DEV -c /etc/wpa_supplicant.conf -D $WPA_DRV fi if test -x /usr/bin/iwpriv; then # WPA may not be up, try using iwpriv as well iwpriv $DEV set AuthMode=WPAPSK >/dev/null 2>&1 iwpriv $DEV set EncrypType=TKIP >/dev/null 2>&1 iwpriv $DEV set WPAPSK="$WIFI_KEY" >/dev/null 2>&1 fi fi fi if [ $PHY_TYPE = auto ]; then COUNT=0 while [ $COUNT -lt 10 ]; do wifi_connection_up $DEV && break sleep 1 COUNT=$((COUNT + 1)) done wifi_connection_up $DEV || unset DEV fi fi if test $PHY_TYPE = ethernet -o $PHY_TYPE = auto -a -z "$DEV"; then DEV=$ETH fi test -n "$DEV" || exit 1 [ -n "$SUBNET" ] && NETMASK="netmask $SUBNET" # bring interface up if ifconfig $DEV $HOST $NETMASK >/dev/null 2>&1; then if test $HOST = 0.0.0.0; then udhcpc -H geexbox -n -i $DEV >/dev/null 2>&1 && NET=yes test "$NET" != yes && ifconfig $DEV 192.168.0.54 netmask 255.255.255.0 && NET=yes else metric=0 for i in $GATEWAY; do route add default gw $i dev $DEV metric $((metric++)) done NET=yes fi echo "" > /var/ifup fi if test "$UPNP" = "yes"; then # bring lo up and add UPnP multicast route ifconfig lo 127.0.0.1 route add -net 239.0.0.0 netmask 255.0.0.0 $DEV fi # adding DNS server if [ "$NET" = yes ]; then for i in $DNS_SERVER; do echo "nameserver $i" >> /etc/resolv.conf done fi )& exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/56_nfs0000755000175000017500000000122310630554150021125 0ustar benben#!/bin/sh # # mount nfs shares # # runlevels: geexbox, debug IFS=' ' if test -f /etc/nfs; then echo "### Mounting NFS shares ###" ( while [ ! -f /var/ifup ]; do sleep 1 done while true; do for MOUNTS in `grep -v "^#" /etc/nfs | grep -v "^$"`; do SRV="`echo $MOUNTS | sed 's/[ ]*\([^ ]*\)[ ]*.*/\1/'`" DIR="`echo $MOUNTS | sed 's/[ ]*[^ ]*[ ]*\([^ ]*\)/\1/'`" if [ ! -e "/mnt/nfs/$DIR" ]; then mkdir -p "/mnt/nfs/$DIR" mount -t nfs -o ro,nolock,nfsvers=2 "$SRV" "/mnt/nfs/$DIR" >/dev/null 2>&1 || rmdir -p "/mnt/nfs/$DIR" fi done sleep 180 done )& fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/79_mp-netstream0000755000175000017500000001046410630554150022767 0ustar benben#!/bin/sh # # Network Stream Setting # # runlevels: geexbox, debug CONF=/etc/netstream TMP=/tmp/streamtmp [ -f /etc/network -a -f $CONF ] || exit 1 . /etc/network # Disable streams if not utilized. test "$SHOUTCAST" = "no" -a "$SHOUTCASTTV" = "no" -a "$ICECAST" = "no" -a `grep -c ^STREAM $CONF` -eq 0 -a `grep -c ^EXTM3U $CONF` -eq 0 && exit 1 echo "### Network Stream Configuration ###" DAY=`date '+%d'` MONTH=`date '+%m'` YEAR=`date '+%Y'` year=`date '+%y'` BASEDIR="/mnt/Network Streams" # network stream DIR="$BASEDIR" for I in `grep "^STREAM" $CONF | sed "s# #%20#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" URL="$(echo $I |sed -e "s#^STREAM=\"\(.*\)\":.*#\1#" -e "s#%DD#$DAY#g" -e "s#%MM#$MONTH#g" -e "s#%YY#$YEAR#g" -e "s#%yy#$year#g")" FILE="$(echo $I |sed -e "s#^STREAM=\"\(.*\)\":\(.*\)#\2#" -e "s#%20# #g" -e "s#/# #g")" echo "$URL" > "$DIR/$FILE.pls" done SC_TUNE=$(sed -n -e "s#^SHOUTCASTTUNE_URI=\"\(.*\)\"#\1#p" $CONF) ( while [ ! -f /var/ifup ]; do sleep 1 done if [ "$ICECAST" = "yes" ]; then # icecast radio unset FILE URL rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^ICECAST_URI=\"\(.*\)\"#\1#p" $CONF` || echo "" > $TMP DIR="$BASEDIR/Icecast Radio" for I in `sed -n -e "s#.*\(.*\).*#\1#p" -e "s#.*\(.*\).*#\1#p" $TMP | sed "s# #%20#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" [ `echo $I | grep -c -e "://"` -gt 0 ] && URL="$I" [ `echo $I | grep -c -e "://"` -eq 0 ] && FILE="$(echo $I | sed -e "s#%20# #g" -e "s#/# #g")" if [ -n "$FILE" -a -n "$URL" ]; then echo "$URL" > "$DIR/$FILE.pls" unset FILE URL fi done fi if [ "$SHOUTCAST" = "yes" ]; then # shoutcast radio for GENRE in `sed -n -e "s#^SHOUTCAST_GENRE=\"\(.*\)\"#\1#p" $CONF`; do rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^SHOUTCAST_URI=\"\(.*\)\"#\1$GENRE#p" $CONF` || echo "" > $TMP DIR="$BASEDIR/SHOUTcast Radio/`echo $GENRE | sed -e "s#/#-#g" -e "s#%20# #g" -e "s#%26#&#g"`" for I in `sed "s#\&#\&#g" $TMP |sed -n "s#.*name=\"\([^\"]*\)\".*id=\"\([0-9]*\)\".*#\1_TAG_\2#p"| sed -e "s#\ #_#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" FILE="$(echo $I | sed -e "s#\(.*\)_TAG_[0-9]*#\1#" | sed -e "s#[_/]# #g" -e "s#://##g")" URL="$SC_TUNE?id=$(echo $I | sed -e "s#.*_TAG_\([0-9]*\)#\1#")" echo "$URL" > "$DIR/$FILE.pls" done done fi if [ "$SHOUTCASTTV" = "yes" ]; then # SHOUTcast TV content filter if [ -n "$BLACKLIST" ]; then BL="-v" for I in $BLACKLIST; do BL="$BL -e genre=\"[^\"]*$I[^\"]*\"" done else # Accept all Genre BL="-e genre=\"[^\"]*\"" fi if [ -n "$WHITELIST" ]; then for I in $WHITELIST; do WL="$WL -e genre=\"[^\"]*$I[^\"]*\"" done else # Accept all Genre WL="-e genre=\"[^\"]*\"" fi # SHOUTcast TV rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^SHOUTCASTTV_URI=\"\(.*\)\"#\1#p" $CONF` || echo "" > $TMP DIR="$BASEDIR/SHOUTcast TV" for I in `grep -i $BL $TMP | grep -i $WL | sed "s#\&#\&#g" | sed -n "s#.*name=\"\([^\"]*\)\".*id=\"\([0-9]*\)\".*#\1_TAG_\2#p"|sed "s#\ #_#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" FILE="$(echo $I | sed -e "s#\(.*\)_TAG_[0-9]*#\1#" | sed -e "s#[_/]# #g" -e "s#://##g")" URL="$SC_TUNE?id=$(echo $I | sed -e "s#.*_TAG_\(.*\)#\1#")" echo "$URL" > "$DIR/$FILE.pls" done fi # extended m3u playlists unset FILE URL for J in `grep "^EXTM3U" $CONF | sed "s# #%20#g"`; do DIR="$BASEDIR/$(echo $J | sed -e "s#^EXTM3U=\".*\":\(.*\)#\1#" -e "s#%20# #g")" M3UURL="$(echo $J | sed "s#^EXTM3U=\"\(.*\)\":.*#\1#")" rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP "$M3UURL" || continue for I in `sed -n -e "s/#EXTINF:[-]*[0-9]*,\(.*\)/\1/p" -e "s#\(.*\)://\(.*\)#\1://\2#p" $TMP | sed "s# #%20#g"`; do [ -n "$FILE" ] || FILE="$(echo $I | sed -e "s#%20# #g" -e "s#/# #g")" [ -n "$URL" ] || URL="$(echo $I | sed -n -e "s#\(.*\)://\(.*\)#\1://\2#p" | sed -e "s#%DD#$DAY#g" -e "s#%MM#$MONTH#g" -e "s#%YY#$YEAR#g" -e "s#%yy#$year#g")" if [ -n "$FILE" -a -n "$URL" ]; then [ ! -d "$DIR" ] && mkdir -p "$DIR" echo "$URL" > "$DIR/$FILE.pls" unset FILE URL fi done done )& exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/51_olsrd0000755000175000017500000000025410630554150021460 0ustar benben#!/bin/sh # # launch olsr daemon # # runlevels: geexbox, debug if [ -f /sbin/olsrd ]; then echo "### Launching OLSR daemon ###" /sbin/olsrd >/dev/null 2>&1 fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/05_lspci0000755000175000017500000000013110630554150021440 0ustar benben#!/bin/sh # # cache pci devices # # runlevels: geexbox, debug, install lspci > /tmp/pci geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/78_powernow0000755000175000017500000000036510630554150022231 0ustar benben#!/bin/sh # # powernow deamon # # runlevels: geexbox, debug if [ -x /usr/bin/powernowd \ -a -f /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq ]; then echo "### Starting PowerNow! daemon ###" powernowd >/dev/null 2>&1 fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/58_samba0000755000175000017500000000167310630554150021435 0ustar benben#!/bin/sh # # mount samba shares # # runlevels: geexbox, debug if test -x /usr/bin/smbmount -a -f /etc/network; then echo "### Mounting Samba shares ###" ( . /etc/network while [ ! -f /var/ifup ]; do sleep 1 done OPT="-N" test -n "$SMB_USER" && OPT="-U$SMB_USER%$SMB_PWD" saveifs=$IFS while true; do smbtree "$OPT" | while read mounts; do ( IFS=/ set $mounts name=$1 ip=$2 shift 2 while [ $# -gt 0 ]; do dir="/mnt/shares/$name/$1" if [ ! -e "$dir" ]; then mkdir -p "$dir" mount "//$ip/$1" "$dir" -t cifs -o "ro,iocharset=utf8,user=$SMB_USER,pass=$SMB_PWD" || smbmount "//$name/$1" "$dir" -o "ro,iocharset=utf8,ip=$ip,username=$SMB_USER,passwd=$SMB_PWD" || rmdir -p "$dir" fi shift done IFS=$saveifs )& done sleep 180 done )>/dev/null 2>&1 & fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/60_sleeptimer0000755000175000017500000000023510630554150022505 0ustar benben#!/bin/sh # # start sleeptimer script # runlevels: geexbox echo "0" > /var/downtime echo "### starting sleeptimer daemon ###" /usr/bin/sleeptimer & exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/init.d/30_tvout0000755000175000017500000000106010630554150021507 0ustar benben#!/bin/sh # # setup the tvout # # runlevels: geexbox, debug, install test -f /etc/tvout || exit 1 echo "### Setting up TV-Out ###" . /etc/tvout atitvout $TVOUT_STANDARD auto >/dev/null 2>&1 test "`atitvout active 2>/dev/null | sed -n 's/TV.*/TV/p'`" = "TV" && echo "" > /var/tvout # nvidia and s3 cards cannot detect tv devices, and disable vga when enabled. if [ $TVOUT_ENABLE = yes ]; then nvtv $NVTV_ON >/dev/null 2>&1 s3switch -q tv $TVOUT_STANDARD >/dev/null 2>&1 i810tvout $I810_TVON >/dev/null 2>&1 echo "" > /var/tvout fi exit 0 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/ndiswrapper/0000755000175000017500000000000010630554150021252 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/file_ext0000644000175000017500000000026010630554150020434 0ustar benben3gp aac asf avi bin dat divx dvr-ms flac flv ifo iso m1v m2v m4a m4p m4v mka mkv mov mp2 mp3 mp4 mp4v mpc mpe mpeg mpg nsv ogg ogm qt ra rm rmvb ts vdr vob vro wav wma wmv y4m geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/list_ext0000644000175000017500000000002510630554150020467 0ustar benbenasx m3u pls ram smil geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/subs_ext0000644000175000017500000000007010630554150020470 0ustar benbenass dks idx mpl pjs psb scr srt ssa stl sub tts vsf zeg geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/modules0000644000175000017500000000331410630554150020310 0ustar benben# Drivers for Wireless cards ipw2100 ipw2200 rt2400 rt2500 rt61 rt73 ieee80211softmac bcm43xx acx ath_pci atmel atmel_pci zd1201 zd1211rw # Drivers for DVB cards ttusb_dec dvb-ttusb-budget dvb-usb-vp7045 dvb-usb-vp702x dvb-usb-umt-010 dvb-usb-nova-t-usb2 dvb-usb-ttusb2 dvb-usb-dtt200u dvb-usb-digitv dvb-usb-dibusb-mc dvb-usb-dibusb-mb dvb-usb-dib0700 dvb-usb-cxusb dvb-usb-a800 cinergyT2 b2c2-flexcop-usb pvrusb2 # Drivers for PnP ISA sound cards snd-interwave-stb snd-sb16 snd-sbawe snd-sscape # These are modules of some ISA non-PnP devices. # If some of these modules are needed uncomment the line and add correct # parameters for the module. # Drivers for ISA network adapter # wd mem_end=0xca000 mem=0xc8000 irq=5 io=0x2a0 # smc-ultra io=0x2a0 irq=7 # Drivers for ISA sound cards # Some ISA PnP cards may work fine, for other ones you need to add the # correct modules parameters. # snd-tea6330t # snd-ad1816a # snd-ad1848 # snd-cs4231 # snd-cs4232 # snd-cs4236 # snd-es1688 # snd-gusclassic # snd-gusextreme # snd-gusmax # snd-interwave # snd-opti92x-ad1848 # snd-opti92x-cs4231 # snd-opti93x # snd-es968 # snd-sb8 # snd-als100 # snd-azt2320 # snd-cmi8330 # snd-dt019x # snd-es18xx # snd-opl3sa2 # snd-sgalaxy # snd-wavefront # Drivers for ISA radio cards # Some ISA PnP cards may work fine, for other ones you need to add the # correct modules parameters. # radio-aimslab io=0x20f # or 0x30f # radio-sf16fmi io=0x284 # or 0x384 # radio-rtrack2 io=0x30c # or 0x20c # radio-aztech io=0x350 # or 0x358 # radio-gemtek io=0x34c # or 0x20c, 0x30c, 0x24c, io=0x248 # radio-terratec io=0x590 # or 0x591 # radio-trust io=0x350 # or 0x358 # radio-typhoon io=0x316 mutefreq=87000 # or io=0x336 # radio-zoltrix io=0x20c # or 0x30c geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/tvcard0000644000175000017500000000250110630554150020120 0ustar benben# # TV Card Options # # TV card model (AUTO for autodetection or look at the following urls) # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.bttv;filenode=-1;style=raw # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.cx88;filenode=-1;style=raw # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.saa7134;filenode=-1;style=raw TV_CARD=AUTO # TV tuner (AUTO for autodetection or look at the following url) # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.tuner;filenode=-1;style=raw TV_TUNER=AUTO # TV Input Standard (ntsc/ntsc-m/ntsc-jp/pal/pal-bg/pal-dk/pal-i/pal-m/pal-n/ # pal-nc/pal-60/secam/secam-l/secam-dk) # Some card (SAA7134) need a special way to set the sub-mode. # Example for using secam-dk #TVIN_STANDARD=secam #TVIN_SUB_STANDARD=d # TVIN_STANDARD=pal # TV Channels # Syntax : CHAN="Channel Frequency:Channel Title" # Example: #CHAN="29:France 2" #CHAN="K08:Canal +" # TV Channels List # Available : us-bcast, us-cable, us-cable-hrc, japan-bcast, japan-cable, # europe-west, europe-east, italy, newzealand, australia, # ireland, france, china-bcast, southafrica, argentina, # australia-optus, russia CHANLIST=europe-west geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/audio0000644000175000017500000000144210630554150017741 0ustar benben# Soundcard Configuration File # Soundcard's ID (0 for first card, 1 for second, ...) ALSA_CARD="0" # Output mode (SPDIF or analog) SOUNDCARD_MODE="analog" # AC3 decoder mode (none, ac3, dts or ac3dts) # note: in analog mode this option is ignored and defaults to none. AC3_DECODER="none" # IEC958 Playback AC97-SPSA Mode: # 0. PCM1 # 1. PCM2,PCM1 (rear) # 2. Centre and LFE # 3. PCM3,Modem,Dedicated S/PDIF # For SPDIF most users will want 0, but some users may need 3. AC97_SPSA="0" # Playback channels # 2 - Stereo # 4 - Surround # 6 - Full 5.1 # note: in SPDIF and hardware AC3 decoder mode this option is ignored. CHANNELS="2" # SB Live/Audigy Analog/Digital Output Mode: # 0: Suitable for some older SB Live! cards # 1: Suitable for newer SB Live! and all Audigy cards SBL_AUDIGY="1" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/tvout0000644000175000017500000000256110630554150020024 0ustar benben# TVOut Configuration File # # Generic Options # # TV Output for cards that cannot autodetect (nvidia/s3) TVOUT_ENABLE=no # TV Output Standard (ntsc/pal/secam) TVOUT_STANDARD=pal # TV Output Aspect (4:3 or 16:9) TVOUT_ASPECT="4:3" # # NvTV Options - For n'Vidia cards ONLY # # Connector's Type (auto/composite/svideo/both/convert) CTR=convert # TV Resolution (pixels) TV_RES="800,600" # Monitor's Resolution (pixels / frequency) MONITOR_RES="800x600@75" # Scan Size (Tiny/Small/Normal/Large/Huge) SCAN=Large # Image Position (TVPositionX/Y:+/-x,y) POSITION="TVPositionX:0,0" # Command line NVTV_ON="-t -c -S $TVOUT_STANDARD -r $TV_RES -s $SCAN -C $CTR --set $POSITION" NVTV_OFF="-m -s $MONITOR_RES" # # i810tvout Options - For Intel i810/i815 cards ONLY # # TV Format (NTSC_M, NTSC_M_J, PAL_B, PAL_D, PAL_G, PAL_H, PAL_I, PAL_M, PAL_N) I810_FORMAT="PAL_M" # TV Mode (see output of --list-modes in debug) I810_MODE=6 # Horizontal position, valid range is from -50 to 50. I810_H=0 # Vertical position, valid range is from -50 to 50. I810_V=0 # Brightness (black level), valid range is from -50 to 50. I810_BRIGHT=0 # Contrast, valid range is from -50 to 50. I810_CONTRAST=0 # Command line I810_TVON="--tv_enable --tv_mode $I810_MODE --tv_format $I810_FORMAT --h_position $I810_H --v_position $I810_V --tv_brightness $I810_BRIGHT --tv_contrast $I810_CONTRAST" I810_TVOFF="--crt_enable" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/0000755000175000017500000000000010630554151017646 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_D-100000644000175000017500000000546210630554150021536 0ustar benbenbegin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = EJECT config = run /usr/bin/eject end begin prog = mplayer button = ANGLE config = run /usr/bin/tvswitch end begin prog = mplayer button = INDEX config = set_menu jump_to end begin prog = mplayer button = A-B config = osd end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 1 config = seek -10 end begin prog = mplayer button = 2 repeat = 1 config = seek 10 end begin prog = mplayer button = 4 repeat = 3 config = seek -60 end begin prog = mplayer button = 5 repeat = 3 config = seek 60 end begin prog = mplayer button = 7 repeat = 1 config = sub_delay -0.2 end begin prog = mplayer button = 8 repeat = 1 config = sub_delay +0.2 end begin prog = mplayer button = 3 repeat = 1 config = brightness 1 end begin prog = mplayer button = 6 repeat = 1 config = brightness -1 end begin prog = mplayer button = 0 repeat = 1 config = sub_visibility end begin prog = mplayer button = MENU config = set_menu main end begin prog = mplayer button = TITLE config = set_menu open_file end begin prog = mplayer button = SUBTITLE config = set_menu sub_sel end begin prog = mplayer button = AUDIO config = set_menu audio_sel end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = ACTIVE_MENU repeat = 0 config = menu toggle end begin prog = mplayer button = EXIT config = menu cancel end begin prog = mplayer button = LEFT_RW repeat = 2 config = volume -1 end begin prog = mplayer button = RIGHT_FW repeat = 2 config = volume 1 end begin prog = mplayer button = UP_FW repeat = 3 config = menu up end begin prog = mplayer button = DOWN_RW repeat = 3 config = menu down end begin prog = mplayer button = OK_PLAY config = menu ok end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = SKIP_BACK repeat = 2 config = pt_step -1 end begin prog = mplayer button = SKIP_FORWARD repeat = 2 config = pt_step 1 end begin prog = fbi button = EXIT config = q end begin prog = fbi button = RIGHT_FW config = n end begin prog = fbi button = LEFT_RW config = b end begin prog = fbi button = UP_FW config = + end begin prog = fbi button = DOWN_RW config = - end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = ANGLE config = h end begin prog = fbi button = INDEX config = i end begin prog = fbi button = A-B config = v end begin prog = fbi button = MUTE config = a end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_LG0000644000175000017500000000313510630554150021432 0ustar benbenbegin prog = mplayer button = red repeat = 0 config = seek -60 end begin prog = mplayer button = green repeat = 0 config = seek 60 end begin prog = mplayer button = ok repeat = 0 config = PAUSE end begin prog = mplayer button = mute repeat = 0 config = quit end begin prog = mplayer button = blue repeat = 1 config = VOLUME +1 end begin prog = mplayer button = yellow repeat = 1 config = VOLUME -1 end begin prog = mplayer button = vol+ repeat = 0 config = menu ok end begin prog = mplayer button = vol- repeat = 0 config = menu cancel end begin prog = mplayer button = pr+ repeat = 0 config = menu up end begin prog = mplayer button = pr- repeat = 0 config = menu down end begin prog = mplayer button = sleep repeat = 1 config = menu toggle end begin prog = mplayer button = time repeat = 1 config = osd end begin prog = mplayer button = tv config = run /usr/bin/tvswitch end begin prog = irpty button = psm config = p: end begin prog = irpty button = picture config = l: end begin prog = fbi button = ok config = p end begin prog = fbi button = vol+ config = n end begin prog = fbi button = vol- config = b end begin prog = fbi button = mute config = q end begin prog = fbi button = sleep config = v end begin prog = fbi button = pr+ config = + end begin prog = fbi button = pr- config = - end begin prog = fbi button = tv config = a end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_Medion-X100000644000175000017500000001064610630554150022716 0ustar benbenbegin prog = mplayer button = channel_list config = set_menu tv_chan end begin prog = mplayer button = vcr config = set_menu record end begin prog = mplayer button = radio config = set_menu radio_chan end begin prog = mplayer button = setup config = run /usr/bin/tvswitch end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -10 end begin prog = mplayer button = fast_forward repeat = 3 config = seek 10 end begin prog = mplayer button = previous repeat = 3 config = seek -120 end begin prog = mplayer button = next repeat = 3 config = seek 120 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = chan-down repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = chan-up repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = video_desktop config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = dvd_menu config = menu toggle end begin prog = mplayer button = dvd config = menu hide\nplay_dvd end begin prog = mplayer button = photo config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = right repeat = 2 config = menu ok end begin prog = mplayer button = left repeat = 2 config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = red repeat = 3 config = sub_pos -1 end begin prog = mplayer button = green config = set_menu view_sleeptimer end begin prog = mplayer button = blue repeat = 3 config = sub_pos +1 end begin prog = mplayer button = txt repeat = 3 config = sub_select end begin prog = mplayer button = dvd_audio repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = rec config = record end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = fullscreen config = set_menu aspect end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = delete config = d end begin prog = irpty button = ch_search config = o end begin prog = irpty button = rename config = d end begin prog = irpty button = snapshot config = c end begin prog = irpty button = acquire_image config = p end begin prog = irpty button = edit_image config = u end begin prog = fbi button = power config = q end begin prog = fbi button = right config = n end begin prog = fbi button = next config = n end begin prog = fbi button = left config = b end begin prog = fbi button = previous config = b end begin prog = fbi button = up config = + end begin prog = fbi button = down config = - end begin prog = fbi button = fullscreen config = a end begin prog = fbi button = dvd_menu config = h end begin prog = fbi button = tv config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = setup config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_RM-S60000644000175000017500000000256510630554150021742 0ustar benbenbegin prog = mplayer button = TAPE config = run /usr/bin/tvswitch end begin prog = mplayer button = CD_PAUSE config = pause end begin prog = mplayer button = CD_STOP config = quit end begin prog = mplayer button = CD_PLAY config = mute end begin prog = mplayer button = CD_PREV_TRACK repeat = 1 config = seek -120 end begin prog = mplayer button = CD_NEXT_TRACK repeat = 1 config = seek 120 end begin prog = mplayer button = SLEEP repeat = 1 config = seek -10 end begin prog = mplayer button = CD repeat = 1 config = seek 10 end begin prog = mplayer button = AMP_VOL_DOWN repeat = 2 config = volume -1 end begin prog = mplayer button = AMP_VOL_UP repeat = 5 config = volume 1 end begin prog = mplayer button = CD_EJECT config = osd end begin prog = mplayer button = AMP_POWER config = quit 166 end begin prog = mplayer button = TUNER config = menu toggle end begin prog = mplayer button = TUNER_SHIFT config = set_menu open_file end begin prog = mplayer button = VIDEO/AUX config = menu ok end begin prog = mplayer button = PHONO config = menu cancel end begin prog = mplayer button = TUNER_PRESET_+ repeat = 5 config = menu up end begin prog = mplayer button = TUNER_PRESET_- repeat = 5 config = menu down end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_RX-V8500000644000175000017500000000265410630554150022126 0ustar benbenbegin prog = mplayer button = F_TV config = run /usr/bin/tvswitch end begin prog = mplayer button = CD_PLAY config = pause end begin prog = mplayer button = CD_PAUSE/STOP repeat = 1 config = seek -120 end begin prog = mplayer button = CD_SEARCH_FWD repeat = 1 config = seek 120 end begin prog = mplayer button = TAPE_DIR_A repeat = 1 config = seek -10 end begin prog = mplayer button = TAPE_DIR_B repeat = 1 config = seek 10 end begin prog = mplayer button = CD_SEARCH_REV repeat = 1 config = volume -1 end begin prog = mplayer button = CD_SKIP_FWD repeat = 1 config = volume 1 end begin prog = mplayer button = TUNER_+ repeat = 1 config = volume 1 end begin prog = mplayer button = 8 repeat = 1 config = volume -1 end begin prog = mplayer button = CD_SKIP_REV config = osd end begin prog = mplayer button = CD_DISK_SKIP config = quit 166 end begin prog = TAPE_PLAY button = Info config = menu toggle end begin prog = mplayer button = TAPE_STOP config = set_menu open_file end begin prog = mplayer button = TAPE_FFWD config = menu ok end begin prog = mplayer button = TAPE_REWIND config = menu cancel end begin prog = mplayer button = TAPE_REC/PAUSE repeat = 1 config = menu up end begin prog = mplayer button = TAPE_DECK_A/B repeat = 1 config = menu down end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_animax0000644000175000017500000000267010630554150022410 0ustar benbenbegin prog = mplayer button = TV_DOWN config = run /usr/bin/tvswitch end begin prog = mplayer button = MENU_DOWN config = pause end begin prog = mplayer button = STOP_DOWN config = quit end begin prog = mplayer button = MUTE_DOWN config = mute end begin prog = mplayer button = 1_DOWN repeat = 1 config = seek -120 end begin prog = mplayer button = 3_DOWN repeat = 1 config = seek 120 end begin prog = mplayer button = REWIND_DOWN repeat = 1 config = seek -10 end begin prog = mplayer button = FORWARD_DOWN repeat = 1 config = seek 10 end begin prog = mplayer button = VOLUME_DOWN_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VOLUME_UP_DOWN repeat = 1 config = volume 1 end begin prog = mplayer button = BLUE_BUTTON_DOWN config = osd end begin prog = mplayer button = POWER_DOWN config = quit 166 end begin prog = mplayer button = RED_BUTTON_DOWN config = menu toggle end begin prog = mplayer button = GREEN_BUTTON_DOWN config = set_menu open_file end begin prog = mplayer button = LEFT_MOUSE_BUTTON_TOUCH_DOWN config = menu ok end begin prog = mplayer button = MOUSE_S repeat = 0 config = menu cancel end begin prog = mplayer button = LEFT_MOUSE_BUTTON_DOWN config = menu up end begin prog = mplayer button = RIGHT_MOUSE_BUTTON_DOWN config = menu down end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_askey0000644000175000017500000000340510630554150022244 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 5 config = pause end begin prog = mplayer button = FREEZE config = pause end begin prog = mplayer button = 8 repeat = 1 config = seek -120 end begin prog = mplayer button = 2 repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = seek 10 end begin prog = mplayer button = 1 repeat = 1 config = volume 1 end begin prog = mplayer button = 7 repeat = 1 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 1 config = volume 1 end begin prog = mplayer button = VOL_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VIDEO config = osd end begin prog = mplayer button = PREVIEW config = menu toggle end begin prog = mplayer button = PLAY config = set_menu open_file end begin prog = mplayer button = RECORD config = menu ok end begin prog = mplayer button = STOP config = menu cancel end begin prog = mplayer button = CH_UP repeat = 2 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 2 config = menu down end begin prog = mplayer button = FINE_UP(PLUS) repeat = 2 config = menu down end begin prog = mplayer button = FINE_DOWN(MINUS) repeat = 2 config = menu up end begin prog = mplayer button = 3 config = audio_delay 0.1 end begin prog = mplayer button = 9 config = audio_delay -0.1 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = ZOOM config = vo_fullscreen end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_atiusb0000644000175000017500000001126710630554150022424 0ustar benbenbegin prog = mplayer button = launch_setup config = run /usr/bin/tvswitch end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -120 end begin prog = mplayer button = fast_forward repeat = 3 config = seek 120 end begin prog = mplayer button = c repeat = 3 config = seek -10 end begin prog = mplayer button = d repeat = 3 config = seek 10 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = chan-down repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = chan-up repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = tv_on_demand config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = dvd-root_menu config = menu toggle end begin prog = mplayer button = web config = set_menu open_file end begin prog = mplayer button = dvd config = menu hide\nplay_dvd end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = drag config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = cursor-right config = menu ok end begin prog = mplayer button = mouse-right config = menu ok end begin prog = mplayer button = cursor-left config = menu cancel end begin prog = mplayer button = mouse-left config = menu cancel end begin prog = mplayer button = cursor-up repeat = 2 config = menu up end begin prog = mplayer button = mouse-up repeat = 6 config = menu up end begin prog = mplayer button = cursor-down repeat = 2 config = menu down end begin prog = mplayer button = mouse-down repeat = 6 config = menu down end begin prog = mplayer button = a repeat = 3 config = sub_pos -1 end begin prog = mplayer button = b repeat = 3 config = sub_pos +1 end begin prog = mplayer button = e repeat = 3 config = sub_select end begin prog = mplayer button = f repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = record config = record end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = max_window config = set_menu aspect end begin prog = mplayer button = media_library config = set_menu jump_to end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = irpty button = mouse-button_left config = set_menu properties end begin prog = fbi button = power config = q end begin prog = fbi button = cursor-right config = n end begin prog = fbi button = mouse-right config = n end begin prog = fbi button = fast_forward config = n end begin prog = fbi button = cursor-left config = b end begin prog = fbi button = mouse-left config = b end begin prog = fbi button = rewind config = b end begin prog = fbi button = cursor-up config = + end begin prog = fbi button = mouse-up config = + end begin prog = fbi button = cursor-down config = - end begin prog = fbi button = mouse-down config = - end begin prog = fbi button = max_window config = a end begin prog = fbi button = dvd-root_menu config = h end begin prog = fbi button = tv_on_demand config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_atiusb20000644000175000017500000000712510630554150022504 0ustar benbenbegin prog = mplayer button = hand config = run /usr/bin/tvswitch end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -120 end begin prog = mplayer button = ffwd repeat = 3 config = seek 120 end begin prog = mplayer button = c repeat = 3 config = seek -10 end begin prog = mplayer button = d repeat = 3 config = seek 10 end begin prog = mplayer button = chan-down config = seek -10 end begin prog = mplayer button = chan-up config = seek 10 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = info config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = timer config = menu toggle end begin prog = mplayer button = ati config = set_menu open_file end begin prog = mplayer button = dvd config = menu hide\nplay_dvd end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = check config = sub_visibility end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = cursor-right config = menu ok end begin prog = mplayer button = mouse-right config = menu ok end begin prog = mplayer button = cursor-left config = menu cancel end begin prog = mplayer button = mouse-left config = menu cancel end begin prog = mplayer button = cursor-up repeat = 2 config = menu up end begin prog = mplayer button = mouse-up repeat = 6 config = menu up end begin prog = mplayer button = cursor-down repeat = 2 config = menu down end begin prog = mplayer button = mouse-down repeat = 6 config = menu down end begin prog = mplayer button = e repeat = 3 config = sub_pos -1 end begin prog = mplayer button = f repeat = 3 config = sub_pos +1 end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = max_window config = set_menu aspect end begin prog = mplayer button = a config = set_menu jump_to end begin prog = mplayer button = b config = set_menu audio_sel end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = fbi button = power config = q end begin prog = fbi button = cursor-right config = n end begin prog = fbi button = mouse-right config = n end begin prog = fbi button = fast_forward config = n end begin prog = fbi button = cursor-left config = b end begin prog = fbi button = mouse-left config = b end begin prog = fbi button = rewind config = b end begin prog = fbi button = cursor-up config = + end begin prog = fbi button = mouse-up config = + end begin prog = fbi button = cursor-down config = - end begin prog = fbi button = mouse-down config = - end begin prog = fbi button = max_window config = a end begin prog = fbi button = dvd-root_menu config = h end begin prog = fbi button = tv_on_demand config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_avermedia0000644000175000017500000000324410630554150023066 0ustar benbenbegin prog = mplayer button = DISPLAY config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = CH_DOWN repeat = 3 config = seek -60 end begin prog = mplayer button = CH_UP repeat = 3 config = seek 60 end begin prog = mplayer button = VOL_DOWN repeat = 2 config = volume -2 end begin prog = mplayer button = VOL_UP repeat = 2 config = volume 2 end begin prog = mplayer button = TELETEXT config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = TV/FM config = menu toggle end begin prog = mplayer button = 0 config = set_menu open_file end begin prog = mplayer button = VIDEO config = menu hide\nplay_dvd end begin prog = mplayer button = TV/FM config = set_menu tv_settings end begin prog = mplayer button = PREVIEW config = set_menu view_img end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = 6 config = menu ok end begin prog = mplayer button = 4 config = menu cancel end begin prog = mplayer button = 2 repeat = 4 config = menu up end begin prog = mplayer button = 8 repeat = 4 config = menu down end begin prog = mplayer button = GREEN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = RED repeat = 3 config = sub_pos +1 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = FULLSCREEN config = set_menu aspect end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_cinergy14000000644000175000017500000000655610630554150023107 0ustar benbenbegin prog = mplayer button = KEY_GREEN config = run /usr/bin/tvswitch end begin prog = mplayer button = KEY_PAUSE config = pause end begin prog = mplayer button = KEY_PREVIOUS repeat = 3 config = seek -120 end begin prog = mplayer button = KEY_NEXT repeat = 3 config = seek 120 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = KEY_SELECT config = osd end begin prog = mplayer button = KEY_POWER config = quit 166 end begin prog = mplayer button = KEY_INFO config = menu toggle end begin prog = mplayer button = KEY_TEXT config = set_menu open_file end begin prog = mplayer button = KEY_RED config = menu hide\nplay_dvd end begin prog = mplayer button = KEY_EPG config = set_menu view_img end begin prog = mplayer button = KEY_PLAY config = seek 0 end begin prog = mplayer button = KEY_OK config = menu ok end begin prog = mplayer button = KEY_RIGHT config = menu ok end begin prog = mplayer button = KEY_LEFT config = menu cancel end begin prog = mplayer button = KEY_UP repeat = 2 config = menu up end begin prog = mplayer button = KEY_DOWN repeat = 2 config = menu down end begin prog = mplayer button = KEY_BLUE repeat = 3 config = sub_select end begin prog = mplayer button = KEY_YELLOW repeat = 3 config = switch_audio end begin prog = mplayer button = KEY_MUTE config = mute end begin prog = mplayer button = KEY_RECORD config = record end begin prog = mplayer button = KEY_STOP config = quit end begin prog = mplayer button = KEY_VIDEO config = set_menu aspect end begin prog = mplayer button = KEY_REFRESH config = set_menu jump_to end begin prog = mplayer button = KEY_8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = KEY_2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = KEY_4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = KEY_6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = KEY_0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = KEY_5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = KEY_7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = KEY_9 repeat = 2 config = pt_step +1 end begin prog = irpty button = KEY_3 config = p end begin prog = irpty button = KEY_1 config = l end begin prog = fbi button = KEY_POWER config = q end begin prog = fbi button = KEY_RIGHT config = n end begin prog = fbi button = KEY_NEXT config = n end begin prog = fbi button = KEY_LEFT config = b end begin prog = fbi button = KEY_PREVIOUS config = b end begin prog = fbi button = KEY_UP config = + end begin prog = fbi button = KEY_DOWN config = - end begin prog = fbi button = KEY_PLAY config = p end begin prog = fbi button = KEY_PAUSE config = p end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_creative0000644000175000017500000000240710630554150022733 0ustar benbenbegin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = rrev repeat = 1 config = seek -120 end begin prog = mplayer button = ffwd repeat = 1 config = seek 120 end begin prog = mplayer button = last repeat = 1 config = seek -10 end begin prog = mplayer button = next repeat = 1 config = seek 10 end begin prog = mplayer button = vol- repeat = 1 config = volume -1 end begin prog = mplayer button = vol+ repeat = 1 config = volume 1 end begin prog = mplayer button = 1 config = osd end begin prog = mplayer button = shift config = quit 166 end begin prog = mplayer button = start config = menu toggle end begin prog = mplayer button = eject config = set_menu open_file end begin prog = mplayer button = 6 config = menu ok end begin prog = mplayer button = 4 config = menu cancel end begin prog = mplayer button = 2 repeat = 1 config = menu up end begin prog = mplayer button = 8 repeat = 1 config = menu down end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_digimatrix0000644000175000017500000001030610630554150023267 0ustar benbenbegin prog = mplayer button = 0 config = dvdnav 5 end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = pre repeat = 2 config = seek -120 end begin prog = mplayer button = next repeat = 2 config = seek 120 end begin prog = mplayer button = step- repeat = 2 config = seek -10 end begin prog = mplayer button = step+ repeat = 2 config = seek 10 end begin prog = mplayer button = ch+ repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = ch- repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = vol- repeat = 2 config = volume -1 end begin prog = mplayer button = vol+ repeat = 2 config = volume 1 end begin prog = mplayer button = ui_on_off config = osd end begin prog = mplayer button = os_start config = quit 166 end begin prog = mplayer button = rec config = set_menu recorder end begin prog = mplayer button = menu config = menu toggle end begin prog = mplayer button = dvd_vcd config = menu hide\nplay_dvd\nplay_vcd end begin prog = mplayer button = music config = menu hide\nplay_cdda end begin prog = mplayer button = photo config = set_menu open_file end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = enter config = menu ok end begin prog = mplayer button = right config = menu ok end begin prog = mplayer button = left config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = 1 repeat = 2 config = set_menu options end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 3 repeat = 2 config = sub_select end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 7 repeat = 2 config = set_menu controls end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 9 repeat = 2 config = set_menu properties end begin prog = mplayer button = subtitle repeat = 2 config = sub_visibility end begin prog = mplayer button = dvd_audio repeat = 2 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = ui_size config = set_menu aspect end begin prog = mplayer button = home config = set_menu jump_to end begin prog = irpty button = 1 repeat = 2 config = p end begin prog = irpty button = 4 repeat = 2 config = l end begin prog = irpty button = back config = u end begin prog = fbi button = stop config = q end begin prog = fbi button = up config = u end begin prog = fbi button = down config = d end begin prog = fbi button = left config = < end begin prog = fbi button = right config = > end begin prog = fbi button = next config = n end begin prog = fbi button = step+ config = n end begin prog = fbi button = pre config = b end begin prog = fbi button = step- config = b end begin prog = fbi button = ch+ config = + end begin prog = fbi button = vol+ config = + end begin prog = fbi button = ch- config = - end begin prog = fbi button = vol- config = - end begin prog = fbi button = enter config = a end begin prog = fbi button = ui_size config = a end begin prog = fbi button = menu config = h end begin prog = fbi button = ui_on_off config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = subtitle config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_digimatrixmk20000644000175000017500000000733210630554150023706 0ustar benbenbegin prog = mplayer button = 0 config = set_menu controls end begin prog = mplayer button = tv_dvr config = set_menu tv_settings end begin prog = mplayer button = dvd_menu config = menu hide\nplay_dvd end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rew repeat = 3 config = seek -120 end begin prog = mplayer button = fwd repeat = 3 config = seek 120 end begin prog = mplayer button = step- repeat = 3 config = seek -10 end begin prog = mplayer button = step+ repeat = 3 config = seek 10 end begin prog = mplayer button = ch+ repeat = 3 config = tv_step_channel +1 end begin prog = mplayer button = ch- repeat = 3 config = tv_step_channel -1 end begin prog = mplayer button = vol- repeat = 2 config = volume -1 end begin prog = mplayer button = vol+ repeat = 2 config = volume 1 end begin prog = mplayer button = ui_size config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = back_fwd config = menu toggle end begin prog = mplayer button = fm config = set_menu open_file end begin prog = mplayer button = music config = play_cdda end begin prog = mplayer button = pictures config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = right config = menu ok end begin prog = mplayer button = left config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = 1 repeat = 3 config = sub_pos -1 end begin prog = mplayer button = 4 repeat = 3 config = sub_pos +1 end begin prog = mplayer button = 2 repeat = 3 config = sub_select +1 end begin prog = mplayer button = 5 repeat = 3 config = sub_select end begin prog = mplayer button = 8 repeat = 3 config = sub_select -1 end begin prog = mplayer button = 3 repeat = 3 config = vobsub_lang +1 end begin prog = mplayer button = 6 repeat = 3 config = vobsub_lang -1 end begin prog = mplayer button = 7 repeat = 3 config = panscan -0.1 end begin prog = mplayer button = 9 repeat = 3 config = panscan +0.1 end begin prog = mplayer button = pc repeat = 3 config = sub_visibility end begin prog = mplayer button = repeat repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = ui_size config = set_menu aspect end begin prog = mplayer button = video config = play_vcd end begin prog = irpty button = step- config = p end begin prog = irpty button = step+ config = l end begin prog = fbi button = stop config = q end begin prog = fbi button = right config = n end begin prog = fbi button = step+ config = n end begin prog = fbi button = left config = b end begin prog = fbi button = step- config = b end begin prog = fbi button = up config = + end begin prog = fbi button = down config = - end begin prog = fbi button = ui_size config = a end begin prog = fbi button = menu config = h end begin prog = fbi button = tv_dvr config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = 0 config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_flytv-prime0000644000175000017500000000341710630554150023411 0ustar benbenbegin prog = mplayer button = ZOOM config = run /usr/bin/tvswitch end begin prog = mplayer button = 7 config = pause end begin prog = mplayer button = AGAIN repeat = 3 config = seek -120 end begin prog = mplayer button = ENTER repeat = 3 config = seek 120 end begin prog = mplayer button = VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = TUNER config = menu toggle end begin prog = mplayer button = 1 config = seek 0 end begin prog = mplayer button = VIDEO config = menu ok end begin prog = mplayer button = MODE config = menu cancel end begin prog = mplayer button = AUDIO repeat = 2 config = menu up end begin prog = mplayer button = LANGUAGE repeat = 2 config = menu down end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 9 config = record end begin prog = mplayer button = 3 config = quit end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_hauppauge0000644000175000017500000000234410630554150023110 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 5 config = pause end begin prog = mplayer button = 8 repeat = 1 config = seek -120 end begin prog = mplayer button = 2 repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = seek 10 end begin prog = mplayer button = 1 repeat = 1 config = volume 1 end begin prog = mplayer button = 7 repeat = 1 config = volume -1 end begin prog = mplayer button = FULL_SCREEN config = osd end begin prog = mplayer button = MINIMIZE config = menu toggle end begin prog = mplayer button = SOURCE config = set_menu open_file end begin prog = mplayer button = VOL+ config = menu ok end begin prog = mplayer button = VOL- config = menu cancel end begin prog = mplayer button = CH+ repeat = 2 config = menu up end begin prog = mplayer button = CH- repeat = 2 config = menu down end begin prog = mplayer button = 3 config = audio_delay 0.1 end begin prog = mplayer button = 9 config = audio_delay -0.1 end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_imonknob0000644000175000017500000001200210630554150022735 0ustar benbenbegin prog = mplayer button = MyTV config = run /usr/bin/tvswitch end begin prog = mplayer button = AppExit config = run /usr/bin/eject end begin prog = mplayer button = Eject config = run /usr/bin/eject -T end begin prog = mplayer button = Pause config = pause end begin prog = mplayer button = Rewind repeat = 3 config = seek -120 end begin prog = mplayer button = FastForward repeat = 3 config = seek 120 end begin prog = mplayer button = Backspace repeat = 3 config = seek -10 end begin prog = mplayer button = SelectSpace repeat = 3 config = seek 10 end begin prog = mplayer button = VolDown repeat = 2 config = volume -1 end begin prog = mplayer button = VolUp repeat = 2 config = volume 1 end begin prog = mplayer button = KnobVolDown repeat = 2 config = volume -1 end begin prog = mplayer button = KnobVolUp repeat = 2 config = volume 1 end begin prog = mplayer button = ChDown repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = ChUp repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = Bookmark config = osd end begin prog = mplayer button = Power config = quit 166 end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = Open config = set_menu open_file end begin prog = mplayer button = MyDVD config = menu hide\nplay_dvd end begin prog = mplayer button = Bookmark config = set_menu tv_settings end begin prog = mplayer button = MyPhoto config = set_menu view_img end begin prog = mplayer button = MyMusic config = play_cdda end begin prog = mplayer button = MyMovie config = play_vcd end begin prog = mplayer button = Play config = seek 0 end begin prog = mplayer button = Enter config = menu ok end begin prog = mplayer button = Esc config = menu cancel end begin prog = mplayer button = CursorUp repeat = 1 config = menu up end begin prog = mplayer button = CursorDown repeat = 1 config = menu down end begin prog = mplayer button = WindowsKey repeat = 1 config = menu up end begin prog = mplayer button = MouseMenu repeat = 1 config = menu down end begin prog = mplayer button = MouseLeftClick repeat = 3 config = sub_pos -1 end begin prog = mplayer button = MouseRightClick repeat = 3 config = sub_pos +1 end begin prog = mplayer button = Language repeat = 3 config = sub_select end begin prog = mplayer button = TaskSwitcher repeat = 3 config = switch_audio end begin prog = mplayer button = AppLauncher config = u end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Record config = record end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = AspectRatio config = set_menu aspect end begin prog = mplayer button = MultiMon config = set_menu jump_to end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = irpty button = mouse-button_left config = set_menu properties end begin prog = fbi button = Power config = q end begin prog = fbi button = CursorRight config = n end begin prog = fbi button = MouseRight config = n end begin prog = fbi button = FastForward config = n end begin prog = fbi button = CursorLeft config = b end begin prog = fbi button = MouseLeft config = b end begin prog = fbi button = Rewind config = b end begin prog = fbi button = CursorUp config = + end begin prog = fbi button = WindowsKey config = + end begin prog = fbi button = CursorDown config = - end begin prog = fbi button = MouseMenu config = - end begin prog = fbi button = FullScreen config = a end begin prog = fbi button = Menu config = h end begin prog = fbi button = MyTV config = i end begin prog = fbi button = Play config = p end begin prog = fbi button = Pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_leadtek0000644000175000017500000000245210630554150022542 0ustar benbenbegin prog = mplayer button = TV/FM config = run /usr/bin/tvswitch end begin prog = mplayer button = 9 config = pause end begin prog = mplayer button = 8 config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 6 config = seek -120 end begin prog = mplayer button = 3 repeat = 6 config = seek 120 end begin prog = mplayer button = 4 repeat = 6 config = seek -10 end begin prog = mplayer button = 6 repeat = 6 config = seek 10 end begin prog = mplayer button = FINE_DOWN repeat = 6 config = volume -1 end begin prog = mplayer button = FINE_UP repeat = 6 config = volume 1 end begin prog = mplayer button = SCAN config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = ENTER config = menu toggle end begin prog = mplayer button = FULLSCREEN config = set_menu open_file end begin prog = mplayer button = VOL_UP config = menu ok end begin prog = mplayer button = VOL_DOWN config = menu cancel end begin prog = mplayer button = CH_UP repeat = 6 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 6 config = menu down end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_leadtek-pvr20000000644000175000017500000000574710630554150023663 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = FM config = set_menu radio_settings end begin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = SLEEP config = set_menu view_sleeptimer end begin prog = mplayer button = REPLAY config = seek -120 end begin prog = mplayer button = SKIP config = seek 120 end begin prog = mplayer button = BACK config = seek -10 end begin prog = mplayer button = FORWARD config = seek 10 end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = MENU config = menu toggle end begin prog = mplayer button = DVD config = menu hide\nplay_dvd end begin prog = mplayer button = ENTER config = menu ok end begin prog = mplayer button = VOL_UP repeat = 2 config = menu ok end begin prog = mplayer button = VOL_DOWN repeat = 2 config = menu cancel end begin prog = mplayer button = CH_UP repeat = 2 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 2 config = menu down end begin prog = mplayer button = OSD config = sub_select end begin prog = mplayer button = LANGUAGE config = switch_audio end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = REC config = record end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = FULLSCREEN config = set_menu aspect end begin prog = mplayer button = DISPLAY config = osd end begin prog = mplayer button = 8 config = dvdnav 2 end begin prog = mplayer button = 2 config = dvdnav 1 end begin prog = mplayer button = 4 config = dvdnav 3 end begin prog = mplayer button = 6 config = dvdnav 4 end begin prog = mplayer button = 0 config = dvdnav 5 end begin prog = mplayer button = 5 config = dvdnav 6 end begin prog = mplayer button = 1 config = sub_delay -0.1 end begin prog = mplayer button = 3 config = sub_delay +0.1 end begin prog = mplayer button = 7 config = pt_step -1 end begin prog = mplayer button = 9 config = pt_step +1 end begin prog = irpty button = RED config = p end begin prog = irpty button = GREEN config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = VOL_UP config = n end begin prog = fbi button = SKIP config = n end begin prog = fbi button = VOL_DOWN config = b end begin prog = fbi button = REPLAY config = b end begin prog = fbi button = CH_UP config = + end begin prog = fbi button = CH_DOWN config = - end begin prog = fbi button = FULLSCREEN config = a end begin prog = fbi button = DVD config = h end begin prog = fbi button = TV config = i end begin prog = fbi button = PLAY config = p end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_logitech0000644000175000017500000000245310630554150022730 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 1 config = seek -120 end begin prog = mplayer button = 3 repeat = 1 config = seek 120 end begin prog = mplayer button = SEEK- repeat = 1 config = seek -10 end begin prog = mplayer button = SEEK+ repeat = 1 config = seek 10 end begin prog = mplayer button = VOL- repeat = 1 config = volume -1 end begin prog = mplayer button = VOL+ repeat = 1 config = volume 1 end begin prog = mplayer button = HELP config = osd end begin prog = mplayer button = CLOSE config = quit 166 end begin prog = mplayer button = ENTER config = menu toggle end begin prog = mplayer button = GDE config = set_menu open_file end begin prog = mplayer button = BUTTONL_DOWN config = menu ok end begin prog = mplayer button = BUTTONR_DOWN config = menu cancel end begin prog = mplayer button = CH+ repeat = 1 config = menu up end begin prog = mplayer button = CH- repeat = 1 config = menu down end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_mceusb0000644000175000017500000000564310630554150022414 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = Blue config = run /usr/bin/tvswitch end begin prog = mplayer button = Pause config = pause end begin prog = mplayer button = Rewind repeat = 1 config = seek -10 end begin prog = mplayer button = Forward repeat = 1 config = seek 10 end begin prog = mplayer button = Replay repeat = 3 config = seek -120 end begin prog = mplayer button = Skip repeat = 3 config = seek 120 end begin prog = mplayer button = VolUp repeat = 1 config = volume 1 end begin prog = mplayer button = VolDown repeat = 1 config = volume -1 end begin prog = mplayer button = More config = osd end begin prog = mplayer button = Home config = menu toggle end begin prog = mplayer button = Play config = set_menu open_file end begin prog = mplayer button = Enter config = menu ok end begin prog = mplayer button = OK config = menu ok end begin prog = mplayer button = Right config = menu ok end begin prog = mplayer button = Left config = menu cancel end begin prog = mplayer button = Up repeat = 2 config = menu up end begin prog = mplayer button = Down repeat = 2 config = menu down end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = ChanUp repeat = 3 config = sub_pos +1 end begin prog = mplayer button = ChanDown repeat = 3 config = sub_pos -1 end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = DVD config = menu hide\nplay_dvd end begin prog = mplayer button = Guide config = set_menu view_img end begin prog = mplayer button = LiveTV config = set_menu tv_settings end begin prog = mplayer button = Record config = record end begin prog = mplayer button = Two repeat = 2 config = dvdnav 1 end begin prog = mplayer button = Eight repeat = 2 config = dvdnav 2 end begin prog = mplayer button = Four repeat = 2 config = dvdnav 3 end begin prog = mplayer button = Six repeat = 2 config = dvdnav 4 end begin prog = mplayer button = Zero repeat = 2 config = dvdnav 5 end begin prog = mplayer button = Five repeat = 2 config = dvdnav 6 end begin prog = mplayer button = Power config = quit 166 end begin prog = irpty button = Star config = p end begin prog = irpty button = Hash config = l end begin prog = fbi button = Power config = q end begin prog = fbi button = Right config = n end begin prog = fbi button = Left config = b end begin prog = fbi button = Up config = + end begin prog = fbi button = Down config = - end begin prog = fbi button = Play config = p end begin prog = fbi button = Pause config = p end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_nova-s-plus0000644000175000017500000001006410630554150023313 0ustar benbenbegin prog = mplayer button = KEY_TV config = set_menu tv_settings end begin prog = mplayer button = KEY_PAUSE config = pause end begin prog = mplayer button = KEY_REWIND repeat = 3 config = seek -10 end begin prog = mplayer button = KEY_FORWARD repeat = 3 config = seek 10 end begin prog = mplayer button = KEY_PREVIOUS repeat = 3 config = seek -120 end begin prog = mplayer button = KEY_NEXT repeat = 3 config = seek 120 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = KEY_GUIDE config = osd end begin prog = mplayer button = KEY_POWER config = quit 166 end begin prog = mplayer button = KEY_MENU config = menu toggle end begin prog = mplayer button = KEY_GO config = set_menu open_file end begin prog = irpty button = KEY_RADIO config = p end begin prog = irpty button = KEY_TEXT config = l end begin prog = mplayer button = KEY_PLAY config = seek 0 end begin prog = mplayer button = KEY_OK config = menu ok end begin prog = mplayer button = KEY_RIGHT config = menu ok end begin prog = mplayer button = KEY_LEFT config = menu cancel end begin prog = mplayer button = KEY_UP repeat = 2 config = menu up end begin prog = mplayer button = KEY_DOWN repeat = 2 config = menu down end begin prog = mplayer button = KEY_GREEN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = KEY_YELLOW repeat = 3 config = sub_pos +1 end begin prog = mplayer button = KEY_BLUE repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = KEY_RED repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step +1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step -1 end begin prog = mplayer button = KEY_SUB repeat = 3 config = sub_select end begin prog = mplayer button = KEY_PREV repeat = 3 config = switch_audio end begin prog = mplayer button = KEY_MUTE config = mute end begin prog = mplayer button = KEY_RECORD config = record end begin prog = mplayer button = KEY_STOP config = quit end begin prog = mplayer button = KEY_VIDEO config = set_menu aspect end begin prog = mplayer button = KEY_EXIT config = set_menu jump_to end begin prog = mplayer button = KEY_8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = KEY_2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = KEY_4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = KEY_6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = KEY_0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = KEY_5 repeat = 2 config = dvdnav 6 end begin prog = fbi button = KEY_POWER config = q end begin prog = fbi button = KEY_STOP config = q end begin prog = fbi button = KEY_RIGHT config = n end begin prog = fbi button = KEY_LEFT config = b end begin prog = fbi button = KEY_UP config = + end begin prog = fbi button = KEY_DOWN config = - end begin prog = fbi button = KEY_NEXT config = n end begin prog = fbi button = KEY_PREVIOUS config = b end begin prog = fbi button = KEY_FORWARD config = + end begin prog = fbi button = KEY_REWIND config = - end begin prog = fbi button = KEY_OK config = a end begin prog = fbi button = KEY_0 config = h end begin prog = fbi button = KEY_GUIDE config = i end begin prog = fbi button = KEY_RECORD config = p end begin prog = fbi button = KEY_PREV config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_packard_bell0000644000175000017500000000522310630554150023533 0ustar benbenbegin prog = mplayer button = Aux3 config = run /usr/bin/tvswitch end begin prog = mplayer button = Enter config = pause end begin prog = mplayer button = Display config = set_menu aspect end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Hash config = sub_visibility end begin prog = mplayer button = One config = sub_delay 0.25 end begin prog = mplayer button = Three config = sub_delay -0.25 end begin prog = mplayer button = Left config = menu cancel end begin prog = mplayer button = Right config = menu ok end begin prog = mplayer button = CHDown repeat = 3 config = sub_pos -0.25 end begin prog = mplayer button = CHUp repeat = 3 config = sub_pos +0.25 end begin prog = mplayer button = VolDown repeat = 1 config = volume -1 end begin prog = mplayer button = VolUp repeat = 1 config = volume 1 end begin prog = mplayer button = Help config = osd end begin prog = mplayer button = SRS config = quit 166 end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = CD config = set_menu open_file end begin prog = mplayer button = RMB repeat = 1 config = seek 120 end begin prog = mplayer button = LMB repeat = 1 config = seek -120 end begin prog = mplayer button = Up repeat = 2 config = menu up end begin prog = mplayer button = Down repeat = 2 config = menu down end begin prog = mplayer button = Two repeat = 2 config = dvdnav 1 end begin prog = mplayer button = Four repeat = 2 config = dvdnav 3 end begin prog = mplayer button = Five repeat = 2 config = dvdnav 6 end begin prog = mplayer button = Six repeat = 2 config = dvdnav 4 end begin prog = mplayer button = Eight repeat = 2 config = dvdnav 2 end begin prog = mplayer button = Zero repeat = 2 config = dvdnav 5 end begin prog = irpty button = Phone config = p end begin prog = irpty button = Message config = l end begin prog = fbi button = Enter config = q end begin prog = fbi button = RMB config = n end begin prog = fbi button = LMB config = b end begin prog = fbi button = VolUp config = + end begin prog = fbi button = VolDown config = - end begin prog = fbi button = CD config = a end begin prog = fbi button = Help config = h end begin prog = fbi button = Aux1 config = i end begin prog = fbi button = Display config = p end begin prog = fbi button = Aux2 config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_pctv0000644000175000017500000000574410630554150022114 0ustar benbenbegin prog = mplayer button = F_TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 0/AV repeat = 1 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 1 config = dvdnav 6 end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = undo repeat = 1 config = seek -120 end begin prog = mplayer button = redo repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = dvdnav 3 end begin prog = mplayer button = Rewind repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = dvdnav 4 end begin prog = mplayer button = FForward repeat = 1 config = seek 10 end begin prog = mplayer button = vol- repeat = 1 config = volume -1 end begin prog = mplayer button = vol+ repeat = 1 config = volume 1 end begin prog = mplayer button = 2 repeat = 1 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 1 config = dvdnav 2 end begin prog = mplayer button = Fullscreen config = osd end begin prog = mplayer button = Power config = quit 166 end begin prog = mplayer button = Info config = menu toggle end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = Chan_Last config = set_menu open_file end begin prog = mplayer button = Preview config = set_menu open_file end begin prog = mplayer button = Vol+FF config = menu ok end begin prog = mplayer button = Vol-Rew config = menu cancel end begin prog = mplayer button = Chan+Play repeat = 1 config = menu up end begin prog = mplayer button = Chan-Stop repeat = 1 config = menu down end begin prog = mplayer button = channel- repeat = 1 config = sub_pos -1 end begin prog = mplayer button = channel+ repeat = 1 config = sub_pos +1 end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = Zoom config = set_menu aspect end begin prog = mplayer button = middle config = set_menu jump_to end begin prog = mplayer button = Record config = record end begin prog = irpty button = F_RADIO config = p end begin prog = irpty button = F_TELETEXT config = l end begin prog = fbi button = Power config = q end begin prog = fbi button = Vol+FF config = n end begin prog = fbi button = Vol-Rew config = b end begin prog = fbi button = Chan+Play config = + end begin prog = fbi button = Chan-Stop config = - end begin prog = fbi button = Fullscreen config = a end begin prog = fbi button = 0 config = h end begin prog = fbi button = Info config = i end begin prog = fbi button = Record config = p end begin prog = fbi button = Preview config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_realmagic0000644000175000017500000000536610630554150023064 0ustar benbenbegin prog = mplayer button = VGA config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = PLAY config = seek 0 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = PREV repeat = 1 config = seek -120 end begin prog = mplayer button = NEXT repeat = 1 config = seek 120 end begin prog = mplayer button = REV repeat = 1 config = seek -10 end begin prog = mplayer button = FF repeat = 1 config = seek 10 end begin prog = mplayer button = VOL- repeat = 1 config = volume -1 end begin prog = mplayer button = VOL+ repeat = 1 config = volume 1 end begin prog = mplayer button = TITLE config = set_menu view_img end begin prog = mplayer button = OSD config = osd end begin prog = mplayer button = PRG config = set_menu tv_settings end begin prog = mplayer button = SUB config = sub_select end begin prog = mplayer button = LANG config = switch_audio end begin prog = mplayer button = ANGLE config = set_menu aspect end begin prog = mplayer button = QUIT config = quit 166 end begin prog = mplayer button = MENU config = menu toggle end begin prog = mplayer button = EJECT config = set_menu open_file end begin prog = mplayer button = SELECT config = menu ok end begin prog = mplayer button = LEFT config = menu cancel end begin prog = mplayer button = UP repeat = 1 config = menu up end begin prog = mplayer button = DOWN repeat = 1 config = menu down end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = irpty button = ENTER config = p end begin prog = irpty button = L-R config = l end begin prog = fbi button = QUIT config = q end begin prog = fbi button = RIGHT config = n end begin prog = fbi button = FF config = n end begin prog = fbi button = LEFT config = b end begin prog = fbi button = REV config = b end begin prog = fbi button = UP config = + end begin prog = fbi button = DOWN config = - end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_streamzap0000644000175000017500000000522710630554150023142 0ustar benbenbegin prog = mplayer button = RED config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = << repeat = 3 config = seek -10 end begin prog = mplayer button = >> repeat = 3 config = seek 10 end begin prog = mplayer button = |<< repeat = 3 config = seek -120 end begin prog = mplayer button = >>| repeat = 3 config = seek 120 end begin prog = mplayer button = VOL_DOWN repeat = 2 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 2 config = volume 1 end begin prog = mplayer button = GREEN config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = MENU config = menu hide end begin prog = mplayer button = YELLOW config = set_menu open_file end begin prog = mplayer button = BLUE config = play_dvd hide_menu end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = OK config = menu ok end begin prog = mplayer button = RIGHT config = menu ok end begin prog = mplayer button = LEFT config = menu cancel end begin prog = mplayer button = UP repeat = 2 config = menu up end begin prog = mplayer button = DOWN repeat = 2 config = menu down end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = RECORD config = record end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = irpty button = CH_UP config = p end begin prog = irpty button = CH_DOWN config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = RIGHT config = n end begin prog = fbi button = >> config = n end begin prog = fbi button = LEFT config = b end begin prog = fbi button = << config = b end begin prog = fbi button = UP config = + end begin prog = fbi button = DOWN config = - end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = MENU config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_tosh-vt76f0000644000175000017500000000573510630554150023067 0ustar benbenbegin prog = mplayer button = TV/VCR config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = FAST_REW repeat = 3 config = seek -120 end begin prog = mplayer button = FAST_FORW repeat = 3 config = seek 120 end begin prog = mplayer button = SHIFT<- repeat = 3 config = seek -10 end begin prog = mplayer button = SHIFT-> repeat = 3 config = seek 10 end begin prog = mplayer button = CLEARNESS_IMG- repeat = 2 config = volume -1 end begin prog = mplayer button = CLEARNESS_IMG+ repeat = 2 config = volume 1 end begin prog = mplayer button = A.SELECT config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = ZERO_BACK config = menu hide end begin prog = mplayer button = 1 config = set_menu open_file end begin prog = mplayer button = TIME_SEARCH config = play_dvd hide_menu end begin prog = mplayer button = TIME_LEFT/CLOCK config = set_menu tv_settings end begin prog = mplayer button = DT config = set_menu view_img end begin prog = mplayer button = PLAY config = seek 0 end begin prog = mplayer button = IMMEDIATE_REC config = menu ok end begin prog = mplayer button = OSP config = menu ok end begin prog = mplayer button = DISPLAY config = menu cancel end begin prog = mplayer button = CH+ repeat = 2 config = menu up end begin prog = mplayer button = CH- repeat = 2 config = menu down end begin prog = mplayer button = ALIGN_DOWN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = ALIGN_UP repeat = 3 config = sub_pos +1 end begin prog = mplayer button = A.DUB config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = SP/LP config = set_menu aspect end begin prog = mplayer button = INDEX config = set_menu jump_to end begin prog = irpty button = SHIFT<- config = p end begin prog = irpty button = SHIFT-> config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = OSP config = n end begin prog = fbi button = SHIFT-> config = n end begin prog = fbi button = FAST_FORW config = n end begin prog = fbi button = DISPLAY config = b end begin prog = fbi button = FAST_REW config = b end begin prog = fbi button = SHIFT<- config = b end begin prog = fbi button = CH+ config = + end begin prog = fbi button = CH- config = - end begin prog = fbi button = SP/LP config = a end begin prog = fbi button = ZERO_BACK config = h end begin prog = fbi button = A.SELECT config = i end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = TV/VCR config = v end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_twinhan0000644000175000017500000000406110630554150022577 0ustar benbenbegin prog = mplayer button = FULLSCREEN config = run /usr/bin/tvswitch end begin prog = mplayer button = TIMESHIFT config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = REWIND repeat = 1 config = seek -10 end begin prog = mplayer button = FORWARD repeat = 1 config = seek 10 end begin prog = mplayer button = VOL_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 1 config = volume 1 end begin prog = mplayer button = EPG config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = RECALL config = menu toggle end begin prog = mplayer button = PREVIEW config = set_menu open_file end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = CANCEL repeat = 0 config = menu cancel end begin prog = mplayer button = CH_UP config = menu up end begin prog = mplayer button = CH_DOWN config = menu down end begin prog = mplayer button = CAPTURE config = set_menu recorder end begin prog = mplayer button = RECORDLIST config = set_menu dvb_sel end begin prog = mplayer button = TAB config = set_menu netstream_sel end begin prog = mplayer button = TELETEXT config = set_menu tv_chan end begin prog = mplayer button = FAVORITE config = menu cancel end begin prog = mplayer button = RECORD config = record end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end # DVD NAV begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircrc_ultrax0000644000175000017500000000260510630554150022450 0ustar benbenbegin prog = mplayer button = KEY_PLAYPAUSE config = pause end begin prog = mplayer button = KEY_REWIND repeat = 1 config = seek -10 end begin prog = mplayer button = KEY_FASTFORWARD repeat = 1 config = seek 10 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 1 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 1 config = volume 1 end begin prog = mplayer button = KEY_PROPS config = osd end begin prog = mplayer button = KEY_CLOSE config = quit 166 end begin prog = mplayer button = KEY_TEXT config = menu toggle end begin prog = mplayer button = KEY_HOME config = set_menu open_file end begin prog = mplayer button = KEY_VIDEO config = set_menu open_file end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 1 config = sub_pos -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 1 config = sub_pos +1 end begin prog = mplayer button = KEY_MIN_INTERESTING config = mute end begin prog = mplayer button = KEY_STOPCD config = quit end begin prog = mplayer button = KEY_ANGLE config = set_menu aspect end begin prog = mplayer button = KEY_LAST config = set_menu jump_to end begin prog = mplayer button = KEY_RECORD config = record end begin prog = fbi button = KEY_CLOSE config = q end geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_D-10.conf0000644000175000017500000000432710630554151022301 0ustar benben# # contributed by Bernardo Santos # # brand: Gradiente # model: D-10 # supported devices: Remote control for gradiente's D-10 DVD player. # # Automatic generation didn`t work well so I had to # figure out the protocol myself. It is similar to the one # on the generic RECS80.conf config file. # begin remote name D-10 bits 11 flags SPACE_ENC eps 25 aeps 100 one 270 7310 zero 270 4800 ptrail 270 toggle_bit 2 gap 49000 begin codes POWER 0x000000000000075E EJECT 0x0000000000000766 ANGLE 0x000000000000076E INDEX 0x000000000000075A A-B 0x000000000000075F MUTE 0x0000000000000758 1 0x0000000000000775 2 0x000000000000076D 3 0x0000000000000765 4 0x000000000000075D 5 0x0000000000000774 6 0x000000000000076C 7 0x0000000000000764 8 0x000000000000075C 9 0x0000000000000773 0 0x000000000000076B MENU 0x0000000000000767 TITLE 0x0000000000000776 SUBTITLE 0x0000000000000763 AUDIO 0x0000000000000760 PAUSE 0x0000000000000759 ACTIVE_MENU 0x000000000000076F EXIT 0x0000000000000770 UP_FW 0x0000000000000768 LEFT_RW 0x0000000000000771 OK_PLAY 0x0000000000000769 RIGHT_FW 0x0000000000000761 DOWN_RW 0x000000000000076A STOP 0x0000000000000762 SKIP_BACK 0x0000000000000777 SKIP_FORWARD 0x0000000000000772 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_LG.conf0000644000175000017500000000472110630554151022200 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.6.6(irman) on Fri May 14 17:48:53 2004 # # contributed by bufa # # brand: LG # model no. of remote control: # devices being controlled by this remote: # begin remote name LG bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0xFFFF post_data_bits 32 post_data 0x0 gap 25000 min_repeat 2 toggle_bit 0 begin codes power 0x000000000000FE60 mute 0x000000000000FE40 1 0x000000000000FFC0 2 0x000000000000FFA0 3 0x000000000000FF80 4 0x000000000000FF60 5 0x000000000000FF40 6 0x000000000000FF20 7 0x000000000000FF00 8 0x000000000000FEE0 9 0x000000000000FEC0 menu 0x000000000000F880 0 0x000000000000FFE0 tv 0x000000000000F8E0 red 0x000000000000F900 green 0x000000000000F920 yellow 0x000000000000F9A0 blue 0x000000000000F960 vol+ 0x000000000000FDE0 vol- 0x000000000000FDC0 pr+ 0x000000000000FBE0 pr- 0x000000000000FBC0 ok 0x000000000000FB40 text 0x000000000000F860 size 0x000000000000FA80 hold 0x000000000000FAC0 sleep 0x000000000000F820 update 0x000000000000FA40 time 0x000000000000FAA0 reveal 0x000000000000FA60 psm 0x000000000000FE20 ssm 0x000000000000FD20 picture 0x000000000000FD80 sound 0x000000000000FB60 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_Medion-X10.conf0000644000175000017500000000570510630554151023462 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(atiusb) on Sat Oct 21 14:49:15 2006 # # contributed by Michail Pappas # # brand: Medion (X10 OEM'd) bundled remote # lirc kernel module: lirc_atiusb # Geexbox receiver: atiusb # model no. of remote control: P/N 20017670 # devices being controlled by this remote: FCC ID: B4S20016398 # Receiver needed: lirc_atiusb begin remote name Medion-X10 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x14 post_data_bits 16 post_data 0x0 gap 219969 toggle_bit 0 begin codes tv 0x012C vcr 0x022D dvd 0xD904 music 0xDB06 radio 0x032E photo 0xDA05 tv_preview 0x042F channel_list 0x0530 setup 0xF01B video_desktop 0x0631 chan-up 0xE00B chan-down 0xE10C vol-up 0xDE09 vol-down 0xDD08 mute 0xD500 red 0x0732 green 0x0833 yellow 0x0934 blue 0x0A35 txt 0xEB16 1 0xE20D 2 0xE30E 3 0xE40F 4 0xE510 5 0xE611 6 0xE712 7 0xE813 8 0xE914 9 0xEA15 0 0xEC17 ch_search 0xF11C delete 0xF520 rename 0x0B36 snapshot 0xED18 up 0xEF1A down 0xF722 left 0xF21D right 0xF41F ok 0xF31E acquire_image 0x0C37 edit_image 0x0D38 rewind 0xF924 play 0xFA25 fast_forward 0xFB26 rec 0xFC27 stop 0xFD28 pause 0xFE29 previous 0xF621 fullscreen 0x0E39 next 0xF823 dvd_menu 0xEE19 dvd_audio 0x0F3A power 0xD702 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_RM-S6.conf0000644000175000017500000000357010630554151022503 0ustar benben# # this config file was NOT automatically generated. # it was made using lirc-0.5.5pre8 on Sat Jun 12 1999 # # contributed by Luis Sousa # # brand: SONY # model: RM-S6 # supported devices: this remote has the basic functions for # almost all Sony HiFi Sytems # begin remote name RM-S6 bits 12 flags SPACE_ENC eps 30 aeps 100 header 2500 590 one 1210 590 zero 610 590 ptrail 0 plead 0 foot 0 0 repeat 0 0 pre_data_bits 0 pre_data 0 post_data_bits 0 post_data 0 pre 0 0 post 0 0 gap 25000 repeat_bit 0 min_repeat 2 begin codes SLEEP 0x0000000000000061 AMP_POWER 0x0000000000000A81 CD 0x0000000000000A41 CD_PLAY 0x00000000000004D1 CD_PAUSE 0x00000000000009D1 CD_STOP 0x00000000000001D1 CD_EJECT 0x0000000000000691 CD_PREV_TRACK 0x00000000000000D1 CD_NEXT_TRACK 0x00000000000008D1 TAPE 0x0000000000000C41 PHONO 0x0000000000000041 VIDEO/AUX 0x0000000000000441 TUNER 0x0000000000000841 TUNER_SHIFT 0x0000000000000CD6 TUNER_PRESET_- 0x0000000000000896 TUNER_PRESET_+ 0x0000000000000096 AMP_VOL_UP 0x0000000000000481 AMP_VOL_DOWN 0x0000000000000C81 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_RX-V850.conf0000644000175000017500000000625010630554151022666 0ustar benben# # This config file has been automatically converted from a device file # found in the 06/26/00 release of the Windows Slink-e software # package. # # Many thanks to Colby Boles of Nirvis Systems Inc. for allowing us to # use these files. # # The original filename was: "yamaha rx-v850 rs rx-v850 receiver_amp.cde" # # The original description for this device was: # # yamaha rx-v850 rs rx-v850 receiver/amp # begin remote name RX-V850 bits 32 flags SPACE_ENC eps 20 aeps 200 header 8800 4400 one 550 1650 zero 550 550 ptrail 550 repeat 8800 2200 gap 38500 toggle_bit 0 frequency 38000 begin codes POWER 0x000000005EA1F807 PHONO 0x000000005EA128D7 CD 0x000000005EA1A857 TUNER 0x000000005EA16897 TAPE_1/DAT 0x000000005EA19867 TAPE_2/VCR_2 0x000000005EA118E7 LD_V 0x000000005EA1E817 VCR_1 0x000000005EA1F00F CD_PLAY 0x000000005EA110EF CD_PAUSE/STOP 0x000000005EA1906F CD_SEARCH_FWD 0x000000005EA130CF CD_SEARCH_REV 0x000000005EA1B04F CD_SKIP_FWD 0x000000005EA150AF CD_SKIP_REV 0x000000005EA1D02F CD_DISK_SKIP 0x000000005EA1F20D TAPE_PLAY 0x000000005EA100FF TAPE_STOP 0x000000005EA1C03F TAPE_FFWD 0x000000005EA140BF TAPE_REWIND 0x000000005EA1807F TAPE_REC/PAUSE 0x000000005EA120DF TAPE_REC_MUTE 0x000000005EA1A05F TAPE_DECK_A/B 0x000000005EA1609F TAPE_DIR_A 0x000000005EA1E01F TAPE_DIR_B 0x000000005EA102FD TUNER_+ 0x000000005EA108F7 TUNER_A/B/C/D/E 0x000000005EA148B7 DSP_TEST 0x000000005EA1A15E DSP_CENTRE_MODE 0x000000005EA121DE DSP_PRO_LOGIC 0x000000005EA111EE DSP_PRO_LOGIC_ENH. 0x000000005EA1916E DSP_CNCT_VIDEO 0x000000005EA151AE DSP_MONO_MOVIE 0x000000005EA1D12E DSP_ROCK 0x000000005EA131CE DSP_HALL 0x000000005EA1B14E DSP_EFFECT_ON/OFF 0x000000005EA16A95 FRONT_LEVEL_+ 0x000000005EA101FE FRONT_LEVEL_- 0x000000005EA1817E CENTRE_LEVEL_+ 0x000000005EA141BE CENTRE_LEVEL_- 0x000000005EA1C13E REAR_LEVEL_+ 0x000000005EA17A85 REAR_LEVEL_- 0x000000005EA1FA05 DELAY_TIME_+ 0x000000005EA14AB5 DELAY_TIME_- 0x000000005EA1CA35 MUTING 0x000000005EA138C7 VOLUME_UP 0x000000005EA158A7 VOLUME_DOWN 0x000000005EA1D827 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_animax.conf0000644000175000017500000001561410630554151023156 0ustar benben # # This is a space encoded remote control from AnimaX. # You need at least lirc-0.5.4 to use this config file # # contributed by Karsten Scheibler # # brand: AnimaX # model: Anir Remote Control # supported devices: This remote control comes with some TV Tuner cards from # Hauppauge. # begin remote name ANIMAX bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 2500 2500 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_gap 102937 repeat_bit 0 begin codes CD_DOWN 0x000000000000DB24 CD_UP 0x0000000000005BA4 TV_DOWN 0x000000000000DC23 TV_UP 0x0000000000005CA3 PHONE_DOWN 0x000000000000DD22 PHONE_UP 0x0000000000005DA2 RADIO_DOWN 0x000000000000DE21 RADIO_UP 0x0000000000005EA1 VIDEO_DOWN 0x000000000000DF20 VIDEO_UP 0x0000000000005FA0 AUX1_DOWN 0x000000000000E01F AUX1_UP 0x000000000000609F MAIL_DOWN 0x000000000000E11E MAIL_UP 0x000000000000619E AUX2_DOWN 0x000000000000E21D AUX2_UP 0x000000000000629D POWER_DOWN 0x000000000000E31C POWER_UP 0x000000000000639C LEFT_MOUSE_BUTTON_TOUCH_DOWN 0x000000000000E41B LEFT_MOUSE_BUTTON_TOUCH_UP 0x000000000000649B REWIND_DOWN 0x000000000000E51A REWIND_UP 0x000000000000659A PLAY_DOWN 0x000000000000E619 PLAY_UP 0x0000000000006699 FORWARD_DOWN 0x000000000000E718 FORWARD_UP 0x0000000000006798 SKIP_BACKWARD_DOWN 0x000000000000E817 SKIP_BACKWARD 0x0000000000006897 STOP_DOWN 0x000000000000E916 STOP_UP 0x0000000000006996 SKIP_FORWARD_DOWN 0x000000000000EA15 SKIP_FORWARD_UP 0x0000000000006A95 CHANNEL_UP_DOWN 0x000000000000EB14 CHANNEL_UP_UP 0x0000000000006B94 MENU_DOWN 0x000000000000EC13 MENU_UP 0x0000000000006C93 VOLUME_UP_DOWN 0x000000000000ED12 VOLUME_UP_UP 0x0000000000006D92 BLUE_BUTTON_DOWN 0x000000000000EE11 BLUE_BUTTON_UP 0x0000000000006E91 MUTE_DOWN 0x000000000000EF10 MUTE_UP 0x0000000000006F90 VOLUME_DOWN_DOWN 0x000000000000F00F VOLUME_DOWN_UP 0x000000000000708F RED_BUTTON_DOWN 0x000000000000F10E RED_BUTTON_UP 0x000000000000718E GREEN_BUTTON_DOWN 0x000000000000F20D GREEN_BUTTON_UP 0x000000000000728D CHANNEL_DOWN_DOWN 0x000000000000F30C CHANNEL_DOWN_UP 0x000000000000738C 1_DOWN 0x000000000000F40B 1_UP 0x000000000000748B 2_DOWN 0x000000000000F50A 2_UP 0x000000000000758A 3_DOWN 0x000000000000F609 3_UP 0x0000000000007689 4_DOWN 0x000000000000F708 4_UP 0x0000000000007788 5_DOWN 0x000000000000F807 5_UP 0x0000000000007887 6_DOWN 0x000000000000F906 6_UP 0x0000000000007986 7_DOWN 0x000000000000FA05 7_UP 0x0000000000007A85 8_DOWN 0x000000000000FB04 8_UP 0x0000000000007B84 9_DOWN 0x000000000000FC03 9_UP 0x0000000000007C83 SLASH_DOWN 0x000000000000FD02 SLASH_UP 0x0000000000007D82 0_DOWN 0x000000000000FE01 0_UP 0x0000000000007E81 MINUS_DOWN 0x000000000000FF00 MINUS_UP 0x0000000000007F80 end codes end remote begin remote name ANIMAX_MOUSE_BUTTONS bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 0 0 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_bit 0 begin codes RIGHT_MOUSE_BUTTON_DOWN 0x000000000000C639 RIGHT_MOUSE_BUTTON_UP 0x00000000000046B9 LEFT_MOUSE_BUTTON_DOWN 0x000000000000CE31 LEFT_MOUSE_BUTTON_UP 0x0000000000004EB1 end codes end remote begin remote name ANIMAX_MOUSE_PAD bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 2500 2500 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_gap 8437 repeat_bit 0 begin codes MOUSE_NNW 0x000000000000906F MOUSE_NW 0x000000000000D02F MOUSE_NWW 0x000000000000916E MOUSE_W 0x000000000000D12E MOUSE_SWW 0x000000000000926D MOUSE_SW 0x000000000000D22D MOUSE_SSW 0x000000000000936C MOUSE_S 0x000000000000D32C MOUSE_SSE 0x000000000000946B MOUSE_SE 0x000000000000D42B MOUSE_SEE 0x000000000000956A MOUSE_E 0x000000000000D52A MOUSE_NEE 0x0000000000009669 MOUSE_NE 0x000000000000D629 MOUSE_NNE 0x0000000000009768 MOUSE_N 0x000000000000D728 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_askey.conf0000644000175000017500000000461010630554151023007 0ustar benben# # this config file was automatically generated # using lirc-0.6.0 on Thu Apr 27 12:27:04 2000 # # contributed by Claas Langbehn # Please read the documentation, faq etc. # before sending me mails. # # brand: ASKEY # model: AS-218 / AS-220 # supported devices: ASKEY MagicTV # # comment: repeated keys are recognized, now. # begin remote name AS-218 bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9087 4424 one 629 1617 zero 629 495 ptrail 632 repeat 9088 2182 pre_data_bits 16 pre_data 0x61D6 gap 107905 repeat_bit 0 begin codes 0 0x00000000000000FF 1 0x000000000000807F 2 0x00000000000040BF 3 0x000000000000C03F 4 0x00000000000020DF 5 0x000000000000A05F 6 0x000000000000609F 7 0x000000000000E01F 8 0x00000000000010EF 9 0x000000000000906F LOOP 0x00000000000050AF # unused FINE_UP(PLUS) 0x00000000000030CF ZOOM 0x000000000000B04F RECORD 0x000000000000708F PREVIEW 0x000000000000F00F SCAN 0x00000000000008F7 VIDEO 0x0000000000008877 POWER 0x00000000000048B7 MUTE 0x000000000000C837 COLOR 0x00000000000028D7 #unused FREEZE 0x0000000000006897 100 0x000000000000E817 FINE_DOWN(MINUS) 0x00000000000018E7 PLAY 0x0000000000009867 CH_UP 0x00000000000058A7 VOL_UP 0x000000000000D827 TV 0x00000000000038C7 STOP 0x000000000000B847 CH_DOWN 0x0000000000007887 VOL_DOWN 0x000000000000F807 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb.conf0000644000175000017500000000572110630554151023166 0ustar benben# Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(atiusb) on Wed Oct 25 22:34:25 2006 # # contributed by Michail Pappas # # brand: atiusb # model no. of remote control: 5000015900A # 5000023600 # probably 5000022000 # devices being controlled by this remote: ATI USB Receiver (X10) # begin remote name atiusb bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x14 post_data_bits 16 post_data 0x0 gap 235966 min_repeat 1 toggle_bit 0 begin codes a 0xD500 b 0xD601 power 0xD702 tv 0xD803 dvd 0xD904 web 0xDA05 media_library 0xDB06 drag 0xDC07 mouse-button_left 0x4D78 mouse-button_right 0x517C mouse-up 0x4772 mouse-down 0x4873 mouse-left 0x4570 mouse-right 0x4671 mouse-left_up 0x4974 mouse-right_up 0x4A75 mouse-left_down 0x4C77 mouse-right_down 0x4B76 vol-up 0xDD08 vol-down 0xDE09 mute 0xDF0A chan-up 0xE00B chan-down 0xE10C 1 0xE20D 2 0xE30E 3 0xE40F 4 0xE510 5 0xE611 6 0xE712 7 0xE813 8 0xE914 9 0xEA15 0 0xEC17 dvd-root_menu 0xEB16 launch_setup 0xED18 c 0xEE19 d 0xF01B tv_on_demand 0xF11C max_window 0xF520 cursor-up 0xEF1A cursor-down 0xF722 cursor-left 0xF21D cursor-right 0xF41F ok 0xF31E e 0xF621 f 0xF823 rewind 0xF924 play 0xFA25 fast_forward 0xFB26 record 0xFC27 stop 0xFD28 pause 0xFE29 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb2.conf0000644000175000017500000000566110630554151023253 0ustar benben# this config file was automatically generated # using lirc-0.7.0(atiusb) on Sat Feb 12 13:22:29 2005 # # contributed by Steffen # # brand: ATI Sapphire Remote Bob II USB # model no. of remote control: 5000024400 # devices being controlled by this remote: ASUS Digimatrix MythTV PVR # modified for Geexbox by: JTS # fixed by flynn 01/14/06 begin remote name 5000024400 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x0 post_data_bits 16 post_data 0x0 gap 299851 toggle_bit 0 begin codes aux1 0x023F aux2 0x023F aux3 0x023F aux4 0x023F leftmouse 0x02A9 rightmouse 0x02AA a 0x0278 b 0x0279 power 0x020C dvd 0x0238 tv 0x0239 help 0x02BE pc 0x023F resize 0x02D5 hand 0x02D0 ati 0x028E vol-up 0x0210 vol-down 0x0211 mute 0x020D chan-up 0x0220 chan-down 0x0221 mouse-up 0x013F mouse-down 0x013F mouse-left 0x013F mouse-right 0x013F 1 0x0201 2 0x0202 3 0x0203 4 0x0204 5 0x0205 6 0x0206 7 0x0207 8 0x0208 9 0x0209 0 0x0200 max_window 0x0254 check 0x0282 info 0x02F9 timer 0x0296 cursor-up 0x0258 cursor-left 0x025A cursor-right 0x025B cursor-down 0x0259 ok 0x025C c 0x027A d 0x027B play 0x022C e 0x027C f 0x027D rewind 0x0229 record 0x0237 stop 0x0231 pause 0x0230 ffwd 0x0228 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_avermedia.conf0000644000175000017500000001326610630554151023637 0ustar benben# # this config file was automatically generated # using lirc-0.5.5 on Thu May 25 18:00:24 2000 # # contributed by Michal Kochanowicz & Jesus Bravo Alvarez # # brand: AVerMedia # model: ? # supported devices: some TVCapture98 (ID 0x00021461) and # some TVPhone98 (ID 0x00011461) cards begin remote name TVCapture98 bits 6 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 # pre_data_bits 16 # pre_data 0x40BF repeat 9080 2189 gap 108056 repeat_bit 0 begin codes TV/FM 0x0000000000000023 CD 0x0000000000000022 # TELETEXT 0x000000000000C03F POWER 0x0000000000000027 1 0x0000000000000018 2 0x0000000000000010 3 0x0000000000000008 VIDEO 0x0000000000000000 4 0x0000000000000019 5 0x0000000000000011 6 0x0000000000000009 AUDIO 0x0000000000000001 7 0x000000000000001A 8 0x0000000000000012 9 0x000000000000000A FULLSCREEN 0x0000000000000002 0 0x000000000000001B DISPLAY 0x0000000000000013 COLOR 0x000000000000000B LOOP 0x0000000000000003 UNLABELED 0x000000000000001C LEFT 0x0000000000000014 RIGHT 0x000000000000000C PREVIEW 0x0000000000000004 AUTOSCAN 0x000000000000001D FREEZE 0x0000000000000015 CAPTURE 0x000000000000000D MUTE 0x0000000000000005 RED 0x000000000000001E VOL_DOWN 0x0000000000000016 VOL_UP 0x000000000000000E YELLOW 0x0000000000000006 GREEN 0x000000000000001F CH_DOWN 0x0000000000000017 CH_UP 0x000000000000000F BLUE 0x0000000000000007 end codes end remote # # this config file was automatically generated # using lirc-0.6.1 on Tue Apr 25 14:31:21 2000 # # contributed by Christoph Bartelmus # # brand: AVerMedia # model: ? (36 buttons) # supported devices: TVPhone98 card (ID 0x00031461) # TVCapture98 card (ID 0x00041461) # # This config file does work with both homebrew receivers and # original AVerMedia TV cards !!! # begin remote name TVPhone98 bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 repeat 9080 2189 pre_data_bits 16 pre_data 0x40BF gap 108056 repeat_bit 0 begin codes POWER 0x00000000000000FF TV/FM 0x000000000000807F CD 0x00000000000040BF TELETEXT 0x000000000000C03F VIDEO 0x00000000000020DF 1 0x000000000000A05F 2 0x000000000000609F 3 0x000000000000E01F AUDIO 0x00000000000010EF 4 0x000000000000906F 5 0x00000000000050AF 6 0x000000000000D02F FULLSCREEN 0x00000000000030CF 7 0x000000000000B04F 8 0x000000000000708F 9 0x000000000000F00F PREVIEW 0x00000000000008F7 0 0x0000000000008877 DISPLAY 0x00000000000048B7 LOOP 0x000000000000C837 MUTE 0x00000000000028D7 AUTOSCAN 0x000000000000A857 FREEZE 0x0000000000006897 CAPTURE 0x000000000000E817 PLAY 0x00000000000018E7 RECORD 0x0000000000009867 PAUSE 0x00000000000058A7 STOP 0x000000000000D827 YELLOW 0x00000000000038C7 RED 0x000000000000B847 VOL_DOWN 0x0000000000007887 VOL_UP 0x000000000000F807 end codes end remote begin remote name TVPhone98_ext bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 repeat 9080 2189 pre_data_bits 16 pre_data 0xC03F gap 108056 repeat_bit 0 begin codes BLUE 0x00000000000000FF GREEN 0x000000000000807F CH_DOWN 0x00000000000040BF CH_UP 0x000000000000C03F end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_cinergy1400.conf0000644000175000017500000000417710630554151023650 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) on Fri May 12 18:28:46 2006 # # contributed by Laurent Peltier # # brand: Terratec # model no. of remote control: # devices being controlled by this remote: Cinergy 1400 DVB-T # begin remote name Terratec bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 135894 toggle_bit 0 begin codes KEY_POWER 0x0074 KEY_1 0x0002 KEY_2 0x0003 KEY_3 0x0004 KEY_4 0x0005 KEY_5 0x0006 KEY_6 0x0007 KEY_7 0x0008 KEY_8 0x0009 KEY_9 0x000A KEY_0 0x000B KEY_VIDEO 0x0189 KEY_REFRESH 0x00AD KEY_SELECT 0x0161 KEY_EPG 0x016D KEY_UP 0x0067 KEY_LEFT 0x0069 KEY_OK 0x0160 KEY_RIGHT 0x006A KEY_DOWN 0x006C KEY_TEXT 0x0184 KEY_INFO 0x0166 KEY_RED 0x018E KEY_GREEN 0x018F KEY_YELLOW 0x0190 KEY_BLUE 0x0191 KEY_CHANNELUP 0x0192 KEY_VOLUMEUP 0x0073 KEY_MUTE 0x0071 KEY_VOLUMEDOWN 0x0072 KEY_CHANNELDOWN 0x0193 KEY_PAUSE 0x0077 KEY_PLAY 0x00CF KEY_RECORD 0x00A7 KEY_PREVIOUS 0x019C KEY_STOP 0x0080 KEY_NEXT 0x0197 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_creative.conf0000644000175000017500000000360410630554151023477 0ustar benben# # this config file was automatically generated # using lirc-0.6.3 on Sat Jan 6 11:38:33 2001 # # contributed by Stephen White # # brand: Creative # model: PC-DVD Remote # supported devices: Creative-Infra-Receiver # begin remote name CREATIVE_INFRA_DVD bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9293 4302 one 771 1494 zero 771 358 ptrail 756 pre_data_bits 16 pre_data 0x8435 gap 108646 toggle_bit 0 begin codes play 0x00000000000005FA stop 0x00000000000016E9 pause 0x00000000000000FF eject 0x00000000000002FD last 0x00000000000017E8 rrev 0x00000000000004FB ffwd 0x00000000000006F9 next 0x00000000000001FE 1 0x00000000000008F7 2 0x00000000000009F6 3 0x0000000000000AF5 shift 0x00000000000014EB 4 0x0000000000000CF3 5 0x0000000000000DF2 6 0x0000000000000EF1 mouse 0x00000000000007F8 7 0x00000000000010EF 8 0x00000000000011EE 9 0x00000000000012ED vol+ 0x0000000000000FF0 start 0x00000000000003FC 0 0x00000000000015EA mute 0x0000000000000BF4 vol- 0x00000000000013EC end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_digimatrix.conf0000644000175000017500000000520510630554151024035 0ustar benben # brand: Asus Digimatrix # model no. of remote control: Model 1 # devices being controlled by this remote: Asus Digimatrix # Contributed by: Members of the http://outertrack.com/digimatrix/ Forum begin remote name digi bits 16 flags SPACE_ENC eps 30 aeps 100 header 8057 4071 one 479 1534 zero 479 531 ptrail 491 pre_data_bits 8 pre_data 0x35 gap 25647 toggle_bit 0 begin codes up 0x000000000000E817 down 0x00000000000018E7 enter 0x000000000000D02F left 0x0000000000009867 right 0x00000000000058A7 1 0x00000000000000FF 2 0x000000000000807F 3 0x00000000000040BF 4 0x000000000000C03F 5 0x00000000000020DF 6 0x000000000000A05F 7 0x000000000000609F 8 0x000000000000E01F 9 0x00000000000010EF 0 0x000000000000906F music 0x000000000000B04F dvd_vcd 0x000000000000F00F tv 0x00000000000008F7 os_start 0x00000000000030CF photo 0x00000000000048B7 home 0x00000000000044BB back 0x000000000000A857 ch+ 0x000000000000B847 stop 0x000000000000946B play 0x000000000000C43B vol+ 0x000000000000F807 ch- 0x0000000000007887 step- 0x000000000000E41B step+ 0x000000000000649B vol- 0x00000000000004FB pause 0x00000000000024DB pre 0x00000000000014EB next 0x000000000000A45B mute 0x000000000000847B rec 0x000000000000D42B subtitle 0x000000000000C837 menu 0x00000000000038C7 dvd_audio 0x00000000000050AF ui_size 0x0000000000008877 ui_on_off 0x00000000000028D7 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_digimatrixmk2.conf0000644000175000017500000000506510630554151024453 0ustar benbenbegin remote name digi_mk2 bits 8 flags SPACE_ENC eps 30 aeps 100 header 2666 1378 one 260 741 zero 260 279 ptrail 251 pre_data_bits 1 pre_data 0x0 post_data_bits 8 post_data 0x3 gap 10826 min_repeat 1 toggle_bit 0 begin codes power 0x0000000000000084 tv_dvr 0x0000000000000044 fm 0x00000000000000C4 os_start 0x0000000000000024 music 0x00000000000000A4 pictures 0x0000000000000064 video 0x00000000000000E4 dvd_menu 0x0000000000000014 up 0x000000000000004C down 0x00000000000000E0 left 0x0000000000000010 right 0x0000000000000040 back 0x00000000000000B4 ok 0x0000000000000088 back_fwd 0x0000000000000074 rew 0x0000000000000094 play_pause 0x0000000000000054 fwd 0x00000000000000D4 step- 0x0000000000000098 stop 0x0000000000000048 step+ 0x0000000000000090 vol+ 0x0000000000000058 vol- 0x00000000000000D8 home 0x00000000000000C8 ch+ 0x0000000000000050 ch- 0x00000000000000D0 mute 0x0000000000000038 rec 0x0000000000000028 pc 0x0000000000000030 1 0x00000000000000B8 2 0x00000000000000A8 3 0x00000000000000B0 4 0x0000000000000078 5 0x0000000000000068 6 0x0000000000000070 7 0x00000000000000F8 8 0x00000000000000E8 9 0x00000000000000F0 0 0x0000000000000018 ui_size 0x0000000000000004 repeat 0x0000000000000008 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_flytv-prime.conf0000644000175000017500000000306410630554151024153 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) # # contributed by # # brand: Lifeview # model no. of remote control: # devices being controlled by this remote: FlyTV Prime/Platinium # begin remote name Lifeview bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 182794 toggle_bit 0 begin codes 0 0x0052 1 0x004F 2 0x0050 3 0x0051 4 0x004B 5 0x004C 6 0x004D 7 0x0047 8 0x0048 9 0x0049 MODE 0x0175 VIDEO 0x0189 AUDIO 0x0188 POWER 0x0074 TUNER 0x0182 ZOOM 0x0174 LANGUAGE 0x0170 MUTE 0x0071 VOLUMEDOWN 0x0072 VOLUMEUP 0x0073 CHANNELDOWN 0x0193 CHANNELUP 0x0192 AGAIN 0x0081 ENTER 0x001C end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_hauppauge.conf0000644000175000017500000001002410630554151023646 0ustar benben# # this config file was automatically generated # using lirc-0.5.5pre8 on Sun Apr 18 11:43:45 1999 # # contributed by Jens Leuschner # # brand: Hauppauge # model: # supported devices: WinTV primo; WinTV pci; WinTV radio # # This config file will work with both homebrew receivers and # original Hauppauge TV cards !!! # begin remote name Hauppauge bits 13 flags SHIFT_ENC eps 30 aeps 100 one 950 830 zero 950 830 plead 960 gap 89584 repeat_bit 2 begin codes TV 0x000000000000100F RADIO 0x000000000000100C FULL_SCREEN 0x000000000000102E CH+ 0x0000000000001020 CH- 0x0000000000001021 VOL- 0x0000000000001011 VOL+ 0x0000000000001010 MUTE 0x000000000000100D SOURCE 0x0000000000001022 1 0x0000000000001001 2 0x0000000000001002 3 0x0000000000001003 4 0x0000000000001004 5 0x0000000000001005 6 0x0000000000001006 7 0x0000000000001007 8 0x0000000000001008 9 0x0000000000001009 0 0x0000000000001000 RESERVED 0x000000000000101E MINIMIZE 0x0000000000001026 end codes end remote # # this config file was automatically generated # using lirc-0.6.6(animax) on Tue Apr 15 19:50:27 2003 # # contributed by # # brand: Hauppauge # model no. of remote control: # devices being controlled by this remote: PVR 2/350 # begin remote name hauppauge_pvr bits 13 flags RC5|CONST_LENGTH eps 30 aeps 100 one 969 811 zero 969 811 plead 1097 gap 114605 toggle_bit 2 begin codes Power 0x00000000000017FD Go 0x00000000000017FB 1 0x00000000000017C1 2 0x00000000000017C2 3 0x00000000000017C3 4 0x00000000000017C4 5 0x00000000000017C5 6 0x00000000000017C6 7 0x00000000000017C7 8 0x00000000000017C8 9 0x00000000000017C9 Back/Exit 0x00000000000017DF 0 0x00000000000017C0 Menu 0x00000000000017CD Red 0x00000000000017CB Green 0x00000000000017EE Yellow 0x00000000000017F8 Blue 0x00000000000017E9 Ch+ 0x00000000000017E0 Ch- 0x00000000000017E1 Vol- 0x00000000000017D1 Vol+ 0x00000000000017D0 Ok 0x00000000000017E5 Mute 0x00000000000017CF Blank 0x00000000000017CC Full 0x00000000000017FC Rewind 0x00000000000017F2 Play 0x00000000000017F5 Forward 0x00000000000017F4 Record 0x00000000000017F7 Stop 0x00000000000017F6 Pause 0x00000000000017F0 Replay 0x00000000000017E4 Skip 0x00000000000017DE end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_imonknob.conf0000644000175000017500000000652310630554151023514 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.7.1pre2(imon) on Tue Mar 1 23:15:44 2005 # # contributed by Venky Raju # # brand: iMON-New # model no. of remote control: iMON-PAD # devices being controlled by this remote: # begin remote name IMON_KNOB bits 32 eps 30 aeps 100 one 0 0 zero 0 0 gap 119990 min_repeat 15 toggle_bit 0 begin codes AppExit 0x288195B7 Power 0x289115B7 Record 0x298115B7 Play 0x2A8115B7 Open 0x29B195B7 KnobVolUp 0x010000FF KnobVolDown 0x010000FF KnobMute 0x000008FF Rewind 0x2A8195B7 Pause 0x2A9115B7 FastForward 0x2B8115B7 PrevChapter 0x2B9115B7 Stop 0x2B9715B7 NextChapter 0x298195BF WindowsKey 0x2B8195B7 Backspace 0x28A115B7 MouseKeyboard 0x299115B7 SelectSpace 0x2A9315B7 MouseMenu 0x28B715B7 MouseRightClick 0x688481B7 Enter 0x28A195B7 MouseLeftClick 0x688301B7 CursorLeft 0x6ABA81B7 CursorUp 0x6902F9B7 CursorRight 0x68A281B7 CursorDown 0x6882A1B7 Esc 0x2BB715B7 Eject 0x299395B7 AppLauncher 0x29B715B7 MultiMon 0x2AB195B7 TaskSwitcher 0x2A9395B7 Mute 0x2B9595B7 VolUp 0x28A395B7 VolDown 0x28A595B7 ChUp 0x289395B7 ChDown 0x288795B7 Timer 0x2B8395B7 1 0x28B595B7 2 0x2BB195B7 3 0x28B195B7 4 0x2A8595B7 5 0x299595B7 6 0x2AA595B7 7 0x2B9395B7 8 0x2A8515B7 9 0x2AA115B7 ShiftTab 0x28B515B7 0 0x2BA595BF Tab 0x29A115B7 MyMovie 0x2B8515B7 MyMusic 0x299195B7 MyPhoto 0x2BA115B7 MyTV 0x28A515B7 Bookmark 0x288515B7 Thumbnail 0x2AB715BF AspectRatio 0x29A595B7 FullScreen 0x2AA395BF MyDVD 0x29A295B7 Menu 0x2BA385B7 Caption 0x298595B7 Language 0x2B8595B7 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek-pvr2000.conf0000644000175000017500000000604310630554151024415 0ustar benben# # this config file was written on Mon Dec 13 23:51:16 MET 2004 # by Thomas Reitmayr (treitmayr@yahoo.com) # # brand: Leadtek # model: Y0400052 (bundeled with Winfast PVR2000 TV-card) # # Only CH_UP, CH_DOWN, VOL_UP and VOL_DOWN will repeat. This seems to be a # limitation of the remote control. # begin remote name PVR2000 bits 8 flags SHIFT_ENC gap 120000 begin codes POWER 0x0000000000000070 TV 0x0000000000000026 FM 0x0000000000000027 DVD 0x0000000000000028 RED 0x000000000000003B GREEN 0x000000000000003C YELLOW 0x000000000000003D BLUE 0x000000000000003E TELETEXT 0x000000000000006F SLEEP 0x0000000000000030 MUTE 0x0000000000000064 BOSS_KEY 0x0000000000000039 CH_UP 0x000000000000007C CH_DOWN 0x0000000000000060 VOL_DOWN 0x0000000000000078 VOL_UP 0x0000000000000074 ENTER 0x0000000000000063 CC 0x0000000000000020 FULLSCREEN 0x0000000000000073 MENU 0x000000000000003F SCAN 0x0000000000000021 REPLAY 0x0000000000000032 PLAY 0x0000000000000033 SKIP 0x0000000000000034 OSD 0x0000000000000022 BACK 0x0000000000000024 STOP 0x0000000000000036 FORWARD 0x0000000000000025 LANGUAGE 0x0000000000000023 1 0x0000000000000075 2 0x0000000000000076 3 0x0000000000000077 4 0x0000000000000079 5 0x000000000000007A 6 0x000000000000007B 7 0x000000000000007D 8 0x000000000000007E 9 0x000000000000007F 0 0x0000000000000062 . 0x0000000000000031 RECALL 0x0000000000000061 VIDEO 0x000000000000006E AUDIO 0x000000000000006B DISPLAY 0x0000000000000066 SNAPSHOT 0x0000000000000038 PIP 0x000000000000003A RECSTOP 0x0000000000000036 REC 0x0000000000000037 TIMESHIFT 0x0000000000000035 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek.conf0000644000175000017500000000627710630554151023317 0ustar benben# # this config file was automatically generated # using WinLIRC 0.6.4 (LIRC 0.6.1pre3) on Sun Nov 03 14:25:14 2002 # # modified by CB # # contributed by Erik Christiansson, aka Sci # www.alphafish.com # erik@alphafish.com # # brand: Leadtek # model: RM-0010 (bundeled with TV2000 TV-card) # # modifications based on the config files from # Juan Toledo and # Markus Lischka begin remote name RM-0010 bits 16 flags SPACE_ENC|CONST_LENGTH eps 40 aeps 100 header 9000 4500 one 563 1687 zero 563 562 ptrail 563 repeat 9000 2250 pre_data_bits 16 pre_data 0xC03F gap 108000 toggle_bit 0 frequency 38000 duty_cycle 33 begin codes POWER 0x00000000000000FF TV/FM 0x00000000000040BF SCAN 0x000000000000A857 DISPLAY 0x0000000000006897 1 0x000000000000A05F 2 0x000000000000609F 3 0x000000000000E01F 4 0x000000000000906F 5 0x00000000000050AF 6 0x000000000000D02F 7 0x000000000000B04F 8 0x000000000000708F 9 0x000000000000F00F 0 0x00000000000048B7 RECALL 0x0000000000008877 ENTER 0x000000000000C837 CC 0x000000000000F807 MTS 0x000000000000D827 FINE_DOWN 0x0000000000009867 FINE_UP 0x00000000000018E7 VIDEO 0x0000000000007887 MUTE 0x00000000000028D7 CH_UP 0x00000000000030CF CH_DOWN 0x00000000000008F7 VOL_DOWN 0x00000000000010EF VOL_UP 0x00000000000020DF FULLSCREEN 0x000000000000C03F # The following are only supported by the remote control bundled with # the WinFast TV 2000 XP Deluxe card. SLEEP 0x00000000000004FB BOSS_KEY 0x000000000000946B RED 0x000000000000D42B GREEN 0x00000000000034CB YELLOW 0x000000000000B44B BLUE 0x000000000000748B PIP 0x00000000000054AB . 0x000000000000847B BACK 0x00000000000044BB PLAY 0x000000000000C43B NEXT 0x00000000000024DB TIMESHIFT 0x000000000000A45B STOP 0x000000000000649B REC 0x000000000000E41B SNAPSHOT 0x00000000000014EB end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_logitech.conf0000644000175000017500000001064510630554151023476 0ustar benben# # # contributed by Isaac Lauer # # brand: Logitech # model: Value Infrared Remote Control # supported devices: # begin remote name Logitech bits 8 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 one 0 833 zero 833 0 pre_data_bits 8 pre_data 0xA0 gap 29858 repeat_bit 0 begin codes POWER 0x0000000000000002 1 0x0000000000000015 2 0x0000000000000016 3 0x0000000000000014 4 0x0000000000000018 5 0x0000000000000019 6 0x0000000000000017 7 0x000000000000001C 8 0x000000000000001B 9 0x000000000000001A 0 0x000000000000001D PAUSE 0x0000000000000013 EJECT 0x0000000000000011 SEEK- 0x000000000000000E PLAY 0x000000000000000F SEEK+ 0x0000000000000010 STOP 0x0000000000000012 HELP 0x0000000000000001 CH- 0x000000000000000D CH+ 0x000000000000000A VOL- 0x000000000000000C VOL+ 0x0000000000000009 * 0x000000000000001F # 0x000000000000001E MUTE 0x000000000000000B BUTTONL_DOWN 0x0000000000000039 BUTTONR_DOWN 0x000000000000003A BUTTON_UP 0x0000000000000038 ENTER 0x0000000000000008 CLOSE 0x0000000000000023 TV 0x0000000000000004 GDE 0x0000000000000005 CD 0x0000000000000006 MSG 0x0000000000000007 PHONE 0x0000000000000003 MOUSE_N 0x0000000000000040 MOUSE_NNE 0x0000000000000041 MOUSE_NE 0x0000000000000042 MOUSE_NEE 0x0000000000000043 MOUSE_E 0x0000000000000044 MOUSE_SEE 0x0000000000000045 MOUSE_SE 0x0000000000000046 MOUSE_SSE 0x0000000000000047 MOUSE_S 0x0000000000000048 MOUSE_SSW 0x0000000000000049 MOUSE_SW 0x000000000000004A MOUSE_SWW 0x000000000000004B MOUSE_W 0x000000000000004C MOUSE_NWW 0x000000000000004D MOUSE_NW 0x000000000000004E MOUSE_NNW 0x000000000000004F MOUSE_N 0x0000000000000050 MOUSE_NNE 0x0000000000000051 MOUSE_NE 0x0000000000000052 MOUSE_NEE 0x0000000000000053 MOUSE_E 0x0000000000000054 MOUSE_SEE 0x0000000000000055 MOUSE_SE 0x0000000000000056 MOUSE_SSE 0x0000000000000057 MOUSE_S 0x0000000000000058 MOUSE_SSW 0x0000000000000059 MOUSE_SW 0x000000000000005A MOUSE_SWW 0x000000000000005B MOUSE_W 0x000000000000005C MOUSE_NWW 0x000000000000005D MOUSE_NW 0x000000000000005E MOUSE_NNW 0x000000000000005F MOUSE_N 0x0000000000000060 MOUSE_NNE 0x0000000000000061 MOUSE_NE 0x0000000000000062 MOUSE_NEE 0x0000000000000063 MOUSE_E 0x0000000000000064 MOUSE_SEE 0x0000000000000065 MOUSE_SE 0x0000000000000066 MOUSE_SSE 0x0000000000000067 MOUSE_S 0x0000000000000068 MOUSE_SSW 0x0000000000000069 MOUSE_SW 0x000000000000006A MOUSE_SWW 0x000000000000006B MOUSE_W 0x000000000000006C MOUSE_NWW 0x000000000000006D MOUSE_NW 0x000000000000006E MOUSE_NWW 0x000000000000006F end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_mceusb.conf0000644000175000017500000000453110630554151023153 0ustar benben# # RC-6 config file # # source: http://home.hccnet.nl/m.majoor/projects__remote_control.htm # http://home.hccnet.nl/m.majoor/pronto.pdf # # used by: Philips # ######### # # Philips Media Center Edition remote control # For use with the USB MCE ir receiver # # Dan Conti dconti|acm.wwu.edu # # Updated with codes for MCE 2005 Remote additional buttons # *, #, Teletext, Red, Green, Yellow & Blue Buttons # Note: TV power button transmits no code until programmed. # Updated 12th September 2005 # Graham Auld - mce|graham.auld.me.uk # # Radio, Print, RecTV are only available on the HP Media Center remote control # begin remote name mceusb bits 16 flags RC6|CONST_LENGTH eps 30 aeps 100 header 2667 889 one 444 444 zero 444 444 pre_data_bits 21 pre_data 0x37FF0 gap 105000 toggle_bit 22 rc6_mask 0x100000000 begin codes Blue 0x00007ba1 Yellow 0x00007ba2 Green 0x00007ba3 Red 0x00007ba4 Teletext 0x00007ba5 # starts at af Radio 0x00007baf Print 0x00007bb1 Videos 0x00007bb5 Pictures 0x00007bb6 RecTV 0x00007bb7 Music 0x00007bb8 TV 0x00007bb9 # no ba - d8 Guide 0x00007bd9 LiveTV 0x00007bda DVD 0x00007bdb Back 0x00007bdc OK 0x00007bdd Right 0x00007bde Left 0x00007bdf Down 0x00007be0 Up 0x00007be1 Star 0x00007be2 Hash 0x00007be3 Replay 0x00007be4 Skip 0x00007be5 Stop 0x00007be6 Pause 0x00007be7 Record 0x00007be8 Play 0x00007be9 Rewind 0x00007bea Forward 0x00007beb ChanDown 0x00007bec ChanUp 0x00007bed VolDown 0x00007bee VolUp 0x00007bef More 0x00007bf0 Mute 0x00007bf1 Home 0x00007bf2 Power 0x00007bf3 Enter 0x00007bf4 Clear 0x00007bf5 Nine 0x00007bf6 Eight 0x00007bf7 Seven 0x00007bf8 Six 0x00007bf9 Five 0x00007bfa Four 0x00007bfb Three 0x00007bfc Two 0x00007bfd One 0x00007bfe Zero 0x00007bff end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_nova-s-plus.conf0000644000175000017500000000472710630554151024070 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) on Mon Mai 8 19:29:37 2006 # # contributed by Jalal Achkoune # # brand: Hauppauge # model no. of remote control: # devices being controlled by this remote: WinTV NOVA-S Plus # begin remote name Hauppauge bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 132784 toggle_bit 0 begin codes KEY_GO 0x0161 KEY_POWER 0x0074 KEY_TV 0x0179 KEY_VIDEO 0x0189 KEY_AUDIO 0x0188 KEY_PICURE 0x016F KEY_GUIDE 0x016D KEY_RADIO 0x0181 KEY_UP 0x0067 KEY_LEFT 0x0069 KEY_RIGHT 0x006A KEY_DOWN 0x006C KEY_OK 0x001C KEY_EXIT 0x00AE KEY_MENU 0x008B KEY_VOLUMEUP 0x0073 KEY_VOLUMEDOWN 0x0072 KEY_CHANNELUP 0x0192 KEY_CHANNELDOWN 0x0193 KEY_PREV 0x019C KEY_MUTE 0x0071 KEY_RECORD 0x00A7 KEY_STOP 0x0080 KEY_REWIND 0x00A8 KEY_PLAY 0x00CF KEY_FORWARD 0x00D0 KEY_PREVIOUS 0x00A5 KEY_PAUSE 0x0077 KEY_NEXT 0x00A3 KEY_1 0x004F KEY_2 0x0050 KEY_3 0x0051 KEY_4 0x004B KEY_5 0x004C KEY_6 0x004D KEY_7 0x0047 KEY_8 0x0048 KEY_9 0x0049 KEY_0 0x0052 KEY_TEXT 0x0184 KEY_SUB 0x0172 KEY_RED 0x018E KEY_GREEN 0x018F KEY_YELLOW 0x0190 KEY_BLUE 0x0191 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_packard_bell.conf0000644000175000017500000000705010630554151024277 0ustar benben# Config file for Packard Bell Remotes (with repeat codes!) # created by Samuel Wood (sjw@umr.edu) # # brand: Packard Bell Remote # model: El Cheapo Packard Bell Remote # # This is a config file for the cheap excess Packard Bell remotes # you sometimes can buy from online auctions like www.onsale.com. # # The receiver that comes with it hooks into the serial port and works # fine with lirc 0.5.4. # # The receiver that comes with the remote is near garbage. If # you don't point almost directly at it, it will not detect. But # it's simpler than building your own. :-) # # Repeat works fine for me. You just have to modify or add the # "repeat=" lines in your .lircrc. # # irrecord was used to generate the file, then I modified and # added repeat codes. # # The button names used are identical to what was printed on the # remote, except for the number pads (using actual numbers like # "1" and so forth did not seem to work. Similarly, '*' is Star # and '#' is Hash. LMB and RMB refer to the two mousepad buttons # on the left and right respectively. # # I still need to modify the gap setting. Right now, if you don't # hold the button down long enough, it may not register, but if # you hold it too long, it will detect a repeat or two. Feel free # to modify this to work better. If you get it to work better, send # me a copy. :-) begin remote name PackBell bits 15 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9065 4500 one 597 532 zero 597 1643 ptrail 597 pre_data_bits 16 pre_data 0xF708 post_data_bits 1 post_data 0x0 gap 107000 repeat_bit 0 repeat 9050 2250 begin codes Help 0x0000000000006F90 Phone 0x0000000000004FB0 Message 0x0000000000006E91 SRS 0x0000000000004EB1 CD 0x0000000000002FD0 Aux1 0x0000000000000FF0 Aux2 0x0000000000002ED1 Aux3 0x0000000000000EF1 LMB 0x00000000000023DC RMB 0x000000000000639C Up 0x00000000000037C8 Down 0x00000000000057A8 Left 0x0000000000007788 Right 0x00000000000017E8 Menu 0x0000000000007B84 Mute 0x0000000000003BC4 Enter 0x00000000000047B8 CHUp 0x00000000000027D8 CHDown 0x0000000000006798 VolUp 0x0000000000005BA4 VolDown 0x0000000000001BE4 Display 0x00000000000007F8 One 0x0000000000005EA1 Two 0x0000000000001EE1 Three 0x0000000000000BF4 Four 0x0000000000007E81 Five 0x0000000000003EC1 Six 0x0000000000004BB4 Seven 0x0000000000005FA0 Eight 0x0000000000001FE0 Nine 0x0000000000002BD4 Zero 0x0000000000003FC0 Star 0x0000000000007F80 Hash 0x0000000000006B94 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_pctv.conf0000644000175000017500000000641510630554151022654 0ustar benben# # contributed by Bart Alewijnse # # brand: Pinnacle Systems # model: PCTV Remote (Perhaps other ones as well) # supported devices: there's only one I know of. (serial) # # Mail me if your remote is only partly supported, or if it has different # buttons than listed below. # begin remote name PinnacleSysPCTVRemote bits 8 eps 30 aeps 100 one 0 0 zero 0 0 gap 180000 begin codes Mute 0x000000000000003C Power 0x000000000000002F Chan+Play 0x000000000000003F Chan-Stop 0x000000000000003E Vol+FF 0x000000000000003B Vol-Rew 0x000000000000003D 1 0x0000000000000031 2 0x0000000000000032 3 0x0000000000000033 4 0x0000000000000034 5 0x0000000000000035 6 0x0000000000000036 7 0x0000000000000037 8 0x0000000000000038 9 0x0000000000000039 Fullscreen 0x000000000000002D 0/AV 0x000000000000003A Info 0x000000000000002B Preview 0x000000000000002E Record 0x0000000000000027 Chan_Last 0x0000000000000025 F_TV 0x0000000000000026 F_TELETEXT 0x0000000000000029 F_RADIO 0x000000000000002A # # here are some extra buttons a new version of the remote seems to have # # contributed by Robbert Monna # # brand: Pinnacle Systems # model: PCTV Remote (newest version?) # supported devices: dongle on serial port (from TV-Card) # L 0x000000000000001F Zoom 0x000000000000001E vol+ 0x000000000000001B vol- 0x000000000000000F channel+ 0x0000000000000017 channel- 0x000000000000001C middle 0x000000000000001A Menu 0x000000000000001D next 0x0000000000000019 undo 0x0000000000000016 pause 0x0000000000000015 redo 0x0000000000000013 Rewind 0x000000000000000E Play 0x000000000000000D Stop 0x000000000000000B FForward 0x0000000000000007 EPG 0x0000000000000018 # here are some more buttons that seem to be mapped differently from # the ones above # contributed by InterCeptor ceptor_7@freemail.hu # # brand: Pinnacle Systems PCTV Pro Remote # model no. of remote control: (I can't find any numbers on it) # supported devices: serial # 9 0x0000000000000082 Zoom 0x00000000000000B2 middle 0x0000000000000014 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_realmagic.conf0000644000175000017500000000615610630554151023626 0ustar benben# # this config file was automatically generated # using lirc-0.6.3 on Fri Nov 10 21:47:32 2000 # # contributed by Stefan Neuwirth & Andreas Lange # # brand: Sigma Designs # model: REALmagic remote control # www.realmagic.com/support.htm#remote # supported devices: # "For Hollywood Plus Version 1.4 or above Driver only" # remote control for the Sigma Designs REALmagic Hollywood Plus DVD card # receiver is connected to the serial port - it does not require the card # # The first byte always is 131. The second and third byte are equal. (CB) # begin remote name REALmagic bits 20 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 10 pre_data 0x183 gap 189974 toggle_bit 0 begin codes 1 0x0000000000062D8B 2 0x0000000000012C4B 3 0x000000000001AC6B 4 0x0000000000072DCB 5 0x000000000000AC2B 6 0x0000000000052D4B # Nicolas Vignal reported that this code is sent for his remote # version (1.5). It should be no problem to just have two entries for # "6" unless you want to send codes what won't work for this receiver # anyway. 6 0x0000000000041505 7 0x0000000000058561 8 0x0000000000044511 9 0x000000000004AD2B 0 0x000000000004C531 VOL+ 0x0000000000022C8B VOL- 0x0000000000032CCB MUTE 0x000000000006ADAB L-R 0x0000000000052549 VGA 0x0000000000054551 ENTER 0x0000000000042509 QUIT 0x0000000000058D63 PRG 0x0000000000038CE3 UP 0x0000000000078DE3 DOWN 0x0000000000064D93 LEFT 0x0000000000044D13 RIGHT 0x000000000003ECFB SELECT 0x0000000000024C93 MENU 0x0000000000014C53 TITLE 0x0000000000054D53 OSD 0x0000000000034CD3 LANG 0x0000000000074DD3 ANGLE 0x000000000000CC33 SUB 0x000000000004CD33 PAUSE 0x000000000002CCB3 STOP 0x000000000006CDB3 PLAY 0x000000000001CC73 EJECT 0x000000000005CD73 REV 0x000000000003CCF3 FF 0x000000000007CDF3 PREV 0x0000000000002C0B NEXT 0x0000000000042D0B end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_streamzap.conf0000644000175000017500000000374610630554151023712 0ustar benben# # this config file was automatically generated # using lirc-0.7.1-CVS(serial) on Fri Feb 4 23:20:56 2005 # # contributed by Christoph Bartelmus # # brand: Streamzap # model no. of remote control: PC Remote # devices being controlled by this remote: USB receiver # begin remote name Streamzap_PC_Remote bits 6 flags RC5|CONST_LENGTH eps 30 aeps 100 one 907 804 zero 907 804 plead 949 pre_data_bits 8 pre_data 0xA3 gap 108344 toggle_bit 2 begin codes 0 0x00 1 0x01 2 0x02 3 0x03 4 0x04 5 0x05 6 0x06 7 0x07 8 0x08 9 0x09 POWER 0x0A MUTE 0x0B CH_UP 0x0C VOL_UP 0x0D CH_DOWN 0x0E VOL_DOWN 0x0F UP 0x10 LEFT 0x11 OK 0x12 RIGHT 0x13 DOWN 0x14 MENU 0x15 EXIT 0x16 PLAY 0x17 PAUSE 0x18 STOP 0x19 |<< 0x1A >>| 0x1B RECORD 0x1C << 0x1D >> 0x1E RED 0x20 GREEN 0x21 YELLOW 0x22 BLUE 0x23 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_tosh-vt76f.conf0000644000175000017500000000536410630554151023631 0ustar benben# # this config file was automatically generated # using WinLIRC 0.6.5 (LIRC 0.6.1pre3) on Tue Jan 31 23:13:02 2006 # # contributed by Lionel D. # english translation on Thu Feb 02 20:14:00 2006 # # brand: TOSHIBA # model: VT-76F # supported devices: # begin remote name VT-76F bits 16 flags SPACE_ENC eps 25 aeps 100 header 9066 4472 one 603 520 zero 603 1642 ptrail 603 repeat 9068 2236 pre_data_bits 16 pre_data 0xDD22 gap 39980 toggle_bit 0 begin codes POWER 0x000000000000B748 A.SELECT 0x00000000000035CA TV/VCR 0x0000000000007788 1 0x0000000000007F80 2 0x000000000000BF40 3 0x0000000000003FC0 4 0x000000000000DF20 5 0x0000000000005FA0 6 0x0000000000009F60 7 0x0000000000001FE0 8 0x000000000000EF10 9 0x0000000000006F90 0 0x000000000000AF50 CH- 0x00000000000007F8 CH+ 0x00000000000027D8 SHIFT<- 0x000000000000758A SHIFT-> 0x0000000000004DB2 DISPLAY 0x0000000000003EC1 OSP 0x000000000000C53A IMMEDIATE_REC 0x00000000000025DA INPUT 0x00000000000005FA SP/LP 0x00000000000045BA RECORD 0x000000000000B748 FAST_REW 0x0000000000006798 PLAY 0x00000000000057A8 FAST_FORW 0x00000000000037C8 PAUSE 0x000000000000F708 STOP 0x000000000000D728 SLOW 0x0000000000004FB0 INDEX 0x0000000000009D62 TIME_LEFT/CLOCK 0x0000000000009768 ALIGN_DOWN 0x0000000000000FF0 ALIGN_UP 0x0000000000008F70 TIME_SEARCH 0x0000000000005EA1 ZERO_BACK 0x0000000000001EE1 RST_COUNTER 0x0000000000009669 DT 0x000000000000D42B A.DUB 0x000000000000C738 CLEARNESS_IMG+ 0x000000000000906F CLEARNESS_IMG- 0x00000000000010EF end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_twinhan.conf0000644000175000017500000000376310630554151023353 0ustar benben# this config file was automatically generated # using lirc-0.7.1pre1(serial) on Mon Feb 7 21:00:46 2005 # # contributed by Th. Peters # # brand: Twinhan # model: black/silver, 32 Keys, bundled with DTV digital satellite receiver # devices being controlled by this remote: Twinhan DTV Sat (DVB-S) PCI-Card begin remote name TwinhanDTV bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9073 4400 one 654 1590 zero 654 469 ptrail 654 repeat 9076 2150 pre_data_bits 16 pre_data 0xFF gap 107783 toggle_bit 0 begin codes FULLSCREEN 0xB24D POWER 0x6897 1 0xC03F 2 0x807F 3 0x609F 4 0x906F 5 0xB847 6 0xF807 7 0xB04F 8 0x9867 9 0xD827 0 0xA857 RECORD 0x8877 FAVORITE 0xE817 REWIND 0x02FD FORWARD 0x48B7 CH_UP 0xA05F CH_DOWN 0x40BF PLAY 0x28D7 VOL_DOWN 0x50AF VOL_UP 0x7887 RECALL 0x708F STOP 0x58A7 TIMESHIFT 0x32CD MUTE 0x08F7 CANCEL 0x30CF CAPTURE 0x2AD5 PREVIEW 0x12ED EPG 0x38C7 RECORDLIST 0x20DF TAB 0x00FF TELETEXT 0xF00F end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_ultrax.conf0000644000175000017500000000373010630554151023214 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.2pre2(dev/input) on Sat May 19 19:29:07 2007 # # contributed by Guillaume LECERF # # brand: Logitech UltraX Media Remote # model no. of remote control: R-RC6 # devices being controlled by this remote: # begin remote name R-RC6 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 133314 toggle_bit_mask 0x800100A4 begin codes KEY_RED 0x018E KEY_HOME 0x0066 KEY_CLOSE 0x00CE KEY_TV 0x0179 KEY_DVD 0x0185 KEY_RADIO 0x0181 KEY_MEDIA 0x00E2 KEY_VIDEO 0x0189 KEY_MP3 0x0187 KEY_VOLUMEDOWN 0x0072 KEY_VOLUMEUP 0x0073 KEY_MIN_INTERESTING 0x0071 KEY_RECORD 0x00A7 KEY_STOPCD 0x00A6 KEY_PREVIOUSSONG 0x00A5 KEY_NEXTSONG 0x00A3 KEY_PLAYPAUSE 0x00A4 KEY_REWIND 0x00A8 KEY_FASTFORWARD 0x00D0 KEY_BACK 0x009E KEY_CHANNELUP 0x0192 KEY_MENU 0x008B KEY_CHANNELDOWN 0x0193 KEY_ANGLE 0x0173 KEY_AUDIO 0x0188 KEY_LAST 0x0195 KEY_LANGUAGE 0x0170 KEY_AGAIN 0x0081 KEY_PROPS 0x0082 KEY_SUBTITLE 0x0172 KEY_SHUFFLE 0x019A KEY_TEXT 0x0184 end codes end remote geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_animax0000644000175000017500000000011410630554151022217 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_serial type=3" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_askey0000644000175000017500000000014210630554151022057 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="videodev|bttv card=38|lirc_dev|lirc_gpio" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb0000644000175000017500000000010510630554151022231 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_atiusb" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_atiusb20000644000175000017500000000010510630554151022313 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_atiusb" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_avermedia0000644000175000017500000000012010630554151022674 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=13|lirc_gpio" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_creative0000644000175000017500000000010010630554151022537 0ustar benbenLIRC_DRIVER=creative LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_cx880000644000175000017500000000010510630554151021534 0ustar benbenLIRC_DRIVER=dev/input LIRC_DEVICE=/dev/input/ir LIRC_MODULES="evdev" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_digimatrix0000644000175000017500000000014310630554151023105 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_it87 digimatrix=1 it87_freq=36 irq=9" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_hauppauge0000644000175000017500000000011610630554151022723 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=2|lirc_i2c" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_homemade0000644000175000017500000000010510630554151022521 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_serial" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_imonknob0000644000175000017500000000010310630554151022554 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_imon" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_irman0000644000175000017500000000007510630554151022056 0ustar benbenLIRC_DRIVER=irman LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek0000644000175000017500000000012010630554151022350 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=34|lirc_gpio" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_leadtek-pvr20000000644000175000017500000000011310630554151023461 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_dev|lirc_i2c" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_logitech0000644000175000017500000000010010630554151022533 0ustar benbenLIRC_DRIVER=logitech LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_mceusb0000644000175000017500000000010510630554151022220 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_mceusb" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_mceusb20000644000175000017500000000010610630554151022303 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_mceusb2" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_pctv0000644000175000017500000000007610630554151021725 0ustar benbenLIRC_DRIVER=pinsys LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_realmagic0000644000175000017500000000010110630554151022662 0ustar benbenLIRC_DRIVER=pixelview LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_streamzap0000644000175000017500000000011010630554151022744 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_streamzap" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lirc/lircd_ultrax0000644000175000017500000000012210630554151022260 0ustar benbenLIRC_DRIVER=dev/input LIRC_DEVICE=/dev/input/logitechremote2 LIRC_MODULES="evdev" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/autoplay0000644000175000017500000000011010630554151020466 0ustar benben# Configure system to autoplay when automounting media. AUTOPLAY="yes" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/mplayer/0000755000175000017500000000000010630554152020367 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/mplayer/mplayer.conf0000644000175000017500000000133310630554152022707 0ustar benbenvo=cvidix,vesa mixer-channel=Master framedrop=yes vsync=yes fs=yes zoom=yes menu=yes menu-startup=yes menu-chroot=/mnt double=yes fixed-vo=yes nocolorkey=yes cache=4096 cache-min=2 idx=yes lircconf=/etc/lircrc sub-fuzziness=1 #monitor-hfreq=31.5k-50k #monitor-vfreq=50-90 input=file=/var/mp_control menu-flip-hebrew=1 autosync=30 menu-keepdir=1 bg-lcdbanner="GeeXboX Open Media Center" info-fifo=/tmp/mp_streaminfo # Set Post Processing (h deblock, v deblock, dering, auto luminance) # Consumes CPU power, disabled for low configs, uncomment to enable it. #vf=pp=hb:a/vb:a/dr:a/al:a # Forces RTSP client's port (usefull for FreeboxTV users in router mode) # Do _NOT_ uncomment the line without LIVE555 support #rtsp-port = 31337 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/mplayer/menu.conf0000644000175000017500000002342010630554152022203 0ustar benben #WELCOME_CONSOLE# geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/mplayer/input.conf0000644000175000017500000000216710630554152022403 0ustar benben## ## GeeXboX MPlayer input control file ## ## Playback p pause SPACE pause f pt_step -1 g pt_step 1 h tv_step_channel 1 l tv_step_channel -1 n tv_step_norm b tv_step_chanlist ## Seeking RIGHT seek +10 LEFT seek -10 DOWN seek -60 UP seek +60 PGUP seek 600 PGDWN seek -600 ## Audio properties - audio_delay 0.100 + audio_delay -0.100 / volume -1 * volume 1 c mute e switch_audio ## Subtitle properties z sub_delay -0.1 x sub_delay +0.1 r sub_pos -1 t sub_pos +1 w sub_select ## DVD Menu Navigation 8 dvdnav 1 # DVDNav UP 2 dvdnav 2 # DVDNav DOWN 4 dvdnav 3 # DVDNav LEFT 6 dvdnav 4 # DVDNav RIGHT 0 dvdnav 5 # DVDNav MENU ENTER dvdnav 6 # DVDNav SELECT ## Miscelaneous a quit q quit ESC quit k halt o osd m menu toggle ; menu toggle s run /usr/bin/tvswitch y play_dvd #i record ## Controls 1 contrast -1 3 contrast 1 7 brightness -1 9 brightness 1 INS hue -1 DEL hue 1 HOME saturation -1 END saturation 1 ## Joystick JOY_RIGHT seek 10 JOY_LEFT seek -10 JOY_UP seek 60 JOY_DOWN seek -60 JOY_BTN1 menu hide JOY_BTN2 pause JOY_BTN3 osd JOY_BTN4 mute JOY_BTN5 volume -1 JOY_BTN6 volume 1 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/mplayer/no_nvidia_vidix0000644000175000017500000000051710630554152023466 0ustar benbenYou can enable nvidia vidix driver simply by removing this file. Vidix should give you better performance especially with low-end hardware. This feature is not very well tested. That's why it is not enabled by default. And that's also why you should help us, testing this feature and reporting your results if you own nvidia hardware. geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/mplayer/codecs.conf0000644000175000017500000017315610630554152022513 0ustar benben;============================================================================= ; Default codecs config file. It replaces the old codecs.c file! ; Before editing this file, please read DOCS/tech/codecs.conf.txt ! ;============================================================================= release 20070511 ;============================================================================= ; VIDEO CODECS ;============================================================================= videocodec ffkmvc fourcc KMVC out BGR8 driver ffmpeg dll "kmvc" videocodec ffzmbv info "FFmpeg Zip Motion-Block Video" status working fourcc ZMBV driver ffmpeg dll "zmbv" out RGB24 videocodec zmbv info "Zip Motion-Block Video" status working fourcc ZMBV driver vfw dll "zmbv.dll" out BGR24,BGR15,BGR8 query,flip ; MPEG-1/2 decoding: ; Note: mpegpes is preferred for hw decoders: videocodec mpegpes info "MPEG-PES output (.mpg or DXR3/IVTV/DVB card)" comment "for hardware decoding" status working format 0x10000001 ; mpeg 1 format 0x10000002 ; mpeg 2 driver mpegpes out MPES videocodec mpeg12 info "MPEG-1 or 2 (libmpeg2)" comment "with postprocessing" status working format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc "DVR " fourcc hdv2 fourcc mpg1 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc mpg2,MPG2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver libmpeg2 ; dll "libmpeg2" out YV12,I420,IYUV out 422P videocodec ffmpeg1 info "FFmpeg MPEG-1" status working format 0x10000001 ; MPEG-1 fourcc mpg1 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc MPEG driver ffmpeg dll "mpeg1video" out YV12,I420,IYUV videocodec ffmpeg2 info "FFmpeg MPEG-2" status working format 0x10000002 ; MPEG-2 fourcc mpg2,MPG2 fourcc "DVR " fourcc hdv2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver ffmpeg dll "mpeg2video" out YV12,I420,IYUV out 422P,444P ; for backward compatibility videocodec ffmpeg12 info "FFmpeg MPEG-1/2" status working format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc mpg1,mpg2,MPG2 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc "DVR " fourcc hdv2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver ffmpeg dll "mpegvideo" out YV12,I420,IYUV out 422P,444P videocodec ffmpeg12mc info "FFmpeg MPEG-1/2 (XvMC)" status buggy format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc mpg1,mpg2,MPG2 fourcc "DVR " fourcc hdv2 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) driver ffmpeg dll "mpegvideo_xvmc" out IDCT_MPEG2 out MOCO_MPEG2 ; we have only native open source codecs for these: videocodec ffnuv info "NuppelVideo" status working fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC fourcc RJPG driver ffmpeg dll nuv out I420 videocodec nuv info "NuppelVideo" status working fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC fourcc RJPG driver nuv out I420,IYUV videocodec ffbmp info "FFmpeg BMP decoder" status working fourcc "bmp " ; for BMP-encoded QuickTime files format 0x706D62 ; AVI driver ffmpeg dll bmp out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec ffgif info "FFmpeg GIF decoder" status working fourcc "gif " ; for GIF-encoded QuickTime files driver ffmpeg dll gif out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec fftiff info "FFmpeg TIFF decoder" status untested fourcc "tiff" ; for TIFF-encoded QuickTime files driver ffmpeg dll tiff out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec ffpng info "FFmpeg PNG decoder" status working fourcc mpng,MPNG fourcc "png " ; for PNG-encoded QuickTime files driver ffmpeg dll png out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec mpng info "PNG image decoder" status working comment "Gray scaled PNG with Alpha channel not supported" fourcc mpng,MPNG fourcc "png " ; for PNG-encoded QuickTime files dll "libpng" driver mpng out BGR32,BGR24,BGR8,Y800 videocodec fftga info "FFmpeg TGA decoder" status untested fourcc mtga,MTGA fourcc "tga " ; for TGA-encoded QuickTime files driver ffmpeg dll targa out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec mtga info "TGA image decoder" status working comment "Only 24bpp and 32bpp RGB TGA files supported" fourcc mtga,MTGA driver mtga out BGR32,BGR24 videocodec sgi info "SGI image decoder" status working fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC driver sgi out BGR24 videocodec ffindeo3 info "FFmpeg Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver ffmpeg dll indeo3 out YVU9 videocodec fffli info "Autodesk FLI/FLC Animation" status working fourcc FLIC ; FLIC is an internal MPlayer FOURCC driver ffmpeg dll "flic" out BGR16,BGR15,BGR8 query videocodec ffaasc info "Autodesk RLE decoder" status working fourcc AASC driver ffmpeg dll "aasc" out BGR24 videocodec ffloco info "LOCO video decoder" status working fourcc LOCO driver ffmpeg dll "loco" out 422P,YV12,BGR32,BGR24 query videocodec ffqtrle info "QuickTime Animation (RLE)" status working format 0x20656C72 ; "rle " driver ffmpeg dll "qtrle" out BGR32,RGB24,BGR15,BGR8 query videocodec ffrpza info "QuickTime Apple Video" status working fourcc rpza,azpr driver ffmpeg dll "rpza" out BGR15 videocodec ffsmc info "Apple Graphics (SMC) codec" status working format 0x20636d73 ; "smc " driver ffmpeg dll "smc" out BGR8 videocodec ff8bps info "Planar RGB (Photoshop)" status working fourcc 8BPS driver ffmpeg dll "8bps" out BGR32,BGR24,BGR8 query videocodec ffcyuv info "Creative YUV (libavcodec)" status working fourcc cyuv,CYUV driver ffmpeg dll "cyuv" out 411P videocodec ffmsrle info "Microsoft RLE" status working format 0x1 format 0x2 fourcc WRLE driver ffmpeg dll "msrle" out BGR8 videocodec ffroqvideo info "Id RoQ File Video Decoder" status working fourcc RoQV ; RoQV is an internal MPlayer FOURCC driver ffmpeg dll "roqvideo" out YV12 videocodec lzo info "LZO compressed" status working fourcc LZO1 driver lzo dll "liblzo" out YV12,I420 out BGR24 flip videocodec theora info "Theora (free, reworked VP3)" status working fourcc theo,Thra driver theora dll libtheora out YV12 ; prefer native codecs over win32? ; the win32 codecs probably are (better) optimized and support direct ; rendering, so this may be not the best idea... ;WIN32: videocodec cram info "Microsoft Video 1" comment "-vf palette required for 8bpp" status buggy fourcc cram,CRAM CRAM fourcc msvc,MSVC CRAM fourcc wham,WHAM CRAM driver vfw dll "msvidc32.dll" out BGR24,BGR15,BGR8 static,query videocodec ffcvid info "Cinepak Video (native codec)" status working fourcc cvid,CVID driver ffmpeg dll "cinepak" out YV12,BGR8 query videocodec cvidvfw info "Cinepak Video" status working fourcc cvid driver vfw dll "iccvid.dll" ; out YUY2 ; out UYVY out BGR24,BGR15 static videocodec huffyuv info "HuffYUV" status buggy fourcc HFYU driver vfw dll "huffyuv.dll" out YUY2 flip,noflip,query ; out UYVY flip out BGR32,BGR24 flip,query ;NATIVE: videocodec ffvideo1 info "Microsoft Video 1 (native codec)" status working fourcc cram,CRAM fourcc msvc,MSVC fourcc wham,WHAM driver ffmpeg dll "msvideo1" out BGR15,BGR8 query videocodec ffmszh info "AVImszh (native codec)" status working fourcc MSZH driver ffmpeg dll "mszh" out BGR24 videocodec ffzlib info "AVIzlib (native codec)" status working fourcc ZLIB driver ffmpeg dll "zlib" out BGR24 ;XAnim (slow): videocodec cvidxa info "XAnim's Radius Cinepak Video" status buggy fourcc cvid driver xanim dll "vid_cvid.xa" out YV12,IYUV,I420 static ; time to decide what to do with the MPEG-4/DivX variants... ; ff* is fastest... videocodec ffhuffyuv info "FFmpeg HuffYUV" status working fourcc HFYU,FFVH driver ffmpeg dll huffyuv out YUY2,422P,YV12 out BGR32,BGR24 videocodec ffv1 info "FFV1 (lossless codec)" status working fourcc FFV1 driver ffmpeg dll ffv1 out 411P,444P,422P,YV12,I420,IYUV,YVU9 out BGR32 videocodec ffsnow info "FFSNOW (Michael's wavelet codec)" status working fourcc snow,SNOW driver ffmpeg dll snow out YV12 videocodec ffasv1 info "FFmpeg ASUS V1" status working fourcc ASV1 driver ffmpeg dll asv1 out YV12,I420,IYUV videocodec ffasv2 info "FFmpeg ASUS V2" status working fourcc ASV2 driver ffmpeg dll asv2 out YV12,I420,IYUV videocodec ffvcr1 info "FFmpeg ATI VCR1" status working fourcc VCR1 driver ffmpeg dll vcr1 out YVU9 videocodec ffcljr info "FFmpeg Cirrus Logic AccuPak (CLJR)" status working fourcc CLJR driver ffmpeg dll cljr out 411P videocodec ffsvq1 info "FFmpeg Sorenson Video v1 (SVQ1)" status working fourcc SVQ1,svq1 driver ffmpeg dll svq1 out YVU9 videocodec ff4xm info "FFmpeg 4XM video" status working fourcc 4XMV driver ffmpeg dll 4xm out BGR16 videocodec ffvixl info "Miro/Pinnacle VideoXL codec" status working fourcc VIXL fourcc PIXL ; this is Pinnacle one driver ffmpeg dll xl out 411P videocodec ffqtdrw info "QuickDraw native decoder" status working fourcc qdrw driver ffmpeg dll qdraw out BGR8 videocodec ffindeo2 info "Indeo 2 native decoder" status working fourcc RT21 driver ffmpeg dll indeo2 out YVU9 videocodec ffflv info "FFmpeg Flash video" status working fourcc FLV1 driver ffmpeg dll flv out YV12 videocodec fffsv info "FFmpeg Flash Screen video" status working fourcc FSV1 driver ffmpeg dll flashsv out BGR24 videocodec ffdivx info "FFmpeg DivX ;-) (MS MPEG-4 v3)" status working fourcc MPG3,mpg3 div3 fourcc MP43,mp43 div3 ; M$ MPEG-4 v3 (fourcc mapping to div3) fourcc DIV5,div5 div3 ; DivX 3.20 fourcc DIV6,div6 div4 ; -||- fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax) fourcc 3IVD,3ivd ; divxdoctored files (3ivx.com) driver ffmpeg dll msmpeg4 out YV12,I420,IYUV videocodec ffmp42 info "FFmpeg M$ MPEG-4 v2" status working fourcc DIV2,div2 mp42 fourcc MP42,mp42 driver ffmpeg dll msmpeg4v2 out YV12,I420,IYUV videocodec ffmp41 info "FFmpeg M$ MPEG-4 v1" status working fourcc DIV1,div1 mpg4 fourcc MPG4,mpg4 driver ffmpeg dll msmpeg4v1 out YV12,I420,IYUV videocodec ffwmv1 info "FFmpeg M$ WMV1/WMV7" status working fourcc WMV1,wmv1 driver ffmpeg dll wmv1 out YV12,I420,IYUV videocodec ffwmv2 info "FFmpeg M$ WMV2/WMV8" status buggy fourcc WMV2,wmv2 driver ffmpeg dll wmv2 out YV12,I420,IYUV videocodec ffwmv3 info "FFmpeg M$ WMV3/WMV9" status buggy fourcc WMV3,wmv3 driver ffmpeg dll wmv3 out YV12,I420,IYUV videocodec ffvc1 info "FFmpeg M$ WVC1" status buggy fourcc WVC1,wvc1,WMVA driver ffmpeg dll vc1 out YV12,I420,IYUV videocodec ffh264 info "FFmpeg H.264" status working fourcc H264,h264 fourcc X264,x264 fourcc avc1,AVC1 fourcc davc,DAVC format 0x10000005 driver ffmpeg dll h264 out YV12,I420,IYUV videocodec ffsvq3 info "FFmpeg Sorenson Video v3 (SVQ3)" status working fourcc SVQ3 driver ffmpeg dll svq3 out YV12,I420,IYUV videocodec ffodivx info "FFmpeg MPEG-4" status working fourcc FMP4,fmp4 fourcc DIVX,divx fourcc DIV1,div1 divx fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc M4S2,m4s2 fourcc xvid,XVID,XviD,XVIX fourcc DX50,dx50,BLZ0 DX50 fourcc mp4v,MP4V format 0x4 fourcc UMP4 fourcc RMP4 fourcc 3IV2,3iv2 ; 3ivx Delta 4 fourcc DXGM fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110 fourcc SMP4,smp4 ; Samsung SMP4 video codec format 0x10000004 ; mpeg 4 es driver ffmpeg dll mpeg4 ;opendivx out YV12,I420,IYUV videocodec ffwv1f info "WV1F MPEG-4" status working fourcc WV1F driver ffmpeg dll mpeg4 out YV12,I420,IYUV flip videocodec xvid info "XviD (MPEG-4)" status working fourcc FMP4,fmp4 fourcc DIVX,divx fourcc xvid,XVID,XviD,XVIX fourcc DIV1,div1 divx fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc M4S2,m4s2 fourcc DX50,dx50,BLZ0 DX50 fourcc mp4v,MP4V format 0x4 fourcc UMP4 fourcc RMP4 fourcc 3IV2,3iv2 ; 3ivx Delta 4 fourcc DXGM fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110 fourcc SMP4,smp4 ; Samsung SMP4 video codec format 0x10000004 ; mpeg 4 es driver xvid out YV12 out I420 out YUY2 out UYVY out YVYU out BGR32,BGR24,BGR16,BGR15 dll "libxvidcore.a" ; is divx4vfw stable enough, working everywhere and faster than divxds? videocodec divx4vfw info "DivX4Windows-VFW" status buggy comment "sig11 with -framedrop" fourcc DIVX,divx ; opendivx / divx4 fourcc DIV1,div1 divx ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! fourcc AP41 DIV3 ; AngelPotion stuff format 0x4 driver vfw dll "divx.dll" ; out YV12 ; buggy out YUY2 out BGR32,BGR24,BGR15 ; the original ones... prefer DShow for postprocessing: videocodec divxds info "DivX ;-) (MS MPEG-4 v3)" comment "with postprocessing" status working fourcc MP43,mp43 div3 ; fourcc mapping to div3 fourcc DIV5,div5 div3 fourcc DIV6,div6 div4 fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff driver dshow dll "divx_c32.ax" guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec divx info "DivX ;-) (MS MPEG-4 v3)" status working fourcc MP43,mp43 div3 ; M$ MPEG-4 v3 (fourcc mapping to div3) fourcc DIV5,div5 div3 ; DivX 3.20 fourcc DIV6,div6 div4 ; -||- fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff driver vfw dll "divxc32.dll" out YUY2 yuvhack out BGR32,BGR24,BGR15 ; hmm. we should check, maybe these are/will be playable with libavcodec: videocodec mpeg4ds info "Microsoft MPEG-4 v1/v2" status working comment "with postprocessing" fourcc DIV2,div2 mp42 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc MPG4,mpg4 fourcc MP42,mp42 driver dshow dll "mpg4ds32.ax" guid 0x82CCD3E0, 0xF71A, 0x11D0, 0x9F, 0xE5, 0x00, 0x60, 0x97, 0x78, 0xEA, 0x66 out YUY2 ; out BGR32,BGR24,BGR16,BGR15 videocodec mpeg4 info "Microsoft MPEG-4 v1/v2" status working fourcc MPG4,mpg4 fourcc MP42,mp42 fourcc DIV2 mp42 driver vfw dll "mpg4c32.dll" out YUY2 yuvhack out BGR32,BGR24,BGR15 videocodec wmv8 info "Windows Media Video 8" status working fourcc WMV2 driver dshow dll "wmv8ds32.ax" guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f out YV12,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16,BGR15 videocodec wmv7 info "Windows Media Video 7" status working fourcc WMV1 driver dshow dll "wmvds32.ax" guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae out YUY2,UYVY ; out BGR32,BGR24,BGR16,BGR15 videocodec wmv9dmo info "Windows Media Video 9 DMO" status working fourcc WMV3 fourcc WMVP driver dmo dll "wmv9dmod.dll" guid 0x724bb6a4, 0xe526, 0x450f, 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11 out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvdmo info "Windows Media Video DMO" status working fourcc WMV1 fourcc WMV2 fourcc WMV3 fourcc WMVP driver dmo dll "wmvdmod.dll" guid 0x82d353df, 0x90bd, 0x4382, 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34 out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvadmo info "Windows Media Video Adv DMO" status working fourcc WMVA fourcc WVP2 driver dmo dll "wmvadvd.dll" guid 0x03be3ac4, 0x84b7, 0x4e0e, 0xa7, 0x8d, 0xd3, 0x52, 0x4e, 0x60, 0x39, 0x5a out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvvc1dmo info "Windows Media Video (VC-1) Advanced Profile Decoder" status working fourcc WVC1 driver dmo dll "wvc1dmod.dll" guid 0xc9bfbccf, 0xe60e, 0x4588, 0xa3, 0xdf, 0x5a, 0x03, 0xb1, 0xfd, 0x95, 0x85 out YV12,YUY2 videocodec wmsdmod info "Windows Media Screen Codec 2" status working fourcc MSS1 fourcc MSS2 driver dmo dll "wmsdmod.dll" guid 0x7bafb3b1, 0xd8f4, 0x4279, 0x92, 0x53, 0x27, 0xda, 0x42, 0x31, 0x08, 0xde out BGR32,BGR24,BGR16 videocodec ubmp4 info "UB Video MPEG-4" comment "black&white" status buggy fourcc mp4v UMP4 ; black&white, sometimes buggy too fourcc UMP4 driver vfw dll "ubvmp4d.dll" out I420 out UYVY ; MJPEG: ; Notes: m3jpeg+mjpeg are MMX optimized. avid is very stable but slow. ; ijpg only decodes JPEG images (no MJPEG), and slow. ; Update: ffmjpeg is almost perfect (and optimized) now, prefer it to others. videocodec zrmjpeg info "Zoran MJPEG passthrough" status buggy fourcc MJPG,jpeg driver zrmjpeg out ZRMJPEGNI,ZRMJPEGIT,ZRMJPEGIB query videocodec ffmjpeg info "FFmpeg MJPEG decoder" status working fourcc MJPG,mjpg fourcc AVRn,AVDJ ; AVID fourcc jpeg ; MOV Photo-JPEG fourcc mjpa ; Apple MJPEG-A (Quicktime) fourcc JFIF ; SMJPEG (Loki) fourcc ijpg,IJPG ; -mf type=jpeg fourcc JPEG ; SGI's AVI Photo-JPEG fourcc JPGL ; lossless JPEG (pegasus codec) fourcc LJPG ; lossless JPEG fourcc dmb1 ; MJPEG by Matrox Rainbow Runner driver ffmpeg dll mjpeg out 444P out 422P out YUY2 ; queried (conversion from yuv422p) out YV12,I420,IYUV out BGR32 ; lossless JPEG out RGB24 ; JPEG-LS out Y800 videocodec ffmjpegb info "FFmpeg MJPEG-B decoder" status working fourcc mjpb ; Apple MJPEG-B (Quicktime) driver ffmpeg dll mjpegb out 444P out 422P out YUY2 ; queryed (conversion from yuv422p) out YV12,I420,IYUV ; slow. usable only for standalone JPEGs, like -mf, avid or Photo-JPEG: videocodec ijpg info "Independent JPEG Group's codec" status working fourcc ijpg,IJPG ; -mf type=jpeg fourcc jpeg ; MOV Photo-JPEG fourcc AVRn,AVDJ ; AVID fourcc CJPG driver ijpg dll libjpeg out RGB24,BGR24,BGR32 ; http://www.morgan-multimedia.com/dev/codec_spec.htm videocodec m3jpeg info "Morgan Motion JPEG Codec" status working fourcc MJPG fourcc mjpa,mjpb,mjpg MJPG ; MOV files fourcc dmb1 MJPG ; MJPEG by Matrox Rainbow Runner driver vfw dll "m3jpeg32.dll" ; out YV12,I420 out YUY2,UYVY out BGR32,BGR24,BGR15 videocodec mjpeg info "MainConcept Motion JPEG" status working fourcc MJPG fourcc mjpa,mjpb,mjpg MJPG ; MOV files ; fourcc AVRn,AVDJ MJPG ; AVID (sometimes buggy) driver vfw dll "mcmjpg32.dll" out YUY2,UYVY out BGR32,BGR24,BGR15 videocodec avid info "AVID Motion JPEG" status working comment "slooooooooow but stable" fourcc AVRn fourcc AVDJ AVRn fourcc MJPG,mjpg AVRn driver vfw dll "AvidAVICodec.dll" out BGR24 flip videocodec LEAD info "LEAD (M)JPEG" status working comment "supports interlaced MJPEG" fourcc MJPG fourcc jpeg MJPG ; MOV Photo-JPEG fourcc LEAD driver vfw dll "LCodcCMP.dll" out BGR24,BGR15 videocodec imagepower info "ImagePower MJPEG2000" status buggy fourcc IPJ2 driver vfw dll "jp2avi.dll" out BGR32,BGR24,BGR15 videocodec m3jpeg2k info "Morgan MJPEG2000" status working fourcc MJ2C driver vfw dll "m3jp2k32.dll" out YV12,I420,IYUV out YUY2,UYVY out BGR32,BGR24,BGR15 ; http://www.morgan-multimedia.com/dev/directshow_dec_spec.htm videocodec m3jpegds info "Morgan MJPEG" status crashing fourcc MJPG mjpg fourcc mjpa,mjpb,mjpg mjpg ; MOV files fourcc dmb1 mjpg ; MJPEG by Matrox Rainbow Runner driver dshow dll "m3jpegdec.ax" guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 out I420 out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec pegasusm info "Pegasus Motion JPEG" status crashing fourcc MJPG driver vfw ; dll "pvmjpg20.dll" ; v2.0 dll "pvmjpg21.dll" ; v2.1 out BGR24 flip videocodec pegasusl info "Pegasus lossless JPEG" status crashing fourcc JPGL fourcc MJPG JPGL driver vfw dll "pvljpg20.dll" out BGR24 flip videocodec pegasusmwv info "Pegasus Motion Wavelet 2000" status crashing fourcc PVW2 driver vfw dll "pvwv220.dll" out BGR24 flip ; h263: - I don't know. comments? videocodec vivo info "Vivo H.263" status working fourcc VIVO,vivo vivo fourcc viv1,viv2 vivo driver vfw dll "ivvideo.dll" out BGR32,BGR24,BGR15 flip in BGR24 videocodec u263 info "UB Video H.263/H.263+/H.263++ Decoder" status working fourcc U263 fourcc vivo,VIVO U263 fourcc viv1 U263 driver dshow dll "ubv263d+.ax" guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0 ; out UYVY ; BGR32,BGR16,BGR15 seems to work too out BGR24 flip videocodec i263 info "I263" status working fourcc I263,i263 ; fourcc I420,i420 fourcc vivo,VIVO I263 fourcc viv1 I263 driver vfw dll "i263_32.drv" out I420 out YUY2 out BGR32,BGR24,BGR15 videocodec ffi263 info "FFmpeg I263 decoder" status working fourcc I263,i263 driver ffmpeg dll h263i out YV12,I420,IYUV videocodec ffh263 info "FFmpeg H.263+ decoder" status working fourcc H263,U263,h263,X263,M263 fourcc viv1 h263 fourcc s263 driver ffmpeg dll h263 out YV12,I420,IYUV videocodec ffzygo info "FFmpeg ZyGo" status untested fourcc ZyGo driver ffmpeg dll h263 out YV12,I420,IYUV flip videocodec h263xa info "XAnim's CCITT H.263" status crashing fourcc H263,h263 fourcc viv1 H263 fourcc VIVO,vivo H263 driver xanim dll "vid_h263.xa" out YV12,IYUV,I420 videocodec ffh261 info "CCITT H.261" status working fourcc H261,h261 driver ffmpeg dll h261 out YV12 videocodec qt261 info "QuickTime H.261 video decoder" status working fourcc H261,h261 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec h261xa info "XAnim's CCITT H.261" status buggy fourcc H261,h261 driver xanim dll "vid_h261.xa" out YV12,IYUV,I420 videocodec m261 info "M261" status untested fourcc m261,M261 driver vfw dll "msh261.drv" out BGR32,BGR24,BGR15 ; Indeo: ; Note: Indeo 3 is buggy, both XAnim (bad decoding) and VfW (fails with DR) ; Prefer win32 ones, they are faster, and 4/5 can DR. For fallback, there are ; Xanim codecs, they provide YV12, useful for YUV display or encoding. videocodec indeo5ds info "Intel Indeo 5" status working fourcc IV50,iv50 driver dshow dll "ir50_32.dll" guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 out YV12,IYUV,I420 out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec indeo5 info "Intel Indeo 5" status working fourcc IV50,iv50 driver vfwex dll "ir50_32.dll" ; out YV12,I420 ; flickering out YUY2 out BGR32,BGR24,BGR15 videocodec indeo4 info "Intel Indeo 4.1" status working fourcc IV41,iv41 driver vfw dll "ir41_32.dll" out IF09 out BGR24,BGR15 in YVU9 videocodec indeo3 info "Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver vfwex dll "ir32_32.dll" out IF09 out BGR24,BGR15 flip,static in YVU9 videocodec indeo5xa info "XAnim's Intel Indeo 5" status working fourcc IV50,iv50 driver xanim dll "vid_iv50.xa" out YVU9 videocodec indeo4xa info "XAnim's Intel Indeo 4.1" status working fourcc IV41,iv41 driver xanim dll "vid_iv41.xa" out YVU9 videocodec indeo3xa info "XAnim's Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver xanim dll "vid_iv32.xa" out YVU9 ; DV: qdv is more stable... libdv is slow, mcdv is unstable videocodec qdv info "Sony Digital Video (DV)" status working fourcc dvsl,dvsd,dvhd ; ???? fourcc DVSD dvsd ; pal .avi fourcc "dvcp" dvsd ; pal .mov fourcc "dvc " dvsd ; ntsc .mov driver dshow dll "qdv.dll" guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 out YUY2 out UYVY out BGR24,BGR16,BGR15 ; BGR32 is buggy, at least with one sample videocodec ffdv info "FFmpeg DV decoder" status working fourcc CDVC,cdvc fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc "dvcp" ; PAL DV in .mov fourcc "dvc " ; NTSC DV in .mov fourcc dvpp ; DVCPRO - PAL driver ffmpeg dll dvvideo out 411P,422P,YV12 videocodec libdv info "Raw DV decoder (libdv)" status working fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc "dvcp" ; PAL DV in .mov fourcc "dvc " ; NTSC DV in .mov fourcc dvpp ; DVCPRO - PAL fourcc AVdv ; AVID DV driver libdv dll libdv.so.2 out YUY2 ; note: it crashes with pond.dv :( videocodec mcdv info "MainConcept DV Codec" status working fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc CDVC,cdvc ; ??? fourcc "dvcp" dvsd ; PAL DV in .mov fourcc "dvc " dvcs ; NTSC DV in .mov driver vfw dll "mcdvd_32.dll" out YUY2 out UYVY out BGR32,BGR24,BGR15 ; 3ivx: videocodec 3ivXxa info "XAnim's 3ivx Delta 3.5 plugin" status working fourcc 3IV1 driver xanim dll "vid_3ivX.xa" out YV12,IYUV,I420 videocodec 3ivX info "3ivx Delta 4.5" status working fourcc 3IV1 driver dshow dll "3ivxDSDecoder.ax" ; 3ivx.dll is also required guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c out YV12 out YUY2 out BGR32,BGR24,BGR16,BGR15 ; RealVideo variants videocodec rv3040 info "Linux RealPlayer 10 RV30/40 decoder" status working fourcc RV30,rv30 fourcc RV40,rv40 driver realvid dll "drvc.so" out I420 videocodec rv3040win info "Win32 RealPlayer 10 RV30/40 decoder" status working fourcc RV30,rv30 fourcc RV40,rv40 driver realvid dll "drvc.dll" out I420 videocodec rv40 info "Linux RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drv4.so.6.0" out I420 videocodec rv40win info "Win32 RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drv43260.dll" out I420 videocodec rv40mac info "Mac OS X RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drvc.bundle/Contents/MacOS/drvc" out I420 videocodec rv30 info "Linux RealPlayer 8 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drv3.so.6.0" out I420 videocodec rv30win info "Win32 RealPlayer 8 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drv33260.dll" out I420 videocodec rv30mac info "Mac OS X RealPlayer 9 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drvc.bundle/Contents/MacOS/drvc" out I420 videocodec ffrv20 info "FFmpeg RV20 decoder" status working fourcc RV20,rv20 driver ffmpeg dll rv20 out YV12,I420,IYUV videocodec rv20 info "Linux RealPlayer 8 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.so.6.0" out I420 videocodec rv20winrp10 info "Win32 RealPlayer 10 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.dll" out I420 videocodec rv20win info "Win32 RealPlayer 8 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv23260.dll" out I420 videocodec rv20mac info "Mac OS X RealPlayer 9 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.bundle/Contents/MacOS/drv2" out I420 videocodec ffrv10 info "FFmpeg RV10 decoder" status working fourcc RV10,rv10 fourcc RV13,rv13 driver ffmpeg dll rv10 out YV12,I420,IYUV ; others: videocodec alpary info "Alparysoft lossless codec dshow" status working fourcc ASLC driver dshow dll "aslcodec_dshow.dll" guid 0x7f9de066, 0xbf3d, 0x4c17, 0x86, 0xb7, 0x33, 0xe4, 0x3e, 0xbe, 0xae, 0xf0 out BGR24 flip videocodec alpary2 info "Alparysoft lossless codec vfw" status working fourcc ASLC driver vfw dll "aslcodec_vfw.dll" out BGR24 flip videocodec LEADMW20 info "Lead CMW wavelet 2.0" status working fourcc LCW2 driver dshow dll "LCODCCMW2E.dll"; eval also needs LCMW2.dll guid 0xe2b7dc56, 0x38c5, 0x11d5, 0x91, 0xf6, 0x00, 0x10, 0x4b, 0xdb, 0x8f, 0xf9 out BGR24,BGR8 flip videocodec ffvp3 info "FFmpeg VP3" status untested fourcc VP30,vp30,VP31,vp31 format 0x20335056 ; "VP3 " (used in .nsv files) driver ffmpeg dll "vp3" out YV12 videocodec fftheora info "FFmpeg Theora" status untested fourcc theo fourcc Thra theo format 0xFFFC driver ffmpeg dll "theora" out YV12 videocodec vp3 info "On2 Open Source VP3 Codec" status working comment "For SSE-systems use fixed DLL from ftp://mplayerhq.hu/MPlayer/samples/drivers32/" fourcc VP30,vp30,VP31,vp31 flags align16 driver vfwex dll "vp31vfw.dll" out YUY2 out BGR32,BGR24,BGR15 videocodec vp4 info "On2 VP4 Personal Codec" comment "Decodes also VP3" status working fourcc VP40 fourcc VP31,VP30,vp31,vp30 driver vfwex dll "vp4vfw.dll" out YUY2 out BGR32,BGR24 videocodec ffvp5 info "FFmpeg VP5 decoder" status working fourcc VP50 driver ffmpeg dll "vp5" out YV12 videocodec vp5 info "On2 VP5 Personal Codec" status working fourcc VP50 driver vfwex dll "vp5vfw.dll" out YUY2 out BGR32,BGR24 videocodec ffvp6 info "FFmpeg VP6 decoder" status working fourcc VP60,VP61,VP62 driver ffmpeg dll "vp6" out YV12 videocodec ffvp6f info "FFmpeg VP6 Flash decoder" status working fourcc VP6F driver ffmpeg dll "vp6f" out YV12 videocodec vp6 info "On2 VP6 Personal Codec" status working fourcc VP60,VP61,VP62 driver vfwex dll "vp6vfw.dll" out YUY2 out BGR32,BGR24 videocodec vp7 info "On2 VP7 Personal Codec" status working fourcc VP70 driver vfwex dll "vp7vfw.dll" out YUY2 out BGR32,BGR24 videocodec mwv1 info "Motion Wavelets" status working fourcc MWV1 driver vfw dll "icmw_32.dll" out BGR24,BGR15 flip videocodec asv2 info "ASUS V2" status working fourcc ASV2 driver vfw dll "asusasv2.dll" out UYVY out BGR32,BGR24,BGR15 flip videocodec asv1 info "ASUS V1" status working fourcc ASV1 driver vfw dll "asusasvd.dll" out UYVY out BGR32,BGR24,BGR15 flip videocodec ffultimotion info "IBM Ultimotion native decoder" status working fourcc ULTI driver ffmpeg dll "ultimotion" out YVU9 videocodec ultimotion info "IBM Ultimotion" status working fourcc ULTI driver vfw dll "ultimo.dll" out YUY2,UYVY out BGR32,BGR24,BGR15 flip videocodec mss1 info "Windows Screen Video" status working fourcc MSS1 driver dshow dll "msscds32.ax" guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24 out BGR32,BGR24,BGR16,BGR15 ; CLRVIDDC.DLL needed too, with uppercase videocodec ucod info "UCOD-ClearVideo" status working fourcc UCOD driver vfw dll "clrviddd.dll" out BGR32,BGR24,BGR15 flip videocodec vcr2 info "ATI VCR-2" status working fourcc VCR2 driver vfw dll "ativcr2.dll" out YV12 out BGR24 videocodec CJPG info "CJPG" status working fourcc CJPG driver vfw dll "CtWbJpg.DLL" out YUY2 out UYVY out BGR24,BGR15 videocodec ffduck info "Duck Truemotion1" status working fourcc DUCK driver ffmpeg dll "truemotion1" out BGR15,BGR16,BGR24,BGR32 query videocodec fftm20 info "FFmpeg Duck/On2 TrueMotion 2.0" status working fourcc TM20 driver ffmpeg dll truemotion2 out YV12 ; our BGR15->BGR32 is bad or the DLL? videocodec tm20 info "TrueMotion 2.0" status working comment "YUV faulting" fourcc TM20 driver dshow dll "tm20dec.ax" guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 out BGR32,BGR24,BGR16 flip videocodec ffsp5x info "SP5x codec - used by Aiptek MegaCam" status working fourcc SP53,SP54,SP55,SP56,SP57,SP58 driver ffmpeg dll "sp5x" out YV12 videocodec sp5x info "SP5x codec - used by Aiptek MegaCam" status working fourcc SP53,SP54,SP55,SP56,SP57,SP58 driver vfw dll "sp5x_32.dll" out BGR24,BGR15 flip videocodec vivd2 info "SoftMedia ViVD V2 codec VfW" status working fourcc GXVE,gxve driver vfw dll "ViVD2.dll" out YUY2,YV12,I420,YVU9 out BGR32,BGR24,BGR15 videocodec winx info "Winnov Videum winx codec" status working fourcc WINX driver vfwex dll "wnvwinx.dll" out BGR32,BGR24,BGR15 videocodec ffwnv1 info "FFmpeg wnv1 native codec" status working fourcc WNV1 driver ffmpeg dll wnv1 out 422P videocodec wnv1 info "Winnov Videum wnv1 codec" status working fourcc WNV1 driver vfwex dll "wnvplay1.dll" out BGR32,BGR24,BGR15 videocodec vdom info "VDOWave codec" status working fourcc VDOM driver vfw dll "vdowave.drv" ; Need also VDODEC32.dll and DECVW_32.DLL out BGR24 videocodec lsv info "Vianet Lsvx Video Decoder" status working fourcc lsvx fourcc lsvm fourcc lsvc driver vfw dll "lsvxdec.dll" out BGR32,BGR24,BGR16 flip videocodec ffvmnc info "FFmpeg VMware video" status working fourcc VMnc driver ffmpeg dll "VMware video" out BGR32,BGR15,BGR8 videocodec vmnc info "VMware video" status working fourcc VMnc driver vfw dll "vmnc.dll" out BGR24,BGR15,BGR8 query,flip videocodec ffsmkvid info "FFmpeg Smacker Video" status working fourcc SMK2 fourcc SMK4 out BGR8 driver ffmpeg dll "smackvid" videocodec ffcavs info "Chinese AVS Video" comment "only works with libavformat demuxer" status working fourcc CAVS driver ffmpeg dll "cavs" out I420 ; quicktime codecs: videocodec qt3ivx info "win32/quicktime 3IV1 (3ivx) decoder" status working fourcc 3IV1 driver qtvideo dll "3ivx Delta 3.5.qtx" out YUY2 videocodec qtavui info "Win32/QuickTime Avid Meridien Uncompressed" status working fourcc AVUI driver qtvideo dll "AvidQTAVUICodec.qtx" out YUY2 videocodec qth263 info "Win32/QuickTime H.263 decoder" status crashing fourcc h263 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtrlerpza info "Win32/Quicktime RLE/RPZA decoder" comment "no colorspace accepted" status crashing fourcc rpza format 0x20656C72 ; "rle " driver qtvideo dll "QuickTime.qts" out BGR32,BGR24,BGR15 videocodec qtvp3 info "Win32/QuickTime VP3 decoder" status crashing fourcc VP31 driver qtvideo dll "On2_VP3.qtx" out YUY2 videocodec qtzygo info "win32/quicktime ZyGo decoder" status buggy comment "wrong colors" fourcc ZyGo,zygo,lsvx driver qtvideo dll "ZyGoVideo.qtx" out BGR32,RGB32 videocodec qtbhiv info "Win32/QuickTime BeHereiVideo decoder" comment "sample file wanted!" status untested fourcc bhiv driver qtvideo dll "BeHereiVideo.qtx" out YUY2 videocodec qtcvid info "Win32/QuickTime Cinepak decoder" status working fourcc cvid driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtindeo info "Win32/QuickTime Indeo decoder" status crashing fourcc IV31,iv31 fourcc IV32,iv32 fourcc IV41 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtmjpeg info "Win32/QuickTime MJPEG decoder" status crashing fourcc dmb1 fourcc mjpa fourcc mjpb driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtmpeg4 info "Win32/QuickTime MPEG-4 decoder" status crashing fourcc mp4v driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtsvq3 info "Win32/QuickTime SVQ3 decoder" status working fourcc SVQ3 driver qtvideo dll "QuickTimeEssentials.qtx" out YUY2 videocodec qtsvq1 info "Win32/QuickTime SVQ1 decoder" status buggy fourcc SVQ1 driver qtvideo dll "QuickTime.qts" out YVU9 ; VSS codecs (http://vsofts.com/solutions.html): videocodec vsslight info "VSS Codec Light" status working fourcc VSSV driver vfw dll "vsslight.dll" out BGR24 flip videocodec vssh264 info "VSS H.264 New" status working fourcc VSSH driver dshow dll "vsshdsd.dll" guid 0x6931C7e7, 0x75b7, 0x4729, 0xa1, 0x53, 0xa8, 0xad, 0x99, 0xbd, 0xf7, 0x0b out YV12 videocodec vssh264old info "VSS H.264 Old" status working fourcc VSSH driver vfw dll "vssh264.dll" ; need also vssh264core.dll, vssh264dec.dll out BGR24 flip videocodec vsswlt info "VSS Wavelet Video Codec" status working fourcc VSSW driver vfw dll "vsswlt.dll" out BGR24 flip ; buggy codecs: (any volunteers for native rewrite?) videocodec zlib info "AVIzlib" status working comment "24bpp only" fourcc ZLIB driver vfw dll "avizlib.dll" out BGR24 flip videocodec mszh info "AVImszh" status working comment "24bpp only" fourcc MSZH driver vfw dll "avimszh.dll" ; out YUY2 ; out BGR32,BGR24,BGR15 out BGR24 videocodec alaris info "Alaris VideoGramPiX" ; http://www.alaris.com/movies/toocool.vgm ; Martin Schuster status crashing comment "only produces strange patterns" fourcc VGPX,VTLP VGPX driver vfwex dll "vgpix32d.dll" out UYVY out BGR24 ; non-working codecs: videocodec vcr1 info "ATI VCR-1" status crashing fourcc VCR1 driver vfw dll "ativcr1.dll" out RGB24 flip videocodec pim1 info "Pinnacle Hardware MPEG-1" status crashing comment "no picture. use ffmpeg12!" fourcc PIM1 driver vfw dll "pclepim1.dll" out BGR24 flip ; out I420 ; out YUY2 ; out BGR32,BGR24,BGR16,BGR15 videocodec qpeg info "Q-Team's QPEG (www.q-team.de)" status working comment "BGR8 only!" fourcc Q1.0,QPEG fourcc Q1.1,qpeq driver vfw dll "qpeg32.dll" out BGR8 flip videocodec rricm info "rricm" status crashing fourcc dmb1 driver vfw dll "rricm.dll" out YUY2 out BGR24 flip videocodec ffcamtasia info "TechSmith Camtasia Screen Codec (native)" status working fourcc TSCC,tscc driver ffmpeg dll "camtasia" out BGR32,BGR24,BGR15,BGR8 query ; sample videos: http://www.techsmith.com/products/camtasia/examplevideos.asp videocodec camtasia info "TechSmith Camtasia Screen Codec" status working fourcc TSCC,tscc driver vfw dll "tsccvid.dll" out BGR32,BGR24,BGR15,BGR8 query,flip videocodec ffcamstudio info "CamStudio Screen Codec" status working fourcc CSCD,cscd driver ffmpeg dll "camstudio" out BGR32,BGR24,BGR15 query ; Fraps - Realtime Video Capture - http://www.fraps.com/ videocodec fraps info "FRAPS: Realtime Video Capture" comment "Requires a processor with SSE???" status working fourcc FPS1,fps1 driver vfw dll "frapsvid.dll" out BGR32 flip videocodec fffraps info "FFmpeg Fraps" status working fourcc FPS1,fps1 driver ffmpeg dll "fraps" out BGR24,I420 videocodec fftiertexseq info "FFmpeg Tiertex SEQ" status working fourcc TSEQ ; internal MPlayer FourCC driver ffmpeg dll "tiertexseqvideo" out BGR8 videocodec ffvmd info "FFmpeg Sierra VMD video" status working fourcc VMDV ; internal MPlayer FourCC driver ffmpeg dll "vmdvideo" out BGR8 videocodec ffdxa info "FFmpeg Feeble Files DXA video" status working fourcc DXA1 ; internal MPlayer FourCC driver ffmpeg dll "dxa" out BGR8 videocodec ffdsicinvideo info "FFmpeg Delphine CIN video" status working fourcc DCIV ; internal MPlayer FourCC driver ffmpeg dll "dsicinvideo" out BGR8 videocodec ffthp info "FFmpeg THP video" status working fourcc THPV ; internal MPlayer FourCC driver ffmpeg dll thp out YV12 videocodec ffbethsoftvid info "FFmpeg Bethesda Software VID" comment "video plays much too fast" status buggy fourcc BETH ; internal MPlayer FourCC driver ffmpeg dll bethsoftvid out BGR8 videocodec fftxd info "FFmpeg Renderware TeXture Dictionary decoder" status working fourcc TXDV ; internal MPlayer FourCC driver ffmpeg dll txd out BGR32 videocodec ffwc3 info "FFmpeg XAN wc3" status buggy fourcc WC3V ; internal MPlayer FourCC driver ffmpeg dll "xan_wc3" out BGR8 videocodec ffidcin info "FFmpeg Id CIN video" status buggy fourcc IDCI ; internal MPlayer FourCC driver ffmpeg dll "idcinvideo" out BGR8 videocodec ffinterplay info "FFmpeg Interplay Video" status buggy fourcc INPV ; internal MPlayer FourCC driver ffmpeg dll "interplayvideo" out BGR8 videocodec ffvqa info "FFmpeg VQA Video" status buggy fourcc VQAV ; internal MPlayer FourCC driver ffmpeg dll "vqavideo" out BGR8 videocodec ffc93 info "FFmpeg C93 Video" status buggy fourcc C93V ; internal MPlayer FourCC driver ffmpeg dll c93 out BGR8 ; raw formats: (now RGB formats are autodetected) ; these raw codecs are used mostly by TV input ; 0x20776172 is used by Quicktime ('raw ') ; 0x0 is used by AVI ; YV12,RGB|32,RGB|24.. is created by MPlayer videocodec rawrgb32 info "RAW RGB32" status working driver raw format 0x0 format 0x20776172 format 0x52474220 out RGB32 videocodec rawrgb24 info "RAW RGB24" status working driver raw format 0x0 format 0x20776172 format 0x52474218 out RGB24 videocodec rawrgb16 info "RAW RGB16" status working driver raw format 0x0 format 0x20776172 format 0x52474210 out RGB16 videocodec rawbgr32flip info "RAW BGR32" status working driver raw format 0x0 out BGR32 flip videocodec rawbgr32 info "RAW BGR32" status working driver raw format 0x0 format 0x42475220 out BGR32 videocodec rawbgr24flip info "RAW BGR24" status working driver raw format 0x0 out BGR24 flip videocodec rawbgr24 info "RAW BGR24" status working driver raw format 0x0 format 0x20776172 format 0x42475218 out BGR24 videocodec rawbgr16flip info "RAW BGR15" status working driver raw format 0x0 out BGR16 flip videocodec rawbgr16 info "RAW BGR15" status working driver raw format 0x0 format 0x20776172 format 0x42475210 out BGR16 videocodec rawbgr15flip info "RAW BGR15" status working driver raw format 0x0 out BGR15 flip videocodec rawbgr15 info "RAW BGR15" status working driver raw format 0x0 format 0x20776172 format 0x4247520F out BGR15 videocodec rawbgr8flip info "RAW BGR8" status working driver raw format 0x0 out BGR8 flip videocodec rawbgr8 info "RAW BGR8" status working driver raw format 0x0 format 0x20776172 format 0x42475208 out BGR8 videocodec rawbgr1 info "RAW BGR1" status working driver raw format 0x0 format 0x20776172 format 0x42475201 out BGR1 flip videocodec rawyuy2 info "RAW YUY2" status working driver raw format 0x0 0x32595559 format 0x20776172 fourcc yuy2,YUY2 out YUY2 videocodec rawuyvy info "RAW UYVY" status working driver raw format 0x0 0x59565955 format 0x20776172 fourcc uyvy,UYVY out UYVY videocodec raw444P info "RAW 444P" status working driver raw format 0x0 0x50343434 format 0x20776172 fourcc 444p,444P out 444P videocodec raw422P info "RAW 422P" status working driver raw format 0x0 0x50323234 format 0x20776172 fourcc 422p,422P out 422P videocodec rawyv12 info "RAW YV12" status working driver raw format 0x0 0x32315659 format 0x20776172 fourcc yv12,YV12 out YV12 videocodec rawnv21 info "RAW NV21" status working driver hmblck format 0x0 0x3132564E format 0x20776172 fourcc nv21,NV21 out YV12 videocodec rawnv12 info "RAW NV12" status working driver hmblck format 0x0 0x3231564E format 0x20776172 fourcc nv12,NV12 out YV12 videocodec rawhm12 info "RAW HM12" status working driver hmblck format 0x0 0x32314D48 format 0x20776172 fourcc hm12,HM12 out YV12 videocodec rawi420 info "RAW I420" status working driver raw format 0x0 0x30323449 format 0x20776172 fourcc i420,I420 fourcc IYUV,iyuv out I420,IYUV videocodec rawyvu9 info "RAW YVU9" status working driver raw format 0x0 0x39555659 format 0x20776172 fourcc yvu9,YVU9 out YVU9 videocodec rawy800 info "RAW Y8/Y800" status working driver raw format 0x0 format 0x20203859 ; "Y8 " fourcc y800,Y800 out Y800,Y8 ; NULL codec - for testing. videocodec null info "NULL codec (no decoding!)" status crashing comment "for unknown/unsupported codecs or testing" driver null out YV12 out I420 out YUY2 out UYVY out YVU9 out BGR32,BGR24,BGR16,BGR15 ;============================================================================= ; AUDIO CODECS ;============================================================================= audiocodec wma9dmo info "Windows Media Audio 9 DMO" status working format 0x162 format 0x163 driver dmo dll "wma9dmod.dll" guid 0x27ca0808, 0x01f5, 0x4e7a, 0x8b, 0x05, 0x87, 0xf8, 0x07, 0xa2, 0x33, 0xd1 audiocodec wmadmo info "Windows Media Audio DMO" status working format 0x160 format 0x161 format 0x162 format 0x163 driver dmo dll "wmadmod.dll" guid 0x2eeb4adf, 0x4578, 0x4d10, 0xbc, 0xa7, 0xbb, 0x95, 0x5f, 0x56, 0x32, 0x0a audiocodec wma9spdmo info "Windows Media Audio 9 Speech DMO" status working format 0xa driver dmo dll "wmspdmod.dll" guid 0x874131cb, 0x4ecc, 0x443b, 0x89, 0x48, 0x74, 0x6b, 0x89, 0x59, 0x5d, 0x20 audiocodec wma9spdshow info "Windows Media Audio 9 Speech DShow" status working format 0xa driver dshow dll "wmavds32.ax" guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad audiocodec ffqdm2 info "FFmpeg QDM2 audio decoder" status working format 0x324D4451 ; "QDM2" driver ffmpeg dll "qdm2" audiocodec qdmc info "QuickTime QDMC/QDM2 audio decoders" status working format 0x324D4451 ; "QDM2" format 0x434D4451 ; "QDMC" driver qtaudio dll "QuickTime.qts" audiocodec qclp info "QuickTime QCLP audio decoder" status working format 0x706C6351 ; "QCLP" driver qtaudio dll "QuickTime.qts" audiocodec qtmace3 info "QuickTime MACE3 audio decoder" status working format 0x3343414D ; "MAC3" driver qtaudio dll "QuickTime.qts" audiocodec qtmace6 info "QuickTime MACE6 audio decoder" status working format 0x3643414D ; "MAC6" driver qtaudio dll "QuickTime.qts" audiocodec ffra144 info "FFmpeg RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver ffmpeg dll "real_144" audiocodec ffra288 info "FFmpeg RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver ffmpeg dll "real_288" audiocodec ffcook info "FFmpeg COOK audio decoder" status working format 0x6B6F6F63 ; "cook" driver ffmpeg dll "cook" audiocodec ffatrc info "FFmpeg Atrac 3 audio decoder" status working format 0x63727461 ; "atrc" format 0x270 ; atrac3 in wav driver ffmpeg dll "atrac 3" audiocodec ra144 info "RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_4.so.6.0" audiocodec ra144win info "Win32 RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_43260.dll" audiocodec ra144mac info "Mac OS X RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_4.shlb" audiocodec ra288 info "RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_8.so.6.0" audiocodec ra288win info "Win32 RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_83260.dll" audiocodec ra288mac info "Mac OS X RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_8.shlb" audiocodec ra10cook info "RealPlayer 10 COOK audio" comment "supports cook 5.1" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.so" audiocodec racook info "RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.so.6.0" audiocodec ra10cookwin info "Win32 RealAudio 10 COOK" comment "supports cook 5.1" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.dll" audiocodec racookwin info "Win32 RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook3260.dll" audiocodec racookmac info "Mac OS X RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.bundle/Contents/MacOS/cook" audiocodec rasipr info "RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.so.6.0" audiocodec ra10sipr info "RealPlayer 10 RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.so" audiocodec ra10siprwin info "Win32 RealAudio 10 Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.dll" audiocodec rasiprwin info "Win32 RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr3260.dll" audiocodec rasiprmac info "Mac OS X RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.bundle/Contents/MacOS/sipr" audiocodec raatrc info "RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.so.6.0" audiocodec ra10atrc info "RealPlayer 10 RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.so" audiocodec ra10atrcwin info "Win32 RealAudio 10 ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.dll" audiocodec raatrcwin info "Win32 RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc3260.dll" audiocodec raatrcmac info "Mac OS X RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.bundle/Contents/MacOS/atrc" audiocodec imaadpcm info "IMA ADPCM" status working format 0x11 format 0x34616d69 ; "ima4" (MOV files) format 0x1100736d ; "ms\x00\x11" (MOV files) driver imaadpcm audiocodec msadpcm info "MS ADPCM" status working format 0x2 format 0x0200736d ; "ms\x00\x02" (MOV files) driver msadpcm audiocodec dk4adpcm info "Duck DK4 ADPCM (rogue format number)" status working format 0x61 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver imaadpcm audiocodec dk3adpcm info "Duck DK3 ADPCM (rogue format number)" status working format 0x62 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver dk3adpcm audiocodec ffroqaudio info "Id RoQ File Audio Decoder" status working fourcc RoQA ; internal MPlayer FourCC driver ffmpeg dll "roq_dpcm" audiocodec ffsmkaud info "FFmpeg Smacker Audio" status buggy fourcc SMKA driver ffmpeg dll "smackaud" audiocodec ffdsicinaudio info "FFmpeg Delphine CIN audio" status working fourcc DCIA ; internal MPlayer FourCC driver ffmpeg dll dsicinaudio audiocodec ff4xmadmpcm info "FFmpeg 4XM ADPCM audio" status working fourcc 4XMA ; internal MPlayer FourCC driver ffmpeg dll adpcm_4xm audiocodec ffadpcmimaws info "FFmpeg Westwood IMA ADPCM audio" status working fourcc AIWS ; internal MPlayer FourCC driver ffmpeg dll adpcm_ima_ws audiocodec ffwssnd1 info "FFmpeg Westwood SND1" status working fourcc SND1 ; internal MPlayer FourCC driver ffmpeg dll ws_snd1 audiocodec ffinterplaydpcm info "FFmpeg Interplay DPCM audio" status working fourcc INPA ; internal MPlayer FourCC driver ffmpeg dll interplay_dpcm audiocodec ffadpcmea info "FFmpeg EA ADPCM audio" status working fourcc ADEA ; internal MPlayer FourCC driver ffmpeg dll adpcm_ea audiocodec ffxandpcm info "FFmpeg XAN DPCM audio" comment "only works with libavformat demuxer" status working fourcc Axan driver ffmpeg dll xan_dpcm audiocodec ffadpcmthp info "FFmpeg THP ADPCM audio" status working fourcc THPA driver ffmpeg dll adpcm_thp audiocodec libdv info "raw DV audio decoder (libdv)" status working fourcc RADV driver libdv dll libdv.so.2 audiocodec ffdv info "FFmpeg DV audio decoder" status working fourcc RADV driver ffmpeg dll "dvaudio" audiocodec faad info "FAAD AAC (MPEG-2/MPEG-4 Audio) decoder" status working fourcc mp4a,MP4A fourcc "AAC " ; Used in NSV fourcc "AACP" ; Used in NSV for AACPlus format 0xff format 0x706D driver faad dll libfaad2 audiocodec ffflac info "FFmpeg FLAC audio decoder" status working format 0x43614C66 format 0xF1AC driver ffmpeg dll "flac" audiocodec ffalac info "FFmpeg ALAC audio decoder" status working fourcc alac driver ffmpeg dll "alac" audiocodec fftta info "FFmpeg True Audio (TTA) decoder" status working fourcc TTA1 ; internal MPlayer FourCC driver ffmpeg dll "tta" audiocodec ffwavpack info "FFmpeg WavPack audio decoder" status working fourcc WVPK ; internal MPlayer FourCC driver ffmpeg dll "wavpack" audiocodec ffshorten info "FFmpeg Shorten audio decoder" status working fourcc shrn ; internal MPlayer FourCC driver ffmpeg dll "shorten" audiocodec pcm info "Uncompressed PCM" status working format 0x0 format 0x1 format 0x3 ; IEEE float format 0xfffe ; Extended format 0x20776172 ; "raw " (MOV files) format 0x736f7774 ; "twos" (MOV files) format 0x74776f73 ; "sowt" (MOV files) format 0x32336c66 ; "fl32" (MOV files) format 0x666c3332 ; "23lf" (MOV files) ; format 0x34366c66 ; "fl64" (MOV files) ; format 0x666c3634 ; "46lf" (MOV files) format 0x454e4f4e ; "NONE" (MOV files from Kodak CX6320) format 0x34326e69 ; "in24" (MOV files) format 0x696e3234 ; "42ni" (MOV files) format 0x32336e69 ; "in32" (MOV files) format 0x696e3332 ; "23ni" (MOV files) ;;;; these are for hardware support only: (alaw,ulaw,ima-adpcm,mpeg,ac3) ; format 0x6 ; format 0x7 ; format 0x11 ; format 0x50 ; format 0x2000 ;;;; driver pcm audiocodec divx info "DivX audio (WMA)" status working format 0x160 format 0x161 driver acm dll "divxa32.acm" audiocodec msadpcmacm info "MS ADPCM" status working format 0x2 driver acm dll "msadp32.acm" audiocodec mp3 info "mp3lib MPEG layer-2, layer-3" status working comment "Optimized to MMX/SSE/3Dnow!" format 0x50 ; layer-1 && layer-2 format 0x55 ; layer-3 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver mp3lib audiocodec ffpcmdaud info "D-Cinema audio (FFmpeg)" status untested fourcc "daud" driver ffmpeg dll "pcm_s24daud" audiocodec ffwmav1 info "DivX audio v1 (FFmpeg)" status untested format 0x160 driver ffmpeg dll "wmav1" audiocodec ffwmav2 info "DivX audio v2 (FFmpeg)" status untested format 0x161 driver ffmpeg dll "wmav2" audiocodec ffmac3 info "Macintosh Audio Compression and Expansion 3:1" status untested fourcc "MAC3" driver ffmpeg dll "mace3" audiocodec ffmac6 info "Macintosh Audio Compression and Expansion 6:1" status untested fourcc "MAC6" driver ffmpeg dll "mace6" audiocodec ffsonic info "FFmpeg Sonic" status untested fourcc SONC format 0x2048 driver ffmpeg dll "sonic" audiocodec ffmp3on4 info "FFmpeg Multi-channel MPEG layer-3 on MP4 audio decoder" status working format 0x1d61346d ; 'm','4','a',29 internal MPlayer fourcc driver ffmpeg dll "mp3on4" audiocodec ffmp3 info "FFmpeg MPEG layer-3 audio decoder" comment "integer only" status working format 0x55 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver ffmpeg dll "mp3" audiocodec ffmp3adu info "FFmpeg MPEG layer-3 adu audio decoder" comment "integer only" status working format 0x55756461 ; 'a','d','u',0x55 internal MPlayer fourcc driver ffmpeg dll "mp3adu" audiocodec ffmp2 info "FFmpeg MPEG layer-1 and layer-2 audio decoder" comment "integer only" status working format 0x50 driver ffmpeg dll "mp2" audiocodec mad info "libMAD MPEG layer 1-2-3" status working format 0x50 format 0x55 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver libmad dll "libmad" audiocodec mp3acm info "MPEG layer-3" status working comment "conflicts with security kernel patches" format 0x55 driver acm dll "l3codeca.acm" audiocodec imaadpcmacm info "IMA ADPCM" status working format 0x11 driver acm dll "imaadp32.acm" audiocodec msgsm info "MS GSM" status working format 0x31 format 0x32 fourcc agsm driver msgsm audiocodec msgsmacm info "MS GSM" status working format 0x31 ; format 0x32 driver acm dll "msgsm32.acm" audiocodec msnaudio info "MSN AUDIO" status working ; format 0x31 format 0x32 driver acm dll "msnaudio.acm" audiocodec alaw info "aLaw" status working format 0x6 format 0x77616C61 ; 'alaw', .mov files driver alaw audiocodec ulaw info "uLaw" status working format 0x7 format 0x77616c75 ; "ulaw" (MOV files) driver alaw audiocodec dvdpcm info "Uncompressed DVD/VOB LPCM" status working format 0x10001 driver dvdpcm audiocodec a52 info "AC3-liba52" status working format 0x2000 fourcc dnet driver liba52 dll "liba52" audiocodec ac3 info "AC3-libac3" comment "removed from MPlayer, use liba52" status working format 0x2000 fourcc dnet driver libac3 dll "libac3" audiocodec ffdca info "FFmpeg DTS" status working format 0x2001 driver ffmpeg dll "dca" audiocodec ffmusepack7 info "Musepack sv7 audio codec" comment "only works with libavformat demuxer" status working fourcc "MPC " driver ffmpeg dll "mpc sv7" audiocodec musepack info "Musepack audio codec" status working fourcc "MPC " format 0x2b4d driver mpcdec audiocodec ffamrnb info "AMR Narrowband" status working fourcc samr driver ffmpeg dll "libamr_nb" audiocodec ffamrwb info "AMR Wideband" status working fourcc sawb driver ffmpeg dll "libamr_wb" audiocodec ffadcpmswf info "FFmpeg's ADPCM Flash-variant" status working format 0x5346 ; 'SF', pseudo id driver ffmpeg dll "adpcm_swf" audiocodec voxware info "VoxWare" status working comment "windows users need msms001.vwp in windows\\system32 folder" format 0x75 driver dshow dll "voxmsdec.ax" ; need also msms001.vwp guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d audiocodec acelp info "ACELP.net Sipro Lab Audio Decoder" status working format 0x130 driver dshow dll "acelpdec.ax" guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 audiocodec ffimc info "FFmpeg Intel Music Coder" status working format 0x401 driver ffmpeg dll "imc" audiocodec imc info "Intel Music Coder" status working comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip" format 0x401 driver acm dll "imc32.acm" audiocodec iac25 info "Indeo audio" status working format 0x402 driver acm dll "iac25_32.ax" audiocodec ffctadp32 info "Creative ADPCM native codec" status working format 0x200 driver ffmpeg dll "adpcm_ct" audiocodec ctadp32 info "Creative ADPCM codec" status working format 0x200 driver acm dll "ctadp32.acm" audiocodec sc4 info "SC4 : Micronas speech codec (ADPCM, MPman recording)" status working format 0x350 driver acm dll "mi-sc4.acm" audiocodec hwac3 info "AC3 through S/PDIF" status working format 0x2000 fourcc dnet driver hwac3 audiocodec hwdts info "DTS through S/PDIF" status working format 0x2001 driver hwac3 audiocodec ffvorbis info "FFmpeg Vorbis decoder" status working fourcc vrbs format 0x566F driver ffmpeg dll "vorbis" audiocodec vorbis info "OggVorbis Audio Decoder" status working comment "OggVorbis driver using libvorbis" fourcc vrbs format 0x566F driver libvorbis dll "libvorbis" ; acm codec doesn't work, haven't tried zorannt dshow codec ; driver acm ; dll "vorbis.acm" audiocodec speex info "Speex Audio Decoder" status working comment "Speex driver using libspeex" fourcc 'spx ' driver speex dll "speex" audiocodec vivoaudio info "Vivo G.723/Siren Audio Codec" status working format 0x111 ; vivo g.723 format 0x112 ; siren driver acm dll "vivog723.acm" audiocodec g72x info "G.711/G.721/G.723" status crashing comment "does not work yet - just noise :(" format 0x111 ; vivo g.723 format 0x112 ; vivo siren driver g72x dll "g72x.c" audiocodec ffg726 info "Sharp G.726 Audio" status working format 0x45 driver ffmpeg dll "g726" audiocodec g726 info "Sharp G.726 Audio" status untested format 0x45 driver acm dll "scg726.acm" audiocodec atrac3 info "Sony ATRAC3" status buggy comment "format not accepted" format 0x270 driver acm dll "atrac3.acm" audiocodec ALF2 ; http://www.nctsoft.com/products/NCTALFCD/ ; jdp@mail.sonofon.dk info "ALF2" status working format 0x1FC4 ; ALF2 driver acm dll "alf2cd.acm" audiocodec fftruespeech info "FFmpeg TrueSpeech" status working format 0x22 driver ffmpeg dll "truespeech" audiocodec truespeech info "DSP Group TrueSpeech(TM)" status working format 0x22 driver acm dll "tssoft32.acm" ; need also tsd32.dll ; rt32dcmp.dll needed too audiocodec voxwarert24 info "VoxWare RT24 speech codec" status working format 0x181c driver acm dll "nsrt2432.acm" audiocodec lhacm info "Lernout & Hauspie CELP and SBC codecs" status working format 0x1101 ; CELP format 0x1102 ; SBC format 0x1103 ; SBC format 0x1104 ; SBC driver acm dll "lhacm.acm" audiocodec TwinVQ info "VQF codec by NTTLabs" status working fourcc TWIN driver vqf dll "tvqdec.dll" audiocodec hwmpa info "MPEG audio pass-through for hardware MPEG decoders" status working comment "for hardware MPEG audio decoders" format 0x50 ; layer-1 && layer-2 format 0x55 ; layer-3 format 0x5500736d ; "ms\0\x55" older MP3 fourcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver hwmpa geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/dvd0000644000175000017500000000010110630554152017406 0ustar benben# Configure system to active the DVD navigation menu. DVDNAV=no geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/radio0000644000175000017500000000027010630554152017736 0ustar benben# # Radio Options RADIO=no # # Radio Channels # Syntax : CHAN="Channel Frequency:Channel Title" # Example: #CHAN="91.5:CBC Radio 1" #CHAN="106.1:CHEZ" #CHAN="94.9:CIMF Rock Detente" geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lang0000644000175000017500000000000310630554153017554 0ustar benbenen geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/subfont0000644000175000017500000000001310630554153020314 0ustar benbeniso-8859-1 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/keymaps/0000755000175000017500000000000010630554153020370 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/keymaps/azerty0000644000175000017500000000540710630554153021637 0ustar benbenbkeymap&"'(-_)= a z e r t y u i o p $q s d f g h j k l m *w x c v b n ,;:!*   789-456+1230.*<  /  1234567890+ A Z E R T Y U I O P Q S D F G H J K L M %W X C V B N ?./             ,>  /    ~#{[|\^@]}        |/        "#$%&'()*+   ,-/      ./01234567   89   ~         /   1234567890)=qwertyuiop[] asdfghjkl;'`\zxcvbnm,./       -   +   <  /\  ~&~"'(-`_^@]+ QWERTYUIOP{}ASDFGHJKL|ZXCVBNM<>     /  ~qwertyuiopasdfghjklzxcvbnm                       /   geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/keymaps/qwertz0000644000175000017500000000540710630554153021655 0ustar benbenbkeymap1234567890' q w e r t z u i o p +a s d f g h j k l ^#y x c v b n m ,.-       <     !"$%&/()=?` Q W E R T Z U I O P *A S D F G H J K L 'Y X C V B N M ;:_       > !     {[]}\@w r t z u i o p ~a s d f g h j k l ^y x v b n -            |          "#$%&'()*+   ,-             ~               1234567890 qwertzuiop+ asdfghjkl#yxcvbnm,.-            <     ~!"$%&/()=?` QWERTZUIOP*ASDFGHJKL'YXCVBNM;:_     >   ~{[]}\@wertzuiopasdfghjklyxcvbnm     |                      geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lang.funcs0000644000175000017500000000222710630554153020703 0ustar benben#!/bin/sh simplifylang() { local i tmp for i in $LANGUAGES; do eval tmp=\$${i}_name if [ "$1" = "$i" -o "$1" = "$tmp" ]; then echo $i return fi done } lang2charset() { local i lang charset=$1 if [ -z "$charset" ]; then if [ -n "$MENU_LANG" ]; then charset="$MENU_LANG" else charset="$DEFAULT_LANGUAGE" fi fi lang=`simplifylang $charset` if [ -n "$lang" ]; then eval charset=\$${lang}_charset fi for i in $CHARSETS; do if [ "$charset" = "$i" ]; then echo $charset return fi done echo "ERROR: Couldn't find a matching charset for '$1'." 1>&2 } lang2font() { local i tmp charset charset=`lang2charset $1` charset=`echo "$charset" | sed s%-%_%g` for i in ${charset}_${2}font ${charset}_font DEFAULT_FONT; do eval tmp=\$$i if [ -n "$tmp" ]; then echo $tmp return fi done } fribidi_mp_set_option() { local tmp name name=`echo $1 | sed s%-%_%g` eval tmp=\$${name}_fribidi if [ -n "$tmp" ]; then mp_set_option "${2}flip-hebrew" 1 mp_set_option "${2}fribidi-charset" "$tmp" else mp_set_option "${2}flip-hebrew" 0 fi } geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lcd4linux.conf0000644000175000017500000001071110630554153021474 0ustar benbenDisplay BWCT { Driver 'BWCT' Size 'LCD_WIDTHxLCD_HEIGHT' Contrast 30 asc255bug 1 Icons 1 } Display CF631 { Driver 'Crystalfontz' Model '631' Port '/dev/tts/USB0' Speed 115200 Contrast 95 Backlight 255 Icons 1 } Display CF632 { Driver 'Crystalfontz' Model '632' Port '/dev/tts/0' Speed 19200 Icons 1 } Display CF633 { Icons 4 Driver 'Crystalfontz' Model '633' Port '/dev/tts/0' Speed 19200 Contrast 16 Backlight 50 } Display CT20x4 { Driver 'Beckmann+Egle' Model 'CT20x4' Port '/dev/tts/0' Size 'LCD_WIDTHxLCD_HEIGHT' # Contrast 7 # Backlight 1 Icons 1 } Display CW12232 { Driver 'Cwlinux' Model 'CW12232' Port '/dev/usb/tts/0' Speed 19200 Brightness 2 Icons 1 } # generic HD44780 display (LCD4Linux wiring) Display HD44780-generic { Driver 'HD44780' Model 'generic' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Wire { RW 'GND' RS 'AUTOFD' ENABLE 'STROBE' ENABLE2 'GND' GPO 'INIT' } } Display HD44780-I2C { Driver 'HD44780' Model 'generic' Bus 'i2c' Port '/dev/i2c-0' Device '70' Bits '4' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 Wire { RW 'DB5' RS 'DB4' ENABLE 'DB6' GPO 'GND' } } # HD44780 display from www.kernelconcepts.de Display HD44780-kernelconcepts { Driver 'HD44780' Model 'HD66712' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' Wire { RW 'AUTOFD' RS 'INIT' ENABLE 'STROBE' ENABLE2 'GND' GPO 'GND' } } # generic HD44780 display (WinAmp wiring) Display HD44780-winamp { Driver 'HD44780' Model 'generic' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' Wire { RW 'AUTOFD' RS 'INIT' ENABLE 'STROBE' ENABLE2 'GND' GPO 'GND' } } Display LCDTerm { Driver 'LCDTerm Port '/dev/tts/0' Speed 19200 Size 'LCD_WIDTHxLCD_HEIGHT' Icons 1 } Display LCM-162 { Driver 'HD44780' Model 'LCM-162' # Bus 'parport' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 } Display LK204 { Driver 'MatrixOrbital' Model 'LK204-24-USB' Port '/dev/usb/tts/0' # Port '/dev/tts/0' Speed 19200 Contrast 256/2 } Display M50530-24x8 { Driver 'M50530' Port '/dev/parport0' # Port '0x378' Size 'LCD_WIDTHxLCD_HEIGHT' Font '5x7' Duty 2 Wire.EX 'STROBE' Wire.IOC1 'SLCTIN' Wire.IOC2 'AUTOFD' Wire.GPO 'INIT' } Display MI240 { Driver 'MilfordInstruments' Model 'MI240' Port '/dev/tts/0' Speed 19200 } Display SC1602D { Driver 'HD44780' Port '/dev/parport0' Bits '8' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 Wire { RW 'GND' RS 'AUTOFD' ENABLE 'STROBE' GPO 'INIT' } } Display SerDispLib { Driver 'serdisplib' Port 'PAR:/dev/parport0' #Port '/dev/tts/0' Model 'OPTREX323' Options '' } Display SimpleLCD { Driver 'SimpleLCD' Port '/dev/tts/0' Speed 1200 Options 0 Size 'LCD_WIDTHxLCD_HEIGHT' } Display T6963-240x64 { Driver 'T6963' Port '/dev/parports/0' Size '240x64' Wire.CE 'STROBE' Wire.CD 'SLCTIN' Wire.RD 'AUTOFD' Wire.WR 'INIT' } Display Trefon { Driver 'TREFON' Size 'LCD_WIDTHxLCD_HEIGHT' Backlight 1 Icons 1 } Display USBLCD { Driver 'USBLCD' # Port '/dev/lcd0' Port 'libusb' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 1 Icons 1 } Variables { tick 500 } Widget MPlayerFileName { class 'Text' expression mplayer('ID_FILENAME') width LCD_WIDTH align 'M' speed 400 update tick } Widget MPlayerTimeBar { class 'Bar' expression mplayer('ID_VIDEO_PERCENT') length LCD_WIDTH max 100 direction 'E' update 100 } Widget MPlayerTimeElapsed { class 'Text' expression mplayer('ID_TIME_ELAPSED') width LCD_WIDTH align 'R' update tick } Widget MPlayerTimeTotal { class 'Text' expression mplayer('ID_LENGTH') width LCD_WIDTH align 'R' update tick } Layout MPlayer { Row1 { Col1 'MPlayerFileName' } Row2 { Col1 'MPlayerTimeBar' } } Layout MPlayerTime { Row1 { Col1 'MPlayerTimeElapsed' } Row2 { Col1 'MPlayerTimeTotal' } } Layout 'MPlayer' geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/lcddisplay0000644000175000017500000000010210630554153020763 0ustar benbenLCD_ENABLED=no LCD_MODEL=HD44780-winamp LCD_WIDTH=16 LCD_HEIGHT=2 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/network0000644000175000017500000000220610630554154020334 0ustar benben# System's Network Configuration PHY_TYPE="auto" # Network physical type (auto|ethernet|wifi) WIFI_MODE="managed" # Wifi working mode (managed|ad-hoc) WIFI_CHANNEL="" # Wifi channel WIFI_ENC="WEP" # Wifi Encryption method (WEP|WPA|none) WIFI_KEY="" # Wifi WEP/WPA key WIFI_ESSID="any" # Wifi SSID WPA_DRV="wext" # WPA driver (wext|atmel) HOST="" # GeeXboX IP ("" for DHCP) SUBNET="" # GeeXboX Subnet mask ("" for DHCP) GATEWAY="" # Gateway IP ("" for DHCP or no internet connection) DNS_SERVER="" # DNS Server IP ("" for DHCP or none) SMB_USER="SHARE" # User Login ("" for none) SMB_PWD="" # User Password ("" for none) # Services to be started at boot time TELNET_SERVER="no" FTP_SERVER="no" HTTP_SERVER="no" # Use UPnP MediaServer devices auto-discovery UPNP="yes" # Network Stream ICECAST="no" SHOUTCAST="no" # WARNING: SHOUTcast TV may contain streams with adult content! SHOUTCASTTV="no" WHITELIST="" BLACKLIST="adult porn xxx ESS SWCTV SWPTV Subscription" TIMEOUT=10 TRIES=10 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/nfs0000644000175000017500000000025310630554153017430 0ustar benben# # Here you can add some NFS mountpoints which will be automatically # mounted at boot time. # # example : # SERVER:DIR MOUNTPOINT_NAME # 192.168.0.1:/home home geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/netstream0000644000175000017500000000226110630554153020645 0ustar benben# # Network Stream Options # # Network Stream Online Listings SHOUTCAST_URI="http://www.shoutcast.com/sbin/newxml.phtml?genre=" SHOUTCAST_GENRE="TopTen Top500 Alternative Americana Asian Classical Country Electronic Jazz Pop/Rock R%26B/Soul Spoken World Other/Mixed" SHOUTCASTTV_URI="http://www.shoutcast.com/sbin/newtvlister.phtml" SHOUTCASTTUNE_URI="http://www.shoutcast.com/sbin/tunein-station.pls" ICECAST_URI="http://dir.xiph.org/yp.xml" # Network Extended M3U Playlist Stream Online Listings # Syntax : EXTM3U="URI":Name # Example (this URI example for France only!) #EXTM3U="http://mafreebox.freebox.fr/freeboxtv/playlist.m3u":FreeboxTV # Example for DreamBox & IT Gate Satellite Receivers # (change ip_address with your DVB receiver's IP address) # EXTM3U="http://ip_address/video.m3u":Satellite # Network Stream URI # Syntax : STREAM="URI":Name # Example: #STREAM="http://66.230.159.66:8765":Bandit Radio # # If the URI contains a date, to replace there: # http://viptf1.yacast.net/tf1jt/jt13d31121999.asf # By: # http://viptf1.yacast.net/tf1jt/jt13d%DD%MM%YY.asf # # year 4 digits (1999) = %YY # year 2 digits (99) = %yy # month (12) = %MM # day (31) = %DD # geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/issue0000644000175000017500000000002310630554154017766 0ustar benbenWelcome to GeeXboX geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/bftpd.conf0000644000175000017500000000040010630554154020660 0ustar benbenglobal { PORT="21" HELLO_STRING="Welcome to GeeXboX's FTP Server." AUTO_CHDIR="/" DO_CHROOT="no" RATIO="none" XFER_BUFSIZE="64000" AUTH="PASSWD" FILE_AUTH="/etc/bftpdpwd" PRE_WRITE_SCRIPT="/usr/bin/rw" POST_WRITE_SCRIPT="/usr/bin/ro" } geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/bftpdpwd0000644000175000017500000000002310630554154020450 0ustar benbengeexbox ftp root / geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/dxr30000644000175000017500000000203510630554154017523 0ustar benben# Below are the default GeeXboX settings for the adv717x and em8300 # modules: ADV717X_OPTS="pixelport_16bit=0" EM8300_OPTS="" # Other settings that have been reported # (http://dxr3.sourceforge.net/) to commonly fix the "green screen" # or "only 1/2 screen" problems for many users are included below- # remove the "#" before the $ symbol to activate a given setting: ## Option 1 ## #ADV717X_OPTS="pixelport_16bit=1 pixelport_other_pal=1" #EM8300_OPTS="dicom_fix=1 dicom_control=1 dicom_other_pal=1" ## Option 2 ## #ADV717X_OPTS="pixelport_16bit=0 pixelport_other_pal=0" #EM8300_OPTS="dicom_fix=1 dicom_control=1 dicom_other_pal=0" ## Option 3 ## #ADV717X_OPTS="pixelport_16bit=0 pixelport_other_pal=1" #EM8300_OPTS="dicom_fix=1 dicom_control=1 dicom_other_pal=1" ## Option 4 ## #ADV717X_OPTS="pixelport_16bit=1 pixelport_other_pal=0" #EM8300_OPTS="dicom_fix=0 dicom_control=0 dicom_other_pal=0" # If none of these options work for you, you can try other combinations # based on the information: # http://dxr3.sourceforge.net/howto.html#modparam geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/pvr0000644000175000017500000000160410630554154017453 0ustar benben# Below are the default GeeXboX input/encoding settings for the PVR cards # See MPlayer man pages for more details # Aspect ratio (0 for 1:1, 1 for 4:3, 2 for 16:9 and 3 for 2.21:1) PVR_ASPECT=1 # Encoding audio rate (32000, 44100 and 48000 Hz) PVR_AUDIO_RATE=48000 # MPEG audio layer encoding (1, 2, 3) PVR_AUDIO_LAYER=2 # Audio encoding bitrate in kbps PVR_AUDIO_BITRATE=384 # Audio encoding mode (stereo, joint_stereo, dual and mono) PVR_AUDIO_MODE=stereo # Average video bitrate encoding in Mbps PVR_VIDEO_BITRATE=6 # Peak video bitrate encoding in Mbps PVR_VIDEO_PEAK_BITRATE=9 # Video encoding mode (vbr, cbr) PVR_VIDEO_MODE=vbr # MPEG encoding format # ps: MPEG-2 Program Stream (default) # ts: MPEG-2 Transport Stream # mpeg1: MPEG-1 System Stream # vcd: Video CD compatible stream # svcd: Super Video CD compatible stream # dvd: DVD compatible stream PVR_VIDEO_FORMAT=ps geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/img_ext0000644000175000017500000000004110630554155020273 0ustar benbenbmp gif jpeg jpg pcd png pnm ppm geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/view_img_timeout0000644000175000017500000000000310630554155022211 0ustar benben10 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/etc/version0000644000175000017500000000001010630554170020315 0ustar benben1.1-rc3 geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/codecs/0000755000175000017500000000000010630554150017401 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/firmwares/0000755000175000017500000000000010630554154020144 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/firmwares/em8300.bin0000644000175000017500000006315610630554154021565 0ustar benben:3hUS  E] 'Ne 7Wm H`uE]:vW< OO`p@ f"""3"3#D3D3`4xV8@4I_R8SS@@@0) ((@@@ 888 8x8 '$$ $0$@$P$`$p$`&$`SaQaPcY08TcU02101bI!,qp q\ qE `x8@29b@09`"21@9^0P1cTSA0,1* 1PY& "1@11oqg)/pg219W"511@9U2SXTW?CpSV0S@P0cVEQA$S@PG8UQE0QA1PG8V6 01@@@CBA(LAq''  !G" `Q@po`!`Q !@B!AA@!E(AD2@EP%P@G8V@$0`O aK `NaJ U1F1H1f1h!HE[1J1je!Lk!TaIaHQbGP RQQeF_G]!9#9"`C99O`AaAeSQpZP6PAp2809#rA'!" `Q PA09 p1O  E09p1p0Ap@0CpL0EpNq*p*q@<9Pr(`b9P`9O0`qHq}'  .p}!A!@pH%%%%%%%%%'@A0B@C0D@I0P@K0R @M0B@O0D@Q0P@S0R !@E0L@G0N7T0AA'@A0B@C0D@E0F@G0H@I0P@K0R@M0T'AA@A78' FPA#APC#C"G8a@'$$ $0$@$P$`$p$$$$$qv pv@qAE@L`RU 2 @qq$ @@q$@$ *pqA9P`G pb90 pc9.pc9-96`RprpCAm'[Z]\(lWB9GPHPC9EpWO9:POr9O8cG9cF`IW`H_Q`E`Hp.rAcGaC /r@7 rDrCrF5bA%#@A@A cGOdB_p5cFPq3 2PA P@,* P@qp 0)A:A @0@ A1A p@"p)@:@#!b08?% % %%%%%%%%%%'@pG@QACqepgtSuUyIzKrMsO  0 ):a`!0$5):`A 0"' Jp0A/ 0#XVrEP$BrGR%D@ P1):@QLN ): H@RFTadAa@dABDAFpr`sb'PCPeQgQ!_Si 0  'AeBaBRBcBT!_$Ci#A_Ad'PSQURMSORISKRQ;0#0+aGaF'N$$ $0$@$P$p$$$q CErAsCtEuG  BDrOsQ 1@ Q0,0, FCEPRT%%%%%%%%%'pT%"%%%%%%%%'z*pp!rB rD1sF!rLrTp r@ G/rDsBsC0 8Pe@`CQe@Qe@`C'x($$$ $0$@$0@0QA[@Z 0SC]@\0@MAOBICK@LAN%%%%%%'ppp@BpFpSpw NTppP@H@"ppxp€ư9O29O9O C9qpFpHpT/p# p##!b08뭱EC99°Ӵ9/1. ? ӤA?'/B@Q 1B@Qo,>aA9O` PA?9'yBzDqFqH~JpLyTBDFHJLTyUzA'GϾoƎ' 0ˍ"3!08'qp`p&R')&qEAU $ q 1110178qvqq!@#rp&+A: 0Oţ@qp!0"q xB8ŀxqKĞqT\P0nhaU*rAtI  @$ 2 &qEqu# ! ɇ#!U!Mj#N10 B.  O-Ka&sA4!=]qH2  &qEqu #!  !U!Mj#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU9OK`N`DQ9I X9HQ9HX9G+9GrbfS9B/ $ B: 0i C@&8r; qp""0"89=868OihmOquF  ljE11_80+ik8/;aDaB,U8,mMT118*E@oUBF 9O,@Bxe1䭢E9_@孢G9O\B00 9b8 UQ?9!d Wԋ9 aD؋ ,R9118A?C@Af#Q9bE11EA_TmMA118@oFgEGFB U9`N,( !ԋ U !d9OA@CBg9Oeg r+9e!WQ9O /QQ9`B9B8Zqp"b0b8Oe@`C'PRTVDFHJ'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'QQ 0?79O09O'9H0?7DAAf9#9- H990FJC9OBF9  ! 9J "9ON'`x dC@f99C@09O @#FAB'AlBe@E9ODA9@'ClBe@G#aC!ǃp!!'Gq.E.q­Ϙ'd@ҭ lC W'pSQe@xkjmM _Dl ,egPKC2 A]9( 9% % QLC4 @ c3ӍddzaA 911"'9aA #'эծ= YA[эdzp@Ap@8V#'nqp`𐽒)rqWXp&+Ar: 0Oţ@!0"Wq xB8̀xqKĞqT\U0nhasAqI0 10UFC; &qEsCqu# 3!#W4ы &qEsC#!&qEsC#qtы &qFqM# 4ыy !U!Ml#m1O BM  _-K&4=\]qH62 7 &qEqusC#  &!W0 &qEsC#qtы 2ы&qEsC#  ɇ#!U!M#j#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU9B`N`DQ9@ X9?Q9>X9=+9=S9:/  B: 0i C@&8Or; ""0"8978/8ihmOqvF  ljE11EA_8)mM118(E@oUB+Wfik0aDaB,U118  9#@Bdeэ4E9N@5G9OLBЃЍ 9P8UQ?9Od Wԋ9DaDg, R9O118Df U9`N,( !ԋ U !d9A@CBg9e$g r+9Oe!WQ9 /QQ9`B9O98qpp"b0b8e@`C'PRTVDFHJ'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'QQ9O9 199HAAWшо?f99D9JCв9B '9!б !$9F' 999O C?1в@9 AB'`x mCЃf'AlBe@"9OA@9A@'ClBe@#0aC2E!!!2D'GqE#q­Ϙ'd@ !/aC! 'SQpe@xkjmM _Dl ,egS@KC5 C9% 9O " %T4 K PW19ddzaA 9 11"'9 aA #'эծ=Uƒ OWțŮK YA[dzp@Ap@8V#',q89O98.89p󐍐$99O9OT999 %8p󑀕8E8O&8 9ωq9ϥ9ϓ9L9O29O0"<@/9q9Ϣ9O9OH9-x88q 8D8 b.@/988 b.@"<98 8 0"<@<99K0/@b.99OI0b.@<9ς888@b.9Op8O@b.9pqp88 /@/9 @/9O<99O 9x!b08Ϩ0/@R1AAD1C0EAB1G0IA@'0"pqp!Cpa A`h8bBxЀ8'c\~B-'owҽ"*'R9O@A@$0@'9'9'?9O'9O '9 '9 ?9'?9O%9 IA@@A8Q8E @AAI@@8'!!!$2A'0$@$0Hfwo'/  o !a p!+/!?1A8%%' b. S!O N I!H!K J C!B!A @ G!F!E D M!L!Q P!R' b. S!C B K!J!E D G!F R A!O N!@' /0b. I0P G0B E0H C0N A0R "< I0L G0D E0J C0F A0@' b.0"< S0H Q0F O0D M0B K0@'0/@"<1ABA!81CBC!81EBE!8E1GBG!81IBI!8'0A@@0C@B0E@D0G@F0I@H'@@@B@D@F@H''8%"O8 R^OU@ 1@-Q8A'@/`b.@A`N@C`F@E`J@G`H@I`Br`CbAaGbE@UG!O"20#77Q#!O+20#79˜#Q8'bB`@'bFaDdq8E'$ `𐽒),\9D9OF2T9~8i9}38h8@gPY9Oz9yQ59x8Dd[9wpQ9Ov 00B0DV5F0L0T00@|7D5B9g;8[Qpr9m p@q9b<8V9p _y AgT9Og78ERX9e88P98BOQ9bBR9a:8LR9_E 18DJDR9O]G 18GF\9ZQ59Y8DEY9XR9WAU9V99vR9p / _/ T9P 8>S T9M A@6 E1G19t9hq0p0C ϽK@Q"~sI"9v9A/0?AQ"4ih@_'@GAI&@29OA@9O@@9O?pp@B%9k "/0@9O:@29O90@T97@96&#AJq}~" xp€ư912909/ C9O-)x#&ASRIK9!CAOqtQ@A9"90 P&qq#Aq_LC/E@@>E@Nq"px@!0"8OlB&0 0C "b0b8hS9OQ9P9X9 ^9 TQ03_9  B8^9 8P?10!e@qA`Ce@p@qt`Cp@q'e@`C' 0ˍ"3!08'$0$0'@FAH'B@GBCD'뭱EC99°Ӵ9/1. ? ӤA?'/B@Q 1B@Qo,>aA9O` PA?9'yBzDqFqH~JpLyTBDFHJLTyUzA'GϾoƎ'IE0HT LDKG0%J4@CQ@A4QSQ0N@ GFED'AQPP#PA "99+Bp[ Z'I O' p+P"QaE RRbR@At^ RZK9da.@GL/@INpE?10 Ko99OZL[NO10 99όjLkNKKtE4A@A4?<0SD?'bDñ RF/bFo9zG9OZP[R9}9jPkRP\8&`b;e`Q"@`S"B`MZD`O\F,`UA O!^t_@QEQD`KsC0'aC@OXBdIB@OTp"V@ C ;?0 ATp#9"$нex@20A01tq/&qqP#p40苫MCB"$ AEDL/G$`BCe EsD}04401t01t 01t 01t01t01t01t01t_01to01t01t01t?KL !I !  A/F#01t-@#7P"dPATMT@PLPITQTHPPQcQQdg8@L1PR#&#VA`V@VC`VB& !BppS R943BCD@2uYl @B8R \S/EE9,8?  1! !0F&qe'knmp."S..RT#YOqK@Pj6DU3APg811RRaaDU78Rx qq q!b0b8L!b08Kˍ 0"3!08'Z@E9ӭ­AoJ@KB 'j@Ͼ'о,߾7@ !0 'C""Hprpq"`'g bA/'/!J'hpBb(qWU蛟 ԃ &pABpCD#AO[ZC /    CEBD`R GBIDFbA ?@R@A KMSASC101%PE0BPG0@@@`A/`C@$$ b@CEqt"!'Y,$'!$ ]  OQ 10 2u0 2u(# [2uBDNP& 0V$A$CAO01"W8#D#ԃ xxR JH GDF JONLA ) a`#!G !? !$!zx a En G0 xA_Rq2>3PQ49OI!?!,2F0HR A/SL9D HJRx2 q2A/9@pR0, S1ABAg/ @q `&B"G81W8M0O!@0?0/ Bx[ \_WQZatEԋ@AӃ qKrO!*sMqQ@A @Ap !W?7VI0; @5_ ]0 ,5)q#qF&;01$ԃ  1F0 qpWV`^Ap0DBA ^> "];LgaMQoT]Y$!&o+ %oQ &$0 1Q  16o40\XrKW!rJrM rLrO!sQ0 rNsPV!b08P0e%$qDq2.# qHP!q2 qm! A'8'5g8V'6`+rqpxp&)A: @@0OC@qp!0"q xB8τE11EA_8I0nhU  jB1$ B"  O-Ka&sA41qH2  &qE#  !Uj#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU95`N`DQ93 X92Q91X90+90S9-/ " B: 0i C@&Hr; qp""0"89(8!6ihmOquF  ljE11EA_qmE@oUB+ike)aDaB,U\ 9@Bde 1ĭE9-Gŭ9O,009-= UQ?9d 9aD U9`N,( U !d9O A@CB9e$r+9e /QQ9`B9Q pqp"b0b8e@`C'DFPR'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'CQQA999O9'EdBe@aC!@!!DA'E,q/@G'pSQe@xkMjm o!O+ _Dnl,e 8 9  %4 1ddzaA 911"'9aA #'dzp@Ap@8V#'Lp+1qD򰽒,нb;&qxqp:b;+A@'80px#EqtB Kq}Aγ"̳"2$ϸp} ś% Y %%WEM9^L9]DGO!! 9[N9Z  q@^A0-0-@U<0íM9IUA9HrA!`?@b)P"AϢ?JA曠̟àϸﯿ򑣓t__Lo򎯹ϸǏΞϠ\@ZFAQ8AU<0íEO9O3@b)P"AϢ?JA曠̟àZKƀ͞Ϡƀʡ\@AQ8AI@CK,, B ! |BCPN9#?sDKCǀ͟C9 C ?4#9%1pE K :801JAUrA <9R N 2 99O01N R q'090aCrC /'/ @ M2!b0b8&IO KQ##!²08ϼqIKEG9OI&OQ#*;@C [(!b0b8@, BK  pG d [aU^ !D08UR pEASAMSC4[89&pDdApHx (3 A N!78V@JpAGC FpCI0,#HJB pKqMpJqLrQrOPC qp PBa]a\PC8ľpG 8D9!0"8ϓ[} U8P/`PV pPEQGRMSO 1BD#`xP[`PP]`R'PW "pPVPYQX'&bS`CRP_L@`@kE`MlI @@`]`\#+0pЍB09 DFHLNPRTƲ1O01"BDFHJLTUAbR&`]`\p#'!0£ӧ,='£ ӣ 2'`𐽒)+,lQmSāЅW Z9Of! >S9d8BV8UTP9b=UA9]B8BR@C 9[N8BPL9OԱA8W"!(Vpp _?8EJT9W08H1T9U8G@9S8EB9R8DL9P8BNAR9N?2R9L8> S9J 2> S9I111@S9D 15 #Q9A\9@X9O?" QqPQqPQQ) #)Vpp 0)P(UQMPGP@PIPBPKPDPFPHPJQLPEP@PB 9 / _o T9,  * * pQ9(938pQ9O%948EQ9#11_89!11o8CW %%p(U#s px!oq"P9 p@qQ98q pApBq"118E0p& 0&8~B&"b0b8|P?10!e@qA`Ce@p@qt`Cp@q'Q9pS9AQQ'e@`C'yr61 "1q Y@[BIDKHM^FO`JEa@L@@qD[pA_ 9FTP_rA9DPTQg9;Pi9O9PPQTRqtPQO 9C1C2A>Br q2>?0ppp'$ $ qqpp& q.Aq.C"8p#%%'|`𰽒,q%Y9)pP9(pQ9O'9&EqD GFEDp9 _ /q pp&!0"8@9O׭ȭ99Oע Ȧ ׳я--"롽q ʭA p€Ƒp|BzD}FzHzJyLyTJLNAEPBAGRDAILKHޡFTqU|AƘ p@qp&qHupH#e@`C'gQthSA[q C]8JMKOBICK'HP9)2SAQC0 CP@!b0 81  23461x0w SB&R !/@C9 "!?@B"!?@BR !/@C9PLPNPRPTPZP\BJ9r(D9(C9Oxppq@G9O,Hqу G9H@xQ_Q^BLpoJ9 @F/ppqHpH#SBP@!b08ϰppG BBF@G8'qqu R@ pp@BqD򰃼Rp€x+A??àE졽CԀ9!9,=BR"E`A BRB9O qu &pD"R "p}ppHpqtE D#x!D08Ͻ@9Pߟ9'yBzD|F|H~J}LyTBDFHJLTUA 8yUzA' Go'zx*rpr`pA@' LM q q  088!b!0b#8O 8068q3q/@ ? B0/@8p@&8  !0  !b~0  !0B _p!b09O _ / 0s@&@ d,qPG3JOL (3 G @!78Vq pqpp& 6q$Aq$C"78pR#FDpq?pYXppqH!pHpq &!b08 b&`ppa@aBP5QA$P@P78UQ5QAP78V `a@qtptpupqt a@5P%Q@78VO" O" !O"8ps`ppa@aBpw#!D08Ob Rpq p&`uAP "pp@p Pqp pPEBPPGDRFHT`D`BSQe@q q: p pqp!0B8 Bq:q;2&b-c+a)`) pLpM# &q q@qCq> `/WR@C@EpCp;p:#!b08 6qRU 8 q! 0,A @=A0@ A1A p p,@=@ qxp!b08Ox,! """ ""&%#%"#&#(&((00..88E:SEL!(  -:;<=>?@ABCDEFGLMNOD mtxyz{ | } νΠν͠"#./012    ΠΠ(geexbox-generator-1.1-rc3.i386/iso/GEEXBOX/boot/0000755000175000017500000000000010630554170017106 5ustar benbengeexbox-generator-1.1-rc3.i386/iso/GEEXBOX/boot/vmlinuz0000644000175000017500001361506010630554170020551 0ustar benbenfȎ؎м|1 t 1Direct booting from floppy is no longer supported. Please use a boot loader program instead. Remove disk and press any key to reboot . . . U6HdrS7h Ȏ؁>dUuL>fZZuD@ t PQYXðNo setup signature found ...Oȃ 0. )Ȏ؁>dUu >fZZu 6@ rȃ .t..>u&6 OWrong loader, giving up...f1ff1ۿf fPAMSfr f=PAMSuRS11rMPu @LS1&L.>t..t%̓ . Ďہ))9rȎf>(uG> t@= t9 9r)Žظ.O-- - ؎6u}$ff(uoK ugd?`81 uR $1uAulinux: fatal error: A20 gate not responding! f1ff ff  1!1f1΃ ff؎1@9t2.6.21.3 (ben@e6600) #1 Sat Jun 2 22:39:38 CEST 2007pQP1ɎI dP@dEe;dXYfQffIt'dt`ufYQ$ Y 1#dt r 6eI/dd t_<u d_À>uO0ddd<u`edb t d&dð>_tedÍ>hd#Ed$EdEdEdEd2fE(fdfEfd&fE#fd*d4>hOf1EfdfE fd6dFf1E tOOu>d&d(d*d,d'd)d+d- O11Ou d.d>0Í6"y < t < tE6O[6 u_65t6At 6F76E06t)06he< t*<t< rttO66<tu|t3_t 2 o0CtCu,dÀtĀu߀sdt< tÀslt;tOOuS[8u0 s(tSX9sSn[߭t9uD>hٸOOu$< t$_tet <t0 40 0pr ) #> R$ ZbPb"PQbuPtIPS6bb'bd&dl;$sd>hث`1[XÀ>tkdd.6h8r8rʴ8rP(X8r`1VW_^uPBJXË> u!>hfPf_t&u f+PfH6x>tO6h9thL9t ;Ot f>6h2P+PPP"P

_uOOu΁VEuƁSAuJetv=r tb=s_QOˀYOuJ$< uB}u;t1ҋ]u+]Eu!E= srs IE⌍6 to see video modes available, to continue or wait 3 secs Mode: COLSxROWS: Enter mode number or `scan': Unknown mode ID. Try again.You passed an undefined mode number. Error: Scanning of VESA modes failed. Please report to . CGA/MDA/HGAEGA VGAVESAVideo adapter: UZZ؎Ѝf@]+n. ÁV///^.C.aF:xSU7KI F g-&MF/A A5QfݕQgqf]?hn_ ERRWn=羄;߷{{s_JiZ\GZ۵uNJZ請*>wvKV"r lAwYaǺ y.l'4H)o"7Tl@'b"֔SmmDjj&jYPdeӏb/RzC%s**yFPݜ*C (t!v.:,=RdZsI'WФ7Ҡ'vU趬bZ4`@~d~{uhJE9~&˯-ZKfh&yJ9[.D\d\1bعKv'P\R+׫+fP7/`78--inX\dzrn(8\M<81Q3C:ȡԯfJї Ѵ;InSЂNCLvhmP˛%I{حHiBcUڲϕ;4kbeǰ!M$j6R=|}vo%6\#̈<O?=hB9YL#~B YK۹'=HViWZ' He޼ĿR׮mޞa^%hW\/KܟV$G홥:Cz'L$=rOY\)vz1,ʠ/ۃ}c`<Ӹ0=nv|>9t\c310rWv#Y)C#Y\Ej&>^#|%PڟŭGۅ#e e zT{r7Q&D(eLEށЉdƼd;' $_wzJ!X<dvrpl\,$Ym ;Y}1H&?_ky<2yYi7;sһiLA+PuЇ,AosћmwdH9Se)Xh|\n(>zsy k"|-ʵEmx&V4*Hx:_Abf|AoM[\Bk`:ԊߣE$d^RhIĖ)~bGjb/b 6 m @AcCezN6zf"TTӴsI&Y^vQzP2u~b'!d%x{\DpLE&qa@o}BZK;i&$ خz6d-’^4i۾:^x!\be!1/=Ӽ ʐ ln,(|?\Xez.^ҥGtz 'Ƶ*1| G 'NgonP;o wY >?VI.QmeW ijI=ej+4~Q1kr @'.&#o[;65-5Q̂hatEMx ͦ&|,hm+Om DpWns+_٘x(& kN*?% e= ! 5x0b­Rd̚jl}7^YЃLҾ`1OX‚lY Z|J,v(UСZO4܉ w85\|F P帙`sOsl?lv Lu`P 7sZ2oZH_E~ԾgAyWFhf:N%p6:$F@q#;EB.tY #iE};-j?k~*EݽJW y [ `hpKs2H35ҜQ[ a˺u$~z ~IpU.hGE>OGc(|/hRMOxiI@vass> [,K)SiXko,H"~s5^̦R{H/eK,jǖ BaX@E yơ`LN6>u&az:ZV9_ c7٦3R]4nNA F<6;CŬ8i ~7u3@wQqR wS+Bᇣ1 nwРǸRވį!,gJYIc4X\C>ċi*KhxI$`痐Tr4~͏` &pV::]=K,X :,p-M5\XZ!HoXg#/M$dauT;+]4ȷcAzx[$/}(dXMC.dY$bqrl ylّ&"@1'Js͂$M@i>QڝoV !$rz᳾B%'4~nX1ze[2؃ܟ7&A73;>҆ _ټWRÄȫ&t c6sԯ)ryOY bg\+qیC=F=RW)BLh7\Vn ;1J[#>afJӅBl -#wVBP+;evOYcROCw||G;ҹyW\ݱ۰dã(ޓ d{\#(b%(,FCxy1*  !MWT{' &! Є$sNLM!}]uN:UujlrX[EMeO'HkP f+AźqZJPz k5+Te8i׶a4p~x^zEɫ fZKŘN [VY]%ʚ7\M(%pY3Z1#p %$$L+ nfi:p(6l6PUvQYOWQ lෆ 8 ck 876by/ !+F2\xMQX^>8=yLB/}(|Nrr||k(|~C R)P6QI ylXBM5bլ&mMfg\4fMff7̢E(:Z[euWs7Fg5ӇpsQo-I|[hq|rꞻj\Ͻ]TQs`aEoto%HTbgHGg%_mَ. 1YB,@ls*A6oS!0# ts dva^պ-6vZG=NgR[5Ѣ!muR蕾uos0ϊJ^`]j:jPXakR~= J35[f-bi]0)<"x(לc@Ƴ}t%b^E~cc jv=VeV\|ּLhLs?+TٞjFH/ӚH/Wa ga,V,[os ^qǘaO];L3[iՆi:l|ʩrD"#ջ d/Q7,,ǕGLnδUXTPxe@:.y` H\HLn^R}c,氱M=x٦*jaR]V0#s9|z.o |PQ.5?o,[cUը0=JWॾ~8knUw:;*lNӋ#4zOP1:awbj;z,CPS#'(yl;X)~Kh@G0$x+NH:s`3*^R6v^}6 5/N 765[:,KK|K|J7KKWH|3yM|?<C$>$>˓%>%>["k%%|:g %nS$I|O(OO0K o9+^+AY^zBI%/x?">'|{yu$$`Z-'/~_}$T_p /^_ =$I~=H~I~wI~H~ÕB߉LrtS~*~4A.U?&ނ)NU􋱸m:J}oP>prd?qHHf2x jfPScD F[j&/ڷh-=EsYhًחfdaDѲj.efTd~6'όXmqBP7eH(97`sA,#,?責dXHnDehYq1ȶ:oc=ɌN2Ӳ:;J%"vq(SiQGA C.1TW7 O_Xnx|s g)LIOԺ]`l%ׁZR=sH=x׿ .l/cH7ۡn2<̑׿Mwaqf?%>U(p/:Դ r|+; Ba쟚W-J jUx'}5ň%Tߡ+V Ex7@XPЮ0vxc*h!lHs]4a}3-KPk@.t N^aF3ڕ ]ӬLzվX_ __ rƛ::yw5xpeT^jh R<Ưk a<[p+UR]-(>W^>7q}dPpǥ'{Xu?dz3xaG:.w=*jI(hھ8kv= v{>4/WASF(Y]Xly[oT^@ >Qŭu[)䌝6BV)r~@;${V-_D!zT3WJ2/ ؊ay%mw3gxXK1K?|z'cdvPUPsW($%k.7b~-~}^62[d((ms xO2 bQt?>QxzAU)^Qp6d` 8GL0MP-~Ƕ`MGowQ:QƳ"tJXivkva6J@ސr V}c,~|El1Eܶ7\ >\oFcC. A=e!޼o0ܰqg7W\ hqFFHL)znO³EZ$.: (ޣG.>clfPȹBaz0#FB{BVb'xu*+h#6PՍaRmF{Fvb%44KY+Fѓ|oO(1aGYpʶO\S5:lkYH+ܚUxBXU*KaOlϏ2(uv 8eAZg SGZVUwĒT>f=ylف&Hyp'ʺUix\\GrtΐίùF&ǟN04 {IsJ@Gʰ3#<@W54^13ِK8=.[Gdh)<4`̃SWt2ʊ )K`:^q# JڍL='.^nt2&T ]smVtFwok :`Kv4~ h}S]n|4Zi*2f}^kC lXe;}txzB:u'AZX=>>pAxg /Q0gfO2 & @ADQ$:$$DAH-MaO@2ag(Z/ZRmj1 ^fP5ڀ{ب4 dֻg=c{wˑX6olUo;қal>~ kogɲxGdb2%Ca@"h5}@'8FS=Y]TÿTܒt+f,/6 hS䋶6o9I=Y"8ȧS\ih/b!FÚ 4%*Io۠&95~SQQ\z 7SԊ:;ƓRz\cMZ DVtY0jv,n}h7̮bM:תmB/`N^)t:(nZȩ) $$r;X0 0fL-Qoķ3>݊I;$ Is e& 3!q`({W]QDz>i @;}ctg $jO:=H# Ϫ#P~t䕳E˓^[kPeWWZXEhm۬V+dᬖK gˉ45Fksj4a7!do`gQ}>B #O;Ezl=z%;}I<|*ze0ꃷ\1 b*ǥڙwawo3IllHez?¬ȉYIխd<P'h(J#; }Vzzi*%Jqy%ϰBO(yۑc֦ Cva,q'paJȊ!շ y} ~FE儇Cj]^$ 1NT}0J"YyͷBAl'̇BXO_yݐ+-UxoBq, mF́vGҾfS8R S4Gပ2mdS:m?_h+K ȣчwC'o;|rkaޕsG~ ؓ+jov#׾ItMq% V%mL 7#ha}j &_-ǖwfyYfE"nՓݨ80HNn?y4SMK(eKZ㽩mmkguZwXHMd3WZ&͗r][Huj3kQQZ{&oZ8oZy3SdDﮟ4ߚx(Zcy0y GDr 5E刴876n*xB7oϸ[&ԏ%gzdÚc0+)=zM>a\NnJ"m`!Qo&VsP qp"W P. ooC_AXg0l6tNnQ+gkBoJ/,s5tVp=DNTm$GG"@dp~zdy[5s+S{_ #7 2;M}?M>:}?Mjm3-1Ldo+ݰD6BPUveI_ qH@H.5&W*CW+o8o~= 0㟶uh ?9Z|yљX;{3ŕ; L( dž4k /pt 0aֲ]ƶ#]Z- .vk`=:tKW հ]}JjLfnurQXYEB%$V`ý̈́ a|'ac;J t,OUnh)"GއcL6/z25`I(I 2p|ᢄM4!"VNȥ:]| o݉8vXPQxkFu4ɚEGUzye`BU-#>#=ĤV$RwgLZ"t[cčBڥ`3f]JC%ͰqB?r x#::"B`[P}G2 ^< a!!뼧KZ1̨K|7zFFqn;{[zѣpaH#t̑6Y1jZ߼~o[" ;4*N [aX!r\1Z, [OZsDK%@f:A%>*UM o[lxG"NQ#RMcViQhZ-iQ01낶6UYX}Z|n iDkWrtT18fo]qKnNzǯ =iR}w)ԎPORХaxH|aZupFu#*=]@ *bO6U(1@^;-AKxbw^%5K(V Du%Cd{gPA3Ќ] /MwpITMoomyjRf7`IG3<wZ݂tBGHk(ߌ8g}hv9ao٦zjT$m+v5j3+gJ{\ؖwG[(9oGb}SBqp{L [x{Bs#0aƤ&!£VWGPKi#sYK( ;PμZYuNseDž ň b';K70<'f?X 1FPvh0LՅ-+H?V'6-8Ljh2٨+ct-5!Tؿ:(X!)l_C.E9S[<B(-FޫrTe L cpЊ#~CCY6֮ #^;#=2l%[n+fB+EUC]I60}9HO0fି aVo6Kxa൐aʀq6J՗*_?#n#CoNVG+ӥ]q?4 ?0qDN\98#Ă Ώkky3B]ߔQHS@DRS09T,$ s \"b' _I ב"XVلVau5.vA47)t$X[ aI8uFڑ&04^}i)b:f|4&;{8[y {=_ }, 5tȡR2eCsd+;f\j6E'jj@0 ГXqda$ HBB/UO;9[6J Gd޸IP yWѿ"|h P:.}br_6Q{ ;$w^WXi%J H(u/=A-逡^+J;ٹHoPN$~CV0zJC̕pf0zPW@ Vw!Yc 0` ! Z\?wbu(MRrچ,6#~ObIF >"j%aR5´EJIp0v4/4g~:2TVXsEWx@>=]]F7ġ ܂J^L!#/@kq;78i0fh bCQ-htswh3F:qڋi&AF_-d=fAWߔ^E >hFOÖm)3Y걇[f-;}ZAUx1dyPpmF9K_f|n*RCs7-ٞrL~>&.wG]m[O_E~V>~>~7Cb0;*G,/,_',~e)4HEJٛIz q0y}E#%AG,gfȧ$PYYAaI`D@4׭/0+YIGQlZq$G+[G6sIqIBWD^9f^+YqgOh4ݭx7GB((3=zmZ'}N6;0Ȼ_mIZ;LF It JMկ>X1_mڵCvv c=Cy0_Ivlܟ)[_oҎ1ϭ8Fa Qn`ݖXiZƛ\50aR2k\w41m!]iݭCcMͩѲkC_td:ۏmQWr>r'|2.]xVΚ*o1c¥V[XDVoL[i}@ݸ[<]7p|o1YrÂ^ Ws~Zo@'GPZ>R7(3u.:pV.ݨ>Br)oهKä[C'[7 \/'Ez- nsh;=ي_[6,"Wd:+xun- !{IrTzN- *ټ@OQKl[1$]MϦ9]C-4tТ^mifd/S)|0[&C@٦^hXm6+l֮Hj/uwoˈ biX gKÑ&@S[qRSE`$\pNw!ۨDGXg2w ?Llr(me@՗¡> as' %QCY4=˸Y4=k9j6/;\_(l(T C6a̖!En8p@Ƌi$Y,]b`3Q.6ܞwE@ }2t)vS`ŭQGt_—Z9Q蝍gH&aY*TARF+|cl-OIjfٕ .xbUZv3X+=f$$׍JNi2;"XUg"r|T&~“}GJPP^L 7)}I'An@ЍHJ2;fǡ@[ MT*%K\ՙ<:۹GgŒN:$ ^SlKh:F{G|spek"> w>(Ë C},,M<R/ފjVne6V)Q ސ=kSvBd2+Coxèy0ǣs+TO $kA$!!K4>NIb|T^OAjxf=c$zJ$C! j=O!f=-Zkm[yq3`#_Rn1RyeQur''2e7-8 JoTN~mSGrs 1}ݩ_:,V1RZ&J;yX"zEJ=ot2/ipt%.bڂ^!=/z= @~UMi>kqIM˸f/)$c)ob)?Rh9 Iqj55I,ց r˅M8 9"0L"Sә,}iw&TޟnM gicGyӡQūi wW-NuT;IEe}77P <пڢȗ`arqu<%VȠ1*f?dz30S`"ױqT<3K8[UZ1ZEG_-ZKF#H#vh-Ta~P`9VAx-_΅N}%렠,',N[RܧgPOB|=|GЯeFYi8(CC6cƐ݌̔%+r}u&n7wvNm1қ{E)a7eY"ˑbw$-rXC"@RP̎TO< aM(2 cuII;i|h#{%dQh_/l$!LS "gb$HooQt{/qE5QDa]t@\ɏew49tAY=\CUrJ"y 14ZM2Iаxɡ vW@$6 4>e\U`>r()LmDϋC_a.+iS?NS"9**мASS\Փxݳ( >7NgU/;:>RF`8–Rvi8mH(}"b XҿIϛؔ*K䫍qF.k %Hm(kp\HRdBdU9055ZE܆^%r4 *D7:lGcN8#xmvw!a<6rۄ<sʛh^l`@QX4JF]qNH>hr6!{A\dg@_5l"q`~8n~k:͆KuE9v9ڳpac.wH8 "ڒSNtE.P舳Q$P2]IHNd 9\Ύ+ǣx#z5hKwT,x o|T  I+P $qT0dS׀Y?  TfV^/$ ӕ&٪M"x/| SN8ߩ1Y1H /O 637$Tb5EI[#cQ~/kc7^wT5 ] LGn#+2 VCyJu([XO蘽3,IѐtƓ$gr#N ָ|32tkm&[mr,d]x@=ܸgk}holMi@-s` ف"s<(8AI;o>vͨ ]9"U#pO ~A zTk;3Iб0Igzmr7IN{[G&! #&=`CQuD :qקH4 wsw" %8K4k&{?y.*RzV;0i!&%(I黾R#zNtgc|EƓs;rſo&ZR^T=F)+}l7زnd@7Q9H]P$uBe {5A龕.It+*.=>Anшr+I6sovgQcÚ &ʚU/Q9`q[(rֶ^|BG j%zOC9n ֕Fg}ނH |{Bdxra9L7coܽ O~`:RQԬ`BG4Նʹ-hJ0 fytSit=VҔKF'bʿlwݪ_ 8Kv܅JX}$m֓I 6*Y!s _Q{}׬QT{|]q?R}=9q{cy5kOEr*껣_T[YcmA.#&V=q^ko]d̈́yVW"Z'M&/VGcbMK1m@FJ؉ ?U xb@d b&֡] kw!+-[ͫ%6 D\@=6. ν#Y%4F!FJqCqMI,+lǫu7q+6GP6ݺCfmL <[n\O^ 1]ӳϻ_zpI`I*7gR4h$OSٶZ F b盍"tM_)݉xʑK 6qq FcFP3c!R@f8V[l|U96F$4JSz| I~tTO5,2Өq i.cxOPn4l dFk9GBԃZyU9 ρAB'sNJNl`|yܽ&Kh[j8457 R0`RQ 0sLgtav6^lcҫ]q8)A|4ؾH~$|+F+?dm͇8T~db-~mM,5o6WbiOMфx=ʐ_{5. !dxݐg2}&Ag&CnTFQיLM*N?oK 4hIq~R0^ $fgG= aǤE <񙮳J;&OO317QD6GdLqCNu,咓;5 p'm2@R:rȶtG&M4'#⨡sxู="guW`nV+PR5,{Ϡ!Rq7z(?[Fu?} S`"ƣbHKP\ʳXQ~)׷/RAO\qR)Ŋ,WYo*YOs3rSʄcqL¦9fNdP}@ЉQJMB0Q6-c@Љ!$Lkls@ЉA%ۗqiTTFFt5dm<jXݎJ;¸dXe M4Q JEWyrZ)ɰL QZt1݉SqVNG #FWPY/KBGM! }q^o^: #[ohSrqc&V!هEm#x4R*I8= =<$g.70 RA+gX^ ǫ]jВeӐq290ENχ B]:TW`QOh FmA:rTȄ)VW5hSٱ=yѡZ #^PjI |9ݧ8J_إZvc>鵱_}wB8T" d,5G+c8t2ũ\RVǿRW<+%B2u47$òPe;6k=} CDu+#5WYX-1W|e"~:;gZH`DQJp2A:OBTdmy$XAɱz #A0_xGMӌ6Յ eǨe#ѝN@xsѫ(4rq}t 9FĦCF$P6@lAPK즖ܶ-nCx1\VnE ;+h_MJ\ i"^ɖ}X/=10UA#n`&OWggnjS܏*%'R45!ɺyB4ww/o8Uvps6/N]OO1?Q {-DMvc(ޕ[ͽ-F?H7Ë{(6i&} lKଈ|Z7|TYib-ǞHIZ6t#2X@oOlɷ8A I spy :N{y_-p#f(or}Hz⾈̼ƺ0PMHЉa Z6-DlEip@%ryT!{ơPG'IK#R舘Ԃ qБd=|V>RB\Fb-AL-2u,ټ Pdf '-ic=R7 fKI(pRM{"ui ߓK#{*:un>7Gm1`$k#pwGPx/9̂ ֔k|b!{ª݊>Y@ ޘg B/Yw;0y2N1'B%K6s>:9 ۣji" -.,HKZ%ŏď&DսT@Hچ>nZ*.ĶcRpX_k:zvww͛Ԕh`L{+ݝ+ D,[k.ޯpV=.@Y~Y' dT'C'Fȁ8VCclڭ 4:9TNLvt~g8dJ;mhV!XKyRdG`p@W4< @ݱZp!~"jIewr[hzZn$}Z$xmTUZ)W]abO}jًJxPҕo:Ui)G|@noMjN:ȥ XrZ{h8R{nY2 +K-gFnizf3C2 *KW=;KaeU.w{)@jA37| -M^ zI/ѧC8N%SƋc =TٚL&RGom'KgH>n ^ T.J/&`,ӉxжǺ螈BgǺ'46r/B7`1f5e]5(}ZԫNYG4=dqT-{2TCj$2r[I@H)v1 ih4#Df_dP>a1;i\KO>j;" ؉P,$1|9~@6g]Oȳ<]ءfy -MQyIw S{ho2m.79kG9*'vڴG')0/$Bzr،z"%go2v,r9@OmK520Kmd׍*qC J;}=r'II bx+5J`8ߗaK,-nmAɜ7A_ctCoå+ ldg"K  6IO=h (p4иήCOOC3^ QxR[8^u% 'iwspi@g|61iGsrݝI-d:VMLRDwRJ~šA~oPKs"Q-9e(,Щ}>B)*Mț:8K?Mi[JvBʆ_dXyP eS'Q8`.m&>yRBrpdͦ^ifW`B7яy"1_Z'PNOZ&Ubn }eoGDwj68p E+؆:QZʺ4|yjJ T4P>&"WPM OCd^)9"h"uc88:M8GӸ{nMUDNRi $]'c$]8[I{A ym; Y"w0ƐaC1%Tfy, 2ElXѭM-I/bsU: Fgܭ@y l톇 db}0A(gI VKM'2vj{ #T\PA]>9;& 0K sW(vQfSOMDdV҃2 PEµ-[}&ĒNTVJdɢL2CC( ff=¦wȿ[4!fkoүNPBK[̬2I lCkGJa1Fk𮧐8THN9Ƿmdty2 q.΢^P!̣U]cF59,#쉩tp[T8R-cl?vƂgRH-tx+,sCJuN8^]\ UMYKs{@Ѱ rf)8YF<O<r{hKj?T[~⅚CIe[ E.<[#JDhP4iOδUYKD마1ٛbnVtRy2dh`Rp>Z_[|$vTD=gaӞm $@/!7%jYZ: 8=i307H|Dū>B|&G-*IK8nf@`Dd}EUw?zhdLwPp\=9Lwͺ:BJ}a@֌ `&O^qRˠ!:E$)Ϡ+FPԖND;cNv)6g"C ٦;xQGKBs[D؜7P vA4 w 'Ut^q)_Eg(SW/%:f\*1'º8K?)8dmKpR X!]Bk޴ S)X-4?$t}ʪ9{/h2R\p$sW p1{1y&^;ޣ۔-oPy:5Udo+}/ sA]pϵT7g`/lr9h>&KY>]ȏYHãBp|VMZ6vq>;[e&1sw<^Byu,Bu_^6qu97%S!KzCz-G'M?b1 R܃KmLE H.p u"țtntbGws<+IJl<8FԌӤ^ű";0w61J5<,)Ufl:>KPӆ)J thK.Nj݇!`͚ߟ'E薩7TN?fV 6C,H7|ڨ5#,AcK:of<¼BQmyެx}pd0tChm@tۢdszjC`@Vs>"9 zM/B ChMpĮN)9m;3Z l #l]ϋ>$"]uyP[EU末<3ra]Zbc4; }(QCxRiQVt#Kw%.q:.EX*X-JQқ~Efc9>NJ}sp!Bc蹢b( {`&l ܱ L"R{ucD7V^T $UIul\5#k}nK۷}H3 p thgΒ3sttdPI$&`djM!ҟk΃\<+&i =KxCNۧ'n,5jXk`cʺa/Ҏr I-IH-aP{NɃGqIP_^P- 2X<_žPdOG.OO^ȗgRfBC̵tľ˓Q 'RUZIX3ݢw(6Ү/Crjx"m'BүPzMG҅7ΔIU4,)m&N;j$GJA' ,1 ց;JՐ#fs(^p,hyj"6m$]ZR(:#܍B',@~o.G|YIE52(n(JgNdZK&JR}:|;4,mIu44zr@f~!???J` kSrۼ_*GLF`m@&tDkrz;BdPMyF'iHvO7mY+wW5fUA0廖N6F=}@N>3Lf"mPnseވ`>:v@ݩHIy mZYȍqi,G7!5X!'t|L &c+???jGŒ=i~і;$"P`IC$+BEW?>Y < HP"hO BbA bx uBEMPA)0DwpdV )jpWV.wF92FW檷OwJ-^F=~~~~ |Q"l$xK]LCHcaUDxs_R:ޥ+j!k:PLIbF2YyA) +$ )@枧6hGO05rq(”v+edw\f6(z.|dpgI&mdo$ Ewbk Eŭ6z ^ ~ Ǭ#lNUUJRzR2z5&ԋ-hmEe Z rѵlOr*2 p9Xc Ɛ߰oB6vAQz7(j,בuB4h[ ,EP@:I1B};_(}MkC7dcǜ$:WLV(_~N̪Wӫ 5t9;yѵwxկp冀6zcmgRHvPHFVpW(JDhu\Ʒ U.k @CcTf28IAг$yX$ aZaU*B[Y"Y-@" Dhaicvd+ѤJiᐆ_n߳iAO=:jop_5gw X[̓0Mϱomְ}yyv]-~:Vؠi= 1hh m Uդ G4TtأªPcC -__2/äc WK(H{2|w4tLy"Hd*4y9mmIgkF=!`6ȭA5f.)g}񾡖~\z٩ѹFn?.ףu"JValʮLiG#uA9i#f0R傠# h?H;m <1Օ?Mt% `GK6r,U{ dǹ=avÝIj~ޮEfi#Jgc N7}f%ЩdE$]R"u=­cT QB+ ^ [H%5TT|ln`Y1%@q=[4Q^}'45LAt s9w 2L~_61)Gk% j2 %j7S- J?.ƕ8*5W,h''0uM`k2 ޵͋Ÿ7Gs*`e/ v4WxRwrgz;Z,TpЗ{{+pV}>ј PZyʒ^ [tJnef.L8 9Ҏl."|nU(ފMVlŐYfSe(i6YvwZ ~0n\XxIpx ZM.g"`\ ll ~yZۂ> {Z?4Fb *]kF\CSCyԥ'CH|e?㖀=ͧK$R(T ݿNE.Ȃg+yIEqر&n^ qJY\Zg6 뻗 ʮ5I+0RR9ӛEcfo@J rM{>7])oǔ٘8t; _7 I ~8\xZ/”o3vB+5x t9_E5,UA2$xN;f_^>D)@,IR  0R^*V|ۆV. i{)vґP 4>AmA}ouy^]TEa >VH5// Nn $# AN<̭HßgPwdϨVl6o.& *?F?\ \މޱ @;`tg\67>2𔛄ph;HgoҕSJyH'U=8_R^!l[*CHYe82'.R\Z,Oϼ)SNzhW^d 8lU K3,=_(B<[<9:ڨ^Vy n]}kT>3 p[}N04a =z_aq=dQJfUyFnq=*.B(@̟b*8B۹yk7[Ord 9M o ~& D`zDEj̉1QUSR'xG}N>*ǎW.J~#l|] hN% (GR:<:l}D:OmM)^% UE\r|*j7ɏq(\-E;KYQF47n9 ktwpa_&":yfdN2#DmZ4>/E*ٶW ؎d$rHqv.kLHEnDo6 z+;> r;kFf%KZۣnju̗fRD`9IjE3a;a±̸?NIoq_2/YEs\r*i{ k rX1j4rlBpyҨp۾`2! hy4m)9U _Am 1?Lºd"8 VPCi3 e<.U'|L,īl׃F޼ w+A 5!ZzA[hZv +\y^cLSKUĵ}F[e`rֲ:ކ>~9K r,k })gͫǂ6Av>X:G0jIOS92jFVF dhȱ x0G- iJ$m.$8Ni/xjvs0B ^nbr;F֍E!tC8A7(g*#uqQU Bca܀؄z!Z]8+n؅X)Bx> _ ڪch2/ "*s|-Z*Sŭ&.>⬮[Ă'm'}W68/b;B5u]:mHe$ǚ o7, yxʻ"Xoj T޹,֜CL/6K*ܙuk}S. >pLܱ币:ZdECt^94d,yllp8` %.r]/pS$'D)VTPodi.H)E-MC>಴zZA;QUz]SRz zm2x Dܪ|sl1,,= QG{`oKiRNl8}yUgUr(,l ˹ ,|M0a ÉJa8=@P83&f2 *́A3(GA߿5LGwz6mI/f:Zm-) _Vsrp2XN < gJ V\Ĩm6tހ٨ZR)bXϣP;"V8⚌X ˞wf! >"ZH;F.x(=DtAGdaj*c0:ftw'ޛ0)s &e(Ag&О.m8ekʫC\p m8(C9 ,XTS 迊BCԶG_>3y ifެ^_R]j4gc#F0O 尽ei !>dl9JXOKMB4X4 n>ʑ@;`.0ʎ t%6&Z=hEpg[}%ٖS0Ks^LAm _$h[1f)9;(弉j+nzT-5f?nNa#@rA [q1e5=bzZ[|]Ǘ jRBͼWhUS[{5|O It5z)E|C50E?]ۊTӽ?v EViǞxg1[g(gɆG?LXϷbYv:$PhQtvTKyF;MW}kr>~"%:4CQBU/XvHhvQ2Ws2A/J@v)NXk8T%@Cz`l""6p[U&`wx/!X)=ѐ$l3K"/ϕCr9`+oױ࿫FVAvbX>|0ҽ1x<'t+D̲HlА`!%O912Y(ɻ`7A /o[ YM L7FgW޿`QTߛǛF1K8npj}I(e3u7뙮 =D>ҏ2f"G@F`x`r'X5` @{ s=ujz4*_i-O/ Z^kK[RY4D =r_R`" ]0VL܏ű%:R/G"ҕ_'!*Aи55!{ɏ"P:d܇݄f:NX)r=LA7%@S5 XcE-`(LӶ~ R-6GOglP:9_ZTՓ3;U6NS+ N6;:]jCiHe㘽ZqACNrJ=xсUY6-q0Es Arn_$}}j_{|@9V 5Aչ~c?d3Tukbw8?vꐋn7#e3LbұPvB_fMw0tH{2ҘrH$tCgf)wg$pQv_]U~kB8dsë& ̍sXLdf_.?om %zx M^;OVw(ؑvq?pʶ\h_ڀ^jvP;In>f~ZZ&eglvw:Güm4W;vtM"|FѡTT2vB[8ߜ1;i{RL{rS; gS*$I7|~֍/yPN\zT ?ʷլ%"Ym?'\1Tu']{?FZQ{6iR2l!^PwxnEsL->Y|$%.Gnv:0R0RD:^{Z`$C n SsҰ\mm6Ѩz'>'c=68kQJ{;.T;|Hfǘ\XXmˢ :ϲ>Aúpt#y ".ȵhGn[z$+:M:H)n> I H-l}Cڝ ntV;LNMq;Bi0Kpt>Yx8-Ԟޮ /%Yx&foSբjaVNf (6UʛDGʏ k@4GӇ ȒBP%h' ahJdZ'k1Y`w4.٦ߵ(#Ky^PgCef=t-~5VuO -Eނ Aud9C%7)5ƵDM;6znۍHy\̲p8|j\mO{#77JCZq! Zr*  j!.˭N-Lٹ3ƍ* *ȣ K3zbw6ٽSxha"luܾ0P`𬓑oR߼V[? Z< U 9 I}᲻Q59Rs%;ͤIK ]I1C <:{30Fa h7Otr'}f5H!ؼMwԢ3Y3Zms4{=kHL [)KiT8 pL3nNHƸ&@e3}2,km:`/>M7_M:rh4%%M0h.b9Gp؃~އE c.AU: (p&VNzY(*cV .(J ӷ (VGlvԢaGe&P}fԥ"EoV?k̂4y[lU3sY@Vƕ٢;>fC'z|U/O:MsHhM5kqZ.m{'')T'Er@'fZUJ J “!*(Z1(e]d$$΢[e'g`SPUU?"G EVSʳTmnE]QLBln\-00n rh4~]{W#gMދ!{0tĦ4$|"}0%՛ጇ3x! xOy'aBӽsx;=<Ul MJ\ڿʆ+N!SZk3 \ qVP[\zǪ b*~H: i ?m&Pku2[u({Ѵ_u!PI; j~{yu^/%L0..3$&Z 0Fwh p}L#? Qx +MvJ!JfW׮Zw)= W0cdK~eX'4huC#hcWG9⦻\b)̯i(m ةvWgQ!lz>?'%!ګ,5g&p6;&}i, ~F6 (;aWvxWHѼD bҌsbҌyuu1Q1 KURcmwHt/ ]ЭkK܀o4V%p"k0TX?\i& vT]8!Lt0;[G[ j=-kF/^Ӽ@K;dȗMEvE` 7+}QĞk[ީg?i/LC#_I%+Դl8wKԈ"h1t|ȰA]ORq9̈́ Ad-U񫮌 8Q<;|WL OԠ,׿!4њQZ a/jQJȜ۳>3mxr(2ܭK@CW ,n߭ JA'.)Y){UHoNuIӾwK!XLnJw' ^D)*G.%6])2 ^Gvv;ZŎw>0ʛE64ZbYi[KX}"~;J/t{9=hwKL:wN^s~K([|Mq+EAhTb1vLy܋H_ 8`~TGKCihb舕XA>'ْo53\H&μ@?1 Q3K_%‚ЗY&]iEEU5 . k`+[lްAX]O ˱<;l߄2kN?o %}G4Ғǟ)wD 04tԓ=!X2FBFP3q? kXY[DXʏ$pgRyCa0>-:D7ȁ׉]73/ `9^"A(M%xy#FCCGI{dʻ}^{4=ns9Uo ήrљ$Xz7Un<5F`N5{@M4Q|Dߊ=$<7`݌J v&h2+QuxqeH[-{̅DR g-vQa~߆6KXjZQ_K)TSFCتoIl-%Tۇ>6*~~0> OcQX'N3j[Q.xOi>EV/VTGLäl3T2lI-&5`iS42Ƌ)Ԓ:Z^۶¦O_IIKӣ'CQ2aLJa_JR3)?G<Nk3ғʎ"}$bҝͮt\RO\ڢ흥{rrŀ*7 W@z%e) (x>".Q "I9?Xze")|;;(L5?\ͧff> }^*yH6dZG Ҫ{$x`cͬ2yP2ɞ@5M@dĞo֭-;юTJo]RҡfS$V1g~K&XmaCPQgU=(3I0'i Hg c/CV9]*Mz'%EE)0[[͙bOpebHVߡ_BIոsWWwzڠ"R|pN6lt̾H6.a{L1J8˒ˠݰ.Dx_n Pc3[#$V+agt&xvAif4 4Ea6)l:X9RPz,^)뉹E9SЀo1K  IEz_T-4V:>q %u-;7 kMHhSխ=YmPV[0 sXHiEBc$aCM%a#ݵR/g=5̱QГU(}ǯ<`y:℃tI+IzvODTe?Ed,@*S`Lꃪ& ס)C&^k)H6Aỷ6,+fmИmR7 h'T8c\Mwwj=pu^az45"nCaΥAbvvZ~QUw_Zid@mG|ĊY ܝpЁ?K@\ޱa!=[W}$_v iFy"F.Gi$KEsd^W0*c2H*a ʈGJw^@6= ŚWCc%2wo^&(@{ I mf`mVm0gtE#bhll連5zƯfz%u Kƨwxq4O>pg1Eg`Eح:TlB{[*mB3uM롼oW"8eq0AwN2-4{,~%3}><07+>TKPV%D)=Y$`F`+y lTK30k`t "]dD6"fy,gU2gv`IP,f10`:EdX!d\Ev%'МFՓ>mȪ9,pQyƵiI\ڄotYb`S=@^4"CP=jLMϠ: 荘< <4z=}=‹4}mB6q.OY{_}b`תkVܡzMHd`AYa-^W|7J۲t8Kd@N|w6xSi`8356PsuM1͂cZ5ߪ[P*A$w M6}^P. .Mvz+:!,3\T=0sM:ۉeWㄖ{!|h$GA8p 찞 0JВ[|Tzl"49E>S Ļ6Xj1g'cv"hb=oT}h!Vu}PGEeTerXUK/7;{V=;W>|塹y92e&Swy_?|`g7Ve$745UzLN-'f=X塙&0mYdjmYj$=铫iϳy"z"& )bpqdB"gѺ1jORk'nS㉬ hwש)B17Ms{wjdʨ&='G^cȋ -H%>oPh+Ɍ ꫮ [7H h:Z(N,IG# 2!4 PdhvddLhc~B u}p20dL`*?u;69>t7AګnnN\|Kf'TowHo`g,nZ׃R_Du r@A`X]P[)-9{[_H#qvs~s 4bjEh n09XD7c?8I<*[g$hvu=ʗTa%R'|HX  j?A#\w7ɰj2To;!™5f4ߞ}ӬyxƒYN!5?F\O4ZUŅѶ;檍PTV-wv6j֊uQCѨ8QcuNkD&c]xTM6Sғtoȏ׼YFl- %SkE1yr'G)3Wދjx3I=td|VeSUlcsdv(`H'ܳM PȀجIy(g0T3ta0v!Q !:uSM;rVW'լ P8^Rg%g9^R6ŦgUj<n4w_uRc F mޛ7jIgŀݪ'ygQFѰfKli!.l,$Ť]siɂU1Y|a- ?N1B1H3ެO4Ǖ-D?/wп_>eM>nkSFKw#'y#.vklIU*en|uG@0`M''qJzq3q<YDBLрBkf lZwds<Yi3b 6-񨳎B ^8eNNi*Dw8oڎ6A0#`44 I;#Q wFv`S8p}삭 h7ۻa:z&WegtM: A٩~ x*8|V-6 w0`חPWi7n҈8PLUo--lcBӈXt/DCNA@ӧQrmyƠ~e r:mQX켞(V"6Ls70O XڿtQSlL&zkw22Rn<ؔCqt57Wt(w5mBe 8M!tM!t4bIATh9iSꅳ35zc6#`hW*M>o*?\(M{pX\dW!>G*/]4v m=5ђěZPjyFꂲ%i[2.5&ӄhB!N%r/V%ַźғ4ZV\@- ɁޓwzD+pF94 W"Ha|C~ յH $f4DV(?h0"b{ó.\<}P^ M)k=g 5wiܸ `Fq 婠QlDGU1j@䚹I5̇ ~qo&ZG= QA e9QȂ"8JaWr2"w9BdYHjc:h0V!E`['F -~lFjb`6r[bx  Oz6¸%ʚ.CC'zQ%#ߺ4J1te( (\d0XKQc;~oX" b eJTgllZ,>oi@fu]]fgNFrcؓ=f%7Y==,6nz.5Ս_G5<׆_8·bH ,(-VVgV_VI 7/}ajaS(— [[/FE.fÉ-0 JYo=j'wmfM_bmrmBj`8C a .rUQ 4Mjs҆ u`scMP Bl}Xm1(ߐu c+߯Fk{'ZUY_A ,Տ#K͢ѡ'!-O \2,UB>j=Uyy2T%C_JScN⢠[Ti x}=o6!TW<$ON`28_%# MA!Ŵէ1ZJ4Il!\ uPvYA9\s-P(q&[cE#v sI<#ON+$qFkYْdPh7TS+ooOߞm{.%z6jm{-;g{E@^+!_O|bq&p<*v%*9qhΒx%ˈ9o[&S]8-fcy"WdE5I'(b9{5=hL0/ͼs6ٕsoEFJ MSiwq鏍;G3$(Id~per4 0^YSҫЉG8!Ù=OJ@$I@"<-JFyxyZ{&!>pnWzs:ۉa8>Ox`m1ACHdO=ֲ"& ialO GO45)\ĥ~ifKrv ,J jqEePEGh\r;CYf-,횱e`(3Օ鲣Sr)Aّ$3N_-@7E;%?}vG11N [$אMD2ꗸ]48 uu ˔R6L2Mr;*#š?m2VE|UTWZUl1Bd&07ʈf0t5Q[tqKr&?X&Leq(G7P̰)9:ꂢ4^'lRI=T&,H {}Ȩl ;#1Ar0/+L"3&U|V<_|a9OA0?~6nyBMV5F7ZԵH?[O[dH2P.ʃ ޫf,m.z3kK kn^9DW8<~;!8 7Y0ѓ @h%K{-=pᴭT:ӉҕP閷bAL]_fii\ ߳~& 1V Z)G;j]°,EU2m4 ݖpP6k'w6^Bl e".$xǪ)پWOmS۲`~Jbnu%QY*=sY xMww)U,T<P-©ZPBQO?Gl sCu^HU$ B+hf`fWchE+(6,u3)a]-A^2읠Vf;)`WE[;"v:!8kO?4u{KR9J~A%H>$΅kio_3nAʎ(Q{<ł^۳Б9Eya㺰82:_cn:(,uuDANn -02A G Qzv,T)݆7ė-\jLW?%ɺytb?Ь?'qǣQ+"YyYJA?C< MW j0VE!TР,@<" ꍫ/ @i^!UsaU)\`Nb`>ߟo#?>nVBt|nR 2Si(QΛF\YJ{.%XdrGUz:715h ʮZ;!az%.j_!$?(\ۚVݭuSô6@5 nr؊/YOӱCs,.,S{ySGkѴjb⯰U{8iڔB sw~;CeI?6}*Gaveu)Wq;Gnpv\k0)O^J3^+Qz(k`?\is*Pזty:׮}7 UkCsZ+jdc/`7PŐyGMsaA+>+)_?I\^㭑~ i<5:t0ܷ_PYd)VQMw858goEuNMXM@ AV 5XYpɻ/EZ(EE& \miVXyЖVT[ Ae VfsΝl>>>3s{羜{ι|N3QUCƻ()숞D^2 NF4st2I4YƵ"7>W^̳l}_qK*ݲ`'o*ZRgہR]Ŭ5d#$'ɓ$mJPm?vѻn4>IqE"4T!{0sqKU ֯4|rAZB@m4ꉾ#Jԇlb&mGsmekSJҭ9&_@p'FG?Gw -–Ev3H삙@l %E^:!i( .oIk?[ {l&N"2&^ /nC:j=>߹= XD SMp7vrʮO"3鶁ڇm؁٪J넿X~-| c BK^uhWenP%CroِZutR޲)#4mP6irHgUvYr>:N1T岃{!>ɳBg2H\b)g;8s,moڴ"_CB\l$x˴[zvSvt*F*盅66 wAL& *`wq/Ҿu8bR{gֿz"'ko%,##J<md7~1<kN)Ԝ.K&WSĿ8 "񵮌gj;ݶ-nSSELjM(0#F¾ps坶Znj'Xl+ m;dfOaQlx9]Q P=i?.Pz$f."mQfGp>SZKX:˩!;4cO4rpWgMu`q)䐍&61~yDsݷafkOQv>6AgGU)iߴ)|F[\GD<ۄQg zRR)'ywwzuG=yJSU{N9+MSZ@ϩE]j*1'M+Jѷ%jD014YRdlA)NoWpnd* I_YYݬ{K>/"zg{ %D 1vwf\O<*z{чg C2c8 {cަno"v*?ԧ"˫4ߩ#QsccgרdqD9^dqk pܨM7e5٘XORxu˿4@}, GacLL=My˥ԹK+j 3+AWcNtt;.ߣ-?KyrGN 4Y8 x1>ea}p%sg‹.Z~;ӛ6;\wy@vhN Bpm|qjQޓQBJ+O.Wh{#ܪ߁%-'BU(_ jn"2 ܱ@ ?Ï{TM{ǭx`kI+ _d:hmE.o[m!NA0g~CQg4|\OU : iBՓR$?+OH /ͦ\r;0Gp@zJo8 ~n_jJJM#MCNHfGpf^xt@=7>^_Zߛk{ O?Ӱ܇-0'3}m~3:1Qpjl57e#Q 4hYp2M]J3D|^3U}0(e*Yx1E*s|y`CvΪ?S$\h`Ȍ,".9C}bWDJ *LٔH\r$3E!.)G`}̵/DL7߇G7A 8w/]:VD4X;BaE!-tkNPst4T-6;`GX6>3~: 1ouUj^2"; :0Db "xFg/g;vђhtO1]s43efo:V@9z]d;4'oG ɦIVz)T}pB2aWLU|6ykG0:YႝhudIR75Mvxԛ<6e?Aеh:Bɏ{Wq?hǠc&ޛm;OЦ:8u:k]}?ڥM&?}hd_dI7lb^u6l*5E&43MsC\OF7U5nOi2\'n'ވ(OmOD0po͝/'اm=5=Jd3tȳl?rl?v,xbqtw8ēP!Bݕ߿)@ryN%֩[qtFj C,,חn&ʼy m42rXٻ[ Cۋ]٭n&Rz9Ctl0$LR/+-kd.m2~~0SՄvMS10-鍗zZ~r}8^b7FE%P3qXwN>NH8@}wͽ{nQegBoO f Jj RA+]iܠ'a(@LVXI!;D n6@rѪ83aB7r8_׫)HsP4Dåk>W̮b֩}s)duuV=*[W0ΪqxrhUcm|ΪaWA# -.9IـaPd/6NVۡ(vûPst"2$gg?!k76< Z!6= ePDP:WgQqV!ӡ}@b>Nו*ŶG\$M*tѤ6P]Dr RV#䟔ABȀg(A;tb|!O>K.J#)rpBkR?iD0}n5~z<d؜|!']b)a|`-.*)Wn7/3`%N3.;~ }Vyq]W#f<́}zsY<? )j ?ԞTKÃߜϷ#P%W'7]ndϦxңf!/͙5dHX.ދM/L{#wMl_ ߑ>{4 {PyzokX+,[?%xwam`hP~7f?&F\6N_z_\_ U{HdNiA1l{`GwPf[ Vnj 4#?Vhp,w/T#H9y;WgnW(>f3sNQ=eao~ʛmtR]6."=8w=J|KyLe <2>Drn)WJ߯i'.WQ:kzd뗮W7OftM+Q\͙I:M^J5{."];&l|M2=BXz?O81.MIvE7 {"~Ƙ~}j2s$-ڷ񱊖n_o%!>̭Qh 7xK$L V!h"s( 548(Љķ裃47ech~C10U%~&{CPy_8iV+p JJiW$[1vmrޡznˁ]X܅*:=5.y$(F]13طH69#鴝l ȓQ ό^./,_:vc]F*.G2aطKzD/+= M`Ą6RVp:'H)#PF-u%O^娕^.^p9IsE6 $m.&EOpD\k{7'vɂzRX}ս <Cj0ތVN.̝qѹ ͝h0yZRU/ms+cFbqdӴ~JɛfGqoA5 }$%# ?K QaU2م#Xu[SXbMpVD#o!j ).H.aCʺ8SXՏ*۬ &f K<9P +pP}IB;d\&<(Rk5 gcqVcuV݌dI @\ JOHmJBv6a@=.RjwAX]m#EzuovŅoeGI܅^iGjjYBUzessa7OO-њ~8'υv->vcUF/# YY:))Kq+,1TG/G-Q6-]fǗu=)FMߺb]0$MG >r5DzꖚI(9g)/yjp@"8K,yBh$YGԜy$G`u@;e ܴ'/p|-;j^0+Ĥd]$dkK) V t嚸jdO7ׅNBL %F˺@n[D%AwVň 8Ӈ5$G-\8pq>b'e'Nј pU2uj"RJǤH;OжyD>k\eD޴n>`s̱_DbQ^:gHk[eHa8cLdƋK]Ŏ'=\ v4q{NsDz$oG˛3~+jYHy_ YMqL9nINvT {vC|pnR$诠7}4l7 ƎAw^/_t×d.iNd,i΅W\{ ^O #iɫ<9dΆSL X}~1YǠ$ñOLk h*z8!bò1ڣTtnQs=0 ~[ :̀7㾱xu@li1li&ZV!}MA<7 +wo}Fa 3`էn`; MkO G|`(g/hYPQPl:(He3F֞xqI[oGe_+ ~Q~X YSh~UE\;^9?c̙`.YS=ô^t|aAW0Uy0R|'_"pE+LfMt|8S6{CzqyMVga|ru,̎uFƝ:U7z 7ZXkZXWzf(' e_Bab']ו<HFO?ڔ iv Y4@'^QZĥ$u'_H$u;>@&E_ktEaq D't)Ps^h):6Rk`CUfɱOkF6*I77vG$7=yFq "ӂz\5iƔ9!yPcQwG.|D( 90g' Z5 M`8{ 8N؃$JArBm#03Jtyj%6 fUu2XVϴ=֩S:P"dVxKhm઩?9}R+qu1U$- U*-CK5@SMX)׻A8'gEYD(6mYB,[ȑS*ІV sar^mPv߃=8|?%a^Z)"EE|kl!A:8ɭZ oPw]b g+85D"GuC϶lxWS4ɰ:lb6(=4 f͌^Z&9`0[,.m5BשQ)Kz=Vh^.r&-W_Ϫ /Bv_|;utu[.D#*}٫DVą]=9!7rOjaQN`wKݾr+wSدEcsn\~{pʀH$qg×_F^`?6}0| ="I? s`e7nbh5"ybDQs&9Tz=BZtд}3GIj|l坋,|;.ˮ\/UWBvvtgI9nBk7 2+ i0Qy) j H(BF WKhQuBP[TUYo5au\pZ~<̷D7*ܴ0 4^O Pc po4Cp'hlN.3H?M!\X2Uh՞Ӑ(A|x:E{BꁪҁKjSF&,Q|/k]'q>G9,,!˄CU/V sS}mP$eCX G{C[b4>j]+pyU6.xXК\GPb7D;|#l|tҠ_LNdK _$ P:+@ͦT-&:A p"A=o˟'08,[0+0*eaT/G[N`#_?5CPDp s<3Cr vһ6Zoj \UэcY$I1ˢ՘e2ŠW_" nVXVXYQtVCCmxH̓g@rCOkUk5drH{(r4 _|iqx)|:Z-2 1M3FgedcOw4G2c2 pRJ"CSdıO\u72>}x͒+IꗏVg>}-xWb)Ϫymx.. 6lBqt&^녂0LU FJ :WK3xhy}c@DJ 9G~o`9HZݻ,m b2G6.)ě0U*L ;OH"|W2L?3=En)qֲ4~ F&r܄[idO [tV{\G@6gQ?%6){>t~X9g Sip?۶,tf"y3Pk`řS1LU ~Qx-],6+T+q/߮]u2XS_ȏY9 fAnJَoŎi6AT1| >_pdYeڻ@h),a&8#D^.~z&_ja񆥡9_+7؇J5b9^S5tenkS%wf% cg(ayCиҭ`RQ;i@0<#qCw*1`F5KYkZ/&. ulȀ&qo+㈱6H&n݊64ޙLV rbd _2:íqQCШM~Hɶ=>DrU9Hk6,2CJͰ}H;S$D#Rp쑅Gl=I6w WmֿT}a58 Mmz:oX*ik[ȆmT/I&=F\>g"78xZ˼R]8fX]榖> LQ*o}!T>#t#[n~ T/v QXbLmiN!銞=\`Ra`%t_C-6EHcBP_(}C%e+ L NQN5X0RbZ uL@:ٳV-[mo!gCR:qYp߿-L"u{p3*u9uX1tYpej7Ԅ^o<isYa*Hj7?gh'ea*x]<7 xop*]RVe)P.k&n'bV~Q'uU?Jwu'xQ;+X+]p-_;Mrv3[lޢuTCNvV:)|U@p {`T@+[=8)>ڴ?^Pz!&8͎3JQ%%gt |N*G3|jZĸ)ʮJOk$u b/'M62g3v3ۓ1Ǽz|gq;)hoFRh(2?5Ɩ O3Hyjr*Pz;1[[Z͘Q{82 ɦ馿hJC}d[ԓ%SJvtS\*Om8( g@pgYo\2ZU@ԍʦ?"%4 m5_N:@gdZ}N<0/E+.?QYu=4ͥ=.^ʕCw#T{"nRނӹ# @ծIY&>Pr@ɏi_-h1*-]Q{bzosx"86?BUɳCG<'+m*V0A;*ÁE a,&DlMu Xӟ]ZmhzАR8sSM qs-IMn <=uó^D[,޲ԛbLQ:5}جܣfA:_::5݃هϴ|^!쌷xi&*Z9fIձd62aUT~}GDU'+{+h_sCxé@7|oha"i|Svg b)[YG=+U*a,57bOQi0+(,耋Ay?Š+\Cu.թ5$$ƱԜ.m;U3L!C8,p}: $'!.6@ӷXbr=G ȍވ ],D>r RJ!R,ײFΎh+zJqc֘}v9cEąLL f,!a-2&+!/ ۃ5|~p yARǰj@$6m-O80S~S2@"1ThN׋":$ҥiv}k 'xq|klEυiBm9,^~#N}N-6lgӐ͠Οy^Әӆaǧ{La[;gzud < ڮxB6X[`%?l^ڷo5/!>iz:<0F߂Z634!6tG0W5,=u:|[qn'{2ZܓrOvC>Dͤ-*-9d}~4 9 BCs$Z& #Q K-z"kr)-Ѩk _Ϯ'ݶoP(#tKHr**㟂.Q0_M9P~:=lZ צF= ur󹺖cyC|rYA\z ZXΜb)', EɋzyX7:@ ^اޣG}ˇnlCN~6 B氚 zwjv+Ѳ'.ef39C/Q˦m!eFc%qYl';7_<9+y 2"4(ǪJg@W“qGC1w8ܨpFDKǚjFN; }܄ynpwvklw&!HlTuP=78Qk;EІN-ѫvwu [00;| u^PA9Xha>" 5z?Ů@*"fӰ:>U>gv|Ѫ408ҮF}G&2xG .6||X|ʂpzn|]|}mN [kd*Z7zk[>֜`wXo!Okx9.fjBG*113;]ϴupG6ӤnƩF eƢ>uO-0Z };x;nuTjD\,?L%|yD ,lֶx>;^x2?ȿ0XձF㶨}1nԚ6TOYꬌ2K(۶+`ZpFљ1#P_fp1-X} V'eJ.vPMBKh-w 뺛_Aeh ;.,?[C&a&kޣ݈8D̐餰[ t ܖO],6]UQzjL??u[n}`0/ Hd~°>Jkoȴf-L˾jNWt6FYT-6btFX9Qrp77<;>D6ȓN9#s]!aE5Q]Jr.JmWmNXW6䨫EWA + Ut|>-VlkǡG6&IQw''%%8g*zP7>j${P VJEFJ ̉[-%},$t#8=A#uQdD$HCJ !߾Pr-=Y}nG@J  ho qKLSGt4cMujCad$´mEԫu`Uc(Q7NCGDQZdX'"1QTpQdWר% PI_ >?GC85ޏJ߹v-Osܠh`rɇFEVޮ~\{-pR->?m {O<:; ui0b)=#6485B#E=8A""f|^prvLsk|d)k/ނJ:3di_a7Tah,;9Y{ȴl7YĦe_&LS63\G偣_(7KV9XG%4sS,ywprg<_k>hUZXMRgy">p8R !Kiܞ@JJPa}n`zYiz]VnAm0Q8Ktȷ*:yOɨ 0IXCf*G#P| F Jw#}[NJ}鷟§cIs,[.!xR_8Ha2c*g#B{Ja]Dm<,FnfnC0& !?Y#y I:q6<Q[ [̳kL1N+%!нl[2rbUt>/Tgx]=+G}& ;Jv}jrb0?| Śos?T ں-R%2b+X ;m"@Q1зzQ|.|(-6,l`4F|D-6Pb4abCF`W(3qZ4k]b[z>bG*p@ xT̶ Gy۵+~C*U)6j{{,_LohM-vP]XK^$C݉&~F W ˿~ 8U>Kgސ:KC̕:܉o鿹\jx%lu QH79D9KӺ!gMړK9Z "뛠*Hc!ڜU[LD8*#T$;ܱ'hHMTUѪbTҋ 謺bbSrV!]ӟF]%;ًTxm#te55"~s97c$_Hx ҅W+&ivʈ-6.#:9plw,i[p+h"Z%unS|[Qcy&{tmp%Uȟ0Ъ?5?ãV Ax}&1ka=1v-H@`"Dy4FQGBթ 2x_.q:ZF/X-ߒ]ݵN3-K8kEf*/+pVZ)4{ @t) !{.~T4EB ~zc( uY;@^Qv"Th)څQBv>%v xh"—j9x_[R͹`On[`,)?q @h=pLyfx1 D.k2DZzod;?ӳͦFkx9B.kRqabml:B⺫ ni#:z"BJU:ȷhXo/JoU헿HQ-JU-B_C4#jgVBITk3 6τ1=hA:|rJC nuH?ڄ;` BC!4%.0b2uFwpG#NzKHa"< $"">..u#ZP[F -F%f/7U5h[hHn;gm'Z4-|S8-m^ حH|%}*]A6TS"Ua;UuJ@"4w=inE< YCBa6|};ɩOR7h;7m[u?;v8LeY {=n1ww TZ[XxoRzȿpXgF̄t.S4?RXԦI0/#2=τTE5e"F7Q <77*c3﷘Opͯ0,[`}֑R"}R|=9mvr""t5 l;^(9>%+ EKXʎ,sl}2[Fѯ橂"1k'G7|D䄆",tBtj?EF^#wP6hwq-@h gż d9戅Wa<-,czpتq42Z-/ h7&^$KMP´bvHVVq^h^3_݀i;sgzQ)bA'|hѕ]+gRP bݬq eɡt '21)}!;eJuU=m֓k~H aavĔJE[MsǮNr׌x8-\ː OxȎF4Wx:'=|k1a @ c_>-xBsA.:b[ֽ"頑67$췘WNu!3~=EpQe-Dnw`Ǘx.f GPoM1qU%c >C,Sd]Րa),r{s+@*.3K*y1.8<g-̀NFky_(+ iu;xmZփC 8(t2Fnx.o.6PQ=Q(DJ!DjH~7|JzjK<oz0H;ɄaE(c(k% w;A_O|ʃO {r >TT>K9;8*PLvVӳɀ!Ŭ|݃0AOs3t'-g̀Mv/]Cc5N!QW6&gsl*@hԍsGL ?־?FgZ <>dYf󩎅blsoК&c\+NJ7k ##ac֬?u=ѠxwR2me)qk~/}!W!Ȇj%ITE{KJP#n,p 7sU?] L03Qfn19 iEW?kU E^.8PچQl Y5"@^}DDtYGhfϙ7ir }j x>O??o#MPӼ}lPfyXp֏ѣV&_("9r&0Vh Sfo W(n^^!B̌cF8ˇG/EGj{';椤¨̑Bܱ"F&`^!4WolO[V7,B5[M *B{ (K`/m!rkU:36 `yMQJO}U-5߳NcPGGUciIGѰܗ9#(l*a"?D(~܅?"/ ‡RR:Ħ-ti*򑺓2>#T Mu /#Oa +S@F fũ=\0zKVPm#Q{i74H/SƯPU2g,ʞ_.W|Y3yNe q8ӬOwJi6 No`{ԓYwG8{z*OD/"^Fuqx(tlcƇ2):Q7q7z0ۿNH6r1ltP_H {L&_#)_y̧ܰeB%n"sgC҈'m킋=l1L LU+$=?d6/vťǹ#IDw k[~j؞i$(Cw4] S)RRR2.[d,Ox)R*?o3߼|'Dqh혅JLG4*n ݦv;]4 k_puhg 84]@ >fz*#Hz6ct4)UpB)B[fNJDЦW:2.)g _O L I-[̣44C?r9IhJ}yrF{͗˳@Ԣ-89_8, yߐR|gTGFc]0 uiT#su7^P[;_Od㺵#btj+ w)笆K4//z L? AeVA/;է%VӲŎ1 24Yh% JG/ȒBm tG{U)[ĨvdwgJ(źXȾh@&KO@ ><E :پaکY @gwV/3 71݄{3,p_4 ']|ȈmL$.ytxwhgC~Q2ʔ4* *)YăJeW2˷t?." (`z,b.P=CH@fò6kWXJE`(S\鮾YD W3DO <UZڜ'џ Dt:74-1.}qwJ{!M %]Wj(|zo-r8ǹlW+Q> 0uXwzn(4{"go?\i߲c&njMsn h]}L`ꁃRyF}-S;$Q O&a~ǍJ:v x .[Yo 4X!fY,l:dVfʟPUg"!Ԯ_t-;)4#y^Z(~10@$sY\~WL'c]-:ՋUF͍P{1FA97`UN*hc#mFL( 8uO:cw(]VMSMPqM%Px(}x~Є' [m:n`$wF4C_ ߏeb9|494 Uq#<*HDK(+ssVcI%QR] -15xgI0ǚ>[a>ZQyM+bA*')v!ŖR^)6ٿb|Xì V93A+Eu#,?CS0`vj.Dԭ3A(]ɾ-qF WN`yc=S|și,6#}G{/@}Rus>V2Xs U[0aA\lʨ~ج!9بtV\_ADp{xP_כka0)}O]X ;i\3r=`?pWc K$&u:P;hRF;ze,}w`4"|N~8&gx^p37@7z0BZQd̈^[(yuVnUB#s^##6,jX!2+k=šD`^1e΋:6oR2GmYHc:>-i59CnoayEH*ra~`#Yu%ih[AXṾd SE-ULm2Ȉh[ꐶh7L~OLȆ V᫽h@>K W1~fYY {jmV':ϻԉv+}  fk^Vڎ2֬4ujZ~r=|YPWVF!:0}s8<\NF`s@_A(m94EkmXG%"(G5ѧ+Uia Տ@d*rS`Pۨ͏U4gPc`ҡ w=uwjiwVlږ6f ك)n 4,r1A)Gm夭:Ecw\a@S҂y/O4mPN-%P{Q9fy"S0'EU᩹]jp-p@J`Wq(D4ctlVǦf5q?"n6OeC?U{Hq%/֮(_hF7㴝y5Pff an3ɫЍlcD2Lx"N\ ej()'FNsΫKv%ڦڀ`:i! r䰉X$*Hh8 ==Z7p٠ ,N缱b Hخi:.rgmlB!5F|9A;njS{C_a{'E;.umԎ\!}uclP0?m1^L>&ϠPSm՝(s Ud9~NBE8QXOTJ|iNfWO8#c2AKry-VfGVE&BOzjUAw: 741^.l9/-y"xޡo=b*$<@A3W(&':nWgە\ cH6ԩ=OP߸]fvJbCHWfA4n&\I)2%Jzn+mA)>dQ(O<F5߀Ev f@#>g rsw2e!„f.1l.Ld?z_ELr;q 6 c^ Khk||8q`F'E SvGy x)AJc_#w!.( uM5G0iw e/UvC8҃ɢo(jyH9e( S pl$e viZ{p.PՊq٭<ϒٳ[2n{*gle->4ӓj=88Q(x5JD14ҀYB:e vǒ:`8r|A@na B@Px 8J%S_#RϬMQ<.s-VsV~sd#8xɯ SV73r_8,-;z{F*44cOpI2φV+Zzccs]NHoͪ= YVYGĚ_Jm1 a,ivX1=Ќp(\DmjhdrBT˧mg6o  r`9j/VM:U~Zq3kZj;+#4'r|TkEǎF"{ Q6r6UЅOm `n|ଢ4hS#@* Dji|TɇQE[>%$V^ώ@j99Gľ)?9<⺧:0nO |ZNկHЮ~^ o҉6@mѵ׃zYaڨU&NKiQK/UH$5[j<sf]0u)IHl{tzTSs1ze|:`e|`K&ޣEp:&Gt!6d@{k]ĭԺYI:),jXlHQB*VXՏu[ {Pȼ6ѐ/ u4dI!%W=Nqka= wߜlhAXC\P]6mE Zjr=7'Q˟D:LO( !{~ 5+WȇБ3P bbr|sYxt5 [|wgB>Pdp70gb`c̦_xȸ夆#$XsD͙aU!cCNeCJCҭmW.k,sSBcJ#G/XP ݺ\_V62'_ 9k%cVr?*'4E텋_ה) Uʴw8^ie塇ܩR{nteWO44w;G7w\NyL?XyZf߰&MM|CFA@z 42Aai1Yw=.wiO1~U_Η\"#"ꡖB`вIN ASQ؂ : 3r71#=;_[UHVem|ޱ#S!pA`R ,ٹ-bof\aLTiA`2QH(yYϣ7qU|%"Q~>nݰsy:Um}+(P|a*%EU׊SQճ8aҤb,)!wZyUhoh, TQ{EøM0=`%va 6\sȦe@PD{`6+4?]5OM~+BΝZ!Q(,-~$NVTZX$/R\3zR>̑9Cne`.q^:ɅX cR XFO׈,O=pp&vb[MNMCmz-[I/AhG" #8&PDe$5$M/AwC/Cq|ҵs=mqmO9 0eT78 Xqf7Y׀yq}1}c :ݥjAQCC0rR75KD{<߰F H**o"`9_m&|ڎJ|Q5ƐD tnqtߦ]&}˂I8+~tkЌ Ͱ2| hfx`HCCqm8l/#%E.EP5A}EG A 1s&_܋^^zx >_Š3J}g3f/"q ts,'<+yn3l&ҐbDwlւnݒ_!uʽRrJNՆ&VH6WUteȸq]h+"Wt])͐s쬇Cޓv馠x~Y*V[]E֠S:r,G*CyV-̔23OmwNR\&ycF 4]zt#Y(ۦeiSIHE992LazϐLwE g0E{QgFGB7`n=mna4 <@ >BnxuP"鯩 ujY&p  uHC>-YLGn9 x|tå.feth2K\Hj+=`QӠ?c b\ U.e],ƺI?'L;i8#jb 44LDtXw3/[9 11 qwX2204p/uk = V )ªAF1ҍ^Xli}ibd`t:W+u& 9ņɯǦs)ik@X48sXG-B<]%:X^]xX^F{~(H2nX'_}fGk3oͻ;0zO)'{Ў\ZRSɋhi/jaiRqlUvvGz ߺ#"0 ]x6d7Tg;;]&g[3;Kn6b F潥xH]POPg屙iЬ&xѰw A!Dj ;tjwMk6j#03hk w-EN9y ( ;;>%#-z"tG\ X_ p>\JRn?4qv@;I J7=TŸ|f!6ldr7xB$yAᔦh l *1Q] f;vt"@w I`qPLv鸷9ԙTC3+gUU104\{w\~zws#ʾqQ9JhJ8.s`Pwۮ6v9{gMlR_ݤ ǝhC5)@m`2GW_tXK FpV}m1ެ}]EY}6vn,LJ?6_;ؙL.L`?;HγXh *9{CѶ5iS\#&O۠O?ni G pF늳 p]Zˍ<[agE鄩PG EjS&x1C{Ks"qskG͏3|O[ޠtLJ랚Eװ& 8l$NR rQR$߮j6D-r4s dKX6E& %y38/-#!x֭+0  h(̢Uw̠(: &b2oQ(Vm6vK#1 G.6'ЦSY䌺]Pw:]STnPϥ CɼL:ik6Cy_mĭ1vqRd= ,+cY)S}h8Q݈m@A93LeLvT9mY"n /a-}_C Ah˸\'lܴm>d}oJV3x^, NcErn%7 Fwn( AtՆNjũCj/>ꇾXf<԰!@M|-@j $3!bGxdwal 6s9vpCcp?I}yˇ iF. {bVu 5c@ybpYdr}W!(}oSWp]=[rcle0jn5e8X]:4EObjeLtVgEs9|g1*3F 5fˍ\G6䬞eq{+X7nLgz>߫=?'aVz_q1%H$ZK^嘥5&3 WE3CR$EZw=|oQO6щit~Y}X/7TqH=p`X7b=7xtouH4xѝ>Pڃ---|u= *vFҖ'e05c0e=yaΘtM2c3`xʀOus nWw勉2~4UUqpA:[;X[A0ɜߩ>h ByHW3甯~*1T~cSKTȢZ6N (ۗ4Ͳuދ#ȅwȅߚ̄O^c9 Wao&1F†-|+/jQJWX rO[9`ʢޚ)Rx+y2z~iȳw ,dDDxx:&}@ 1p(_=Jf3ix @Wmd-M 6|M̦ƣ6@ݝe+:N9{;nxWO NJ@T@xқ #kZ㉓VۅCuBMA -!4r7W^bGz~M7Hd/SMQ2+yB# $Eh?fo/!1}P?suiV6M΍ };%r(FhtVZ({9ZPT•9ק^MDv 8k_ꉭqz3q|dmh8T3J 9Igj_ ! xyei5iK!쪎$CrAeL\kR`'0]Km2ݷ ?il6gUG3Թ8$o)΍_ ]ys '8϶p&jST*@lNbŀmWX3^(PG9IX~b۩LNp]ZE ^EQECeY@z٥@-r9V LH/f9)t+H|WYYToP }W $㣿rv RzUZg+3d#AIUǡPKR  up:k2¥H$$ P|E^&+ގN~QNi=y|S%TLtNòvuC* [kv/8ܜ a5_bt`#ޥ8801^Hȭg N9QP6=  ł>@QʐLET *b ˘ԃ(չwپz+Mg,!a5e"Q]:HnT d%;NOYq$q}?Ao)!/i2@|U}6gx YbIm WYH!j84- □l"H S 8ګ`qzgv8$jȎhh; K#gՓc?/}x;GÕ49ȯl jWdǩw梵lٔ8ȐS3As%V~О6ƌ#FsW?@}p׎֙D }#6y3h%U PrГ҂tJZquO-6ٗdρW슧OAW۽\$Q-:Eȁmha8޻JȊ//*`#bbA+%٪*xlhv>#>+PA:ۯYtv4*.v聰π:{37LPi T) oNTZjm ~bC - E2EvQʉ~7pK#7{J/s@_&R zkPGҥeSK<2 O-gUqpk|B t2<*p{w7r% 0uPaǙU!Af%MhӴg8]33&yg8rΤ2{{#ڭ/߯3E:ӀJ[ &-y< M!}rG!o3 `'Aj_]"hTEeߢ=Ȃ<jQE@G-=j> "5Ckeɹvi'w܍U`cF# ;w }鵝6V8*X9. -G$vF 7T4_"ed! G03K"56 ,hgPKdgWLXdy.=nK3bXU)s퇶C鈰q1h c^L'dϭo~̒2_. yO:FFl6J#mF!&, 0-MD &"f}-w(_rX+~="Z{Z;ķ++/kv͞ahAW굝|" W=:ܳz1(]2?QPt]nZR~ܠ+qO*ׯ8Yudw. ̭j~[ Eݖ-b.nR-W|Ep\mQ3by<㐮&:b)|`wdо6ҖlApݩn. f! )H #}C;T7WTkYݨ{`nBckϋHb/L-;l_~4(j) '7͵0f]dj4Ў8r$͔bJt<lF.ސrGςHٜ*wrځ>/XE 1kbu]#m>A SHZNfH"By&9Y 1.$ GAiSP"Fӳ=o<h߬/[e_EOC4=}c@J3ꗄ2r 9(Eŷ-EGt努J5{"\8BP4ԭ]7$CbV$҉^6zi)#Ǝ/didXpݺDBXuesc9]f2?龆ȽDzLWHP CG@9O#Z/t* (1<8KM0} 㤑itq >q΅EN̎1+o75磵 ܁7ŀgQlcNak7)CB;jiL>bpc0<' RxD nFJtB-t +Ք`F*TN1 ڿf6. K2dI4~&'TfeTtsp>ٛ"l;IUy UQadƭ* D=0O#rcfestysy:g0L a"Vg7Qr̒*ڦA8/ѢVrEG5qM0hC}8??y͵'F&4DHTm.ۍr:o(< R/BHD; Rǻ[/#l>E kϓZb$Qىb4MV1U=J!{ɟar셿 8$TKj.(Cq{ЎOEi4Q{:!V shFKp˃P`%[$6Ԛ|:Rc>\]`]ym5x۞s3AMu9v_-6&~:rk?Ǩ:&;X+kG?یmnݘ&ssnv]ΠC duI(uYdjgZ)Jص8 mw^F,@;w1U~a7HH*pg86u[+YiNɷ@|G=e^;a5w;b[auZ]Thpޓd+MNcs<eZVn*]c8FNv;t t=;OYѵ Oň`ı^0hLpΏ&j֒ kg~|ap'B"Q}\OjC zIzviUk j;dv`5 AY0I0ɯ]Nm,&o@wMb=I7~6da+ |c?w@%q!l ] z{7^+TDp>[=&F?>dß"&Gv{ ݻnN݄g;*+X 2Ŏtc@&+1"r4m1e_b]\1hَṬdmLg[)+Gjd Һ!8_udRUk2x#_g`3;i\{EL~`Ÿ ?9Ck^u(a3l[Y0(TVl&;]5ϭbGT|y0Bv=nJרADݵDž'/4]|vA< 9w4F˲CDӰyweHWp>1RMu&NzY5 yɼ$HPiT[3+>wqMN傰.eCxꊕ{H`BdC:{eDX ^QލTl?<ۑ ݁۱YvS :}1ZJ}a8_һX>-MktU> );baq V}:n^|LKO?S3!ֳNɍ8_#[^Aeh;|Ӥ/'SMAQ8WGFCC,d_-;rmxwDKX¾W&`P #eE>RhJA:>S doOtb 5"I=RqyxƘ*asbcx %ڊ" '<޵JDlߦR]۟Y&FڮĎVrqZC|b[zy};.ӌs(xC {A9SӲ]ۢdQ{2Q-prv+u4E5?2߸#e>ad l,xm"[ i3P硈*>l4 d16(I'+pgU9I{Ǩl }*JPj*k g SIR׎ 'YV2 Mu2><lX HJc+TN4H-r9Fu5)!͘I}Ԓ87lݣf/\3#tQcl>r΅càO/춱EPUsHXY@hԈl ODy-G]ߣ;NjNÑrq*]\fU^yv =1 sJKV_Y{{W/wQPHВ6K)oiLMDZ_`[EU].z6o3PdWo_ Eu nYP{ۏR߆@<xZ+t+ΪLK/9!<~hjQa=vk1 ϧx0"~'\N役Yjd1t%+)n2/anTgm|rbd.ʹRޣЃMڢGMLz0ahye2ìC3v9NS/'wyr`199ӵ?Q Q? Vka i 'ƆKwtoU` ` .e|RT»+gloA+BQoJ|?'bΪG -lL_|ȗ܉HEz܈9@u[-t]EG1/xʍ.ߠJ&<7g9zA"=F3sH5Ԏcjʕc|Ow?sPOtDmBvĚc-C ,?66gwD(&{2UO"s/UXY`h]UXALh!" /] zފca1> |:2r2]ea?"RԞ<˺?A)5(h^s^e"㓑]ͧF܊ tor U/jr0 g{?{Y!x\l iz(xQWbfo(35=V]r>w\FP!֫ mgAVt nUnd|0A}W80@g_i])d+r lЄ`|I#lO W%TcH]b~6 >W6֕"*G;:]! #wQzo;c9m j>[";*~ێ^`~BMTg{LVq9AFi[N5ȧ|t^}ų~wܰ d[xù#én*v^=I΂.`hrY_3mL`X<Jko,.(: ^" HC2,(fəPVT*?X)R FM}m`yČy07v=whq81va6VS1K?MD?;om&k'r{pz,\֫ǙRzHC GAX-=/ŝv X&Hhχ5 "O~>8~@ y9ddG4:7`^iҕPsn9,c`9o8~B 01UJj(qz|ieN#=v>e!$y2%|}C^>rm=ɍl y+a7cit2~{TD#:{[ j2ïsmމV~"Iox o;V^o ˛]8Mk95ޯuҪk"Rړ]rm9_0?l[L:KMaѩZ2uvspvve nh; kHK6t>pf)z~! ֥ENF¼.Xj0пƏ&ٝ<8.J*,rvA:n6E3' u'_"iCqDٍoRƗdRw`/L>1ʎ)ǧ:kzN,XSdz.<̟Blc̭P1ς7hZ>x8Z6w=vv448m,1jP5T%(=pc@ϧb&*I*W}hV[ɽQx>jP(!S9o6˅b@* t{U F"Y9'>5oJrAnYޣJ C4B-rvh?nn|vm2DVҙ!:0ޛXS+퉔%x}V /,o$w03[Mn֯i˶J٧:۶<2F&*u }nz]OWHT쾃ˏQRS ==޿;r -rXFFK0b(ՏܩԴ,XQiZ&POH*S'e!%I<,D:lbu2<6dV.#jg\Ҝ C\Wۍ9L C+ƍ]~ڈ_鴬LϫUyO8,[DЭ!W,e(Vox|$;br-/[+>bWQz>XmtnЛ˝h8]| z6^gsc吷YOU7~KWV[ [Tu2{Vpy2mP7uvۦ6Fp]zIO/1P@J6<mPH :74]*H܄/7(\J^5jdG;UL*o:ϒV tȐHZ8^ ׼ ߿#*j>ñ1Ϥ`MYoό~BJs>n^-} Pn6ziRF#:a \O 0hG+G)ʷf5aҖ'WeA!B}T|&}p2fx2n42Gʻ_ƙ:K 5_I6s a40y1]p6g-Y9$=#/P.1.IjJy=Ntarplʲ %G(hz.]{-=>Z}e30$#_;%ƎaDs>?J@1R2W8ggN`eP^+3ϛbo>d2 E˰ j/;)ÎJϿ jY:Y#TҐn"hzKn5|[1ݻ&[= l$oİׯSgAvEP~f<ǖPuaRU}oGW2Ҧ!Hsn,l[pu ,N<}Wtq!~=)ފۀPB6' /+fALSK{28n^|*z6hɡ*Ə T͇z'B fel(; drx0* >zo]zر}v갺RT!ҥCCQN|Xh3BL`~GMyB4>YᙪN-ڨq!2<|K慛 J巸j >s Qɒ>TX{+nrnA-[p[9(>A#›&w*$;kM=Ig͑SV,p{ODx) ; n>[kzZFPrn CABczlٌxw+Xx@-Ug̨ &Di幰[G*ZR |u>ϏwשHxjR%|(װ/SѶ6p(g2߂z";(PY.r(lA,t@:((ۊACi,4a޻XWbSpɳR /qdI. 8ΊDD[ ['nڍ&~%W00Λ7:@@}ֹqZGyN]bL\a^7ɣ>؏7|d{{rS6=PG-"G~ԣQzZl_ t6\Ro\>1 Q{Bi?c7' :>CC묒(7wjvv QFZB%%.=߫>L>n=<1Rg}ehЎ#Vt52Yh/ a _0-`\`]wHY+4jvEGiH_v"!EB}{1{OI%{㉄Ęz ̚õG˱w"e vYBȻc[]AMUDb'_{"U1!u g2m-UE/0+Aip]1êy͜rV;4p7n@n>wq<#bxx H f-A9cQ|ԃ2ŸTy$Y܃b>x~۝U:vZ'V @KU."ĪɈ:Zkx|՜a| 8<aكTJE3#~ {DHgh]6l$A(򬇊0V Ig:l / c'>Խh($Yl`A.YʚD7$DHRB0Ymi+G[ڪK6D1,#@ {yg6?S\W?nO-9Ӆ(8eG醸N ~ a8 '>dgO?s&}fy/?MMnV &3M>P)['R`ޠj8_|8x;?'P΃)$kd$jZXgmj&@u[4ґ~b/~}\.r0NVW쭚G5(E1H^M{^UĄյ ұ ?f֒mÕQu ak\jdy H48CJLtyMbk@9P_ȝU*heWJiuxZq;-A=CP"FJ"AFKu(]wɒIVg)_c*8d_f<%<|QA ET3a^bM4NT˨*kJֿ汖^CPp!9x/ejUmҽ܈!`0XW N9%TCEi'1P~5g+%m#|E{U;Y0=U()A3I\ ظ>SJ CoD<Omܞ5BF,1opBjiCBrԠ /ad8Sb _H+=O -_gYT'f/෦í/}=Mrr)8l/'[c&&/"Vi¦@Q]! xt_7R@\,U gylxÈv/L7M   nFFIwLqsM{wjY`F Nli>F'o؄Ųuq62mZ_q b"oi~8*-HeI,>Ь ܵdvh?]Z7`;>T+ZBxi1nDi Tڼ ,ZHGmWގRO{{a!\02ԺMб-].B{f@ӭ0Él sncpAc\>e"*x|O@N}/$ L ӝ? s3z<ͭ[L$K Iep0p 9W-nNtܵ&]wIJ<[>4S9hBǛ}-Rj_&ϣQTqNw-=:ꊥʑXҧz;m$gI/υGyGy_V"'<I\S B88,R1v ۩gqX>YIX1`@ً8e"q0D% c ‡`qOw m0❸3:/6)e =h%TJew)EW?QhrX^]ʂu)oрnmEM1`9*G6Fbp. ƦMNCQٗC;a#|@s$,Ȍ:\}oz/G@;M+Mf'}$c܊:W?[yiY1'JK[-Kd_IDy_y086u Q1܃?6?4IrPfrjSZ{O杋y vIM}~8G# Z+ 2'6 q -!c}$?ɴG26\Hr.l}Ly0i1z. ?g/mn>ٵ;[nĂ^y4gԦNPG˚_J}5d~3Oh=IThPh×5#n#<>nx!?xDTR{ >//SDdl谜yMemjQa"L>ńj f=~-tkآ+]tY7pEŸg5ӓ,O,VShPNY%04;۩'#x8v)嚝45^cjmliD"j3OpPO1!cy0 41JSM`95.r$,Ix,ؗ7.i,q4M$&{ςXZskDZJŸ&s<8) չ(p!TLTObQX0Јm0'љi6CYs#}qysѯ kc\E?I%ȫqM$* %ύyVRa 4|LE5Qy˵ 5!իLUgn# BtvYHc 5 jY ,_ӌQeы?5|=-Lظ"YQuml@Z>^왞{P'έxq{06MʷGե1. e @=JҚK뉗1wqesuKΛwRț.<8l`N i W[qi|@ZƧ7O9cZ5)q.ڈ38Ѱp )tBA{/ K~V4&GYihy|xbtzy:%Cj(ё::_ohӖjm۸gKK`Ώ ?S笟lQNmhc􋼍F QtJ-Y0'tӜg}7<}{Ey8jej/Ub*nΡiP FS n%AVw8Sb*"r !:;AyeΪ d9ܞCsq }I<2, @ea(~;z.\gP80vu *H~H+[uHZ"|Ov l:a-`^ۘ13vkm&bx1bn50-厊TÉ)ԯ-=a p $Q8Gk&PG災1 C0*ĸrR0*<) 8MS8ܾ̋KX[ ,}4B>Z:2Pl/V^~\ϩzN) ䷶B{Ѹ.U(yb;kd^[ۨ] q?_?u28yHٱ#{A2SZWo[̿߸o(YzIʑST4nSjCݭq"6X6gGO-))rRq^lL-6|"ZÓ[ u ljWm =]\Ci>bQaTWk0ƈh^sV]΍cYw@[zޓ82d `.e FZ}ot8 j|ޜtB$X8WLJMQNFL,27ᯒ0\|3E>kЕ@Z \X?{u: -|`E/2U&OyfE?*; ו5|UCQl_U9,녿#;c>CD{Aw-^_ܜDu׭l(mHY8ZG;kafRogE+uB1v+8ѥ^yrʲ:ymyI`֮,ނ3wpYђzuCO2ڜ˕G0b~ HSUF~EHjiIJJ͘tfіߐBq,ɫeV_K}x5^Wvf@_rNa@m*6gqP[{ NJ_{։:Lj_rB.bi4ћʆTս03\Hpĺמ?N y$fy.thEm&J|RVd(R9N `PMO}AJw`SYECU#dS|3<贶|GG3Q2ގtzkUvhCC苙I 6u.fq!Ս1T}-0 KffL4c၄Agq$jC@B9 \UGh| d("{Df[{=2%`-VJ&@|>^@@ ^XOop Tcֻ/9hPߧrHUK뾝Ӆ(B{r5|maogN:ӽY:0_]L\CamUd;QrL$"{uu,jdt8߼_mj*#_RBd:yh&w`e[s,MoC`wpﮅi2a{*Bv\ ?U|>ޭJ언5J. a|_pY~Iv\Xb/[l$f2M|$lU49t *3i W|6eb' l'@s(tPPWa{ loVq~Έ:{-PamxFXM@DqcTѾryp!JRz;F") }ϭυf8ta@ݣƢ[sq;)?2xʊ1c!_ff4}4rեej.4v.:Sl';֜ 8}aqP#KFܩ"r>lvc;Px%O~@!6ҳ.ީr̓|Ħзϭi?#C-oS+,bۡruV^a(QGuksHHdtIpk T kʾ0Ӽl14 ЕyF~'Jo[z+t~=ޟw=ڳ+S{d۫mĜkzz 5hy,7rDSW3fw bߤ`xcǡxduj% `Ԣ|uM'wDؔmU oMS1ԡtFzt<)lvTۏİG;[M8ܓ^{^7-*YŔƯMyΖ/Fzq!fYgf$Ŧn I>6E `x nV' oxbV-/Q-'c$ZĭWkG MQZՉ(CF9*%)1~9~.V~^і!CS# ]=I, ڮ/|<$ ՛ȅeo7#=ҵ+سleFjN[Q.V䄊X` H]xnσx^ػvkB/Uk^K-sQs;{鴰Q'ny=}&FP;uk(9i+e`*2[Gue`T} 4}e\%=玣=Nu}IY}nIhd6*3FP|{DXx-|3/mɔS3EN CU$RK3͔6R@*PKlogaG!}h d|Bu iNaʰH3w>ls|J2Ġ aA(42o,e>vveUh)x9tnZ#lʏl59ԹDsD"̐eB0=5A Lly#K:1̹ؐ9ܮ8+%R|lGTRMS <# n8-IÑ {Iy_i*EEi{S!GRi]Ua-ͧ>mBQ|y,5Ns GH@MN[ߚfH`lx$kZ\LE]8uF(q#z7`Zw4>} m+G(;LbܖZa(f.cnq\`x{2lbogyA<\PogUf8FS{9wafwqN 4L X)P! qf-))܉gfZ/UDʪԨ4 uH&3֟X76y=r"u9螒R5vQN)D3ripd8wpA ׍8nj1ĺIł_DS^ۻ M~'_'`4Dlz?]>X{{)\lᆹW-}bp==v\҈VoWMkRQ\6q{D;6qu~Ȝ!QӉ\£iEO<=Y 'kjB&YS#h|o ,0=ʸΪ(| ?CM.RŠђ5$e<(MZ?*9]`Dl>d-Dv YC~]NQK)LۆeE pb֧hK& bcxrhϠW(mةS[S;5*"i;K@`Mc3*_dɨI N ~IVMjiiHXŠH d4~T^v$r"E#8ɼ Ȋ"%SU~Ωh2ky Zc{&KcV{&`<>Klx|b7y~ i"?P }s\SH##̅r rwM5f+/S,`.lj Pj)*$j2RFʧt8:c9t He\P zY[S%~81[|f F)xfPprϋ$P IR$hK9SX45Õa\BEK:4bA}dL@OMiC|IX9ۧݰXfՒilfz\͹wewExn=1QΡÜ;ֻ'Fwa+hDev'yg0\U+qOꦼaRNZ&n ;\;db\^iWnذi#)+BbYPGmv4f>ZT M2W)uTYtӱ;&ʮ_,Ȳ6E(Eb#usp:V;՗_ċ7MEd(m<>Zo~\e8^-[#[S%Cjy18D~% XeU\aY>](V  {ڟz yL&QsVk;4)L>µ#xBuUĜ |m/4zrdYkd)H9}K]SE<)Nr2h"%J[PplPd*XMqQ?-5Vjjp! AR B/% M`/#}&z;Њbl)A ṃ.}HN+qwhwK twk`2~d>FN[Hy0AY@J;[ G.X09h_M"[-+| qsm-Sq?k}\vMeؙpd31=(v-Z#v1eQ w( hi?M_J :3CMOm$(Oٜ0+ŕaD،n:fڡXeG[NNc6sQ~`9 4X[s;Ԫ`/6*dWF7>S=̰AnX/<|.jeP! Ⱥ m4RC5Zl-Vogv<%@ZA#yF~L+p֡-t{pd#M ~Ѵ -{7ŋRͻ#w')ox܃"R|V({Tu"]>iu;Z yO msթ/=wg= 8aT8Iqs,d De?Qj<(aSNzNAm oAF?ǐ_i?Q ]jUp2T4/ h5҈eX˺݇|{`?kߟ; scϏ]R FԟNKy!,_GU"NHءn%921 u>ixg>ßA ~'6!@S$rn7m>3PoAkeв1K%tŰ4n.6\hĄA[3DF⍣{?3Co38u@H]ڪT/rQZxbxUAvD&Y@kHc!jf54'+YSX><55ַ&6*Sn\ \9eW{4$!S̏TJ0+eW'AުILزUė8Wq4=.CA " X-|d[^GJ@sPrqLCtlr!T#Qdk*_kPPudI(9;{cVe y帳Oȴ '̀jQQV|X 8Opo Ԟg3A'vvF>1bc"#q̡-Nƹ伷+Ϙ! Z44y7{~&v%xPipbJz:ϹsA=mR!/q{FaQS , [X-ү|VJBl"8Z)ɥ^]t_;R9GE#cA֍+eI-镡$9y 3BlvPX[YJL&tqzR4lba`(Qrw5&|< v_mX.]y5俾78fߪVg.:8tp{lɯ; <̳gjyBݙ` |Yk)੧“F ehth^DU}JW(myJ_zd@NM$,\%Gsynd-[yhɄpH&Rz1ۣnX}X>Rш76bQ6I*wkӬRs/Q~NWu-.UUxSPs={GC56Hѧv!G[e{֭=8݂جQUYOn(ʭ _^QE|Hxd)y.::<)2o{;L3{]8 8KP]5|=%'Ħ9̰P=l3Q-z 쑂G)CqqIj?F*f'L(6RFKE1,E^5'R}3ݨo $wkwV 1 *ZUQRxclOZdN WO݂ǚ {*8j$?j ՞c>,s¶/pU9eoZ\#F ~ y`T8 oQ́ٙQOaaRF}kG|=uI=htM7ܨn)"WsL E QymlGHL^Agf_+;+ʍk@-swINJA]z"4ۿ=Ju,N%>)/\&C;He#ߘnPM%&;m1͐ :]N&aXe-JOBj'tǷWzR!͆,n}@^B4D3'NOׁnִ& z"È HPG,TVFl 8 5cl^gm.*Ne0Y\afޠMWҒ yvVݑj×\ENWXq84wloNfQ/xo\z"?!bi/&  jQƽa;tlSZr kX.M#"|@$'2AiOõV? ^B;\*tXڋ: *F_-līɱ QZ D`܁,4NB`Yn$)D.Bt MA"wma[9}oEʀU˰6tS2%j߁#c[ qZ=e < *mTL9&ox^LXOޛu&? gevxZ8rEv#Ԁ_4 C%l)%{;3|ҐƑɪXv0|mM%3| @YfiO¢ȱ0{Ujrft^$P89EƓr޴zQvg}3e?1{/;}:+< "HzU'ҽn;=l@S{݇L'5iX[ yw_rh` t6ZlSPg.zCol1[, >5F24:| h7SD/}|Mwx:Q-&2yef<08;,d5d{}w w/VͿD: x )9$24Eǒ|j?69V;of7x3PԢ /)/%'TmIB$SWlR{<, Y*>Bhd2b$:RVM=WLrk'}jEPow["`%hs9^{S=lBWV Gb-Nc?%[Bj˻k<{{bEnLhBgQ\@'.UZӁЧ~;uTqPI:6~G*H}bYƴ/H8F"9ݷo1}Xq+>`&lӯO9*bm|)As" oX} |ǹ_iR]0 1-z~P\l/4 }vk!>@FPQt`ԒFN/pNfxg@c`jXWlkm\o7Py]I,5~M$q !^Bչ\~$T`"|rT;GLln_fF%}FOɏ epDs>ǖLvJRQpb[Rۋ<LU+S$ f=[vgU :=ഘޗ9eudcASftǩ[7 )%cvifG{߯6lEcA J- Q ΄gqp3LHi~UJ2@JKNi@N=~vWI.W>P U rTHyY*YW"NCʅ][ϐ2/Y 'Uw`$0eǀӦ-2ΙfiLS\LvdęG֜0hv#f6個o(_RW py)G62l| u(s)Q~ iȩCw:NKi+3p8Qlw ? a΁f mʖ\JԷ 3vjp}rިPHXNQhbN\=4dP>5IZu{C<4\9xu\ǘOPK~lqT}7Pu*GD.?}zx7Y^ n4hJfePM@t%4Ӆn]@0 .1N}{̲A W6!,@6l93)Tk (xJ>gGQ"<-Tҩ{J).w{ uTM=Bx:nUI/7} gT[~1pmMcN~!h~X{:SŝK"b"nō6:Aޟ WU ѕtU=FC| b Nkpʗ7UK FrrǗ{Yj͵pS_`-|Z>b2DzZdgqިy]S ^`7eOeXە94i{ =G{C놊!cљ{( ݸkX e^mlzf_IS@ ~qăAb'(T/ߵ*_Vl՟W>Ft7 Twf*[JWLNn1\,4R /u(v. dzK-!QPuEJQqZ֌4LKXa6$4Ǻ@y^0p{D3G^F.QH8²}ܗ/ @[c#W$nrKc)Io||؂`4Rw~=;R3b Kn^ _F~=AS1ȷ[.1I2Ehʓm maf/C'7n>jgNּCiV u<}_ U{ʓ}r|;{ 垌tt*`n/ߞ'!@]%Ήa]ZNtJJ7 ק15rR@*`~5IJ Fɭ$WxjDZӈO m-sްU ^ŭ9Ή@ц5t#?  pSsPj:}*]Ήab<!:*4ե.٘xβ8sc\9g o|Бm 뎦t1t梳o S<jQed_3LI#4`w lwgD(my;HN4jg2hLjĢpb<|} 4wh}!+6 :CX5 _nW-8ͼS?LJЊ@,(JJαS_~5p`S#؆A p _Xhۜ6ACXGf bSlO/Boqߙ V9Tކԍ"wt~pKsهX{s4f$U>7j*nښLe?akvC-N 3 U3M%VYDMe1v6* t `ĦH/Ίw x{<8W >m1'6<@als(/ah%-g5H( INi+9↝0)RACt,u0I_R0pN Q{}pL7  "1*Mj~Vd'&ALD*wD97/$nI8pviA䇈/N)$G rx]`;k eQ P{L#B",F|UuOn\P[a% r׫p"{ 3i̞~5Q臬UBr0qZ (|p g`{q/P[㓂y gtaI`9Ӹ5 ~t/>49(tYέMdpa)u-QI|eJ/ʞ)D7SU#4a6(1 W |ɋY0/KeE,MiyxoŦst82v̷GJ/K&N}_o%FJѝџ 0NJtܗ<ʐ4.%J}%rIU_"Vl wF&ARkJ_dRC?it]&DG ;wUf\UP';_k-g7BCя']C 2AN)Rw*Wv9J별ʟ^+"&o bocU RrJ /#Z §4󓃘%gj/SKEK !N4eE-[ dlCUBa/0Y@15MO(g$_`3yUz zreݾ/|d2"sF `z f y!2xOzl!`jU8~-Ya7 xZ:b$h$T59p捬={,R;=Ydï_ּAp~G|=՛Ҽk7'IFbC$$6$1 ?|&\T\ Z[<' $= ^EO{I!oknVTN#L-ТtSM>L7RsKy#VcFةlqU_ ).|ofR47[9\2#\מr9Lz2uﮀW|nS|Sg q/1)шݿ6Ǩ8o8yO@,,@ea61dSIX&6 ԍ: + ǽuJb:~$AVq 'zt7GD/:">>ƴRk).[_[kI!x&Dc+/"@kD3<ӓD+mҝsvsF5xY^Z3ur $Qf<B]'qZ(:Íf Ga)Z=,C)S;loH$J&uE #?p+ @½Ph}9 60߽a?@uIqއݾn`[x Mix;`_P^%kAqfRC+DGƲ+'hrb1΃jKn(VYruג LRy(@oKė>+oҌWynZFp[+)dYx =Q{98[D; \i{9קNP?;D%n@GJBf@B[tk\hu):$:t[`t)%ӣt, 66ZB:iF8QO)xu"1!S nr `e`M8zDJŲ ˟6^ gQNQ6baxqTX1Tkښʔa~G7;1![~ u3ԟSKR};΍asKsYn'8udvIɻ7מ>kBW.Kiy Wyj][)V.k_MJ$5t[:;U 0BbUW6eGMީ"xSev ŬZq:r~Q%ok a>#P˫#,pMbڙUX%)2zba.ȭ%N)' %%ҋT.1'CU\ ʂIWv&fjn܉7h hX㊡qaK\#Z0-R-T25Mjߋ;a=oHy _r5+Qt(6F6 0e_qJo P{ B_:o 5y MZj8Q)& =Akz} 9Ivj6P})HMa?`./aXN h>E?4/ Q+9O B \J$oa %bf<깿&㕇1?8Ei413|Eh6l T`t!f~RM鷉MmpMGPKL *zqg܋C'kV-1'RmQ Q#m+ x,^}u9ź]3H3JWoy蓠K+ 6{U'xzra;pGE]Z(^Ļy2ދ`tp %._?<3۵*8J}m|r1MDO9|xr>Im/oI #U€H6ZOaS)I@QW UH/9P.;F wJ]@ .$]~N~E] 7J]vX2 ^/Hc[G G3[5tA]˺ƥ lT@q0z$EGWdvLg7RoBcnWTj~g$GUN#΄ (? 2px i.e;HITF jİWN,;gʘNf!%[3GSl@ ";XwxQ٥vac#I ᔧ>kw0aO ``z Mnr:f|A:1<G;c.7ՠ >լ>30|W2yJNѽÖV{.Sԙ>y,!7-{'yF N`=A][NԢ3D5w:EMޤ$1!VެI%ף 'Odŏט]yP nk S9tvQZ[R21\6lTk'hS OD$#d$_.5;!`qS$哠?$eJzp| %gVjO?WQBT 0eƮE}ZhM! 2у3Ѩ;"6a5)VN/y5hUErB6*0(6]P'@Mk]=5}pwZ$pگCD}&yߍL7}ѐ`>-6 2zhq-iu+O1f*`NǢqa9tnJu!G|LٞC 1v1SތbɄ UYj#~[1a>QOʚlj#& Ll@B ά Y)lH' ?6EzAr.獪0o<́ |bi /£(˟{z+}j_V?W*7bGB.kFeG~Tvqn4@rMj^ټ|4O9 UW$MSh-iC&4B yPnFhSNUxAٌб:6O"֯9lc +ט-;ĿVv'a!_)+3eOhBڸ)!=~0<.z0 )|NBid=ZpaylxF6 jؓ|)x%Sm(>7 5 h\r~H߷1F`ME7ylZ .NFU$ppgR%#Hr>jm^࿈D_~98A)&nR "#vgEAp46.*3mQp8Ħ/?ʁy^&ەb6zDwJ\OzR.CDEqTa'3üELyM廰x JړC\W*PnHSc(AJ^sۧr{@EtfWU~8:T[Y@-֠uYԢ2̏`u<}uÏk例yJj_dro{ZL0Q0hE>@5Iq<*y\k;.D0r. ){*pތq SNnjBւoڟ@ Yt[!P2{Awpn|չ=r uC+DUZk,# 88yI8Iwv؄/a㑮,'v"Et`TϦ`}2kmfm۸1m#3Q8~G!⏌ON¬%L#`_[u=Rۡ߈ɂ4X~ \kCrO\< Ivwa< G>VL4> t"`+ԡˏ[Ħ?chz/&+ba$W.GG&Fzsgo]=@J$z{gZOUjPZ19ėi'Sq#GMe 7`˦K*C\5⇥-|AӺ3ף,DhѾurHv_LYKA D?#92Nړa PQ#|q.}>2"VRa $J`'yP pe7*n JRgd(F@7Dh^Sz\ 6r!lV}$IJmBbc{ &ÇoznfUx ڒ8i7~-QH;ysa|B ?^b0VEJaڞgxA8f; Js^*Qi2pF* 똳i[%G)ǝS#繸H>R ٕEЛ]-Gڻ3d "L%0UGӧ|M] y6pxy^)iza@I꜍m!6)Ư5M< iI|R._T"#d'_jTx4$ŗ1S8YSx%NZlbЬL$t"sAV0s:ۋA45Am֝/p i6JqwC>|KBA'h'pDJṊZ ?[МGrb_ !1o򣮸?8QK #b8%3>l&HXWžtr0CH/h= =u(L+382#e(]5Ga$‡]fZW5G(B*c`[\En@t"" !nJk$(Gg1VЕ PLgd}F`F8v>2gx}zv[\[;3K|c W &iB6gYiшiw :ڥ||ӊP{ÉvWW4/n "\4Q ֙ϛM'ǥy4(۫N[h$w'dD2_fEqeɺ `Bkg}B#MC DnL/nA UK8v3ʢEz}8#*< Bkbw&̮U! 6S69pAеr 7`/FK\G{^ӝLH:m{zd †"P?P4Ix!m̕LCjA~27wcX챃E6*N7%NKCz T>> [&ްcH/"G,t:x ܄ks{-8+~VV#t?ǹϏt4dHij.Ds9~s=U;uOؑvCB}q)L  5i+^x 3{E^I.u.M)*QQY$!05$b+%srih!(#g1!)0f̢\9XHqR°Y; _[BzQ"o04ۣ4ZO͊o(mh\|C2%SG.Mc(?_^s4K/@x(q:PP=gvKC(,Cs^"g|I1LD0AVId=C  2sR@KH]Qt·_܎q6 br0#j8ȏ, |6:7%*u]澛3̷A.>GiNJcL 5!Hϻ#†{v|8Tz@xN|2H9SCiyugv%P-3EcaeJeg8DSQACvu-,d*B@Ag_&>{\ F#R#W ʉŞb>pٜ]P'|60)|,%nP#Mo[(aт]f] @maF?!]"/4[cУ5#86k4w $?@X%JǺ`§_8G e&G lAZT){K7n z#x+ギ }jqE:! hjPE *IނJ4Z ZX$|>p“[ZC|x>=ExqKEipeoMP^VW,'ASړNh_ٙk.汤a|dE΀]&}2%(K,H[8,oFz{ΰj.ʁJF['vz+ FiIOll@زС=3%qgpVjNp _$T"߸WQܛ %sAҮ>J%68oQY'E~ mzN,RK 𳴿 %/m S:8:+_VZG򸆯e;D2᷆h[,'THU!,+;"8 mvb*eM8 Z&%)v9KwRO9uN!-:v?z5xth_1[Q:~7J$G#b  ~8i1NS8(cusIXkƱwEeY5#U8&z$.o?QΦQ!-GM* ꃨwq-BMNV̇(A6s=e>` =M q1؆oPGbH]uh gVaUDZ[`% iQ9]'^ˋua)M^sAP/;4(?MMļzQD˪Z770;}aYV%#H羏mpkH[[s0k H/dBAx17׊ȥ @s-&q%#'xQe&ԅGqYhcDPxگ"0 Z-QOqtZG?M07}.Qi2hY{j׺*u V&6ڽ2WnR40*][&뇴薯x˳|_\ \oƩ'hw@E(gu$ײB |w8n oσ3}exGC,3#Q}: ʿ7m8 YnһôM4lsMl )QYdΑ\,u,VDB%m#FA *3.Rָe/f7t[Czf8*4Ն747qggiG`NyO>4 Sъztg gax6Y؂?#\iw֮Ci"9 Uj/ D5Se׾HVmKѨVk&|ַ;Z`x;,z|boM6Jny<|qf:l˷߸Q!ҁwo94 ~v廂46 DL=K-u$t  q*LS#5Ŧ kƝԦ}- p|op ^~3szHrԻ| ׆f8OBhQ鄑xP@c%t=zF_[΢,-2XTL&k8}HZ"1FXOA!hF_`XhkKɠR.ӡQ78 Y+c]D_GY6+Q+v;,pYG׋yuɬ"OoZw~nqI\"߮`T -(n_8q ńPQ&'>kW8shqLx^ Utu\+ N=YB(]K/+/H_&>I]>SK=yL6r,Eu %eQwa# K7+> f:[}+n{i.!sPov-lGUKjZrQP[KPov)j]1rԺ՛ OXJzPGf׿lo/Y[ bDEmp k뢕|ާ;M{. ~+O#QU$GZ\H8ɺ{X G7lRK}c}7YK tJʇ =UWa2RC&cՂ٥sAcɻpM͉s~[3 ld?dڿsĎnk˅h<Z[CڼM˿qØcPnp\`0ȝI?n?hֲjavufjH@]8fk܀Ĺs}guxrmu1?t1wQǃ*GN'!2H8ƺrf|7@?_  tc&7-{D}Nh~z?u.3K]n`Qs = uA\T$V* g =b5mpRW zOUJ'V8&F+( 42rp;${fWo`|4>3)>y9,leݡјY u(t(@ebzqJM3'0Eu,f-]jOYmN}CDnpCO2B8ѹE,gIhcrX*SNoBP Ue!-mpm"ڗ(ow 0 _oMẁ:Pl#3Z %fp*yE:SN)Ñ+&w"c/ĥs() KG琿XZ^ҏ51)s8*)v!<'H<,~{f2yq_Lh~8Yc,b81=ZiR'ۇ%iL.V1G8[WORt{^m!bS%AWzM/Ej+BOMp<. e,yC u>Kgpdu"W p8C%'y "f}%:3G-uR p^St5/cPhuC'"0ŕұHMgr,!nоEj_ 9*u#k:Ngfw:an2uNԺ>J&jJR81|P]._|Hv#B]lRbt.MyvS!6 h 9A] ;|؉8!u*ap3BAaؙ b_Z \\,5T׭T1yzE$| %êV+c)qoEIZ٬vcTmH 8&S6W)Ը?0O)d[mSݲ*{g(Z=DDơ^M`481 $H2ђ\v|+Ҝu>bo;rO99M&Rp2 @kI`¬"6:c_iB~?H~O6[p4CɈ g:G"!4L#0?E/[fF b*h ZuaӍ;V|ut ĨYzy5\Ϝe'!-WyrX+P- CO[1[c?z$ pp0's餭$n]4eĉEq+zl#'NBAN*g3 kiCJ2V2@:)oNEEՍ_YJ.!T07Hx#q3N…D{yhz.-x0wjqS!1HJNeױnuIH"V!toʔpBS뗑`02\ 2?EV?Xm]i\)Jq×\55 _77/)4_S/r*h~3Y;V m$k@Z;R?̣P/qDjgCy^V t\)5*BvTBJ@:ylGLəYkŗ]UB.cIe\[-V.aBu.?/;$tyN U!ЦŰ3`CVe{y>o )z~˦x!$4J*j_͋mZ-[aQ~Sŵ"ކߑпN@w`j4rvדSnJo^MbOd2<˃;⺁rIU c4aC95a.iץ[gn}#cI}CR2vdemwU&ׯ$6qާa'װm|3= 9  b.A&|1|퀈^#;4&XMJ-IQ mz%>uzQsd񕢻:Aeuhw_n%ڹSߣWs? Xs94gȣ`6v7<ʶo20vSc!a|sd؁ u0wIլ'?/S}!~fqBnHsC-WAjx&\ ]VfiP}w4)7V JM]`D{*YB$?,B%}EHt9P2c]g؁׾M"J4UiE%[G[ zUF@p#|b@C%hz@z(69 A+Q72s<##<it_ ?yV{2!&6f1^I1RCarډM/c~ȋhWU9i=WPǁhI|­re ϓ{ # : چ/h'+|%b+k }=]i*yr"lUPTdQa/}rhv$hQ}} y}Q:>ɓ.^`o5i1>I3ٮ%(?lDI U2c NI tQ9a$` {J>gؤ}8E蹶zTzYD;+>ְ}) \0hR2iI-'yF9};O3"5BpdvC`6]:%q?8!t\? P]s83 [~00bnrDO^^M}mV9#l[\D#Yupke.` u%wr>R\y1nSkx  CUyXYT{f'`:L&!)- $Ns>-}n/F;嫱Ҳ!DIWZ-d^1q1k5_s R&yMS4ozËBa@/bsI T',`}; 8 _;uĒMBxZWVSeeՏ^k㢙E úTP*= e~vkN-*scS9(h*4nR?PغjX;}[ GHKߥ>3p Rui>0]>I2=Pң-cAR +l/OR;*ܶ0v9E%}'R4f6:'MCH}/OTos3"mZ#fR6!oL3iHu>=uNߡ$&%ǥT%)<n ܆ {jAe" NW[CMhBDsB]7FFn=8~oFM(','0 jCaY%À!|hf \jͦu!FzYŘ3fu&-r&NwYRut#Zl`,lA쵤Kŭ9 њGBԡvI`wh"4W-ssy˸px{*rpzMm]\Ƣ.۹zAw@wa(A R;0b;z~@~rpo 'Z I lRt17dsism=0v .r-<.6k*Ef1ύ'*X8s"KF~Uƞ=š=#L]\n^曎>[Jc٩#]>6`v {i@F@ó&Cs3'QӸ ̠<=RSl^![3H? :8&_ s=W r\_90*n~u6ip"?Nx̡__ahP$ zikCi]qRArLp^GAj#P|rmg9cxE(!@G+|v&4cE%!q jtoCOrPk"*2HmV3":AjKu*:C$8 BLT), qVEh` Hs5+e$&ww#7g=MPrb?xzwŒSjZiѲh9HLBc+1k]PFR:9+!W?9?F'׹dvfb[~rrޣy|AFo9qv|kr5goei,3?Vo;w=}_ OaaJWrՊsRMb=uhv|خ"_Nh@cCT~^Q>Ќ\u(~kc Wa- gsuHQ>[*,F:+؀M+tԎB5B|@*PLbŪ4p \8B;eJ%ЈC%b^_2<δ~J%p)ȭ*GrRNJs}j.yjh;\?i/c㕇]i<ſ=B~fT#Z$K ~DFw@ ed݇D)Qe{C1"nw!끕&CRr $#4FaZꗅ6ÎoH9ϑ|NbFh\JbR8FJ56?vCQ 4BQuWnJpP[1xFui^W4C8Wj#$6S/@`LZ e%DY)&TDCNoF7<p:,V@Ơ!̔ijSSLx6r3 kV i{DYu-8.~Z!PE|܉d L3ۅEգVcJk7ͷ}ΰ(ưaEPƛ "jBY40s.6<C;Πi7z@ws#C|—o9s%2Jw?8.u“ hEyܵ_:]XJV8:#)00b07`8 n4`7:V^*{K[rP+O`z kRa ?c ClRe.@ ;K_UPa[o[W{.ۼn}l3m+$hY|ܲx2/|^ָymNkd۴hA:F0aXm bKeEiʈYPsMm {+ґU\sa?LANffd4fT#(|ZW$Mf(q5L4;AЏzːwYKXOn<E+meHE ^!:u+Bih5dN^єn'<[ti@oび\g:Ak3?NZhةee#WivS~/֏C&)c!c#.<#q fjǢ3VCAg GVQ<o63U B] *Rx\%ɲe >E+c*3)yP/JX\G:+C|C%B;R}VV)*Q|_ pm*TPA֦lۉ?%k[m'@*Q|KEˣ!XWKP_+U~4Kbfo@O6뗒=G AW}mΐ1$ȱ,!IahtɵAw)G\j/~Z*A=5ru's4Z+Kc(IFv(s7k%bGA8k-48Cm; gw)jzFm#EdorO_; HګZ|(3`(JÙqpECo{d2|G9>=_d{jDe*Bg 1Pxpt\9RCվrjysdJ0&fzȽAyvI~>J>x8>RXB胶ĨxUT+rrq b+;aL5Ǡ'хf9eJYMgSXCu BWC+*̩ck0X[I ܐcުBUO:Rh??ElXQ btjؘ-'ƔY1#M'ׯ,TaUYF9yTBWY3')H3ZN{4emZfcD4_lڈHijuϝ6>FnEZ$ԩA'4 %pXR3Od /'J0Ry~emx&UrIrΦ_s˅[njK?-TEKJQ}b(y;K 5 ~*7I}o_jF*z[o_na"_-RPL;lLF@3)X C(kHI4Xr;\˦lcF6k7v?~ڈ>I@jǭј>#Sa UgeNВ6=AgC[eW}v}osifR]s=(p /Ҳ*L<' ]sV7ߠaB~S\7XoP`LC%UBh x6pO10`|X[: F܌Y(7p64Z/ibj7gM4 ]l=1inܽԉl/}|^G*Gܩh߿3$4Fۭ@yEJ 8.Vs*9So'dWjpXkW']K>cdX@U;D9LdDNSji/kL*Vxiyn!Unu+om T}G~ݍLlt &O4ZoA47J\#Kܒ yμHydr3A[:tf'tU9c廐R#i^zV>j/n ͏:/=>w .Q]5)Q5kn .4M*0YxJ[Vm~zR!$ ॳhM%:3 `|~>*9s\_u}JD:?ëzoLp i=c'?Gm=M(Z<+OCڙk> Șl E[v(p$mVG!҈N\Jv=-Z;D?fkڊ˿9M7yn [0J>Zi6 ř㬕^}~{{pzЦ9< Twh0lQ:]/~ّNI4, XW<΄5rJBކ~W%е$sgeE^WKr=[Yc}_@Sp&@Y .7ǜ͇S)cW$n/j&)Ⱦӭ гyO1an>HU}Sӆg$rKgJ?ٱ['t8RN~+i̽M^%\yݡ.l>6MBL$ʗJ4||؊iJpez4^׃G\͂U=ހEmVFP ES'VO%hD pW2:ȬN9#غ:F'ZW7k*n[љn᱌=Lj3gx$m6BDQ)Ăcy2z a;iC,y֓4lyPV ձo08+(OY**(M+sGAs~J^Nl={ wM߁yPԺ"2Rʹ.׋awr0*-= w@^7sxhޭ$ [9=LL\)^[5 џGcT1*_xhف/JQw4'}=3G+OiOXcLsRoznW|b;@=Q>^rAl-X˶Tb7+X244 A`]\s^R0 ndT]}4Xm"Q)#;rs Jl7Dw?Z]fet3%˜q=2G=/3뀅9~嶝 xZ@p2TOYI>g3' Gq楾̰ { 6+| aljvL Vm4DXv^S&h<>_b^pR$eH`Op-"+ޜ Eҭzҋ,9Uz!%le3oxe9Ɨ{M@ Kx Ә>f-uf,P=lŬ0.zqo(J`]?[͈ **7ijp/Cw_4ޱa +gK0-B~+ZVhٻĸl~šf`)(TL `C?zsp+O G OH€B8!ۡJM Epܥ;\3R &_U_<"I./pPx~؄cxa0m3 oHqnT!+⏖9napִJ|T P8sZs⛦tFh@G&d"20ħ#N \ 걷SJM\|Kw@gT{l4\j%#uQ |v`&3K0.È2qEg3V[m6ᘭ#VʍPNVyЂ $Bʁ&j_yYP9Q^w|utw<@>?9kC'4#~LC8m'.`aM68:9= 1~ѥnw'?IqyrSR;EH39U=rogꯝ/I! h{N<mg#j'`64doqYMC;ylYRweRrlÌ![x+_?邞8 >g42WWf`cTWflȆCv-Y7KR |Z ] ΢S, GZqJB@CQ.uwENw+H;g|-ºt4̒4 A|.ؽV%l,}pf Ũc(T򛟹I;h#[CrZcMău J1؁0Dž OK'\^\: , 8IO+;L,Et/ʢc^O@MN;gY=?B_Z]ܽ6Dn~ˈ<گ#_疫z9l8DPyTw3]/&AQS\w5Hް#1_tL ^vLF/{ pvx9 ap1m._w\b[XOHǨR"ClB3I/ez:yhZ PIU?oʰ_gM0Wl7&^V5]=l3nȄAݼԌ^C2="]5rX9/sKsn1q!PdL8lrp{;:Y],h2 ξ7D~JvWѫ=YۯrG"LA{8miˊjY:<7\5<)rrSGr dP&CCC&AĹ& E d"3ώ9FZ,09܇~UKo֒-+rX 1>I0yQ&uG=pU=堰zfye8 $X%j;:F%E县T䇅{.Lbk2?7hlK=˒l٬$.ҍp ?9inS-Cg2Z£ٻB%9qnXlu2#۴ :x`,=+@{W^6&_b&|*Md?HhWlNmR iaIQkjj&놱(x' RWwwA٧fA/̠d7/օPʗЃIuVF> bU?MO!hiKKc Ĥ75]bH'JC!r(tý@=;pn T<3OJV/{MCS`o煳n+>՟B#pȩ,Vf䴶pU4_ {+2}YdQޗ rK&CsS a_ނ:Tֽzca3'UU F{55<8+~~ 1%e0voO3X 8-JO֯F?cǚJ|ʐ]r :%gO|hn|?ءJwGc0}}(Y޲>W>A#>L* .g`g^cH]].?l1 Tybeo@&sn}r' d{J|_&8""tNbJ0U*?Ezeqo(U8%C`,"@e\6x:ʖzPʼv!4֕p^&m&/93JT!ZchڄÊdxusswR + ӓ6ў6,LxThipv5"LU ꌡ$ӚcQ =lR)XD2VJ^"Pꦁ+%W됕#+M'R 0g-zWI6C$Uώϵ TB ~!@sCNˎ)~89[k1j]ȶj: X|FP{'qH)>ko1v`bnp`ySf`P;0t\k>$dbv++E/ r],'  lbVOrz$sH^!hm8Z[8r vkQ{l*;  eەj•Z$r~1de6ʠTOr ]-!Uja^2_=Q|{p/sD϶n"3%X"q:W/2SQ[8U`y|JrͶ#6KA̬߮{P,ZR<>`fhzd5 4j9In;eau~<;}|p1:ȞBB+۩t01 >²FGCmN}8a3 ]5tpvќGer[z=$Qc-s/O lk\v9e Nbii1J=30_X Q%b(2qlՃyFv!XIt`4sF}ksc"JO"&G+SjmtrEv)?\F 5!> "Vk H6vS,| GWO"(X\E)^>0:NIȠ["D^3Fw6xt7M-c7*ghOUn=! YgZ( we2_-VXzs|b=nv"3cKV>`^XN{G؅oΠ>i~0]t?H_V& C=f}Obs2:vshw4<'ѝVۆ~燴תżT'&RITcNT^mV n %6 +Gy2))!vTЮ9Km[_c>{ JIQ6.ԡzЬ^Z$+7* _h9.K~6Sp&e{ yXJ+$k(yom~äun$G_,Hϳ|6[b$.(֭&yB!B/06E am&pd-U0=ƔKS3gS$=Mmqg'YeR# sr7{{Sf3أ8V4hH;P 8‡c A=z.+L Zue#8//fXk`$p7ryN!VЋ %)_\o2n|2 5BJH 3wl1s}& WF;0SXR+ z1,'$w97 'k%n<;~FU)b;H k=W8w8`{oCrp;<ӟbSqPQ(9j-PЄ%6dqHGف#IHX@ֈΈ|ݏlE-B@V vq^Ȯ]BGc02)ŀBEZ~424,wn?&H@4iHoEx9BCO1"`G!Y(e Uԕ[O 6fjXx$o6Y4iZ!`]w) 4"I`jv<> 6Ǽrm^BY~_qiǕz@ j//?^:x|8wU-qLZĤs!xX̚R`/+`d#Ap9ЍKX1,'GNZZ5""Mw!rfXFwx.P 3Ut&"2VdcXBD*:?q%ׁ*A0iG&JrsBw]p(;l6)C䐫$wQCS>.gsτc:#o+Kgʩ[/й1V4zMOLz;<۠]h`-j8AV|Vܯae`KA MNxM=pWx=M&JP9kI赅aMѢի+|c>^&T ;`GtV* 3ۖ°R.POvu+-k\"dVX ,Oe0AOlZm8c`=vǨZz6;̾d2@;IV:Dc/M[g'Ⱥ[>U z"+͌/مo G5(UaGL'MVfsjZݑom&`(A?? i4 Qx&q0c`|`10-J!.d-MMmMC$ex+BzF.GBĻ⪥)y՞W 7y>b(l-.>RAqWAc;zjĨJ׎n!0%?WgƟVJ hBhPlCF`+Ly{մ;Iж$aˤKN~^\x~RԿ.{ mh]Iy4.qKBtdfgCXfKs[X~]b6#֓pNuuF u;6DA"Q sb2Hq B !izMǠTֲaw7Fﴰ$X|cF>C(5mey$r`yq>Ywme] + ȣn!!\.=83JQJUt0t#o9Pn>[Ɠ9tFtf-Q+ ߂oOP,hHs/ˀ?ܹzx1A;kweǀ#{ #"a%V#\̲8n<J\C)}QvN%;ڒ[+E8",ٹ?pny)W]7_$ݦOƻDAgL If!0B'Z7]] pgs0I|@dca`J)3]E[smA!2L1U8MAELlS+mV^6C69hAy9n.ͨ[ؘ5M}W4ŝ W F>"K2I&S@(K6;4!FU:(pnk`Ə=MaT|i' O|SA()x#׹^{7u^fC$CN`"mwN0mDCѮ%zxP-㡰#GՔhWiL4t ]߆Ҫ9LcqD$/sO--K E"=/MݗV%zQnLD_I~c_YZP0~6mu uFK˴QS/E*Rd[B>uAgQ$72|%~5"-fc6R*TJwCMBfc.a=Zz3&)(ڱ w,}Fjܶ ٰ&Rqe\^e{6{1dW4ze mDM6.a!Ht;e+cvͰO\|,(Liw2vs'߃ݹO6t:z>7-"Z+^~k8Nm챬<$ۮ|/T0CL :<8MNuRKK|jl|X|;NN2<[&zcl?G5(8"E/7 k+͝W=0taT`9|=>2NO8@zsVD4v`)QϐEhCնi3$IUY?rtTŖǴf@0nHtX#>͕ o9 }aϙ;?}PI,}0%NQ+~ bmM}' 7w/r(W.y+%1X:k܄AڇPOoƹގBL%D,VSr{l9&tbs+IpZ1q71.ug9P0.m {Ԧ|>CGKʨ=2"wh~_ :}[Y֯p}Jn1q@ljy(v֌Aqdټio!f:Re7\znI-L'VWf$B4j]?OZGhMv)'cO՞-EWE<`c:%: ĸå5>xb2:e# xb0ۏٔa/up ge" -O1W9'p?Xwl *YcEW)xGմq6>)o o'hMf0eȸ~pmC6>DG'T,dqwh)ˆb>j|ggLTl2BGVm"tfV] 4ڍWSRIC>Kf4 xF׊1*>g^ (KZڶV8y?~)!l^vIT;J\u&Rq~GavM{]UϿ)3mV Ylbi&{L3='Dy4LLSVgfÁ?|&&+gbj~+T81I\248i Q&Ԥn_N$Q!:۷ lnRi8->LO,tvnⲉ~Y͇i:W)"E ]P𰳆 n; "=uL΋+X1OCIߚR'fE12軕Ø+QG3b3t _8˦4Ko3ǎNO(_CqR=CĎőUENM!;ړ\WJs2)zZ޷C{ z31͵FH1InUY9" 9`I_(ܦvE)EW !7`ǵ3*IG%y\_SNڋZ!mS/~|nk<-.MOOpYUl/а[ Jl|a25[fMefg! Dlrиv"upv=>c vWkPOc[}iL+{h]~UkSXE6,ϛ*=lnv# SĞR~ؿ~1`?P:.t-nJ'v_Ȁ'`_pd#~qG9n;ܳVYlU0TJhD)."ke(«֍nk}h]I6fÁՁZ,qG1uPF)lWw?d^lm&l6ߟuȉ2B5zԭ<.{խTVB,P"xIn\z,K(%!SBzqk*$0`ߚOVI&Dt2kϚ6r{㐫1~V(fM:%˭-Ǎ7Y)>ݼ12[mxUb6HͺءW)R27-iZشq-ɦ$e451Cy󼤉D4n 89 3?~ޑ?Nj\໯S>e`KJh쯷{2{s\ ʼn\Jdv= a#7Ҽ9ZFἙn쓆Oj-LnZ 9fH h0-WmBx pf9/KmT m]BcNreh ո_伾;_Hw<+aW\P/~.b,n d<*(-*%~hQ&a Q9{N)\)I -+bUYKB <2Q|Z,)SbTњs5+W"ۆ[HHWjM-% }1옭'/4* _*Yˁ`e&\ŽHk ŵjM()S+SMNm0ԭ,LLYsd8DҊl^-^c@h'vkaƕե51QJ({%LY6$î1wH_b3lX&mLR btVNꚜ#<>hkaI')ima ۦgc, NV"0c"M R.C\PFglbLݔ} 8 <ҩ<tM Ky%"d@y_c0ca=}>!JRŅP19@Z/2x$|ƫmR}f_3Jل|3b$2tØVc7.KѤkA՘ wNw83TS%iO B0騺rWgej7 M6aW[,% DW0͵UN>oٖgJPdcق "+1vm7$n 3 q*"sۻm"víI4Bks>Dz DX;?'Y˟kp8`D;/_~N%Z5Qk -hTDqfEcHδRD z =^#> xk(˓"MڈuPۤϞf*.5ڄ kD7(?1'>.;qYd߱cv"~m: I~`vǽ"[I·q'rFa}mSɀ u.x ~8 ںb}Tʽ-pUn% Hd,6u+$x0\?">*b1=F%-}P&RBgZAT-dt ὆GeŐ :$W_p՗ ՍB,GiK(91P)d~5D# 7i($MtT˗k1~T$_`?,&O+ `s-yE2ޚ"­EQh5PzL,Rf-ض|]ަ␝5 oaK6=^ڈu5鎶8M] tih6 u/4|ny!1e_ џSC'c2N f3ʘʎrBWp&{{p3牣}`*,خ>T5|N]#7dc61 _+)76q[ic\`:*%8דudj)$Uf'+'ìG7baD !<jSZ-;E0#y$gQؐG^-=wt5et=2E=Rڔ!tq^_]8IhRϸ\k* =E])!tAvC6H j+na'@+Q(ΊV}dJ|[WICh<BJ2ڡ2 EZ 0V~r3*ܝEܧM!(-Ӓ&$auG6MGbw1AݐA# on~!]YU(U8ho{q=m_օUf$VUff Sg)7B.ZKZN>աS,{#[  InLӮ cZ{`Ca+6}㩫I=~RCi4eKіmeILsRbAj-"E|*!EPn+"ؠнpt͌Ŕ@3!Zç:#* 2twQ 3̀M' z䐨mBKH^ؔS;EsviƔi,+!wf4TKQ8·yk\NL*ÀL'-SK4%6_wނ-ڔfw|\: }`vVjCNlzľ;6W=lCJ( ŴL!gngt1mlqʨ5Qwef|3L E &h-e ⏗?Z:$d(a3"LE4̶EeIJOf,U2UUj^5TrVRƪxtq sC~|n\X85(pc~^ _T.j  pB]gv7!mn+αR}Vyiz þuRvK/k\+coJBK!.v[~IvekwlcFy|MZؿu2{S2ȣ= o _sA65>lȘ>7D .m} |K9nkJlZB ~BgsC}/k!YF=s;.7#H.v\w7yrFrs*)$^ɭަ u=ߦߘڋ<Lӄ(HvaZ}F%"'V1R{yˢώ(H&_a*vdBπƬcU]b1fbw즤~wl9BY.JEzz7誌L4+YdR\1,ݔZ@WJê`Džkdl5)b"@zq2\uK fJYJ !0X#jE4j@𣮂9M3OHD)SiѝKȿ= t8 TϪ([z ϱo,YX?VKNbeY>Ag j14KP[‶bDK)z5+ߦ7Z ۓK\VBwi}:ŝ?<<{ =}@?J tm 6$?8&$6&ؤ&_xlYv*=zkXg6aKXuʺG:Ih!YT<Ԃ}r5ߝ&fGwy~xp$Ĩ+tPbR( "! %H@3a]xJ3MPoy05M*ʏ +`[PBa߱xv+ ?3+%ӭշdFMԖ=6 `uN @֬D6)ZR%]-‡$Щ,Ҿ&K=_`  Sп-r/ë;lLkI`JTb-&i_"iI7(!_G~lFmue9-^H75azJR g^qfg%! YK2۾Mbtk`/̦\*ocg߶uH`cIܒf#_XfzY3o$T>ze-X*GYHEs(li2KVf2]ׯ3!tx \^KP)oN,Ug'uړZzWHħ۽MAÏlnwEט{ /.l>?vT ghei׻&xEt8IitM: 9i@/*VЀTTsBig֐ؖl6qK[c 5ؓ/=OĐ5v/4 ğwJx|lxBt7pgE?؋\;A`ww{(z0lܝ9{E~Gr~Žy$ }11r/ۅH ϲ.냂@x'أԳM&<vkǙY#PT0_ȺūA8ߊ ؇IgVth\jHpy5=thw6KRP [tG:YXBtr$' b.!m$jo1}naDʵxA|z 7  Z8zyXEXDFJ_e SGː,fז֙]YUe0GV #齝\(1-1tdGnEDf}J9Yvh߼JjkG+B{[ۊU?o%.K+`dc[S@ruRD<% EQp9 hw u iQڔOT.䅳A5_үjBq;G@S!|kSFYB6* Kf=ԉ6x[g0jO% ՐQA1꿒H-w҄5]Tv9QD;'~扌4e8\z}Obaet[䛡CyAx;$#ߑnBmL^?k0GTĸMo "ޠ_J"׵vE% d'mU"Q _<S#Z[DAM!-ՆM00enovEva&`{uP9ȟ4Dih erx&,Z1B+9q󓕗i$+xM-ۂvJ"BFzA_O|8rEKj%«W/F `Frt)W\vKn#ElB]DCyx(Flu\Jqy|-lX(`҂RXͺ gx3􅇊iHfȢѯ }GQX;(hTqh/ B Gop{O+dM]/1L <Il(-&`!F 6"߹D(gW5껆~o;鉨_NjP*Vt.W)O}&ԕ0#Gr8x+PRr1lcVRA.؊REV4X_d}_V%5L!˿F0hK -^zbl:Zf~.^zq| I;CX`vӈ鲨8ѥe_&ǙpmZE?cr x]Lh PPS/d9SмRZ$)&z  ykOk'i:~v(|Dl8aBJ3w mZ;UߓX[k%0Jgg}~pb)NSv&g\l㌾ @ ըPMaOjn CkFWs+raQėE m*`Eb $y6<&cx~qI..xr`rGt#ʶ J d𿝗%kO%6 S_z/gzFN2p֒f@QwIX\TQ[jNeQxKCECufⴋ{ߑ@R(y'g4 »j C儂@]ÔrVUjÖOQbc] !SL_zo[qTdi8-8)}/#\ml;/{vWQ(OCYU P+e *k]TO_-O쑯`CRQ)* 9|OkD\>f 1}?JEHYW"LAEp[?4'|+\~Q ףmKn~@EBp6|?F v;H켰$dhDNJDfbO6֑dI# .dn3AS9BS*ՇCӁz-,8LQcM% X ߿+)ټ$rϟl`q4m1YēXq7&n{(rL ~ǣTӗVXRØPȿ4tvuVnNRl |=bOO:^cj:Ȁ5ekbgq$k~t9)""K&g&=]p[gv~9q;_a'[`b bNޑ<`'  ;4ؘU(RljW=I^^t<&)a/M9a/ev[ke{ٛef/O^NO?˙I^,>w/[򝟉0 e'e/e^`/ypb}Y^?Jgg %􌌕i-/q mѷ⟞3`A10k-6D3ha&4k{"Npq82ZxI94NJ 9|Z9>"0 0";5|V9Xa( :S19'pcb7k ^!b݋Oݞ3$#7~ ^ĀEvRa ZJ~PLkU{Q”B "Bb5Yu:|bSg8h?Va[ͰXaInlhe y¾32a ;P0VnZIP& ?M465Qnu7nujo& LyDX N#9e4.VM 6؟<~8Xxwi+@>je+]@weXPz80?ol䰀K| {%u9=aK8ϯWuJъQ$0!l5۾0s<|WWo ~+'x^cڠ^J>>ғowtWI~L;='>Gz"" "F?FǠXg) =T(H:R} ZW䈨u:AWb~K̂[|H!4 ~3"0o9|KPW2|C[walr,[ uʣՁ֪h;5ԶƉB -^Ȱ4Tg"탏DRq~=]à+2?]Bi&ȑF Fl&qq+Wbh}֥P V"bt0YS!YN"_$"h/ axhh>5^Zsu>֎} ̢/-4;ˎj,f?_103k~l X/gobԞ6Uln)Z*tb`Ul!-pJ94L'48lQ{4cހ~_Mʏt.q\;AT:: ^կ!h8(>ΝWW qkq d9@K 65bkNÐe%_|'I]}H+ʔA5[; 4$GWj?3Ⱦ}2\ ?hi3zvKw3'WgIrJ c:Pf?Aq#,sv3.7g /a^v*n1$%R%Վ~%uJRHn#y:l҇Csw}pb[\3Y”/]2`+S2u\b= Acp"ݤ-f1iu} {]EO Mۯw >w[6#&o Z~S1Y(@1Jh˄"zP4 N/T:oR8:Z{S-S[th٦KL=ߡpj'eח]o_!tPan~x7HǴ(UȽYu:7 |.I[⿜EC<!43OУoSqEZwBڲ-,8k㮚lz(Y"˵oz 1n=r3 /qCrZ8@Du2l ޭS &'etbT!-%{X~@N$l@P+N" qbѹ";}W\'x9[>xg?^`+!x%rz4Ҭ xMrW8@4GO4!0 9c7"ePcM0- =*n rr"Bv^)zYkhcCa!:>e01#8Єd@aJoŨTQ ($V¾nj S( 8:hڙ#&qcE\ڶv JQg^$Atc&FȜ1yPMSB'CV_[=nJV܃}tn[o_l͹ 0G"(e\GA,\*L fл|rZJ"wCj>7MR칀 z ݊08=W&(ފ/x/h/~IHvP y2;yDeҼ)nJM7Z!͛St5jA*.V{$WB?+a<2?w'̴F|3N/!q@f3וgȜefoeY(-jeM,t'RM;q.@[iGK1&Җ&٬YjKA3QhKSElrhNC0feWd@&ɼPR˲+I *`"q9`svV&3)/b)]NeTK]99:AvV:B3DJ(إoKFۉaRY&3WH5w}n=삝(S kMR]qdq QlJucE%֑E#gmtkbD36㙇#Ww߽ci ҏxCJT$kô@d$vE[4f9T1&B}[,qk'j=/JM~sĐ3y*ug8?N,!y^vy !HDGkFyGiď(2ߋʂ$#ئ$DY$lvLёE:A0kSv| RĂ =r{G7fݦ~mZDz0LOC;UtӃ\ꟑ=:jDC`|4b4 ~\==Ո/v\>-N׌J qERw ߢ[m!D1s=B}aczy4NÂ:y9Xgk$j0/ǝ&!pdS:AĝA8AR"xX[F3/I'fn0t d iaov!LuE[h ek7!C@p^, 3FZ'&mחGJ=و[p&هi8WJ=ZgSsM%fO.#wEg{::=Z'V(YO`BpiK/Qa+.QIЏK`"87gB#?]s0`ki 8Q:oKx3ԁJDIgvdr#N8f',?=6I !p<k@;4vRcO"m5ʭm4D.P?^K{-;kަbN80ɴk?#X^3y"K|`ckS6 iZ`pj: r`S*pbZAݙ IhRnM{a=)2ą <^tkkߡJ,,]"Mbw(;Lؒ"ހFg5NcN$R<jFM$Ad+"B}=uYN.=+`q,P 6ژwd|7ȲzAH+!Z$h8FO2>Wl&l\ZRs5RlPur {yA>;>)?ӀthoaKJ6\pYyIB 3*Rx̵:q/\ġmXnա=ۀu)3?Sǡ9^Aϻrbx)%K~S't ؆Z>!e&WJ[V{STuv7 ><ßr\^ N?e6hHveJXj-tg[> iN GQ'vB",j&BpY`;ehCإ&&Ua [`.+!ԩRk,5M'Ls̖DK*z8zw--n0* v2-|U2Nbm/qh|u{1DAL%-|!Hr"?VxՏa[RR#kP֡FDU8>ӯ6@߆O8q$ iא^7Zസk}816hBG<"/r`7&R<;N<]J᠐ybCK]{)\ SNLKc%V,Enw͌e{4%sgȾcRz#nb-~ca\Cp?tE B̡d -"'$ <^,l)1ϛ68 ѱp޷!s>`&b7?]mf [dx)#㥾I 䲉jR1fGقv;Ch=ŚQ :ږWAI? Gl;Zևbmv5=N}"_ z:L$t M~Zg08 G : C_%Y\#)ˊJ4< R^+^؃ [MC+f Alhև&0 Cˍ~>&Z,rAhBl4>68_<矐5QO -qrHj>:iX.sC3~> ݖ OZ<" V*Ox$y7,$w<ä 0ɘ/E׺gѬJ3q3~wɀQ+SUIum똸WGQ6*a4.5Mȓ:#r#WJD֙ee%F̂Yh8 |rZ`s#=}C$'hҡ6wEm7\@c]E`$zx\&Tְ7nAIHǭmtX:Q[kHX]N6YKGDΊAQP "|orjF63s6lUٓH"ع{"bC y_̼>`nYLe??ƶ=d{}5@3*Rχٹb; >uѠ1 {।ElBBIyNɃmY|Xg/HW=&L1t79A~ANI5=8mz[[]l7EsPB5~خ!*Ay3:~8= kv%Myp\JꆍF4՚l">J i8jiT^u;._1s>y}-tZbF\m6f;a{^t,~#vѩ&eeQ~ҿžS{d#0;ϖ#WnI;B;+qRTE+%=ز<'g# ;ਸ਼JHR JShA: J. $@nR[cÛL%OMTf=8~B4T]`ke,d;W$OlthHCm)υ6BL2ERXr$Rd+" +B5m3S+Rx푇 o-%NW"C"X= tZ`#JXmћqm6႖詤CГ V'J90 03Pp4'vT@`q;z6Zx54#H $fM@ǪBC ӑeLc?6{c~evc-'rd!tJfK_/T?ܽqA, cm{aIȮuMSèJ:T"a hr7mO88^mq zLr֙G06)J.K33osτ˒/N4A0wQb#InY'p֨&6~M%۫gTk$~Ue4TKx(;pO~JJ:eJQGipKJ[=\$հty1\%QN<`M+zŶwEӛxc}!)Vr wuCxJ~Mck0EʻJn74|)t1~kaKoBJVWwLz+BFͅzXLNB57ŵC;ar(\T$\x98GYcjP=է=Ya ^j3u{$c (? ^e!Kċ#AOXIbD)>'y/+><%c]YS2וe)Y,OlVrBEB)g55 "Lg~^RE ͝CkVB$ڱúGr``yU4^B*KufaxG0H"lL`+sQha鎺,*kJ sRrt@ưIAO;vs2̡vluLB3-q}] 65|6t]{yPC[Z ||_wV,|{oF.@u/:]/]Nm5)0Gw?6䰪\K{Skۜ##a@eb4Gcʀ(0;J2WA+񷕈)jHI19y~Z<$JOWX7=s l?+(f [CQ xъ%6a"J^Vh* 4)cbAXZaO^G4 BYɫ|ĦJvehī63oJ>t!;Gӱ Htgl$.$Ioņe{ 3rP&U$'2{kRYK3xe.Ued-M0+3h[_iIZy}zƣ% !u3_0;X:18>kߌ!5&j_`nmƚa{QQ 2ek?]u嚔윥J1Dpz#KNs>Yz.$i~oh)_3r ֟%,~Kz:?aQ}c}oU ^gcuqK7lת2쭘zӠ&=.kFlYM&7?8*)'V> FҖ%}\WIOFO/)xUW&ޙo-hRI[0]I~#'-+؂t&We[]PeL7> ԍ ,?lc܁S6Br $Qsv%e3@qѼs \6>koC n a+<>lh*{=x]Xlw9܍:s6i@`rc(>^ū2g|w`}#\[srb[5kpGMo繁&:)>6NErwgĩlK 88caA 52"Pٵ4Z PP)=( $"h(=N7k ;aư Kfrm ElxMG27lKCa-χa)h~ef8%}| "H(Zd}\J#0_Xqcdj#3IJ{\܆;PP <+W#e#"nMسi!kͰMI!;$?Io [t281!8CƞD .+W^ eKa [t&t<ѠdKSk(VRwc6¦κaꑯG$EHi*3ZbO/OPN-s e҇'"I*qc/}?=?Xx°qHsQ@NjYo)]1eb=J׮To%纕~/G_~$mҴXfr~[ʧttF3 BS.(ꉑ#O%+Ǒ e#Mk'^ƒ% I(|2t^ +7IaIGF-Wk`>G/NJ', ye2RmSuIUf+i)s eU8noF#WA\^GziUD1dJ ;r fl_[F(^X%4Bh!GEg m6=S>^8b7"ʇX~<"W"9#L' m?Y: c,p6,4 A .ġS'ze+O\q983PϚ`qkR 3Ma @D\ףys\= V [#w.w[`#*bӳU~G.5GoKeVfBY--ى!FZޙ8R6C ;]k)'& MkriףNl#z( -JJ{/x``he⥠#LP]b誡г lCRUŮ-+*c,,[a`n"E-ӳ {\݅>\ \WnF$Cjek \K=dWg0?n^L<z4&ϟ~KBY+Cp@>ֻ^xw:o& L]=qRHzq Q4"I!PuR93~b|&G{W;}F.0b)X3۴C"Vs)J37|EHlWF ͠]$rHʴ ;No [q.y#;%25t"<1Dޗ6Z% L,}Lt|8C]]H I3{OI6&P3 B{7$ָ^+ɬacFoHw3~'/z~._r0WD8\ƴ;Ѱ?& |_e_?'w>^ ;(!~Ys!0 chaAKV8N{yv/dvF 'sfy03͌ۜ_A339>3@219z +Ya[smǶCF1/LtscyŚ1Z%54!{뵊 4AS.*88rÙFvR67_#8OvX;]$)q Ot!:iSY]Rd#nKNю+Rj!p+e|`Esy?#S2HV&t5/]`VMFd$_χ\ S[Z3B7UqWHR좋@V|Ψ@qczF&ѕB\bkk@=9Vt%G0ϦKB.|au*=L9bymZ1TnO7jSd+\HH;rP{u/_*̴#r6䋳?y'6r$q !Qw,F\SAi#LS8aϹsvHs6YTWPp W㵘vjWFVa(6^{BWY~<0׳֕f!8'nwS8⠮RhT)Cp96م\V&ݎj#,POTIO P=\Q‡uje~^ RYBD:bV]<ҙ87UqH.끨YRRo)ˠEͯOk߬#rs'y62lA&_3$em;ϬvZU 0`Wfk0^C ;_N. D =5@:I |#O?=A$ms]j5=C«͏܈f;kl>)?%b(! aDHADJ%ӛH\"j~8KCߢ3ڣgɁU׋Ŀ犐J:)g&RXV$ρXD+ XyI=(AN 88NKE+9PlM IQnot[?7Cg!ށepWiz.7ʠ] y+ $r 7>;5Q9$VW:a.W=bgI™-J> xd!,*z-p=5Auhb6i*ro"2v/E5%,Km)}+[Dqf|.LО `/: t1vDWQw?1Q$RVOW!@) ݗa_gCJ:x=$̏=V&sS[ u:. )g9D/ - g? ʹpX-f/5j16+,٩-Cvd ߩXj>Xq58p?ӡO8'vyt)GK%YEtme5&~|)?|_r+L<w9Ε;jr\LspʽN)7f)3O9߅O?rSC \yʑLaV~y1t=+$B\ =vdj^͇em[3zᥤ| Fx{te*5^`~MY7{;Wy&kio>&h,RםhjUJ_Pp!g2@v OU6Mm پ ]x/ DWA-iEC9k{%25;ML0q 3'z\}[4S(녰,vْeƎq5ڣ|Y7.]JjZDkք|Sǖ"MZ<Befo+'USqTD#iS|F2S餒肯U4$d&IEt~t)::4:H9tѬ G{L-Pg&^\&|WLgwGsM&4=7:SD&f>s+#=ߋцh{կutDgy^LɃ)RӯPb(L{iXnˏx /AVjNe(^;n $#VtT>e}æ9X'Ď{6mati[H5T~L+D,X'o["zQutSu&,xcD-h~lUo$8؛&Dy?G#Us(\,͑H@o>4]ՖjV#X-W83;$[4oK&xX1@]n ܰ ;*vz]q ʁ@..̉ޚ*VOBOH*BwY1ԡW6LDNJ$GУH:zEX ~ؕ_q QDrf%ldbCn)q;tWųUE*1v ѣ7[!2p49d`&+lt Z`GE║Ogtx-93я\,hql^Ԅn@Xe8mp< XH]vLG"iO_[--޿‡H ñwe(Ex|GQ!Xezo8W;x?.W2D(M2ۚXV+TGTA*5pICkC02yxո 4;;[hlB|I9?"pCt^pf ,W]n6Je|o9a!x\˵ݡ]Gbz =.$@dZϑT 5147E6ct܌lO^Ly[3QWlnJCG_Vcj,{j{(4$+Phw(뀄9cҜWk<1{'L51_LĚsMГUͩ]+W@ʗь9h?B)<[- D[-ȁ@<2-]'PD4!w`DL1 MYaa_jWr.aX5N bWi^˴ʛxTUJgl>fO}0P0 aUEC8{5)i}u`Gő7w ,& dױf14p҄TM&1NLl_;`4qS*U@yЙħyX^mJag/X`Z=N^г;_ѩlKM'^EUolEH4U 7[AIO1_Z* :|aY|tV7R/pE*Dob><^*&s94M> o"{oӲ=OέŔMd@-ӰWIb+N Y;yeDX`pP?#;]$tZ\ql6DMg_1 Er}փRhֿHJ֟&K1ꥀ$UvYWh'/jwZlݺszE~7.\=3K<`Ai`Բ[8 #G_‚y?{xv|]avIJ|"p `K(P|rB&/ =EW 4By9j9j߁U$D쀶y)`NJLE+ђTH@fZx#WAf&L<''ōu \GK:!H<ఋOwJ%ّ &PP i?\\ /s /K`^xe ]V׋- ЁC@{lyiNdj$K࠭{T_pPRrJ;n69yn`y 㭵?N8l^ 4Q k"ZJC#V/3LiJ!`VQz\s21MEEmMpgĭ_6 ȴ~= o_Jo6l1CXe? \dNF @mT-WyeC`魃C>hV dp+wE ghߖ^VZ\-S݂|<I=.Xϻ4",JyG5;Ȳ odBDl#f9߃ 泬ݴ>?$0`P=5K6]RVh.5)IvhpG 'l~ boAFlV"ꟲv)v&/7O.]a{(\Ocxo0vo#|?9;l:ݥ]/(ᵆQ!im.9?`LsiԚR]ї_^tjc c{4\cSk$}P]pmg'Io@bhnqqCC|q:;پ"7vEEH24^液I= AЭD\:+ƃŗHx#/\:Ď )Rm-I>Xmk&j+fBY( r[",,SPjuXcYDg3 .y4/XH 2z~^DuGD'vǽVWVgLfHrp.rjY ŁTxMkaܬ֔݊m,(ԚacwKm Q_CAZ[œwנsq(cO{b v1ɧǰ[ h-WTި>\!%vSb7&e(02|$pe=¨'T "խZjVDSRkM8I'aRx]$[PwE%s2d6EU`)],.7 "otP0'R㢍hv!+a#Y%M]ӯi^~*ӁYC\ 1Ucn1.DMa Q5GU)p3s5UfeJRkQF}O2$둑,9Wv-l핍y x= iMd6mf*lM^V֞BaskcIHR5Yۿנ$k]wlͶ- wm7ϤZE2>(XΎ %QVm D$mjr,X+VQ H$ 7ӝګqڀ,t㬊i YI&\iAԆH}ꪬveƳ G+˕˃S$eb+Z9#.e4 oVpO6gf>!\Œ{|5 ܵ݁‰vOjq(?jqW!=+S`ek`t߈hxFrƪk8t)X!e¸A`HI NQL  0H_v";Po|H.{,!Mv!Y3I>kcF`ly:^(Z|{0;*Q19֓yiQ$m=W4)g>e~ `F$1@ ZR^{*CJJ^8_6…q\,W"Ymmh/2tnEFzU.yn ( YTUVtʲ ehPZ%Ka~GsL [V1%_7ԐW h;^= *X8qW V^Xv 0؅;%# T_MRCG+z#o60}& = uDŞҎ,VIxW` VYsEJ9*2 ܦ6񵳆>H|WiSp$m =E 9Lv3t)rs6Cx!)/۵ydr/첹U[p5k|wh]Oa[ ħmT}glZxS*k" pIQ 6k tJ㛵8DRiLӫr^3Ph,p;X@d(4^S&ƞqq颮/6܈^byQmB9-pJ|teBՈ(,l--Q6b-H|ږH'e1a58\+u|>`]LiN4MƠo0Q 9;,wc)#y.Tj%sd1;9~ )L0/n9ՠoLsG\k7cM%J oAmȥeex|=InUyEzڷbXBP쒦7oD/mPt+I|w#"57wy~,RHϊI 4&ijB?d;]ؔѐ4!'k0:8dFV"lQ\쁦BZ2Q駄c ݁.~s Oތ]a !n^IgΨtrH Nj @wUw4ٖ`Nhr&+ƒEWƵf&ؔA=.88C-pdrDIa^l^!IX < +19pP{mrOЪDS fk$BKؕڍi>|awTs[)7BNà=JrU4u=9y4kloT=Dޭ{/MLlKՁ#,qPK{ppCтNaeN69N|9e>>[bZǢdIF R7-@Gw}>oqh᡹FVd-pFhQV SoVvud(+"'Gd;tU(e,T[_ WGQ) ulݽbeo>/pLj-PslJ]v"lV>lZ!ցeNbӝF I Gh" &}Prr A2*D{hh0(ﶠ#C ( = F pDbKѺb,]<vA$C|0:i:xl^M#r6F۔# )^݄ӓ`9 &'!Oᄑ-I6hT ,yTVXvJ; IFnh$*$o?%KNn@%qS x /OylŎ-(y'@$u=h'}{{nH~b/8E*P73*#L#CD;=Xd؊{2?Lc 'ig' -'NH,mRG|J~u:l?V, <3J;(feQ{땱x^n߁#`;\T7|&Qg,Z,>F-{;MXFNmJ/;1"5@2YҐ:Eba}ӟEMi_`\)|)tVԦ>+чqև0-<u7uqÆղ$h;$ao٠$X=~JC?en9r<_=-QѪA"KyԎ$]udÀӏO`%m%Ml"\Ic79ȁoP6m/Bβi`ߡPGSP:.98ۈVR_eDw3MѰ7*[f3J$&q{98Q& +tFKKy@k8t=rL bGYv=².$hv+p"~ϼ="2oķ͡c0S tM&=friS^^GLtLُ'҅I`C0>^[&<20Qt:Z%~`^|F{l2&K mEQqi2|:HAj )c,8{*IJCP`8[vHΰ&唵7>_Di6\֣"=z+CQ3m"A3(X¾x@Xe @sJnZHMe PS>FÉC@! 6 IrP|%#(8(ߧ&,eյM$jV͚lHC+XF(UmiVmjKնQa X5@*UgYBι3W%3wty]?H ( ;_Vߙ? OۇEFA^DqzU?8 j"QG7[`+uZ&2>ZQːt"'^]pGk!sud:@΅gX ʀʨ22(b**ٸ?Cp(Msr{$;]y.o7hY 0l,tCE5ڪ|?`J2jP6?`F4+揌S,x|gerFz|0) džH^Z|ջ#؉ Q5~ʁ`C r$}u@jcƣ_k2_낖bZɢAA{POyyڽ,O5D uOo_6DQ8(QZ@:)gEۯ|HU0^\γ}e>1dSl?S$"A+s(7aNj1s.BLQ~s2Id٬:H#ThT;G96V d?jU` PsCyҴm[LGasJNVyS& T(y"[ hfk#(gөNnlp7)!q 7ˆcq{]>FJi1=UytLu95`hq1&@v\!2`͙JGeY^U6q {&x" ఆOTUU,I ,SvJI 6RbCJT|ǥrqaՎý'O,cl_Kg~[;qϔ~ܠt^,OMG }}V4E9Suq8By1]%"n}od/Tނ>L&uf% h_fK2XG~t:썩 k%7[$r˅u;FW;ח̺|_wo&?3%m|$.]?NK#@P+L(I )886H3 :)#bxƍgh_ʟ bp#}9VNNv-mQ |CAç_vt[^fbI9;">N,0ʥ_59t**'1[W!1Υ|q$:#FĐO( RQVq.M ?}J9htv;YZɮ<@K~a^>%悪N H( }KԂEdB@A.A¾+s÷z u ;ї X3m=xP;aҔ)&ի8)? З e؛:N5M&WO{^NJh+= ѡO0Ls' xX{A5$yf Uhg1(DͿ<%2Ҡ>{1H!%괇0llLg ] w PgGFLb̅FlwPkYn{#{Q!Hc"aޙ<`X?i7ٯ3UXAjzŞp(jo >׽p/ǹkj1/D\PMp>8SEe%$ы}G/iʷ|Wl|% {hP]xnApg}5!ᠵuB٤۔7Su%o+Vd6> feQ̿Ϗl9K`>|>݁Q_@9mR@ M9ӽ^AqIMʃGM颞k_0 qpw-=\W_2N/uQgbgS ao|heN>+ӵ2'O1I`t{]0dSzU=t9N!r &%u4w%5Q+a;64 5ҋlÀ-Q\':ckh:xEFjbsRg:m>b0ɚH]|Cy٢pV-f D}D}u OƾPV^RU#w jp8L0u8"O':>CWMk>n Ksj1.}.Ú鼤}:ϩ_Z.5&n4eZ2K|3L-[F^bXh5~ybCp2. 0*>H#%h!<૪'ZүWV֢uNsAB㭞2.[f h} ml)+<@UH=DRg_\RO~g/r)q(6r ۰(CӿZH%:1!LG[a 3eVn~cKY=&k0R807چҺMi%ܗ&W;Lctc˶ɫjyͨ`Z8 BW>W@ ۑρuX 7{ۥ:g~'w i:Atp?{lӬ m>fj>d.>org7/ψYA!|"H) t-_-23[_z"ѻBtf~> .SϾҳ_{v{+W\+]a}x׋x@5pb=KeʹMor jj>k /XZ"ȳn,TŬh@}x6DKp0zE3U_פkĔ&[Q3_T,xRVQXF#)tpUN [^ (@.[aJ^mAGsT^ZP2H /d.'2WFTHb|ʗ4tz=GJI5W(-?nA%9O[F]9GAK4A XIl*"QדLf98&{ۃAg&= ?ED^џ_̊NzѻU10m{\W]Kz_sz.>$/U?_%I@]ޏ _]CkEQkဣUd]`N| dn9Mt? g \jKûsܼąwS-pݔ.ԉY3U&b/ ])Ԑ‚DktlFU:ab6ԉ06lU^*`e3p>lyI%xI/„j_KZEq|צ$Njgjc TwΒt8:fx"dź_h]σZz(²XTxtwi?#|}|"$Cz[ ?dl$^@w|) k;x,s MKܶW`Ӆ:#{D% , i$Ӕ4u(JG?ІޙDCͫݹPGw+{Cd^vÇSș0w \ yDp?F!ܯl=EgbNV=$!s-cjA0&烌n Njh`@-Ū6 xKx&'&Y%B*ɒw#w YLtD\ md2d H+ă :\.hE_ 䐱{sЛWZa>êD %D[Y6Ǡ"Omg*#\9⁜XR'd ( 5'[ n 9D$Z(TH-$hHVF$6s ;/ W*mEr4@r&=-0]ԃH1FE a{d;-ʍ]$:TRT{x2ƓڅE~o)绡 ENVeVP r\xR[sy+nm.&yW; :9wq vM7h?:gavf =5A&I8J-R.vjo"+ +`eg]2yuruYOH N܁NRY[S Dt$v闷 s\קY5rMYMv(V6"咋WUK,Vgc-fk!8ע{Y6!Vmz AieE-Ď[@;XҾu4GLp}SW\vktssD7 H1 M,`^~t_ °(t:V9ڒsr m]^zo:bUЗ;@FF@ ɦJ)ti(ۉՐh<#% lԲ4lЫ  Zyx܅X1'p" FTP"]Pn GOjۂw:j}qLH÷~}Fx ̜d U NԤ5 Im5W; ۩{?B.vv9(4Ku;r.;+H wn}'um^/Ɵlm trGڢEJH^ƭJ<+@:Zwg$,0= ?ddm6if:L4_PKϢah /r{>eo iאA};] x[GxRx P0S * |=|t3x\%k\K`.%z--gQYt 񷟺n|n"䪕"&'p4sa>}99 U"c%^}}m1mp8P"'ÌκA[~C}Zu9L<tղ=>Ma%\ht֭#s+7"qp+Y-@ | A(ܪ4z4=CTi*UV@\KIg'J0gQ Nr =3]DtI[!:uxg5' 41ȣ?\;_G{ oZ% -?C񠔔ߊßU?Fk?8R㯅TquLkxUkZH:y5_7jBAC $!ac~F)[(+jM{h8e@3Ku@ki%>:S#}޶5lx 06ao-k|{i^9g }ݧ'f/5}cQDH]F毝';tna]eч*E‌y@8.D΁9}& DkVX[N(9iod9ΩEh R+!knd?]1aSI|]GF<ߝ+`|(> ( 'P!K7u mxͭ\ zǫ" M'.=#MЗ)12jdts27'-]5ԴQ+$5z1b\U΢*KxK0(p42?^@IaK,lΊ.kG1/MeiVl1;عEt,Ϋ\֭94|6ex ` ů=`!W&߂f19 @vy3}?,XH"`'E6#85Rت]a DQPXXy`r^K  rwu$ǸdyGh?F~_奵rs@M͙>j$Oz 4 !amiULIF nۑBJA⢷Ҍdm]kU#9H 5>/%ΚN+a;MAȉnӇRLʣ3(qf+ 05΁7`] ]MKقꌧ0Pؑ 6WDL#U epn0aW70Ѫ͸_;J.'kj1{k>5~Qʂ9(П$ppX[=12ζ[IŒDŽhP0Jd`4>L'܄@Ugߖ3k g*VO"E8FpoƣÍpZY 8"HlHw)A@N0-W!MìfAb[լ+T~=&ͩ%U|NB̙%s j4;X/@̓sn%-mM%Td#+W o擹 `jBT4(Í1ZíۛX KSnji0O\@vÔjmm\4ia丳1r_==Q_UFgJ[d!joY?ɠ;ɠgj jye-mekqn!? 23c]RJZKʀ4[Ԑ#?K˳EyVm7)[@JT  g)-jh~A$h4K_wYc]L4gWLː&񐖗  #MS{109EC ޝNEtjDѥxF} Ӈ;[ ]Jpр3o€wИ+Koa8'M>Z >|0bZ6\\|A/^;P6>]~mˇ&+ a_54K_`;AJ{=M ZłlXG闅\ب!XKcr;}VoL${[$.*Ps" MTѠڔz݉UH#[>XT1t{F|p)Yh f[g&e-,R<0,!YI,*} .c yK졿wV ,[:x!Ul% >QKks;0Y蓼6<ٌZ6or-( vLk񀃐Խaz =Ӈm )yJB*!R$Z$&sҌQ_:GOC^= ȓNHd76:&-SЮaIsU)ub N06jҠ;[8{|NͰ&1uʕG< пc>>ց;[@e#@-cNbIc1gqO6Fb:vlw>b%YKUOWWGUnuArTT4Q#,|<lڊfx =Xkt=e'f-f--I|خ"24ȓ1$[nږ̋xi(SdĚJ4e%vb,ɷ]4_In&yBi܌? Z3jbrUWPP$`,N lxv0wÃC2dz''Ã+=߇F #+JV^P*+eUL>Yy;c`|fk-p᫚vx9_mv _ ,و41Ks#7ébd}Iƃϟ6ЍY@ HXے*>V/}ޏ`!y~+|/\TBg|"P'`6gCIi%//c?eLLh0TSR^\R8R='ؽRETR <D@*JMosb.Q_ڐ:J~`2 X1ކ *Q`n]s?Őj|O wy |FO9- vJ +CD^S aHʸm-r&?N>6 d|^_[cg>~Xg&֎hv4jtn672;%t"uC?G5P33 '="c=t1!eʓ$Tm Os[lr ; x"9쿏gh M6n<9{NKcPaZp$/2{G$W=Esߢ5x<1c34Sju>thLbIF(‰+KpgD݄ǥ6>aZ|

fPw@̈GQX 3zvoFbMS~C&SXHX.zKۜZyX0ajQO<k`w0Qgf,Pj*Vð(KY'enԫ``6vg0i OځAtx67NMׇ(v~nÅ(U]u^H+t*VŴOͻZŀ.$w).޸e0n\O@f˭{vQɗؔ W"Uo=(N9ɟV,-12vsF 'v"k*SY2 B|`c4JW|{|hYKwE> |#Lmؗx6M $@SeOa>Ն0i1>WٮDhU܃X:Tj tv]t 25^:5GNG sߦJS[U4F2WZ4@|-e.pZj}CHܬ,L ͐U6֢v9TB86 $NjH6w7+& KM;f5~O%uSKea-pB۹ovB:z회 kFO侑q6>}x'xؤ)NѶ|v&- ^hS\F=7ԁ=6jknx8|Kg`݅-XN}c_#JX] 9/@ut#U>tF¸ k2a:i=3­ w_i5|L;#mj ڑ~}n&;VߊŸ YW7Xt-E$H$)ofH.TTcZJQaIN)EĜӪUl;,GTyN#*sخm}$ ]6nY) C14DW(2#}Ub8G1B*(+$l{PSB{"}(8^ v,,y%iDtH,[D cFSl?n_i\=O|q07d΅$A=V"0lny:y57Mg]1:A[1&̤ Vmkur'"?o aS dU-dDL#ȢzX NMv¸. H뿊#->s20h^1hprSs}j {躟 a'~/9~ݛΨzHeF 0ĆɆtkxrlhԜ*VC]g4q*__ _:0/"̱?I"ɷ!z$7/[-=ʜpg|"f~ aIr~f+hj90R]fQG T1Tr:k44heYao)dFX /xA8Яs7E(Z&==ɐuZQ٭}:/PCt|yU[yCwH[h%)}'<'HbK؆JSRO3-"F[^uŽ|::(;sUw6,gޑC^^|hi[p-b_z>=jAу1ީ֕f6ժ0qR2PJ[_xlXhgXqECh\G [46QC,9!lArtf=ZLTR }1J&4ؔGk>w= ܏.Wc."^ԇ"R!xOS Ik@@ADګ*_VsC5لhz$07 aU0z"q< 7ώǿHS+{#&i;gsbD7Jh.&RZsM|6&fܚ&G~ p|7[cOZ4wxl^p:=yЩk.Ը30l86YX ]eCD^Nw: #{ k.Mxև=nj(]!4?vO>3 Fg5.V z8M>҈ 1EZUlC =dh%y*3 ؅$qtQ*B` //E8͓g ҆ :I\o^}DL"IiQ _PK&8CwBM-`q d5:"TB\]n]~ 1LsH&6u;O]܃HLګ֠HxnI4Z(d8pwt̵y+"uf6wαQpiH@gƣۿ;1?5j3}̅|L O+}FG̠u`(Exh$=~N+c{lVYGۿ [U*ó׋ST:AZ=rpEX<AӰG]qF?hG\X7\=hF6JE_dž?SɸJY٢yZkxa ;ڍ*0 + 1K"/a6lDa6%8@ހs||/xJCd,ʚ4ta':{TeݚI-HŽ}Q˵78s UKwW~P=pҕ|AbfB+j%08T%%j]?fHѬ$深a2IDȟu8&+DNG9k0P䪁uGu7 G7? rkVnə64 Sk#GUX>gmYf'6Oq+M[>jUR^se (pF򱆏dڴpA*pkșba6xinȉ gUUy%yOzO_3X{$wV2JwhIoeqKreGjdAjQk Ob>|me#Tu@*/ alO'ڣP{Rŝ Con`- ;92j۰RVާa;&4C6)|e+q};?$J,n?k r]Uoֲ?# 8ēTv93> ?@Z?ݧ*?gP ˘MG~rH)MeOJQs{ pmӉm߾޽[U0ki*V̺@چ8CsYOLr9̍>8gKHxL9/pr).%(v:%) fq72Kr6mӘhUaCx_@{{sO2rZO&`SmT!3i !>Q( {Woۂީ$p-O`fТ%x 3`2g '((,ݞ o`2C?|-t2ha;Vrv(Ukpoz>`6Lv_  4Ҹʜ?uy:ݚd#M)Qg)M!V•C?!;k"|滩!& f4~MG [qê. mg[t(y)tKX;d7+ 9e;uKuHi׿9|a[Fhykg3JZz5bX"'=BNy ڴ/11esrph\甊 ZPӢ:B(R.#e T/,w1^hhLV= @eٺE *iB mHz$?Ȝp M{yPڌ20**ruz}Tr9ךK)!U u 0]t(?ӂKIqS"Oh b2ދ݋?4{iɰ"my_&☎^g7\uy@ Uñ73 eOQ5cgĎxfA78 HF`/UKJgM)|FX~Sg 'PLM$~Xu %dNw|TV1mhh뷂E(%_& ]ЄLNmeZ [`;-yY`xȈb bщLdӵ_T&9bpabwFzv"XRu酋'6[[VCrgsdLR ExGFr4wЯaӁu};k尼e%/ nj Ӕi=-naޫ&0(Z='irDHM4 PW5?ۍ' eZ' cj{0V썭kiʦ^}@Te 1wFT^" j7L>e$o6iॖM~H~ܟ|ERGVL<`*< :}n ,ĨOI`# s$+ѣa;<'A솕>ҹ( QT`§0.q_?#LP#4hD.~^R܇~A [nK-V}Eah1fmox~SC yQk'~M*HL8s$sن4iۜr"tCER:8/;'? `QmQwI H_?r+/Z2L<<+0 ,rz:=u&<3.nF],OC||'.ev5 qi:@ ^.wo&ۛچFu&FIpAB_} 'k@g=l/kqS`O .P ASK;'4ٿy hGav, ԪY]V !bt/`tz[V$2*ST.F8=(;K}(y8.o+en is:c~߼iRdLNB J늀{uƇC0  (KqIr@3  i _ (= P&t2 B&Wل_%2m{M|0DZowc h9^!T&_ zibi7{I|9qjӳsϱx@'U mcȾV@~>Y[`LPpw 0e܄2}x+B`,u}(¤lMQҳƢ)`7n.2Yd'_Ky6,?fIVpgp(np:oJ߱p wEK?/D7dHnObk`1 +À=qJU˕9=.{JL&: m}s*1xZA$GOB%㋄\iXDEN>: gjw'>oKO}~X;p[@54!'ZV|XƬ U*X0->%{eBij$ǛYѥ+qSp1ή7/t5#18wE|0+.Ihg9~grTCOAΙoHk^"qȪ J~{4ӭ)X9q؋Pwv2haHKvC$ٿʛwit.>fd[Iľ}S͔K GmUK. ٥6K) ߶Gq:|A؍#(DAJ778kٻA܎.* e#Bu2Ʀ]Fk_B×OЀNGKKP1c$&|'6,EtN9:h0 ^OT24CNt@i=C*֢!m<3rݛ}[i<ТæZNBN^HMNаW52!r`NB ̬&MDʤ7S 33Hͥ?8TR!أr.>xA5Go4\^QD!+n{#&pt aCn6{@?[l#X,?t{v$OX m<^h1(Y+yޟh9M:|Q8e|>iB69.aQZB *QC%cdY(K pIGYP@f(MgaOpI$ .EƟQ?'dQ?~ HZN ХB=U0qf֛͊"d٪fJ!>᧹cfjz#.1*>!ѳIlOŕ#&#C*V. ܷZ?>HY>D)h*0]TO| #XC.dMH )Չ!S+BJJEh>Q&U7hAͯ/mz{W4 VBv|,|ea};╸xx*/zs   =zzr>&W .s DtP?jه$n-4oM06/[KЊhno$Bd&sҿ4H'b}b2x䈊rFʣ}ē, 3<%[ry@K1r"qi{Ldˋa}*弌0t-+U+=Kiʋ &,GQk< ;lr0iT-ߪ,kO*v=[oXHYY_+'4it^?i"13ŸOX-L ʿ:p7\S^OTgίfk'y-eA'[6 xC{]2%gj=łˢ4KğFŵQC`ŹY]\ u9:tiHk)U:+U@ap:$4"nP7*ճ1ۍ)7[3z2Dz6?czکB Ѓ÷"D nMJR݅"ˊ~cN>SL$xRDzv ltso^'۸Xq f.F.AO[g; k0Gٚtv@JZ>h,hG{r,V UhFZptoʉZ bmheq_?=*/Ogm|EvYn4:*cH@cGp=Lus/KWAWZ3f?;@QXc {R^~'Wi18bU0(3T>Fc>$nفr*B́t}0~6Yꬁ>βojad՝ r k3 G2lIa~ 4j)? H#eԙĐl@}yZETs /YQf~?U'0&~G5(ς@.s;gol(bEVK6NEX`{G>Z=</=e]z6zdUϸdeް [e7Ŭg7v."2vo`:cTg9&-\˞_:\CPg@~)2[I5{OjM*[SS.c35F y:_K@blNr#7䮛$ C 5 ѣ)AD<RQt}oB[3/ϊga|EbBWFLE8ټN78-;yMNa]lnngZlznMw[|/6g<V-\1m(ѾtR=C¯ aoF6hV'Һ[޳;}Ysi)wamXxϻ ='=66"Y( ]O⍷ԂPIffnԂ攲DYx)w Nc?0Q|Tw]OL1a+OEP#VpVV=;tb0'GOd@f1J#)h3u0>tyRR5fѸNh9F]y Hi Tt-;7A)ۋg>yv30J`#1衜UB53Z']P$ec^XS+-it>zV ë'(A0C՝WH="6vUn# I8╽Bmm&j۞Lm^ 5/q/ xLO5} HɃxY^q}JUsV2"v?ΥJق~Ww1fZ6W^SMPςb46_72$q4Jq͈BLUj#ÄMW`. 6Acdo( ]_E񻽫m2Č5<@yaCe20LU6d;sߩ=j@|PrMɂ{86v |(,QGѱ#C0(A,@EX?a$(~3ZLtDPk y[ɇ.4,pBhrly~yJQKr;^ r 4ܻ'YyIƇ 92Mig?"~K*Dn eAq6B Zb4/cmďJ%ltTU Ew,&C|2>aþ݊o>Uv=[a7x7cʠf!ৢ_|@1?ΰ-x )l8Qh5;xYXRӫn,D*a)<ؐo eDQjOބfu&qC<3J_pIY|FbO)TD?E4]LX5E(Ά0{0"'*#\̢+gF4xvǢ,;@a|jWHg'ıVJmIݰBs`fhݨ|#ޗ̰r*` 6G(`n0 {Y/[Dy dĞ)1d2brkY@hqt>=MW3o0  V=cv셍 ؃ogq58d^X+JIPⅰN%CY!ytp/GJ)PPYOeT2PēhnMy[y_l=Z~Ы<3P%+=݇C_ $g AJX' y_O5lBC 뀅U_ti}~؆SsAo8'+OY[5gP*ezk\0a;ohKJRׄӳRP/0Cۺ\T*ED]p*Ў&VPe ~ ?Nw2LAY+RMgt ddC2aJ"3)D$nX z5Yi.QУKD[\ߛiV޹G?v.<|I?9\i2T"._-܍00 R~T\wXs"3 D~;z-+ M1W ]Q*O#x7g 0&^2?^,0vյ0r[6LrO؍6Tlwgr?`sQD'en) / u@VGR|ފ^촲5\d3 i0rOD6B]`J V7<ɣqBl|'nc+jiR֟'F*0H)U?ϳW*;om1-xu<]T%YpwHϢ~`z"ߓp)ԗK[%=F6.T[IB>HGt 4o4sPY= ]B4e;`5J !2k?LhRuol3쬇_ E%sDiɜl?ߖ-w$mFN!e7?cƜPjb9fk8I]^`aPL%#"gb$<95 :86hk7R? &cp*:q깏ѯC ~ASx&%;T.c<_~6op;(3Y," N{+Bж$VW\|0JpӦ8೘No=6Νhi܀ [{e:ee2^|>/PL@:voN3}[9@J rI¡ZwBDzǪU#^c?eb_c# o ftF6kh'_OyU$GhɵUEDhҀYĻߥAqEªPm8uEinc.UJ6jPV`u qCF5:gE>ct9j$c %!':[Ec5wDž^攻MzQ1hi4O4+^;2O4/TM Nky=x1CQA*T"ƐOӜt"\S]?pz".s}%1GRMT>ϡJ{HkH>^=@+V 4 !ى."‡J˳۫&?ZL bqUF<h ;5Z/{*m"T}4Z<O W+]) Y2+َ hUm8k^OYbxSp6HDn-A[EjwA0H;߯f*~e1`.ֱ_aŹ DC*1ј1g1diE>_ZCAxh#f" B|ȣc} egh@;?6LVN:&%>1ՓБó+<>R2F C?mW|~2]~~4B]ҝ4lh;~U*.˰T>{/^f<P"G/na2vYl\)4t58'>Xf}FR.a{فs{,&|l"AqYlُv˺;u?Z'ԏ[; O°W+ScxF8(y5U "5azOхa|W yr\ r$ ^wP,B"{4Z Jlk?xt! ZVQ/|UVJUP-?` 8 K^:ޣH烝̦Mjޥ7Q38QXqT^q*VpZWМ5DTg><& [DW&oZx92TPBG1 3 ZG?#O`%S,Tž SWq`BH uPxj34B): T5{&C|19*HgspE}0|oMӯ"FYfi`D+xA!o_ p/Hj(eO6IKRfQ˟E;a^KN?f-hunŷg0MvP} h_' NH=yö+ұI;&tE"`Gk7$[ײ=x~DZOu*k&)'avq^-><.)"JU!.D d-$gW#,%63L'3@pg*ra(DMz.2S˴" @:5xex2K>o)6Ng%tB `ӞYS(%'rLUIk\4ܖ@n9 p)_]=-8M?[~;FbU A#I/æIvGNv T4L x*f%22)c)]F#ViT91GJ$sCG:fX6VjӝۼvG޽E{qgFh7݂y{pIrҀK&nקO#O%hꇉ#P5ZUg`qUʷGgf;xOd#,=л+!OFqLFA? zWLq>J2b9%>LO [~>@Q $3c'b( ݑ7N!~At ~?Gܔe@3j)GP(qӒql˟ʠ,:FX'nR!b-ȠdeJ@I=: 4A5y?iеЂ:^+vp-iAu Ѻ T8Y۝ܰQ O2CϾpy@3/vD$tY\A_9>Urue+klNsgI&,cߌEo`td  yˉ7ݘZ#h}\ iCv DY68F}lgE.nr0DX.0H1jr֏`stA1)Mh8-1j-SB2ܳ[TU+)lٛtm@mco>҆J>"h=Q %7¤N Y6A*6@ϡ uMHצ!vZf 3dNd5t PExV I" g鵛{`:z73 X+ՒO\k|\J -#7 toz)-iZҭFJꌯM"bXi6HS7Lu20~P,* pп0$ M¥sVx ɀJBI 3JP*)4xh/d`zc= %cQdjdت%®ٱLƪ[p`f1X=reeCIV.Ҹ>Q0Eϼfd kFhjYA}y֓k ޚHZLz@MhwwSoie}SK D 맡Mbm "ӭlC1zqxջqҥՃg;'e]U* M.4K4_k_.i: xѥ>(pT%fr+>2w%^@=DkbON%/zCehqCo?ѣ*JA_SC/ |KƗ^Wz|)8}K?ėKwXyYr;}jẃ:(~ ZJl|8p?Qkr.'/Ɛ࠴C-XjCP\i|SYsWxe:ˢNw8ߖJ c'OR90MyFoU4?ۂ*̫t%}~u)ى uoG0\hi2M P(.:g~A$= ͆%2mo|:eq%g~W!euUkӡΠx|zF؟^ DUFu@ign _ և?KA-Vrm7b⦇aӛقtV8a^(–XSF N+Eswnh^)Wvth %cj>h r YQX~@FGh4ӧ3Yㅴ>sC$Xx*6: ]W vL>A)Ibq?MYRt u|΢_i `3/jAwDߕ~U & Y ,̈́~3R8bL.cs+OneAgpSF?,&^e$,(wv`S@:_m ^7Fb-f}kD4&.R|iZÎ.qnkB[o3Fo5@ E(齴soLh8fKhH/@i` F Ҙj /Vg 7eD臼LOqJM @I6?e9?\ Oݪ,U^6VujtǩbF J_?JrvxUyכn]>Tbj wCxߨ#x8QcDH|D&Aa9XQ_K_MpejŎ 2`{S9L<%ѵTcFxhFXŜ~7: b,-Jw,k;׳{o n{(7.jy-~%[5vYDA(GqveB@M3!H*ASb[<5Z,؋IǴ]Ɛxm-%J!̤:& pQ@k$=%%U=5x[" !wKjE>*?`U‡A7*5}gRb QuM hkRʏ;x<^iet6amq,veChqvȭ;OGN.J2-nc+ٽ Ga?H CoFŻ+{ULiuVh`xsO/ +<۪IAC5ӟ-.٤b\ 2K0Q zXe$_X{rBԺf};_H[&DlFU˂c1Z S֬Kq;FL~\^c.wr`,l ތo2JBl) kjQv%lG`~I$^EXΚ5/i1l#{K'Z(@^ؾ?3LB*C=">AE?BY`B{U-I7 Jh˱B.خ,X#:v4{/q;xĽ( !?ٍ7,Cj"5Ag'n%'B[?֯>-D9DlX ]$e%T+I{#BH2nx:oj'&ȧq"w=˘=p5 ԱCI Ip1,R?'>+]k$ n;'I=.+ń;Q?FͶ0yIK`%2smgǺFiL^=qoѴ%[+|#힣]Z a\φE#$a~o_7U,PcMCC2ڇ6Z:لgH'!jP}{1fɳi~S;k 1#_=&%<+rrv,}Ա%%N "Z/妸QSK:,}K$8Y^%}0T(:ni2W;Sx: })v+/Ak0lǭ i 2!a{ Z*ôtIXT]EEn¢yù0/M\$bFE3JoG^0_FyI h-[q*0Ըi)hom.JG4s {E0T*s¯SI>ӧ6ed9JOĕS5=Af9Ӓ$d6Pě܎˭Q9&sS|Zy:3O*F.TaOȂ[ Ԓ_ARK/h--ܭDtc`mnP6LRȢbԍ bUR8F`t")y7_)Ts¶<9ɡ5);4)CcdqC~݀}-F9^hrǠ3E{` RfсoE!m?~u>eA>Y 3?Jh_QQV ˻CY\&Z & LF8iǎqUM7COPWRZcZ$/vW+.UR 5tlGr,Wjò@1Wo}AntNijFrFJlQ5T+'|Xn fG ORu7 <ڕIGz(kP vWAEmCjSQmI#">ǧӹm :ɋ?X1HJmEE0hYdJhH/'Uە?qJu8E#lEgLsWgP=~]bY3RX!l@;sr=:ݓNwU|nEnU.~WhGSʷ1y;e TIH]W#0B섀&l68( i~ ,KaSظnL c!5ci˅Kx .N{2 ẃ|}Eɑ{A֔i(F3mϰRƙ9R̽t|t Y+݈Tcy=m%戝W+𪢡[|0 |(j$o5|d +3lȻc,ґⅹXepUEWUaKJJ.zdyc3 18h# wɔ3SxNGݛGP,X\Wʁ=&|(. Y@}*yrtɐXba|ռ2D|~q`wj%mvFpaC`ע.N2 <'Jc6cA ъ"㚆[mtm |H%(/y"ʌG/C$e>usutQDq_O71,mKTw&IF~,)$t:K,_ jJ1(L8TܵAGOY!QlDQLUw uWl؁jI(Н y*T2#[p{{y"hFC$JPJyc!9ۄuA&@&ք v (X=0-L_ ]OBl"6%KXF,"fV靅~>$tڣo.tJ>5vؐ 9z㥚%<^׃=xKU*\Rx / YrYㄝ q,1=W,Q?O5x$;!FZy~:9KSv //6YB!9v85laX^Y.&5˓F A?bEZEyn49_l_ͮ(/w/,/@WXQ>xw.w':o5YLfV`aVt26QIyQ֯*Pt]īym&&)j66VQ2El/fN!7*I2vMڢQ\)% ċ.rLD|O?A qn(H2CKCgpjKQDq$Mfe|3"2S>f?wx?F{ɟbpܼ IgbeNe92qf2f114t ic;| \{ kiɗL RP:\ {i%vM!gʈgZjX _#hX<8mY=lк7DތЙ0]6rt 9 'rAkVRȸZ`WiaqM+ǜ% uGx&7/| ymbg7:zv#Ɩ0/[4w:t CoQ:4Q+Ɔ,Y]D0Dp/\I,DM̕=x`uiiLaFа:!0?SQA)5}RJ8PUob.im@PjhO)dȃIv:60KJʕ+H"188EGdywl&,Y?G%ȗKzTP|UO3mɏh<" #$eyG=;“nA\ 8m%(H5w-(tϊ^ na]93dx(H>[zJWm_y 7pOnUܯUOy'{[8]LF>OIV53%iN8N k9[BTѿ¦lCjA_Kڃ4/v0ʁ,6vA.ET؆ʈtNAޞ.J2 *#m_;W OäTjk [Qx .aFcpч ϲ x&M%`!9 ʡ٘Gy#?}r}C ]b*KRCp,o ,Jd1{ZZ*|zA=zO/y^WW Us1Qrcp_ʫW0)+/b2V>m^kc:'hkgѧzEUwIY{;[AEPFp}Zlp=wo8ς\Sw}~{.s\,+y@n߆~ *u@6/OG ͽ0g>xE7EYڅ?C$#=ZA4AISG#`*[PFD-.k(NAr;}/SUȺ F8b*5/kPU}=?nzpӯWqҭAq~~Z C5\y{|^kvXl0$=IY;Tj)cm} ke6ԹsODuoMz"k;ƈ LWuI(kZF)ѯ7]W44{Tc+  o+ryRBpU 1B=%K.!\^etM3p&Q,sZG8D&;!8<0Qesp;5{"E,G|%N0JswW~LkW;sPQC4}06+ ~q;? Mea+˕Ι !E'"GLҙrt8|eeNu(χ6%irod+ObbSBt|\$>&"2FQH'Iz<%<МS,~&2y/e4$hQ.sՓn( Qq Z+dɈ_J>SDjX"@4-}A"(笽_ bVXv B!*uKC9rB {,z^`>E`Uhևc#Q(W ohP5 M+$.=EnJ:~+ @a\Q4F>7cR^fR7!p> Fq++G?vQ+y+[ϑ@QPg$$.eKi9k$41`^&O4{:]K^gY~xaR=E!Ȥ@,yi+a:' ֐x9UNV贪$;-ԣGMÏktI$З2$h};^ ePƻÊ^&roaHy$3+ӣc5ؑh.GY`c{[$cz7eyb=X^nK7Jo\ajMS'@J1"Lf$-z>Hҗ,rB7mu{tbT4@JVbg9iN@PiN8'1'mNjpN-=U @ο{K=]Ԑ#ae-5Q4Q=$܅YF}f:юKpuԢLSLeȧJ >E|i?ۃFإ/Cb!qE|x@=q5ЂJт#Z0a'D ”B OY:?%0 O:aJ|O͛J/z;;Ӽ_^YrECr5IQ@tAdȎ.;\,=B]NMKS|GvZ+eJD?{@.^#,-Ag'*c(c9a:0f)yk0!n|C}}o()3GՁ4P<؋p;CC_^P&r2!o_a:XCZcU2o8k3zvfh2V!М[YInOjL.o$ڄ#BtYj5?2aN7~P9@Q##ic=ⅵlxv:NzBAWGT&*xhjA A z HiO,#5ׅb| P^S6qAY6_ɴ%re׌ьokƕ_bۦ?XޝZvj*6jI{wR5ʿ6&z?W] 1|d%2L*.J)$&?bjsɫmlw A^h:-Fư֡VvEiD[v]ʄsO*85C"IA8iS%ib[(d~M\ƟD Ȱ&՜Bn Q8faBm؆/zDV~,OS^e&D-^kÔ/!e7er<>:6X҉ʪeVd#\?ckCpM.0! pQ֪iXgrU3!WZ-ЩAj#vօ#ԅ*۷ 4tTB9bVUL"ct|!!W;5^͆|ftUg[q2MFoT{|0ĥ^mq1Uѓ9ě*-#3rryGB75qe*ɷrWP6rSI>2 .Hci^ޓ8fLڜFɿD ` o#C836cb6€2*µaKK=w* Q_Vv4 ILrbC]~JlF4KEH\rN2teq3@퇒<zd0Őe/_GDga-ކ8߈tHޞ?FE?}qKR|iKBoShJ胮O1UG<&-1TnF Oӷ@^%4LSD2h1c[/3o]7?X s ]%dܿѾ|곂"G0|uAO݀K{`]L8#tT@ހMƲ ?Q|ħ:.?#"H۠u6ٕFѓ$nXOWL2(銖$pK/ 䖁닲L,Ԛ$HR>GszC:}JF Df5*kb< @ QŔ Z]xJhOijQwLB!U|@CH sO}{̙3jgנ( xW4$70Y<qOp!LNXa2(d4v%$/_YbhPۗ.pfT% FgZw]HE(O?À︿RI04,Xu| | Q> 0nWc&T$n 3ak :vX{YX;}y3mot`0pY=QYkrLJ<)52-нK\ A)? I/h+4J&Jɇۥ{T5}1tʉyO£cTǽ ,RW~% 1Af43!aј _C#eyLQI%@Y cyM#~`18Rl,ϵֱkqԱ"%v4l}S[pLMTȒ# < 13/Ȁn̋rS[3(wqf{z.V64Z,~8΍WhΥ?SE }pJ١HF 3C?8yVyہ`M![ZݐјWna%)OQХl@aZ1i{Cy [uK"yV!Z5s^JF&iI+\i߃X)-lPbEWZ=k/{sS1\t@jaZ*0^6)Km1lěD7&Dm\CE\ i`[+sXU3$"BW,Gza6fҴ罥vO26l,kl~(HXHծlW3:.}㰕 [1==] 'BzKLPxM"gJzU ~%0HsD70KbقnݍIX %# $Znp|z! 7l[= OG6>ԭ=o4t eמ@IV02.E؊@ +*4ţ-5Ô19O<>/'r; ljҴ6kDOzxK#\SѲ9p+nPifIi=c""|q1 YxN<[#-ugųU>CBAO,l5/@sg a*].$\>x@NO%糉G&.꩗+]6b1j"HÓ-!і*[ wD[rC썉k% I7d k%lZ$8,Q..*+)ejչD/ɔTS+TI#z8=e] j#$N5'R ~ڨM $J#)&F$ I)A3F# 9GßY9wk3@L[Nm#^ jCIsݏѫRRկ-NYm"bSr? 7QfӪRUX}%9b-n[ Z $h^u}3Xڹg!NR1‡GOQcΘz$^֠~?T}}X߉Va~/2jGJ m$͟n$ W‹ka1\`;gѲZJ_$YK5ln+akZXfCcE=P}uݟreV(ޠ֖@bΆ q9lF!Z!C5P(%q(Xr6"}gP(#P0\X]foͩS{M+l( E GE|QCWoAT>Ji>|\-#P2zB[XslP}Z\v ,2GO EW^)E7z< ϔWp" }bOb҅t|nGBOAP$`xO㖀fնrC<jO6P<E}7'OVOuI_vYe>Kr}#0|8ѢSF&}N#iO4kSc^˚9=44-h lR{X/Wp{gگb14VX/9ŗ~|E 4.{ W]* lgZ?}Qgה ZX|fV㚗`opg`"ǝ FHp|D8OdkUV`۰v{'|bX/`fX&!HIH ~1a ,zdrH_vBcΊ§e͚boi.hN<~V{q(@}!MYMcQ#vK䩂QŞCNj(.xbIxCЩW*x%.yB[ $PG 20IגIr70NU޸neLE~.CzXxu(r~p],cAg^NJ\,3B\gu\ylb3L{tZ6{mLcvoIB2kwX6bIP maObQxl *"ⱴjzVPȳBx3d[i\'Jri"!*Hƺ,S8ue% ' q{U'Di]+ lL֤kז)q,ϭ4ҭin툜ih~e+]˥Vn o skEىPn4|A\ޤ[fu?1#~g̽W7''R_eEPWYjٟЦYp>l0EKܻ ̞R(0LJZq+rۉ6Su^?b)[*ooc(͈"euz:t+ 3`n #o+Wƾi`{-)my!("aowxԙCpny\픎hn!$4~)K%dh_"-R̐ 8^ JBI6'$c/`%y@JAZlMF'& JH~IC%ՒQEW?օ/וi늠%Y$}]0 &>:@f&^{xuƯs_Ƕe>M\'\g.qnGI"qBt1aP!4TPSPkybf-q@N|Uԩd|Vyﶬ| ? Ow-o ic?l͛͡a Mk%49NOxO`X[}~ſ+r)v %X//zj!ɶiAv( Gq`9~{!Ph =*!/)'BWu$Q % A tUxV[.Cho[me:@ij$a .#Ww.LʆdPزK-~4sp\MQf<͓u'̲ˈU~$KcrwHD"R&SD(9`H=2+M (RuY.e,"=4S}2ۤD-@pDô# $44c8`9PpIƎImv5;RÉKI̪rycuJS"LMFm1|Lζp1E?Nڑa`.(+VRf-uQBj9LSY=(`asbŽR'"\8Ys4 3-oB$ fcAL,,FlAAraN{9S끙oe 7 `u\ͳI. "F.݀rWlx[ZCm9{9YC FK-/=c@_-o 5u27* RS{acƵx\C@F_4ы);}?Q>CGV$D;a(8ɋ"Vx6k 8wwkW5}2pe 橭!؏ec&^ֆ!QuyWK@!r( ,э&&? (~gNd0^OpKmo=Rs -fQP ,6σ%.|`PO(~P(\] CVXOuv-LyºOPծ{@,M<≭% M8>Ctޥ}ܹBf;ޱUa!SX̘&Ot" m0^2h6s^vnvi7nkE!`&BixC !1_lgrGe"KFEXFΥfubl΅-#MQ:*BF﩯i>j&O!I?.eٖs(G,-G wBgɾ|]O&ۖ݅و]d3Oa)܄ xR  n& 1r ~Nl%?$ۭ[:HMOtB9 ;۵ awwO6buv#g4 ܁Ǫu=(S0uuPDyg:.vn=1?*R:Yl:ܮ+`u{X}fhc$Fi"G$ycIؓϳA(,r: 6 v_Z팫 sǼyvᆩ~+a1@TT#*)\&&g.5I1PJ*eR+䑅 po4[GТL2Fpġg7-J;G/kQCV!xޢjºcY9K5q>AMAFj), =,z!=yx0N2?6͞iK}P[ d߄mK5$o>"DHV&6Qn mHh76D ZvYzz~eC Zx5:tFxy "BHq;vo$`E4jE&+Y'[~p  `˸aїNދVߙ~<}i=hK b 6](ڂh-M5+-%U3Rܶ! ! X^Iџ;v$B@\7ZedM,hh^h/DKHpd!;r #H$ɢ_% Bu'Wz`BXrqTsڼ|fS~\`b` ,,ZMsxɃ6;B;D PqUֆ6ӾE# MɼKuo[*A C҃ 'M{6~i#Ae-οp ibm^P6Jid݈_ SY43naup[\gVw[nOuPW2=CY5y;c6p[bfJXYIVLrț\d `3s0I!AjB&“R¶hʦ%lct{@U:成e Oz+H"H >#kQoq1 N6XE] y˯te,Pyn3į⿦FhfUd%.GIG{c+o_YDmo"yYR}v-v̮f7{zS*܍S j]=b]݇DZRv͟ { `.e3֕yPhвFp?!B An?Q eb^BJ:,qXĽj?nKA8ܧE77?1bjGk /(c8yd4HV .,Ѽ"4}Yޙ(Q9OL ,'n)3.Q(z10na,(,1dTm|t EϨI%J"MF0nn8.p= j@; ٌ@,JPdav6®HMO2ԙïpp~*ͤ=?K]گ/賻w,W^j1–!E GjHgEKFI>[D6=4X/3^%W7Q q'i.`/`0M!I.‛O.qͧgB`5lfu:vk2ڞ矡3⤼39S+{Gd &mzjQo j#u8kx)knҋo4oaY4m܇2$,G#3zhFN e1|=CBY'BX8f6*j7+"֣]7<0v (D)֑T*jG@}V>DƄ-FKDQCnMQ[iВn& ]ZHk}b3ak&\"WKH6do\+0vf gtHOB/ۦ:Df6 >n^m}\e'qȣ%bWMA"/ tkL~k-o$*|IMQ\~:[х)=2I!+MЋY|1 -%ѬǗS_zq؊qPL]du)^ 3^c1xa`沔Wa6 [}5DG!D,:cFX?F/!tlU _:zP},.S[PTQ %:AvkѦ=;W_Q*ġ4[iOmԓ,rh:/y(]cAam b cHT衯?/Z۴cxs;>U(; l(Xo9`wQݽB;WoD $JxoqD 쇢R,ڼˆL٠ץ7heW[b.DcWB{5h[$^XfEd<=" _EX{AفD{ɫl [ԔWaI[KG"7z)~=؛H n&࿉bn} .ft 5O}3F@Aa_dVUdK] 7HQˮ}P#>ya%_pUP;j[ ÙQjalA%$QB~M!o1= pi^ea-l2RDer=){O28eu-3"nVY]Y&J } ,:| 2+Z(h1 9䫖H! KcB}ȑ3]c۪G0hQhiQfy50iWpEfV#TQ)H[-EL 'iYYbהst^7[ڟqTeπL7]î.7J7'J!BhfWVUߜBPxeBTiW6HSz56.͇`C,6a  V/ӥ4^NSr\BXzrR"YN:N3J8M3Sq8Zj OFӧn<$ۋ0 9!XƷ\Ħ~m[?WBr|1\lMІKb'k%%$*^ͯ eMCRx~&;pr Y##Y*[v )o^KdqR;Vɓ_y 7e, @r;;ĮbW%g PbZ|˅-8PjK=vL7*ڪ`_>*-1ErիpVYiV?]קW7xoرntqȂƉ"6c8vԿdu<׽V] tr/XOUm/c-. ^5k`Ԫ:~qJhŹY; _gwk@yqŗ%+w.4Zݱ2֧TnNp)+/[&݉r0jTb \"|ǵ<J\֫uyǀqÄ)^(5bnUL BL,윲])tV9.'` (v0. W6$&4zjAZiT'RȐ%+2Fl9Ʊ_!bfEP X\e\G'-YTmh'6V_f[d>{0[q!8B>%)~|,r;=..33TffcS̖>P*Ewnު~LV"B!Ef& Nx0NARgs|Ѐݚy2B ~\雥f7o>=v7٥M[Fآ̈́S}-|6Yw#ݸosl_r"H\Ǐ/;ʆ9ƏZ'+\ X~W ɇR0o=1̆Kpi2fXU"9rL\{pΔGFtZj: eF֫q#LӴ'8ʆiuOK)$e\S[~1| ud;MBdLWP_e|PA+.m`?ly6C;b-k0 md)nj.e  Ɩ_eU-q[2Z!Y"qi&7XD=E[iGW"CԐϭ [a35g͎9"EhH}أm؟< _"FH["{EL9;"c%sKX[1E-2 {@I?~lC"ߺ,v)l`XUڴb`.j0(ƿ{Oz]P'_<~Ip}CGy+ScGȺ7<:D=6}1  T ;ik|Q 7ρ>>b4g˦i/=Bv8wtQ\6_roVݘ snG~Ivd~i&%foo,X޽|/5?FjDP_ce3Lh%v>نz89A6m lx9mҌe|C>ȫZYmHAy{㹼޲,%@(y(<JLswzPmR-(;O{'aM_\kS:\}c([!O;Fiãz?}v&\mtƥ]!8S`~>1v~t3qW!?;WfzTv$|Ip"ׯ 2s؞_ae5%ןFRt,lL:M]a[zk;FMr7%@ig&l|h.%ÁYd=4MY7=OZ6QboZ20uŘϙ mW3R>8.T}#Gq'*\ݫe8l& H{џ"I=EpcoG,K(SghgQ ;? Y5]n~ \6أйҔ%is&tCP3FBaulO]dzΈ~M.߀`) ͈ເ! 9{)s#;2d瘎0YLڌ-%r)FuLw gWMb+hg//s:V/]b2W%}zL/%r Oa-С=QPKFn zd17gq$lw&ٽglQ{&b`w5V}'`R[c(a<M)/!OxfRn9}Z [*z_pa=Q(^f$.Z 3m-2/Y-,67/NÍUp׼Rݓt[AhF3c3P (y9AoLٲѢp7 '"mB Vf/eEל*ٜۓsʀ9R QCIڏQє\S}ߧJ3?eL*^WU\U#Vb翪bgrD^5A_*H*En*WU|\T18rVWUĒ? [(&U`x "-U\EJdVq޿*~=X_UMz@"`R񯪨Hb؀*R#._(#BR^YNt+JڟJҩzTR<9(y "V>+LvCA \!R$uAw6JmRA@#AkPc;&}Or{]y2\`RǪڽZ^L^V3+XqfL͖9Aؿf3`o+vF41:Cf[D"A,d'JӼAdʁ;wx-hk+\j451.ksC+~f< Y _bD(T|N]ENxgU3Xn>(oMXJj>.O?e4xU+!%A;~9YrW߁~yN\6njn |Ԣ)rkw+vy})-UPTWe!Jo뢒OwʆRSB ?3[-dO!ۏ{ sݽՊAqOjZ$`oıAǫv.usxgViT`Z*proҲ@Ƶ_G'5bsx* T3e9jAo-MePqNS~}?-|٩p}n]Ù> kvgl'yW"D(OcWt*/,c1@/DT{/%~SBzΡcd`|4Cҋ]%-q- }I ]#dD 7:Wp4 ծ`bj~)D| zUy|(z|4O4]_[b*ΏuHo|VLZ6'7e[-1'X6ҋL& tbU=3\NmSo䒭[@iz*l3ahA'K.Y~v)ZvEyZ{㾰 T{#XJڻ*]GFs bPy!E;gTC8 㖧Ԣ܁i"iSػ Z7L `` doy/dɉ ^e灿JM"'A_GJ]_(xUTn)NJ_WVWŬcJ.q0컢AMX7rT5yL|ou&`?-g %Z6Ϡz&E6EŁdu"A̮k${ ]ְ<wM!_ q]e w˦cHvK@,jZ iwaftt( b[c &L|e>KX 觼oT{%-~&ޡ൳Vñ]û> DMkŢg]K뼘m2o~C֜l<?MsI~Y~TYX14*_үl%d?K '{.5מfwHѣIQ?%9["l?f{3gY]/`@pޣ1``@{KW9ڊgBAxr֡^!7O&ٔ UǖmG][1` Ĥ*L#cKw/ [8pGZxۃ{;7COldNwL2&)Wc.Rz7(`gBXQ8Y-R侣!ye=[2GqT"UF^d7ra#Wmc U87:ƫ?/d-^x^qau⦼/qԩ?65;Tg4 7b|GKml++"QFG.khDSVJnqR =EZnJ8Kg(֡O77l.WA}lAZLUBnV}[F/l9ހ7(F5 IՂ[Zbr0W4xHY9/EyF PML0&nh +pEYvn Zi +fq=P DOjSM7[6N;e*gq`&x?Х|,p@|Ԯ^4+M(4K6\PCNX8s;oҊ7?=:qk Һ9R}l˦e a3-bTa/auH /p՛tBS#([ SDh}#tWҁ m 1w:ޅ N ]{Vle3%S|8`K\j5~DFYu%d8r*A:d.'&֕!gF`# .s5~?=/Wc.HO%bb蔀 )Ӏ*wcʭIp p]t Th&-走(T6h0Rg7IwI8:lț ~>ѓӠ`{ULFYT&'^EcyxؘɋA<-Mr c-Mhpgd&MR=ɴʯpu'vsqZӻ)5bGA 3ߢNc6eWW4!<պ,w8ev1)'C~X`6bv5b@VNf 0:Pp! 3#V`0Q.0"rX jz4bȄ6ۥs@ael.ǯ?8L(.}'G]7/EBh}It{YϺ.n$&A.dY_I<0:Vܣ*=n$NaqR~ 5PJ(C.DŽ^_r*\{4d(|:ۍ](fv+>>=YtwhL--LPT:˭ DK@9IÁFN4$B'PpTAfty9M_*BE!X eQbےj⹬aYdsҬÌ|ؓj'>ِ:pM޳nė͖%B8>qK?g()'1r6M̂nG=?q=E Nb~x0)r9y2 k.;A -ѺMAa{U/o1 1"?]b <℠K|x8 !8t*6f;qW ^Bv.mH\U q8.0]Q$f6*J$++.>($uJ"Ǐ|DTIļƧsv˿IC k<2(.Z>ݗ]S\G;R0Ao?{Պ$8*1%aM&?zCϒsNkENX3+>t3}Y9It+iv1>,&8. )];Qg@ O֤tA3@5nS_Ke(FC@gtL!װz8v;8+KRL|Cmumx 5 `? 33 %P#2gяGc BUk^OX^ B>!FCg^Gc=$V&QgCD.!Ty[͆8b_LcNP/gm1)rN>ڋcRG~q~dsn>crZ} xJWS㤸d/$DFh칯N4ӄ"YF) CH~gheIZ}M tO+&_u{1}h+wX+Wt9l5rpDl{`emѺ:̵ S/ؘ]E]'¶asoPgKS~Բ:j6]Nȉ dF(V0͙d| iUłkOfJuy R+ kv9}=pbgk7=/7!`۞u إ-~bECB~F G&hn LZfb&u?6OQ'ɡWa~B[3(~*W~qT,^I "[cHyH[;Hp]n`껆O76oF0Md3MN P8;M[M[mqL? )FL@= 7Qlv}GB@LеZ=a04א>xCIv=iKK6F=ͤrJ)CJޅ1>>i@}ƣf͝+cZM!o9Mf-"=8_YCgS`B?_/mpXqn°]8`*C+l|=jYC?,d5SaHPh5@Tetz,@|pwQ<>< e7lɋQ>Nu_NviNPV0,+?$ l3RT!(,=jA=t4,Ve"@ZOXv]Gcallna+SGk M߁3lbS4rPuBrΎ2 νC[#hfv(z.;xy,KYzJRy8ZXSD8pXtVE}h BA&xV^y<=}3՞~9Ѹ!Ն?G49ɥuչ lEϛ'y aR)p0˒+335暓0|rBa FfeZ`|v>Bˆ srn0o2%% .1 q@1,!Rpq [1!Ճ)_Ģ>MtKdTAYAeb8lMRJ+ h56xelSr$4,,@^/ Ƞp6A9 JSM2˨e9ZQ R:Ħ˥mIl8f>,x൲,?zQAJX㑘X9j?B,Ժ{c ZN,.gنҳך]A3y ~U!]]J5DϢ '~tdX$S> 2/S^g{/ ֛%Qj,1[.2 g)m΁ZPYvD٥iX Lʓ4+_)dzKMWĖNNqF BvŮ TBwفr2̜@—meȪ`.&Ҿ4-D'R_0_U  qVaP7bVa~"o'iPܽ7jG>qT Rwa,T߀f^AWZ4h:ә[8,لq+isqW8 ᭁ-BA.X#3bЂX-"es/(C9VNj'XcWroJ e%z*~Gc/ XJ sW.^.ʅ_ !wf][/)Jt(P5ma X5 k GL퇞wԏ>ӡjpl5Am$ҕ 5 E \wH@>$@p%zRxv3*$AqE'|v42jgD&z³ [CڑHZ}@+)eq'"WfCq_Go,ʖ_jJtQ_ Ar^̊K F*ƻ%pk* 0%f@U/Њ$%KH/ԟ4}*G3k?wt7X 7Iq: s|jf u`}o|r@:z[󬂶Ɉ^6MRǪ,f@YBIB[eic866b?83'@E 7nڥpw4~IZ0dUGs}Jo˳ a@ HP|κP 2P2QѦ/bn;h;l7^m2Y>#";"46n]+)%V^sUQk1SDF՛۸"ǝ1g`L5.-\ovi`Y}A$Bh63 7WY)ĕ_d۴lRnN-I վ~L8z"NS\`m3y/6Gɤ]\ _M.3}FB!Tuw6F~a@s4Fɓ UW͛5X2Vyi>6#ؔ,^\gzQDxelas&;} t\ @,g&V{섞|w61z1}<'$xat8ܽޤC+)M Z TA-՚g?' ԸGk86!Z:LuG(@ʺ#GG;x˾uwho6D f9GXn1[a (Gc3)BDFP~`<}ClQԄT]DjDKG5$K_r&)"ܫ~ld+$bOh{p t Jag[ MG ec۰whi6&Jt̷8[B{fdlشHDҊV1  mH^Dpj$!Rq+2q|{rivK0x K |zp;=PWo&nЀyYR]vey͏w,v|MqԭTgUwaYHo-b#NSF݂ @ʐ<Di|d۸4((0r2+IƮ[CQou "(S \GW#Td*)uhŁ񡠕hu{v=b"бn  ;R r@7xqȊۊ}b I%=$f^^wdS ^0mπ嶝um}Q4Np`?c4Do|Q P{4|C9":,f-ːL@p}4W%B[LLqiLžEj.&uc!i! ) .4H5VfQ2X$ >5"2Īp8{)V8ڌĺ&,ɟ waWf%BNޤ;s Wħ2_ F5%aB s` X  sP_8X=)Ap߶1H1wh3n4PХ/ "0@JzKN */b'oW쵗e& r+6.ڬ2q Mu6a:dx1]Ed^$X2БT^6=PaBT-wAgPZ \"Udxl l@<k2 &LfieRfd1;ҫRg' G0>XNJZ{ EamN ϟE236o&rGŽNʌbxīѦ ]%' RY7/fzRM{A0eJtNtmMԿ)t(,uE UIt;7ۍ_`:l9bSLČBQP"z0OO~jO+uUE&a r<;Td̠AکaK`}s iJy 4OEyj<O(NqiP%4Iq9!K .S.Q!"y;@@6ѧ3q۰=ɏpNX h:83}Ҕ.hnId#^+TX(T2JTi~NJ|蒖1ՠ&,K310E?^ V')~!2YnQu |&}N,LhۑlndH.'a^NbrҮ35B 2ik]9}DXB m5nE(EU'-t<Aƒh? F;PKo_moWoW%ە.(Q+ӌ@)P+ Xx]5lvgn3}"iK&0o^͟7kekڟGjA30oFR5trMCTK/"z8R+)׀ 9LM$h,bdK'sB;.pݘ$ EL0;*Qn/U'VEi1#UYi;SX*lʉ-咓b T_*2͢~aDP[X aRD׍ !u,:ge>vO.,AZFZ:*͜`/AEŞ;a..1ӫbE)iՋ)=;Vyg2R';R4o!KWBjNjvUwx}~Ϣk ,{ۃE[nNQ+u0~xqn}u {Re[VuX24DSX.|kdX7b+hRD?hά@xrʕX}qC/;T΋hsF/r`98ʼ9ER߈> = "`ړЃp_+LL8PU&C?b`~H;HllpAVM?D4r6ExiysAVc` )Qt]Gh y< >MovJ8` mxB5E@Iic x [EH8>3xxQĉ: ?_9d'(.7o!GjW= lyaH]EtekٜB9;f#+#@@ @*\R ދ>89ZafJP13^M@|&9u[(U3Hn?,K 1\URzBប>9~$WC's%ALԣL';3|ɝ{H\GAByKҷtt=i|b/&Sdoa.PYЀZrgQGjJ Jwtm^at-;SԐ5DSe6MH0Hp Nl;(gn<7/u}CO (x#m0MA Q0Ἃ@ZhѤpeaʃ%[Ikk;2H#Ew.be5Z(RDOw"hIbD41B DQ^H HM6?0JW [ZXlg"aG@>7hgbonB" +ZǦ"8+Ff=* { hmB;ۙ-b.%tNHuMb 6"MGsܡh8 R9As3P4R>+E ` ^aEYvIʹcm7ߔMf?AW[z'\JѠzz{8Aγ s"^GbƜ&>6kY؞ҍuͣ鼛<|gR5E+rGSȊ,Q OPd9}tH3 ]'4UY>:g X%:X{dLb=9+~'o2ڹUr1]2SWat#醣1^hL/N=bۛEP4]'dݔ&4SY]X1hч=< ɩà7F+AR jKL}7;Fg (\pH@Ԭѥ1ԉJDfa` ZZy"8yC>X n!6Km7+Ǽ`hh+"d 'SGC}1 h%%3۱:@?ZͰ{A T$PWSYi.im+ ڕݲTiK+Am+g9/9D% fHz QTAy==ܛ+S:_C]q@_*ɝp?nt ᩴBѹ¬%7<`_x&.tcx.Za1_}p@Vux*/ Bt=]Aj*e 2'OYnābxk@Og X(CMe/}IB-XQLS,[%:n;vS觑2̥?lXLPfNh5_'S7̪cIYFzS/zh|H.G(:Gyxg<@g6z1=ol!S~_ezO[) d/K[zzXL-w _G_l~>{?ϰȎh۔v@&]hzWzKЫS C˂[Aw`];u՞öo~"=k(GP>FQ:KcATKr;OrނH\=:/|Wh ![zP1+*y@>( kyQ\՛gPw?F"$lVg4hݣ?f8r*n9"D4M'.G.,"#kX`??ta! 3oXhEw u C/F%4/ɑqq?;Lծ(X=Ķ9) @I~xC,Nl|IVPXH]CSUO|(lO`-,2] 6X4I˽|NC@DuS#eK(ԫMS++x-Ϥ1 /64|`.5 ]a.C>kS:b^pQ PkCBsi-^w';r@:dԛ,T-3HJwHh0ZyK F~IjQv"PP 6[| S -ݭF0qEL,:a!1LSL?mb'w1dmG8)MR:ʛ!L*R_5Ӿ57Տ amZUGU#̢kg #ˣG '4<7(y(7x:}u:!ͪ&ζf0ưm|!r)OtbxWµ|N'@'q|ۍurW јcPυ=?餂bCJ~Rlap ;|&gPYh-|1ᓅd!q `k<XK-4SZEB o`K8YhNVMV=Z_hB D5o HG ٲ9;כ|cT@FLgOɿeR%gk!\5"[[cN~ bMlAF}#VeT r_sMƒ! ayɶrxT+يN!X)QEKcz.|WJx{R_7yku?:{| 6Um5 I4O*VSxFЩBbiG%nbR Ti>HQ(I=Si\뮢o&KjQPX)b\wA-lg/Rj{m{:w.v-/untJh[s.8O<:t#&JOg\86{v !xS)"9C|CyaFo.P"GdfZ&$X0+Dh:p<INz ;Hpt;?źMb?{mG5L-+\ ;~.kyω_jIVU*djrUE3O(Tô0,cN]i5Mk&l[&eB;yb=b7E@/v DZC :qcl9)9ܯb!ꯀ1\Km7z\,*f dmGIki"VWyU|x香AKr+dQ7́+xO(qF! X}M!)` b]eE&yd셣vQ\#c$agG2o;E1 XX0l7:KaW+ ( w6큹t;u;eXR/9GPl[(HDŽ+S)~a9}/er79 xܯHE9Ps8JM&74wY\۸,S IEDm\=DX'rA%0#͇@*\F5ILL^ m߸uYy;0 g*2΍^OdVhO3HT7'y TIv2a塃 )K֬V2}F>ٖJ.NFnq2y__,~pWI*M\TŮMw I6Btm|Ӽt!*^~C1<7Z~ p ~/=}"}clsX ?=E(=+2=y%2_y̞vyP:ZнPJNe#hÅ&nJͰY:_iy ڞl@;!aZ+OD(`]:vA *'wfwHO_ B DA05q9aC S6ai +w_ Yc]q ,c F =ǂ `.ZMƏَ`?f`K3ق6>p(SMS?X֩RZ~-J7>Œ~0d۞ lW o<݉kt $b{d^zyOAF&^ 6i$.(~#Nduu+mR5Qk|_LJ@jy'{S*طP k)Ho Ƕx3BYLvUKD%xo") 0yUj ~c%5T*ǿx>W/Ra*VQ=~+ʆŮ+hj) T?M}<2vdnpU142\CO45$pjw`\ } NB$e ?b<5(z/_R1+XN+75L{G81"gd<Hc;m`>t;;݇b$X_9?=q]Z)jPz ebB% tU&Ak6]WQk+%Y>O0f1؋4Px/- 4\1vyPUr4s܈;al{ĸ *80DԞSrQRG\^WنAuBl]l~ Ձt@W{t6 '?ew hhwtLVbC6Sw bYBJ֌ N3Oc+CD:ڽ.|~i i xhj a{6c)>WlD4_IoqnZoϰx"ETSP_U xwV9ġ2`:LFH%i>;ۈ>l@0 ߦ^t;}v%Qz|)N6GrH@#yL# Wb1݇4⩰SwEV!#ɝJt/"LF(38rS݀4 fG+TV13o{pϸ._BOt/FܿaN5.ꭙ4y-h3\JN1jy݁ݎW&/aTuEL?7R+h@ONd~rwWb=Vɣ?]5PΚLBe)ڧUAޓmzQTn7o%X\*ԭ.t?V_Z Ek x(`d0s񩈖GíIrJ!HU[}4hPf n&ZXE& Vjܛޛov[,9Z.K7*Ft Y>efF`bˬfDayHj obco3brEцQnL|g.rH[}˃o.&8sܞ?P"%`Ul'kf]2AY^\ D#k, n$p"M{oLT\Ai b!->r)/wߤK 9j1gy(,?~Y|Wr[~YovR+M i&_*Qe9i\:o9ԈgLAYԺCoC[W(wx~5!O@}Pې?e%4k`6$9>57m'4X-@Q>Y<}}fዑ ,C88]>_FX ^ t0fT 5Gw,j썵P,3:\!W$̜5ûgDf%lVV:]Ӯnq@*}{`tJcaR꾣[yZי']FtXIB|`i'NAmq+Էq5jaӷJxֺ6(4{M6/q6[ Z0hY\Pš:C{޶Bڪ$`#ԯJ(QjbKCd.浴 RV[*jK[m) -A^ yH5#[.4"U5tz_ ]n`\}-4S%|GgDIxu -_cA"µ])CO_q@{aw@`8np!c+ȃfxe]}̈́'zacS$.Ρ=)pq.GXH|\3Eıb>O"cCF7ނ3x3Jx[cPaEc@`7Hz?jQڍ-|r0ۛcsd#^Ij FSK+7na qv9~L6ZyuNaBPvaڕ# xcb8$"5pT; G0VxLrb` b=ɤd:ɾ>5alY*U:&+;-.u,WWyY#?ew`YB>^'zw$>o.mi ^Tav3h.Q@MQE}"JX<+X!@S3MzU6 >)N7$ N'pmRQ'."3\hKm.1Pʹang3?&1hr1:@ R$Cͱx,P6 nAj͚5ħ"|/*RSOc.Bf|1AYbrƪIWjlwLwCH>3qҎ)}ߠ#vfL2W[vrmE./ z$Lҷ5TutѿTG#=Ri[ʣN>E?>h4zT2Ҵ˙Q <ӽ=q6٩ @4 B0LMؠP-~m>W LRk`cɈ"0ڛ 󸱇}P1֕KOA׮9?]BU*Bw\*cdT~ U;wE;%dX/fGae5WX=۔;f\} ( 4q GLD5b"'[ıH L…}Tn(&?E-F7)v¦p2͛ЉGL͎I1^]ø݇?v`QOf/w@m6; DYi:כa~3& '["VȿtYeQHţY_cR>N d+ij*ї\x ½G "_rk#u?ڵ@yjzve5f2.!vBht/|NQE>B7my&jrǽd_C}v|i̵`'Ԡ8Ulxjb^ e&bNk>d6d}0Ah VD5A zJ HԷ ק/^jR+ܴ-:^GٸDAI1L%_۸s`Jk#9^3Awc\Aa]i,1(0IBV #"!NUY}6D02$}I8T!|XbR;<_ "}cvc`nN5dyoi=)Ɏ2h/&+W>滺ڐlmV1EH|ÎQuZW.[ ~sdQ6mOq꣄#GVEewxbc<_9ߌ^FbyZ#:x5vr8b#!- r;>0&zX/;>2 |hD+/wІY7Cgp^%`TD MdtWFe/0fFcjl Ϟe>hek}Xc|!J4/F%ޣH=7:ax(ZPɴ=rXLPx|YhCvWM[Vŧ(| duwK?zeP JBh YW؋i{@g{\&F4n诉IQL lW]ve n|W"-N717ˊ 4=|Aewt d*>r\ڝ 83rSCC`Ju$j1fʩB(o}JKVC !AT4uee:$LR}:sѤT8Zܦݔ(=Š@UzVGЗAN2 ?%VJ)DD)Oh"%=uR}`_$Vj}`~-Z-#/Q$䛕pM!?OGiJG`2<9hFmm+w2JD҆]9]#頞 Nimsnj]҃A\ν,+O@ l(6.m\`,O|ړ {)> f`BDБ+tk__EY%pwޫS,pAl,,+u \~χ #aF4b㺲O2 5Z:'L%itUd̒` s.jj,e)&pR!6oLC6bMR#Щ&*32|ۅ]OXKE\`MbNpySzdծwĎ. sqTҚ^͙Ev^d90r`362A3 iInb_(WJk"5K((a-ȥ?@|*k4AJt=3Aw"./GG⡁ dpM`g!6-z޽J}e$(w|W=&(k?t~lT5vѥf(& B:])_#3.ۼFf P{}ip(m BI_ދeLa='Wځ[*l :DxgCN`aJuDYӼT=Ȥ\G& 2`ʆ&+'JfnwevwXk?=$4&an Jׄ!\_. -@ R^b{'JS% @EE]:evR[@ypFK?xnU]mAf,/G  OhEn܇dqRҙCV9=051dX-p\L27HI0݈gbߓ}LoSv3y0&m#??V_@0Kqd'uyꀽ7 ՁM^3pSLHD쐶0cE. _-@M3 *N#J-[z4Nd׊GE,Rfv-GAt]27Bԣk][񢼀e`26OOUX&kS*JD}!DooT?ŷ1Ⱥy!uFHl#3l`L ;`PD[ Ce5bU d*qӪ^nm!6+,fNŹ=nАw&q-,։ ~~ta{|j$$mYlYm>b5ʸg@?̕{%'Au碍g1$x(t:Bhƿc/h` pEKGvk/z|Ax"L98EW>'Aі[~U]&=e]K^`)4x05h0"9:I?d04U6 ;rGåZDa3߈GjURf5ܨvUޘǧQp}"Ʀ;6 +ct11FbP F>>=w-OY=w)2&M {~_|U .<og8z>2&UiXf"&MŢTD[p#6r*Z}ct3Zfj?c cY!2y(>z;W `<.3W y}]ӃtpZJU, y\vE(T˜p%h 0& M8½]p_ ?FQ~V2]so`)>t+݂SV;aBN&R(i(j;?'s@&凸5yp.m|d^ވ~j2?pLOijӴnNcs, Cbi$EgI#Idq:Q!Ӯ5&Q"1cIB7O]d #!\|OH$</$Ys4`:}0(MboȀόEx-r 0cPf&խi~/05"Y#49~;Y~u"A{zAL5Rdc,U(Se6nC k8wxUoryjb'vPPIU}2l:2*`11Q7Is7c=3ݽf6o::-(M{dĒ^ QN\= 3;7 N 1I""xBU58WX*# stj[.IT w&ЫU#p@/3r5VDs@SON d)Mf4/S'viM@ҀMЀ!uL1s=RuO 2WDp zckqO!It`%=uE6.<)mAoGnWn#;5CM!໚6Qp'=(VcRNyC rý J[m%CE-?ZGDRy$IGES 1ѣ"OOЏA2q:K~G\[ يK_nk6.&c6;Ide;ǚ~md`bRQԣ̓CE+ũwMW18ܡ~ns^bwmw'FZDW4mok{4ݱ [vgʆԠim٭NQ#i^j~SIyY056k^C쬕^q`N2 /cB$"1RǁSk/Q6\T5ꅏUT1"+bTZHz/G%r+N*:y-v3PpЧQ1*ݢ}+r- 4Ab3}.^Ŭ\%.S4{&P$k(d ӄdKL[y%Wyjqeaj ĕ "V\e0u>kWU*J:/c)w?P1B +[P?7Ɵք6%-A3;̶v#CF"Z@Cέ܇ԎE-j.rr;w܏ bfj`18Ũ\TDhˆ 9lB@Svg̭@ G <;2%΋lħ *2A'; vĖnjah惠y#U},Y{{ z,j)w cY@HZUEw 6Y]-sm9xG03Zz P-ʆ&=Dۨi&> Zs Lѕ ~L_rLQp}WLv^ ҃Ȧ.J:CmOsqR<\YBOcY LJ%Ot;}*2>)*PMj] K4IԒ$_ S/[ܔ9uSA*!PLz:rw؀  o l~\3_DAuM0ewe1@vurS1NաR"!E! AuD([S œCٚ::ث})+qĦmjjnj"7i)h&*tHЉ3gEsHgֱTDNU]ࣨ}L ,+.BUڬF͚h7D-MQ"B@ɪ0j-Z[Q!@BUgYQslbmO%3}=Ax)Dxb:猪{nW6U'qZ|xz`۪)œvuUnRڔ%A-6 0?k"<-G<|W _oWjm SLO_ZwjDcHG1 ,n=r`AWt)Qn3U>7:F+ 7Hↈ3O'\: 99Eܥ'C973KT$ʍj{He*DdC8DĭbJ`uIcYլ1/8@ЀQdɔddSDD.=cSDǦmsҪqߟN%^al`-O_%./ AXWdV=p ؗxبp).XCjbxz}}z`1zmMCDY\iXcJ%t*E#ukX(v.sjCM/韌(^&7 3FiOֿK2Wل x~ë>|ɭQAĥ?O` \^JTC e\ ֿkq"ڏ2rdԊWzؐ:xp׵0j#eNuYX jb*}̴j<Qc Nxalj߇I)~\Ժr&CH3X). }Fu%UWV/6BHxpfB u $ ŸSXٛy%n ):):f:+Y7? ]IW `f0IdnG U. cnPq|p=<^a<"L\qp$kZD߈)Epl6).ERgדPREZ5T"0"[3kc:MLG/B}zH4cDWW,degpGM;z+hx@qc $ ~}⚫|N*0rSӂ{/ߜ_o6 ZOQ[pS[ցmedmXKF1nb[dCŦ2A;r3 PDW+ДS4E WY$W#(1&>ܔU9<i9h^YsEs^sм^b#$/F go7K!ȿ۶1L笾9~As9xN6Gi+䀆~Cs\jq)1gG #N$l_}3>_뛘wt' 8j{Ӝa5`Ǐ7jG|?dZ&iI屄(dx[`?Jepl~RC*I呐PwW)Nٰ0S9DZ}ū&O9[2ʫᢌ%>yXT'$g}5>z DD>834Z\7,c W %%c@:f=nU<ah} & @ieVl"Jy-6WÙK|?:^Nx7`+]є۸Yka#ԭ)`VT^.#nP g-}<.كW`30NO1)V`+ c$NUq{2oc*|ɼYBT &/,b_T4&9ັ+JF{3Ǿ gr^xIF~MibʱD 3h&q9]Y5DLvjOCy--KE$ETp`wf3 f6 !ԝ<+ʩ8ʙtCI7jEb-eFB l`~ WcpЂ>g ,䥶]+5wyMwTw״uowͱW+vvb2ܿs6 CUcw{#R4ah{Io'(}7|AP]LFS\sΠ燑fh+w!i 0Sx;8Uƺ?^ڈ޺/m #p<& Kg؈ <|b}FK<{ϳc1&l=i9lĶ]0lDTf f-*t}eL͞(Ҟ8qtAnLDyOuwai:4K7[ć!v'I6nqD-Z-c 4(~4Y\ġh'p;ni1.xԝ7)(/h?bdyG$dBdSPm.?4BfaD?e`'rb<6IE{&~{KI>oݼ7uT Uc K>a'0o1s}:~j%ôbHʃA"܋Lq-=v+|>ŧU zvdЫ D:yze"z2_9 7)ꏅp$IE}k_7^%J>7bg?N0 _vޏG5ẋLl!SB ZB|_/kd>ӇV8=o鹓W8Kp X9ۏb FAJNK;غXt?sW&`'Ifi@Bv5?bNineWR{k&woog3T 'Vۂ+q/O+C#OTZ~atOqiLC}Q52vj#Gzӛ)ʷ+g(=)|x|JclxW~5t8s}E=v`Ӧs VR IF .u Pwf%܅^fHbpjcoz/ϱ{6G7+&]rawx}-"Dz©} -T޶ETt{YJm-͛?'.](՗x}&+W3:Fp+Y(K]`?{PA:)} }<bodx#JfUh[/P-ƴ=߶/X课Ӎb>ke#`o/[ L<Tccvm+a+z6Ih=||HpN׳ȩ‚{6^HOzdm/쿵ɉ5$WA=djzaPn~rix`$z(G3jR_W-7U^X}2 ,8T`>|4o.XzPzތA5 ޅ,AyP L&D=y)o_vhTlX.J0lp# & hhhOikHףFhZѯ%XT(R Eb{ND(EvDfuci";`ȅ$G”Te*Ks"G0f/tW,U IC_J rOuիS`;eAX< m=@i8 0}?XasW0JW3Tl$ üu$9.( qq@s˄N7vjр7 k;ȦPi碆,# &4mᵦxOjRCcYD  } 1et\c瘌.~Dkx"0,4: 1:%]`l|m$ƾPNWjY,@7)ەawxvҊ5 HW4_v3נiCMff7b +])j  CHG&hYnxS;ӵ7R.^뻳ܻ?=U#E'm[M()jhc%g44}a̯"svtS-uc|^rf@E;!%Or Bݓ<_3巍 ©׸K3 ܔl?9U@žl&%V瓗I61 H2'[t`[bWw+9>-փe>PG$Chb;ai$丫 C#$n RLI[l7avߘ]JߨL0aF:_X]k/;Hl 0ee~L hr@l7I$Eyr>p6*K3>%i8TCwWF_arR:Go5IȌ'/sܵiJ!Yb13_ZBe8x4~>~2`X/Ѕ>xKW e\eكph@dsl>%; Rt|L8]Kŝ.ʍ[6"b;b_hFR.k1cNnWL/v%3RN w,zW=+Z}iG@WЉRFD9)]+ 2oxXתgmBwH 5.+Z\Ї ago6j61V.?POZr()ѧ@94TmjLgc<圹Es?1~ldVu^;k Ƌ !oV^? ulw,E*cuP8g6"/KrbQOW_61^ KZbՙ'`5 -йBхJ>XZto}|+[.+egma])R<H4VgF;A˙='L?:|IC\Ńp@Sн~@1vzrWC{dqLqH.$KzVzdi3;rNif#q߁2o9L&RBD$KT[1]OB̗!KrIإ'?dƑ?rċ(Foe_hXDz9,(XÈGQE_+#'uX @|7e9n~&aI%w/q~/ fPqM~+PSlgؘݳ0"29@@(zuk1owI4p GHfu@4!P@ĥؔ|9%$P;v*Z#ZTs%(kNG"d~b^l2fʛp; E㜏Q]i@0At<1?e'2I]QUtFP弍wAWeZWI¾.SXVz.t ݹqW6y'類9p"Fo6h=:^v-(p^qwIQ(z/?KSA wIC鵈J"K?MJI?E.. U _a9 Xy20^B-1Pg }[xG4Bŧ P%3%#J)P*_)l҇AH>aW!@I4ةϹbJ;#8͙ʼ yv*†/3IHemiek7Ez ^__K5oJ'C:ne3f21f9/T4fQ-\'ORKh(ELlNg8Tᖠ-pkЊ+% XU=.Xާm4\۬$h,] "~U)W59K.?( d6;gI{{cXZUl pj4|2G (<hy $soYhsW(@q[d]uūŞ1tE\&|~9|2`N /bN]oI~,=jDq5(%2X+X}ߝ0/EF*^=N`2P~aSxlbWWѡG c="K67TJ_4vI뮁RkЉ6zU/u߲b57`lzJbyd6*WKif󡌞4+J f%`Z$QK-lwɜ뾀@X|T:vN Xv}V*l .?fOl~%MI4 _~L'$= >y4<((8^vp(X \AWTW5T ;̱gAG0\+> dB oNEiTk}_{\V#k +@/OYTub&LߪKZU0(AQhxc:tx ͅ@,9!R3ט0V"AU ER ((#+M$ RU*'s,f*HYPO/1G  \K9&="K(GD} U뛩Ka`((W_d,U!,UxfK1ć Xeg#ff66 ZOp|*;,*è|.}3e3ag_d*[lf- &[\{&@9޳)*$4 % Y 5w'Fg+ _{p}{ig^]C3y/Ӫ(ݻ1I@6P%fف;X뱧F)'C~)nz񓴍Z}UM}FmBh(Yr}!H173?tkfD 8ptS-02*%m((;UTsƀ{v"'&GO:qGp|,74 oފ~ۼj.CE݀BP{qCvNdΙ;,55r5\S?Ĉ1~y\ӹ45E0LRsmy4ӻ~z;eI3mȱqXտ2!筟>1Mo?nN1G4dj#9Ȉu5񰥔UjfPpm?ͻ)J􃫙?怷nV"Y 3t) o(-_ԝYj6*(75;i5ki~. wjG惒rC$i6_'͓52u Ҁmuܞ̃*WFmNn]/O[ycJ?lxoG 77NX,zj{-#ί?n wMbb{ VMsBUCżNm#2=+z-4UN \z@E.~ صt}OR]:uBoM!Dae]Pg8CY#謹;6]?M m@Z hbMqB[Tb}c%z+g|{r_>k~?:\\w&gW#͒&@k'q.r QjG$a(:FUaQ#<5l?$  Sk|Ƒu}_M6rO߉ oUVS.NP~o@' R< W={@KLo 6z[x6x>`1̏@y*KVtcj5 v*X)7#'(Lr֟mj<И# @t- @t2.2gGVcyj"#в I lGsZ Xś;+z#^w=/bicnBz1⏾e[ Tl/}3&9a_+ %8 p6;$00L5r?>ZBD^K:/. <.!#7JVI]b(ւ06Mǻb„C_h+\櫞' ^2_}NyU4+]n= #XBY!xhĮPH֝sK*@ hDRApRGէ`98^Ш >rĩkpXt޿cAܧ2mYKzb2-b1;<:7k.Eq[pINJ'7 GcgB`-3 vG-xW|⇖Ēw:} t`f:^nQzҎ_wzςNŪ4}rүga0±iJc[M2_f?`Kh<&:6 gZ%;'2TeD:JȑܮfRO <8\H1x)mфD(V`a8Z id5S$FY7D1\0 ELB5_l(-E*4wb$%#'3%Ss$R'n&o3 }~ґҰ\R5;M٢i)éG)e>2g&Oj,6FE}f),8B/uyl}Vmq*@n4\3(2R=Rw Uq1mP m֭bǿY(yjL6١yN诠zlh'e՘d*tu:r^ID/ W 9@GB[ĉ )pZRd:m+`K=EqbܑPol9\'*Ar*Cdp˸(9T jlƣO;ȇ6&6֎"ZM<8{/6:-8lmt64rZCtpu*P9bRʱX6+Jpr&P9beEpY= .kۈ]j^^r w#,n !t>YG"M &ȅ) cZ;Sٚ {{׏~hmZlmIJn-rlhHc J7β`vMOvYXlD5S@\GjY6ߪkW-M NϾ=ah kb;MC5 +ҍ+?K: ^·P2]$+(ci*0 BOtQju#Ҫ|!("tGY)pj ::BckצU9M{w&"U\3Ն2ʦ){v< j0!G#yST,?eJ/9cNgtN4E/9kU; cAN_vT7{e9.>Q_OLCIxOnS0Jt+n(y]LzbY\٣qY}f\)[p\U la@u(HJ} _"p }A`4a[Tu!`8?ЕOv6+ Of&NWB[/nC-Hhq|LQ&}cZv 9 P#)7k*7uRͦyS yS,6@GL3fn yzr\铒/eLe*Lis'FVMN%Y?„reFxL٥O@Y)05+]'+ V+Ƞ0z}@O-qSj% j8]7H7kv56 Kb@7./]X-g)$+`L:E|umހnL\ `YhXqwxrh a=%cgcr:*}S x)D5Wfl5s尞\VtA (m;%%Yۡ[; ؔ&Ӷb`T*8]:-g:vUpd9yuv}: uY-6y]ܢLt;1\סР'+ֿmj*`ȭ[͡aJό ֜0A0KNÇ;sB:t v}|Kn#{xy Q}mnOz3_MH,WIT~Zq]7V?@XR^-$"hF^d)<7[Vv4H*9wx?%S\oqMJڳi1*}ju2|fWF>k8}-hhTONqM&O qI|C~ւ&F>Űқ c.:,G0;YJ0~͓l=VsKmVBuZ"+hi^}BY?d%!.L"QN Nb[%tsT1D ,y0BmZ>*lE МIR-A†QdMW)ie15Sp[H[@!#p;GA3`J\Ӊ6h@Q(, -7(2 POIաH&y}SbԜTN8U@W>B_$v) QGzp /TfY鴪0^kKdL:KJ@+0*ktF>BImǕOYNMC)q[ƫU ыlNfVG>̝Um5߽tOu%p VO ґn4><5;&=`!Rfk8~O/wֽ /!Zm}8̤ xNIԸ~ =t?~PϏÓT1JV*GJ"!^j!ew| s'g `)HS"ꪰ Nnja^Z(3;X[ N3 $ WnwSX9/3A,%dZj='E(W0)c` t8Q_&t2" M' OŁV,%q<汸R\'uDA^+'V+v"Z78D;ԁr>]^MOBjJ]}R9R)|{^f-N&Y n{BCT͡l$xdfr36*ļ6ӍyzdNpa#egiSJcw:`ʢHqJoi}]Ď |NZtlo&xuLhؖ>OHz tR `BZ}Nj6;(hA4X!aGn8W@kG$¨8 ${>v59P\ heLj~I[,5MM%WRmexlT;8?pEr@* YPP[se l,_<-\t$гBvO j 8jR'F3* s4+)Z-گZαH56ubo RWhM١ÛCxmM.;C#YC渊\6ZxOj+v*ǤD&%ru/P"@uS8*mNQ^*,g%'$C!@$!4m$i! ^7a^쇒A3I'rt[4g3+cȋRA̿{hz<M?;h1âd(*}/W^ (*DۊaL3N vS&ZT]ófdKlXW;6-aXx ZPm+5i&00*@IkU: ծ(2KQi?~ؗCDo5݁Cs*| Fv0wHU0iM+nDcb> gJy@L_$`yuƪM^=G2vxYuVo.e ' KӄIlBb}/-~=N_mU"y-})j\ݰhMH2D2/](qamx4 {}D=!@,_؄kjGᡏ06/zfnLpә}υjeCo1ԅ d?u_a13qL3L5qF+Z1m"gt'<Ȏ%\Puelh EDP|, u.lS ` _XiKC"a &W[KjuP6eWd`mW6uYߒ/&owde2q;xYaUӶR[EVĔj/>!֟-)caqaW,HTxSm5yX`S=HA"C1ECǺ-"_ewq5ںiT d$٪coPn4 .^[3:bT*̼ \rġ.BքE@BO-E01:_W~|Q-˙UZ;%M9d,}ӓp'8ቻE5f4ˮwS6 jBHJkW0lE!DubPhq8b-D7zwb2u?C-]d&*'7U9`R08 /,4h Ы-7:7}&gUց&P}ȡ$h"ACchwD\KO hAflF}nF8Co'*y>^gP^nS-PqXl2=Se=Xo_+n( Ag;x#ZqfsoX;CI&AA9X[=XBqSyMm#޸KFI{0OЄBV"yէC]Aȴ5(Hlč -?^8oqZς1`ƯK9!/F5hdq1ɀƍ vc/S _XYu%ʎ??h%ؠL22bOe܅bFFaYq2i%ʷ %)r+臋=FJQI***峊n([ \Gdl a-}h-oRdP ]+7B2%ARf޴M։Xw-.kkG`k*Ԣ&WΊgn+Uvu`6x 9P&95إ^mP`"PrkGSŔ{:'Hgys$ǂϔO9f#&^z7L}}/#+p^{cJ0k 2kҵ:]dgCS3y8~9x窥A >{V4{Ol1DM) :K60eVin˵L~T5f0>ag| +Vqf598N#ox,9u6»hBKQl5\|ؾ>!8r5,Z_1 R}@ }+h&]hv)lv+ Oᤆ]L\[wmXL4;>mN>AqMހNE]۳Fwx,kP./8jSnBwq92W'lKIaQlX6:ifgx+_rQtk\<҅ sP:$(b_.рV>y;Ѽ4</޾|w UA"i}E,*;!u*7b)rK,-@S#"zcvP}a7+Tv8ȇ}<:n5/W$-=՘) sQ+Usk dR6Ubkh'Ꟑ ufMFn F'W٥(P Q\<`f#af LǛH]*-m }ҲYz<fKjfk33e<+H'q:Nf'u7&Π!Q+ 1qMqDb?c8rEXd[ cާ8䁊^8w\08C111JdT!rt#VeS8'#[ C-P(w9ĒIsˬMc @ܽsa(zߥˍrz|jT Gؾ_}Oӏ12'9r9O0i& JUsod9p-8Χklͯ$#rTCiG̀DrZ}u!F@J/G:꯱_F/1K%S#A7EO{0|Xrt $}ӉPq n]:?hКK(#ʶ~ƛXLs +KD!J 6Mej)fe_n^iAL{>cc g}*n4eb&H(zSrUӿs@U !MφRj܌t͇S EiFɖ)&7C#n6ǛV М2yC&UiL kiGc7A!E 0/)~QڛqA_LjdCzh ,NeJZsˆ]& 3~r "y/[91y :ܽOg0ԡ{0U*zg%d2'z*_ݨWrҧ5E,u>*ڣTJv(,]JCi.2[8b}(E(Gyf+U=_\aE[e^0uceU"S1(cvT2M q&$VvAуDZ)_<+TƸ:DF'-JnJ@wb^؏II"_A,ࠈ =N ?+pbV( ‹;]vcd`&3'H p|-;>eWkVqYaV2@<D +ax yVq}/|87Cwٻucdq,icC䖜*:7GL/$-pLn] !`;à^G>s'7HK89<>1 ;9Цu臦xWNr X5Gf\lҍ-vDt'R^ Cq|Loe\6ͥkЍ6Q6.?~u|qo]֪L-T{QʇN j s6 퓏äm=/̛1|Tnko0Z+ozƐ<N|aGu[ΘX>qޒQl>~nN9P,6/;a:=Y9DC|4JU65FJQ1>s}gP4uxn2^M*&cb#80QX$:kBΫZ5iNQdrGJ yJ9 %q \6iI{z_o !v8%gnc<j[Sc!9)`[$/Xbg,7rr@QD/ SoV6FuZdX%@ "T h9\ 'Cj[=Yncq\-'>חNt -(}ӂ~iѐ n@A7am&"6->S\)-0UQQ=b[o9w *H Dv,64')G54QLj,6\d& P|WE:]aNAE?k8ac}yp'Gen*cT=mf7:\^9:96kz W1[)?lڅKFT#YRX߇WAjNuP+L:x^B;vӚ0ʯ]3m|4p$` HG:]|Ii<:ro&P%YSiהJyV=˕JMPjK"a=I6%όqqXQМ-B65!NWz8 R"]O o|/;AK{k>@$DD!4n:[mפ߫[,J!g:9ݴ(,4N' DDAEX<2T :sDCTMY$R̜[ )#T"K‹Pk|Y;+j~NeY_Dn5Avb=b3bauul0y_ Pa~]%§p>cOr3bCHcu+7| |K鼕BPg;bÅ4jOR;#"G&5%vd٧j\9,0JRLM̭OM6/(/i&Wi f+{g=Yx6A۲xD~}oE-_K -VGxF t)}[BĀ^grfBJ;5ژ"2LiӋ`.0KҭHOMiRTlQZ)`uy;½؈ GbAr S]XO8jrx>b7")nã{r9BđH mRڸN_q q~nP oY-];SRDENUWgpڠxfXfk4 Vrӥ_z7^KH}~l/xEܒbj漂U*/e|ύ{8Zf8ύ@͉FN:dUxX̗C=1w1O\q9LC2ȭ8jAJAuPYƄKlA;pWpC* ~Jmw1d ڞ 6<6nPM?9Y@[ć:?,CV0"9ay4 *S~dP'I!JƖ=c1C|V퍖:c0&f\J<ˈhy#y3н fSϷ$z:y&ʞ7 ~Jհ6uHU8GT0, Az5 >sx>7㸡.Ͷj DKJF&EW_-TMv 11ĸ8<>|$y^aO~n(v 2tomg4c=z%û"?8gA=*ï[HubQfk~߁fsɎ+䲣TE #1@>yv`>8-~nR f­~٬&{(mV9B: Cn:S>t.7I" n>$w;r3ƺe7ņ>Gqצ<54>M>_Zih .umRs2&ʍ# ":f-)gw3+;墌a~xs9I Rj¡(ЍHN˽Z,^eHS υ֊k0!!P \B"h36`k,n* 0TB JxE3 NtŎ`u2I+[r20 ]fZFК|WLf$}~YlrOu;ܽO |]W0K Hl,uL`#R'*mi?n@ŹwRTey#Ԕ_vř?i-9-"@/tyA]} ʲ㭿X*Z€'eݷ0T+%8Lp33o5R =zƭnjqP~e!?,tt~e Q "(Qnoyo/tGL 4 b:J+Ь [Ykb0B\TrѺݦ|ɰԜ~iE&908 v B.(Uգ^,fivxa ^}p9p/3/pTL#J`7E&{yhFÖ.q̔WkpZw 7P1axIHwO'^ [rǐ 8թA-̱ڝJR$ZZ+XjTt.aZ}8h-&c\Ġ"Y،3BN7. D4| $ҬJAίVP\CLJ3 Ջw1!4q4 f"1PvFToT\k/H9k:d({/vA/T?I?gSe/4lt;K&fk|7|:W Xf>wKqCs3!73)&ǘix6;^ hǧV x.{/Niuʁ`Ub.f*0t@sL'k }'P@8,0Ӂ`.q@YzK㨾#&Dt=:ÂfC;$#dy{-d̨OhJ x-RFϣWFFSP%mV7lF/vӦK(vӜ8>lhْGՎl7uE ud!,vgv?A;̆o&qWk? rUbl+LX5N9ms)9m@y#ۀBqahE >6v8Y`_up#S*)(9Jx,ќR(eL5c/u+eA81h`Ÿo5q|Sa|\"uХOQ6lVȬA;&rɢx!SՐYhazcxPB ά]$B3 .:aP 3wDO9] xIO~I/ R }ehO80122~SV<7/UWJ 0 UN"rm2Õbha.$VI[W֯zeɌm+"jᕱ׍FH#N7PPB2o@C+0x`,ؿPOs6 &sEp)3v+ /\.JAk)Ou\bpǢOUk@Z[c %0e\F_y@s< nhV0yk{~{˄XX$I0G٥N$@]]l t`*<Z뛇ƈ|$S)c^)I+4d~f"i՞do3o^? ,D&cW)j DZ8s!Ou#6: |a "{lssC`V;̔UX޳C _I$)SW0K&_63w-F4kw=.LbT1 6j 3f.f2\c=yH[ViV ebbhYU茹ȁRMnj!wk&IHWCi S y8Ǐ+J X <6/8\B2ٯ?fFqث[a?A.u#Q2ew7%,{F9u!FVYb}N'fz۾QQ;ݨP~X0; Z1 H8-ZscC.!bS}+3QI/UPf4}3_Xi;bc6t m2L̠S(a\-ޞr\rr d]6Zzr)IN:,9[T *y^d[CPd'9;?n' 9fM+yؙB\^4^x' lH5/] $]GSsu\aL۪mjK+6R3YcԦX 00a2h%G^MlNEʥ!p)7}mZ1])U A8%&eB}r&OLlw9䐆9"=فv=n:Gd }\c]mv~?(dT!Y:뛁є^Ѽ?U]}|+nrp98=цeF":b e6BDvYO$vM&Nsw#+_}#˦ލ>kl26 zPj,Kbua\ccc<*iVM DB8H8fq'EXĖrfz5`d0jˡV^(%:yӨ^ +Y:'y1"](B?e;0rWi7SCH?`s$\51_C*"J*H# VI,0GF"BRW4tC+T@Aꂋ .##^ȃw8 }g[bS$AEŻ_N" c뿿-#В0$jc4+79‹;z h$cƿƲa}v#_S"kq%nHH.@MeA hxRyT|!ȧF)V=z@ȫxK^6 K1rCZ?)ƭh>s~ Ќ7fjĘ N29K)P|]-J5m- 8pZJ˿uSzQ算%T"J [&+UgBm"hZqPmVfxmtve[M"x"*E5=r|)ˀ(w0Pxk8UX]޹~ 1e|3PJQ)F&"YU*"Yw=X*▮}LT4mdI0#XN8_;cE/5 81@f aVwyr({Q eC#HU3COSGLߕ3<`LFZv\Dw7Y:=ۂvЩz3Ч_twD ‰v6Uy n+)1L@<ՅfMJ_<`&EҞ^*:=п~f|*h<]?SΔbOF,1CP)AŦ)I. ej #vfwTȇݸEL8UNE7aE}9~vS[X"z w)(7+>՝ҴrɤF>F{l<\ Rw7![+OBhY:b4d aU65bJ5>Ypa~%r& /sultFk5fGBվ在͑{4&w:-R:- f)3.o-PfU\9HB\ݷ& y(Ne )X=FI2@ XTg£I _Z #\(W]C#rJ45.3;hgU HY8#I?i:bY|X_Y IN4?81O+!}eJ.@+U^0/WuT)ߙj%wIH"EN~8+6 :] n&H0*E;U=ϡvlLN0jC> 2M-vF5)JG(W2,@՘I~>]@sz|7a:b'n{o tpkB+S^;d裡,BC3ݿJXq7ecH3 IBf^ZsнfZc#Z*"DQR&堀`[.״LT=\RaA9谗 .K^"'v]|)Ϲ !J}\%[vP);b]n@q2¶uw,rl* 2lH0Q }La8 yyxiH f* #6-Rއooe+}R4L2Np.;B|ME>4G@.lՄFARԐ^Ŝ$Q*zRO<ʄA@2@VԇW2ELsH)HֳqT! j},hk1AG-EyrƇŰpzqPioݢ_^HkO|4.t<  ~fGE[|q\vr y/1"QX}m-dX։z!%!_kQ aͳV4KnS囅QR*]D[q" $R7Ff_m05J~v) w0-)]BЄ~ϒ= n0S>\4U@ILP tb@/r1-$&F `1y+wA1wBs(քvc?Mnb޵; F#3hTְoB͢iԿ0?[ĆS֝,M_4t5&- /Tg! vb pHy}DdAe_ZƒL) %X!e,HKf`Gg9E:أeƼoHxD&DLF`(\nŗ"/az$ۣY [j@$ Ck@ 4zlTS"Ompe9a R-uQ1DQZ<˿뜒 B%ң`,+Ɂ4^=?7tZQPW/pʋxd2"iOLYE,+P"Hu)ag..fB-ǜdpӦ&7KM0"[MB(YKf؅\-/"/Jܩ bی8Ed &ԛ333(/gnJz <@$(ͱF|ŨY1+)YzȆ &Zy5=1owFYˡW8 (W\%[e1'SMQZ90' ׫"|߿א7 F!®fo2Hd+̣zcVMVZN},gW3eSPl-_S yQ9M #n߷'ǾqOx m`||KCZA[^5:ľonAה/%2g"iH>O'*/dGSDU7R,)xOOa (sF".w*{}>.ڽ&Fx)oPF'PF.F ;4 ] ]>ξqʇ]v+~ߊ}=[\>6z}?J ަ4+E0wZ­{uU -ڈ7+F$*~0D՗!ڙ$wbWY P hh}ď^@Ft@ v : px78|C9xfD>hMiR%7 &F|A3pk+ӦiɔN$whI04Ta*r9:F͑KqCn(xf'2`b(Y.D@"Lt0Ͽƅa}b9I#fB,ͩꎐD o\,hWFb k㗑yhpE@ȿ 2`3by̾fUZlF-.չȅT҇2m)/W| UϱS<7 6k;!!<X%(ҵ#;JS WrlT ӈ}NQ /[ygP.}US,.Th{ 9p`O٧?Kv]!/ dD߄2-p+hn /NDUږ52Z}NFoлjʮ/pcDW2'%U =§VKt3Y\%@b4,m[a8 B)W; .<>M. 6NM'"";jڔM.9[x}1/lDTx #7v/Ŭgûk("̤#8T!\r)oƟ{n%!@9o YIL GS~zo]ZEFia>yO)ImYݞ) 4/A/@^Z/Yb.>e[K7xR_8Q_Ëdrܾo?s(xqўs0o 9K-찦nMqMc;S؊;V`pJ-i3xz=j+@ p@ yԄ~qxkD?+dJbiP]m-w*p>&4b۽틮H$(.(P~u0'z zLT4?mX6C1bВX7*+x]@'nNnU0wJl"1jL;3PR$dThtԄgUͣ|!Ci*\%Yjz*6XR@΁F (,+GH'Ikn%#5 2EQJK`ۂ8g1GNgG 44u}f~ ]|3w~3>⩧kgs\Ff< 7Ss,̸K-hZꌿ oDbA2sSa RBd|cpid@w;"r6#CIV>6^uה;)4Łh7wx0Ywh0ܱcFOWJ\xU(qEI\TNL35}gTϭe]^k ?T9~y)Pm ߤ:跖oZ)qɜCKrnHoyB#lh u%wE4Jl/T}T'( N#1z9RBݝYҼD@kWa !W͌(%~'`C/ GBwteU21۾dPÃۘ[ً8d-d)vؿ[mN%_o 8|b億|'I ʩnVt71\h䊓¤bqL7V+Im)ЪȜZ||R<ӡcڵ|b3ԥhMJB?bSRg]ݱ&EN֖@,4H`FWpU蓅Az+"'E]GƼ.i,ە A 1U|{h-h ʦ@1I|,N>`F'OcA&F<^.}[9~ćS9ExZy)|Vs$(I!GNy9>. +oedAKJ,P/Jz/zcCz_ApW(ExXʁ!ZL4>F/)UM^M("f(Hyh40WEhMdJz  JQQZ (#[u\;g }uXHOCe$C'C&7 ,bRֹaGC>Z5fdO:1E>fu"=ؙ[##))J/:%EMNetŜ(BOܜl Lui \ ̧G{.&i6-{i0]x۟L(S|#g>"]n'loZr9!8&|BJp.\n"~&zL30@iw*7(18ܜs?OP ZwXRFLBY %gJ]S`*gS\~&"fHԡ@0ÀL+.9h$txcb',"7ZK;G}Ǩs1g| znZ]pe:J%wqI~Vm%d0s,NN*cX`+uzX:ٔfgm+kΔעhߢK1]ZԻN748⒜j Z: MTi:1 6DnvXS~vvx}_I)I`ZxPt+n 4uA(_@YC1At;ُxow JOL{^:Mէ+>04%e;|Zjk>s:ϳ$kí-zƇZ jWAy#q$($`T+< e-t;Rnw+*M"6 O1 ۄcܺ%BkvTqgeѵ_z4%ŸkD5CQL=6E\JϺBǡA5aj_|'Svwؐ&@5,t|RK.WxSwpc{X֒,\П`t)zD䢤|\# i2y1(63q>u0D0_ b#T`NV 21x߿fp*jZR>jL/K7F2rn./.<+ĒlFNh;྘NZPLS=X @a%tHBы+c撈{ٯBDgL~}r#e{|ι(F?>G2?BgTȐ%|MEί50C9J5,Nf pzZGX7ҋ(;5$|}N?Oᕊ:&!f+D0%O?a6|rGٟ6Uex6 HER &݄ V@(G F>8,㾱ԭBk* mi94>{wE8ȫqoZ( ́g[*ՙ'&4L1[e>.]ǝn!Jf=X҃9仠ZuF6:s|Qzl.&Q rׅ=I! P$n4Wئ 9Hůn^˵E9!o67j>b76\@Yw&7Ye\vh?e6EK!csXDzL>f-s$ hy&Z<|"U䱗ζ8j0> ߑ շyRuFn ;z]KUK`,J;T )SwI〉^b_QFKB fj6N04+ߧ*Z:v+(=We -b3$ qZ>Q|vjlQp#=8drl9 NR79 ? 1۟_˕ jIrzO'C:JGRR=q@}U}Lp%!Zm]˦ j_aJ^# *>o) \4AW?SlH%[v{ԛ9-nk9;_X@~ O-${řIu6 t]VK?Q~`ʗŧاBhb{LDE ֳy(?5~dTNS#l V}I s(<4쉨nYZP,KFh'GGz@P) uv>f7E%ײ)K_}ӛ騦N_ܣֈj0X]W0lL͒1 OY3CჅCd|5wc `qtl\汰c2[d]+.h a(2 j݈ƶϦYYقo$t&Ma2o!:PfBCWC=(ՎJzH$H3/܉Bڗ+;IP-+*ed.e6E]:A<? / ?!S/>rc%< {~ԯmJcD]Dç 艝f/%( JnIBi6@L풴QM?鹦dTվ{Up#SFSvqh*ěɟ5 k gXoC'D"JMǻ֋fRB}7 o$g"}I z6^dQmh(JXgrabȿpCYȦ 2D1yߐSF `6By\) \&yJ )V02 */V6οȁˏVJnz 7E )Rl4Q//|L{L)}C#wL ADS=KBI|ZI'Sz1ȁ(aX ^ʊJ%\1#jye`,Փ<~'6!8YCF}-BH+j]t(YoO#t q2=4:3/''QlQ.J4p򋻃YC~#,J3;M7=3M+Ǣ5ǚ$ľF$ sd lNTr OO&"K}+6WhAћ(%[Pv7&~\!T?!)0p(̋ɿsO'Z8>Mé1xk1_P9Y@Rz!cl"u,N ߬T!Z}aE[J SVV,ɡ§8^O熷F!n1dXk߿[DP%a}Ά"s};> oAF># T͑`Y Zv&?OlE't ><z&eU|Ѹqώr W#W~S#wH-%Z1] چaK e:}13k*זeSoWWRp[ե|ԲDWC nj28t<2WRMs7گNWg[Xl Xhab PAd$Y 7ZVHֻ&kH:jE kQ=iEg. >Fd({@JK[[D5 ^y}c$n:H/'ٟ0gǑuǏTĊ5.Li5F(բ*`n+J[ٍڅ~zy'|jWvEWpvd3~ 2@Qƚ#ܮo(+?74aF2m'1|tʍկҾumʻeT,:^NR6NwR7K9mݠ1ʖ"TMI#Z4kUv.#rU FDP+o< ͂A!'`p"BHDwnw氿d8Y:6Ka3&\,Ƴi:KuBJm,C,F~ާyV+K8kм{~"pU/6gyŽ([L6'#C^:xLT8QdF b"z.mP?'H|&|hT8Cbs*>5+ӤG׹˹#R^j {,X8ڎ."X;srw/4@$ /T*c~wgV`o$}C>MhEe'kP,Ircx - '*#7\Ӈ(sr$nNH X1vo^@^QPR%U~E5pOV,v]r \֣e <%{5R|Jp &,яNCu~ۻX:-pm%HGz4Ȉ`!m&LYYHG Q C`*ar(J1j)N'P<lԃPYgA-n p]nm>4u<#7[$/RHlLU!fi@fIR箱lw'7 ~U[_Tҡ ypaz04*LWs4;k6:N\/NDO9=pʝE nƣe.w:dA1=*wk0V'ZeVv"X=xLt`gTc"x~ϝӵC 7{{꿥j?3Ce_EtF.\3&|}({ד2L?mA^-;M^OLj7smVy$5݇W-{bG0@',V5RDp9P7"z׍& ȼ⩥@-rxJW;^G]ϿHMԴmw\MEq/vjNyݾsČ*:0)tD oM6߳DˏR5WJ tq)71z$? H48)Z0V_搇¶ At΍*̕zgl8nmWd&ķ,l5+ZAD`k@JðҔ!B,dG?62&@q8XDSɪI9̟|*ђh4D#z;C֠R Ȏeע$j~+VJgW @?K4թ|T}IH\_,9 ط r*l{L MKE >;me7ϙʩE$ĸ+S,AE<,=6!WC}L`Z ٞxX7Mcx#4;pJsK#.TiJJ }FA{g"7Kl^h&!no}]>mEk fչ뤖ō_C+דp%"+H(ϝ]$u8Fىp E"nRT&o| p> Ď*ٗ"J'}Jp͓7 >n/h9Bzljv<߁(Q6iP,Q$>H0[jw|MSV~SWvYWIʼnlt2iR9j kmgr;%Th?2\rIaM p jb*+KxB^C[)*Hv1Bݡ\E^L>Dg2]o4Lo?㹹2JuWxcgP{$,D!fHakpKC~nX]%J%-Ѱ]MP:E0-՟߅}Ԥx\Πf,eiQmnkYoӊ vk_OFSHCJFq#C-%)@w +@q Z'jrKR?hO;\m Z^LP-ڮm[q(>&+,} l;*m͞hnIЮ=b !߂a7iz2y{PǶ񘱐s?1(J福OD#1hӾ^/B KJ&fsV[uᒃ ܎i'b&0j;6lHa ?|pL(HZ&tk SDCH>D9#{#7a,2l~C! ŀG;߁i/}{>!,)`"emW00CX28ҮVq\ŶG17=PtGe;SŨr6EQh^UePoo*$WtZjj]BGJGitwUܻ"ΎiK/0PU8;ug8_~h@ywyp(`"`:2-iƸp˴2 \D6 aN @ D} =$]2X'_JȊt7h.w=x ,^zvLc&m(}`Sb+V|j58W&֜Zsa$/*$ 8#hEy{t1ҙdQg:c_ϝ'wyo|K`/K9'Ɗ56{혉ԏ~GxEi-.7=\?ɉ%鳻zn7mq.DL1w bwDK t7| 6Lp.TB0kkroG'v0hyM&͂?̛o~;|m>dK")F3oZ ]5 ,[BoZ` y0-ypr^vVR,0/VW|-AjԾ\xGR ҘwZ΀.J Bؑ]lf&ٛLG 7=-L-|8?y?Hߒ\?KzaV /]R E?3q-9'}ȿx=D Z׼CϱK*9/Kb_x2@jD| 'ePat[Arhy"JOw; پ!)=5vK+%@w6~!ўseګJ,57Ӹ6cڵws8 w]m6cXEJgK Uz LI%.,Tu+F?Wv܂!WU&=%wCZ&V|X%Ĉ.d}߇R]{, (&>w/*PB8Y!^уQ#40o3R?ZUQك+Jf 1ȴ.0آWWן6KCEH+B!*'h;a31v< H7b.|K V9Rq?6 ;{.C4J EmȲX/E/[ ^F*ȸ7?"rWM}зX.SO׭[_:'҄q[{؇ƙ6Jk׻^"0khRd7\|D8[n궚9@b{6 hh[Ɠ9|y$nᠫH G͉7Qxe(H"Q*a_-be[7;cݨ%^X4{,DKrE%R1Qܸ݈$FW+o*oIޔVCbz~.&O࿥&k .돮xbQ3TW,ecRȊ~y`pX%~8vrnDey;_nIxxT-hjgn栯^8"ZT:~nKe̹}*&uM{MAIq|o}`NSp&74j4oOݿЯ{>Z^j_8g I`ը'5`4%yR01Ph8ұPMm3>4aʎK1lXGN}95wbבQup2mIk@Ō736c`c {p12T8mS`rPP E"7L1ۀ靏f>>;ߥ9HT˂ϑT[0NiVB$fCst!fCkQO  >5, FU #B qDWXb6 F[(hM\Ej %X)vf6h\+169{ǝR)!o N#ӿ8Q"|Tg6lT͊%g{qX BFM<|+sGbզLF"`/0G|"p] ,NYآ}BʘuCMhDTf*@-coٌփк-3a#`JU cD;h aݟPBwR(c)q^ F.$(Ev >!~,?X%xE(QӒ`e[uE:,QF VvAuBXXoɧ;DR ڸEơ J>8zAưxլHR&񝞬Fo,PFf sdGܴ/wȅp҃ SoOŃ)#OOA]Š.y6#wR=b0eW3YDTgWyzr5v!7&6"U|tT%j$.Vu~lZ<~r`$OZ6!h?y3I\ʻsl)zE]dQ+ \kl9(kdZl͉FԵ _:7G& G4+e$y-y Z"ZlW,kc^bD\DX1-u H@V׎A55}wt8|}kv@F-7 PvGrP7dF0~7-ߴx(n̜d.R/,,NVdauz kJ]h7z`-CKģâ=[_[F20B %bPnwQN? xC5Fo?9!#5 &o8G\U ǰmuJfv5sc]jcn8nwΜXXzZa=7mv _D }  !h(8,l鎜mTf6wBDGPjv'+n=b"f/,@(r**7ji:gYQaE6?UY|Mn0Y0*lx,T'P~ծ^o!"2 -S.[WΡ*Ȝ~De3撧j0u*$B.ŕ] 3x T:fV<ɏq{g7942扏l0[jnsHLK>YENVHa{sӯf'K*+gh7o/)7Pdo*9x# Cv#ASbJ\jv(sZ"\:r.L R ?U*Fb(s_ʬC|eDs p !,=K;FZcL|@k#?hqRѠǰ+@\ ;=@8/3(^%sY3#+BxM֪(^ecT86u$Yȕ=U~GЬ|,Џx '7m ӌBRt{A;;QUquv4SD~ T!mq3QbkL\BnPqKD}@?@YQ 6Q*@gH_8=ĭx.eIbouƓ\Y0kw#~{_1F.C-/Z@^=R 9UNY9)Mx-oZ$Q'`9v`{M3cBFP2:I9rAVD#͊ܦۋαb^6(:mQZKqɫC^<$kb'(NPQ(BYWcfu-,qA?_ld-`N*Gؠ `'$F / +*#`B JW ?.ʳ'qlMXjcNcRvy"P[:4a8tG vc| TI,f_1>Ny/*EUԿI9P9 =Ղ|?.F' :Eg:\x^_@l!$< sC^朻h(bG.̠Y12K$HlB}ls|bJ偹(ӯB\3XH}L2rsl=UB %i9* z v']$)";\Bg GX9uBwPO'$_ $'w4#f/E<,$/Cx-x|s]^AQ (1P8j'($PT_Aj<` (uT ȏύ,T2l2<9)c Xp!8,zZ x[ff+-H겠`vב Z Rx VaKMxF.aXa>Q c\&Nnt+ic N\*m3iwR svk|f_ɁQƁVBB~~F&Iz5\.ޜ_{xr!iKhk*ߌsiU®e&}ZltFJ,Teŷ{=Fe-A >)Zk$ٰ ,!")r6.7=јIaɬy@{> :Mѱ;R݊ *pcK;Q9 q~16( ^AԵ>@{>o9vk#+hU: >&ۏJWTstRJJ# 䞧qCS%1`#.,;hZ kT&V_k,i+wDO%#dwX-˧q܊6JxS*2apu̮R(bDR}l I:$ oqP?/w>J q;W`*L@V^ ț%cճ⪣ curR j4Oq੽ƂM.ڹ)#cNKtv1cm8z Nxg7hAHTP# wKAa 1Ƒ=,ku56 t[nȯR f4jM 0-4 +#^嶀븙[)kT,6`iըZ&7zĐ8scȷ=ćr*[F.MD ұv^75ۍo&-Du1} pnϩ4>0Ŕ울ɲ-'ù >WN/ķ Ou$92dE[v-=WDCҴN^ DXH4 _m^f_cɺ1Wcj:tP]kY|@?G|>  }!iY՛qUbVO4hsFMe,Qԛb;;fM&7߉~ zr Qp"Ё:I rOl4)@qVVA~IQT`*>J)H7 "5^$^A#he:y0 x;iFDJ'_9*Ԋyn'aH TX$ %U62(3pk3x !Qbw}amPlM0u(C:BQ.*W.:~\pDԋm:[PqN[O"Z$aJ ҙi'XHV[WvOI䑌[բt2.a&!,rVhDJh%@1 B J}(of5``EK'Gz(V ;B_į܅⯽zh#hǡ"Z6~~K4ab`_cxI}ŽD싒b<i[ϰ&kXMB饯LSw-m^E[0MeIX at'n"[Eq,r{<'QʼP'?jLYE%#f\/c/_Gz}@E=:[W>y |5ϣh(2M7]xV<}ZEopHhexK (ėoaSđ{yZKRى;ִ=|ɨ6`pRiڔ'IUM䍓6?oJ)zZƢ֦_[Zgy.ySqI)ݧA27M; s<(Vvj7/ ~U eմ7h7 e8nD>P uʍJ:A_]da-# ,_=-;|Ty-|IEYR8qrtll@/". ]t Jv ƗF=]{ ~bxqQB$}S:&<)>?Bb*Ehwc(/K1 MW""U A)UY^gy]t<[X݋șc@_}%Yp<!a:^ql E )[iS$XZ|oYPդWz훧߂L; &,kn̛(9 aKV 4-Mv$l'ԊHql^g]'^kwT[ lY;6>i˺"U䗟c+'ۤxfZPr? lXɫa 7[`bSD)'1˃\K0P*R=s7H1l/U9˃{n5FJ/'0[]9o""9b-xv8yOv_!7h)fWykl? տPR\ï?B&iJƝaŒۛmadC<0/a)((TYFy{*ed@ڞ־scnpۮ-[o4|?_0xyڵE ^/ù U4r7$>#XEP;F̽cmX%K?awhz7QI7a Lv? {H~<(@ IL2 \~ʡz4 =pY7N6}NnQAr6oB7,!SͶn6Aq2_VswKSP!I#cJTL-N조J?>gN g) =4vp`8*(¹2m\ Ir#AlW5EceYq1ܼ j^ՓN>.dT| `qLj;:T+W95O~-Ei-§6VO0a7GAeuzr,K"=zn" `~HkG`˃:8>,$o) JKSz楇Ng0zn/ԏ046Y]ESUmZNVLj=ٴXA(h+tBIׅЗ29itnYAE0pgϾ3!{@{O9q?_".[@N9 <.'ar^6伂HAL E?c:Xțt;ѡ 6uL +)sbÔ/*e-~G]V5@- OD޺េ/< bsv79Đ{>_= qY6e*;JK}b%i dpR"W➣'c8zy|4;WGhbH EUS m>X7|C(6n/g~k㻸2U_F)9" bD {g{)Ӳ=cTɌ_F55鳋YɿU.7Xz@8]M]cs{{SQ2Zrk_llb&bzI5^_A_Z[7J*uռ?=B@MG7T neӂFbuՄ Wc"8_acDl\9@WW+F՛=ju?_r@b~ jLΦHv[Fѵg8HxBxwBi"eM,OQPjVr%/$<dkS)}cY0KOf0Ήk8m n87jɕլMcdW&G`bxM^Yʭ٧# ͆K2= 7Mϧ~kD=ym/sR_6P;SPcH&9iZF?_g-F@K1Z91'oܩJI~ݸ?X#݃HjbI-BKf:,P-da6u%u~V HSK,JapWmѐP1*nI8=TS|Z6=gsQSS.TK38;[1ܥǭ,okmOtzEpfRxO\R`x}=xwL+-_0oEeI{"\P+ >uf|9 2bLCn;3\>EwiMMmC(K8/Dqw@J՛QAakJ/ӲOF]޹e.| A ;Ȟ YZ1+ԡ}d7d0&뢾_[Ak5S‘ \p7:@Ҿ~^%ĒA$*Ej?x<\x5Aye}ODmhh R$ ]s{5u7AބC ܞ|:+W#B3]ЌH5C oSiأQ.s&3!qzmw̬? uM8|}c򝑝V:,;XEty=&}hauнJ87>7tTohUb]h֧ξR]x|v"5vJGর]!w9Jݑ PPdeJ*yWz6bʑ܂q4>_goƍvb&l]ϥ{+nB:m2-Ci,Lglj*jilpY^&.V*:~p( Y3w=x1YK`trޚw"4j Hfj'lF[; F}ocJ5JOg;(#\m>d"j Mxy'tO}qF1MLc^N-RI$5ε]{kԛҙ&x6͇MgIAh\`'S14ߘ GRېьA]ٛ L<%A1aI|Z5n0g`DvB4XGJ2ƬΥ?G\*]frҨ7 kQz`$Z`bl/WaZPum: r-H]waJ [$6sq*"7XQaΔ_/l%FkQ;\!yšzS;f+1r5Jz"*؍iJS/辶[A8I BQC֨*/]5$[W 4Dh{z*. A{?ݾTn>k) )^,Q}H [/Dަbkl>ZttZ/ljZr%G t5a]}fFF (t+*A7սQ"Y@o@wIճ0QUB 3bB.=Mi]k+iQyk5ɻP\w/X觑Q?|w*sLofLϟ彯2Zyv$^Ew[c{U!PS^Gu:]=9r#21U 0R*ny2Zp|\Փ]Ȣ.&K\(Iu/uۢNJS:Vxz_v>Im͇, okƖ22!4VJ;agg䊮H&VqZw ZMcDQS0xkYTb"CvIY*]?dk!0~5{>Yol=VNRMJŭtKAcAh֬z,J7M}CY*;-ڳ#ͷ7r]gmiE dyYuʩˠ4u8;hUBV=pJ1(Gӕ遣>%OzȳaiNZ L'iϠyM$ #[?͇1=(]A&jރOA _uW7Q1BV(6lCTZ +bbD.#CѴIґ4 0D 4CSig9hxcdf<7x%A6LyEIloQ[ݶSeVՍWw<k!ٳ'T{d~e_jv/4ESq{pߠkld77c% \P9:4;r_[AJyϽsm: U:Kdlި`qrp]q^f,fs9j &nbOŭk12QutUI+V#'JzkV7ވ%nCSn|1$9|ײe1Dw {rp+U~qb fO i7_m7wʣz.תTau0#Q>z ] 34hDw{WZhM}ޠgfvl]g(E0Hn|e/o/9&V=ӝcQ_A.:d%[7BI^@!EN+d+9a  Xqi,[Pջ8c|8 Ucw86=cw%O7ދ~ޏQ$5(]^t>>p~q; Wb ۗy\x\/خzpxPX7D{ifd 64-_>Bs6`?ױc2;m v$W>C7ItO"(FfDQ'uNpяsh/.Ŷ)-ӱxQ7e'Y؆r4핒h\c?>EAQH2mj#=9D-L2 ][HGnRʛQ) 0P6Bk>DhҐ@:V-lzP#_?rNXks- )[qs;o: 5 PPh7mޡģG yyp(Zfk+o]Gɫ⛴:@ʇ1ИSVۋ:2X bD 0ދM5K9jy8Ӝ)ӆbXVk@1SO]@ ̐OmL5O[w}4&-(1S I8WGdk2BS36@;0"8;85XKXm*ĀtRW,~m8xAYs75"PĥԉU+{V>.aکfgU,d!_>-ͥ17/)":V.KFڽdxlcN@qKt_:TKϡN±\VAo!F7\ _?ߡrw,\r\j!M2A,F+e\m#lb٥eڦO pK= Ȯk'ZJ0> HXJ {\;?S2FPdK32Bv OolY35]ˣ2&HnVGjṳDB]d&M<F̺!Ԯ߃:EpgU߸РN 2_/NN58Tߤf 4MXA Tbr$`6IirߑFV,cSb齶$ Furftٰ6@ȇOFr3G(_ޥaCUuڔ9=ѰL+TF<_rLHxK@`&8AKv$$Ǣδl P{n=ExA~5M\[һDo!NL~ 3D3jD~uRĎf B"~xz$~RVfQQ'Eհ9j"n=z8'Yd5DX0$a.ӷ?Ǿmdzwؗ=X]t>h}ݠ[gVDS޽G;(.CdAІtoT}O/%}YKf=%1q}U~I$SZevӠ7vl>z׃a" rb`@7i"IybZԝFnAE讎]K&vBȊ`QL[p<ˆVUDht>["dw]i$;jlسr r:-[E7ɲ|%(u ݘmM8Ufs-'Ud cu᷏jQK.۽CD\3ښ2m߉tQAr ֵ0ɈTڐߩrOvVXy oQ}?6:c(1PH7r׫Z:WWԅvjEEl#h?t3ʿ!=C'x=kq̏:@pRzJJ!:C"iIȰज܈%8 oLJuj'L%m:q:O _l"ݰ #qں mm!I4u_o(= ~`#㕑<}eHdqdX- UxK M6!w K?I0t!%ކ4=fGtZ-2P4sy86d>GB,v6L rL-[ jiEYj(+v\&3QOFnIY70}0VŻilOr<[3; EY)+{}l2W`1A4NN;t֖Mگto!NWٴ\zopBqJ(M7-9v۵A'CKHȝ(vg"b}wqA*ݩzDCt= 6~{+ٶ&AZ (ԶxE h]-rH739tuڇovG/L俲FvR -/?gRDն)Q&< B&\_KCa_!}|7FB`EnH}Ҷ ϪlrPh25"| ЋJ8'YKw'C, ^fcMq7A#0Z6~xb3OKe!y}mJnFODY62m5te4J-h`q&n6]z4}XCcOZ|k56HoWX0iXE{qWNwӿn0K#RTfp ܮVtEYM{1+7E+a~`qHE=vmO\XtU=<DTMڟZ@|2^{1tΎۋz-;x2bVhz- "gٝ(f 3 C *ayC a`S>9riFAO#c-?%=-QMm9:xA.2XIݥCg'3Z L.K3ҝHܸ5PTKZtÌ|zr|N] vhRd# goUVZ`.pj1;nAyI&v;@n8f7`ΨvvX_igh#uhB$mW6M¨1loڼS ?3(>NVIiHdUHpM"+7#a!/ GDڭ9lCy,e29a^!,ؒT\Vszlj}*Ӊ^V]J0̩E-m!"jQg#sEIZs@ y)6MhY|YHeIܲ"&Q[L~WT 3Ў 7#dKPųYZϻr)?|Z$,W~#ƧQs65P:RfP)Yd=-:+8è^mRS6puÝ7\wN0Mh>3|>wә[8X8y-ဖ]o40+cYX=SοՕf<٠3T*S=ءMQ10G$Tuqgmaokoqb18*qE`ο`լVo7 BOU*R1 t =ZK_ oXbO׏11Ζ\jʻyN)xsZʶSY 8 z!K"׼ܝE㪡ƻ%gNwĺt˜07c?ұ.O3ԺCnI^/ .ySaE1q] c<3-J#uϫ]2@X,>^2\UHIpe.'AmօW7 (k:٠N\p0ǷʃpL'jq2(9@v7|ib] "(1``lԘo4YN+;UxKk+Ufk;s:I0'$Ŗ0n::yd϶W8DRU!wڭ-#jW;ިk6*&XD G{[ć7 6N6bG9bnq㿥X ]jUpZE-Q,JQL\*/taRA*gJ]@{e~DLQV<Z .ty++ppGn:<(pj"2]ltU/"{ӿ~Fʿ6 \9"TLV^l9_FrZ|&ZS uV7_u:I}T Jڎĉ <(g-7G'qWyuC 8m8-Hm@biT@,FY+Д\oyǒNG{/_WȞ2-Hr&5A<ɡWvR-P.5rZVg$" #w\$X浒;Ä92M:')^t 2 -`MG }Nf p- fio8.]x>x \g,Ru+zI=4|}_*%[I5=ǣ#>Ęp?xC^Q-My? pF {lE+!tvT{r`Fg̸%Q]I&3ȣjσ.U> 7zvQduc_czyt%vV0l nF|ml#%P{D\=~/pX@p[@^G`TkGc\ ; n/LYTkgħs6iC(1o5M-[<8OCPv 5T0#0YlOg>[Qܕ80|z%!{W?0_&jWk57 jH;nU~Pp1t0vT_p' #$EVغΆ6DB%O&SYRd29@qJ+B'|8ګt8"xNΎX4ʈBΦ :c=s^x0Ut;G]h(@@mn!/؍1nK+jzwd൒u xgTnuar|wCn%7iP+އIe;IQܲNVN* D--tUd Y6R˥eN W0_V#??|(ضe:;,׳g5'VKg}}E| .-.y)gz- pZojL1P++j z j Q3%j]-V3}V5_z \G7JRmWz]Tz |f `fufp5-[g_rM(.b W+B1qYmK*<(˳ y7e2)'ŹgHer6͊yV)hP˳vLI,eR5CWl㡫LDZ#8oXR&rEF+)y9DSIˍ1`QJLkdZP-@ oy+_]yW|Wh\/2`!۟ղ(Rn&>=PLVrcM+-A_˫뎆 qߓm6ʉtoEV *7K$׊,90.q[{KziWQ/M(^>rZfՙe}PM!m/ߴ1X×V!j"W u/㈞3#Vv|M3eU , [1yၕgAiՋ0cafk"#XA&pg3U'4Mmczty+kXdeujF`Ɩ:Ix.K3j_/| }ȁ/!96=RzWq\Miɮ P|+;+nk;p(f| :+v6EFW_lNM8+gRMq52ۡ{ T.Q D-vc Cڡ 22;_"wV7b ݑNup\>혀9W 3 3W d[9IRF()C[}! @PKa펠!a.cꝅhꇶ.L2Gdcۿ.I,yu /uOе)8gwPߪ&gWPz 1ig iζV[ѵ3Jw$Q` @B7(9f *K ߧTtиx8 }O@%7ϱDWH d7M醐`{O|c{jkoݒP"(6}nd Khߵ lZGim:`e/2)8g7mXմ[/cGc+ ^,[ 0@4ONʎ\vR*9뗄Z8f.ӷ(ݹK5T5-翥qmȉtG5pͮ!$)|b *$̐ZbFH[Ђ7200o8J b 5DޡI;JJ(]*ٕЊ i:'OM\s.}fk&'r9w8wEXbuRθJu^1ixV03/wg3tOa)tוmByCuAꟾw'Kwxd/ͨ=`l N a{a ӝa-H5Ei=^۟Zp0"];zzWVUΤmzZ,Nq1?ʼntq8CD5۵]`PQLE@*?ɭavRPB$s})B hՂJˇjrvbrn4|kU+ڷ=KvMrKoc"gH 3W `fZu {S' c c>RT a<,Kdèx2•p"Ӏݫl>D3ֽQibk?ia 5wwKkR:Vv/]cInXCI+ Co zJKAT,τ剶|dyat1UC!V.0{8mB#~MןDGP[qM ?H>4~C;k<_ڿn@_~+qA dN}{\lr$=ke2kk6gl^ ʶ'#AwfKfTllB9 ୑ &R-䐛).x7+E][oݶfe!Lin}r=M:ѱ9,4 Ko)>XM pNh?m{*Ll޼ oB7* |!P7{—yv J !]hy+MNLN(Ot@mW9`V+ f&_c1y[|k[#=,`.CuK#7EnEgUءhR3_u;7-[l'haT n|$xhQ6rζ ){gH| *n b Qw6V'Q*<]@Ohq_Ɂq]):v65 "jdQ3T[W;%jU$Q /|}*kYh jSm+ȒT|X(I/dׂ l{ ΠނQmɦjj3blqCv#a֗%noZ*Gŀf ًؒ[n6}NX /SnU=ul6k Md8wnW~+@ y-pKeprSoM:l0KM4`5zɳi@˻SFܙ6&N;`^ŷȁ܆n;mB'ro\\^nk_wZ^(:Uܑr:.@Ta=]rn{@t:Ͼ=ID*h'Aq>k^Gulc^})3ʔ')9嚭mLbXT6  2ϵt|L×դcyMЊ==c[et챵om?I{^MbzxOCI 1 +}ΌSi4p䁄YL顸\1⚍W(OPhtyJ,)cIOh[2-T?}VJ͑WZI2!~*990NNu=sV`c1~9ȥd$"yC&" سD8!ǣ>ΣpVTV?k~h52@ !:= F}H2:>ݡ yWt1 `S?s:y/AqS b-<kS>f4&a-n㪄HN~m WVB传ZW,=fxcsWqmW-3R뽚"@$(OLEArsg$O--e{v=I4v`Ae¥tg_M$B+G}fvp-.&2Rmf [*+(yS}TgWčhPgj2)64/po T3&b\ayTj. QO*2%NMװdjvW{]*9رsfҔhn9l%97NQ\IE#AeG=V؞H.*IP>FXNLdNt=? V/9(or[۽}y35tys Γ96 ?ZiVR9CPSHR: am_6g/嘗>;oR\5 yi%0.CgP'<69*4\碂H?H?js /.7RܫKy"kw 4^gˠΚnAOռ$=~w_ FĎSDЭN˯ JyPX^h㟀wnDhgQMuRQ0G(FZi'ґCd7x΂#\"hѮNkuf/v2ľI{?@6<ˤ^,MKYKHCh(4[%Kup+Ѯ+YIY U,7SԺQ7O죜}hh(ψCxӢ/Lq}c򝑝V:P[3Ku)X dOk|]Nv _A^ty Yj\'CZaԲJXʠ4ҵ}k3Ct!G!D*S%ko\yCw?fZ1= 5jT`|!3F8t}x*Zlw$T3VJ5l mKyF[YNL#t^r\aY 31/HQkA EAMvml B{f #߹KiNn`,4 ;%d4oK;̤n5Sc-ru\W3pGvv Q3@U|'mƹŰ^$98)Z͑P6o@hTUD |lpg8oX|ߓsHxYvs=r}y %`8ھ$OKՈ$֕OLDIrILeĚjjMP-<2Z(+ʕI^ [ \a_7Nzט(8ݘ!z;XJ&WF $kn겵/܊GlbltҞxv;E'>O=ـ~l3 m1W[Ur|Y=H?Σ|Bt:w3%QjCWw[IJYvОLkzQyP%u͇Al $HG UPjizC]t EƧ&nKYC[zDDu<,rC'nkb Cm*gtPk# d$|.!A OxPJ1Ůwx$?fm@HV_{d@~(Z@+8g}1)(|3lr*Ec]tm%JSrk[M etz +iK0oLv修yT#q%| YġzQ4eDк3O7E(Oi>]OmNG'xLǁcw$UR(tewRA{?7|%lEDJmlwjq?yR6=A}2} &lۤfV|bw@UŹjM XvhEWY]OlEUsh8;J)7˜rEt(cl: ;I~% .& ɢn=F9>͉Q|_aX% ,?IA6i220ldƠ W~\SM<{UXWgeMP؂P1Cщh)fg̅q6?߲HgD$UUMS%L$5D36$i m@V}9vurMmsWw+ bΨ <;(.?Z#eǃ>Ɠ[1jH2ȍjW|p1aGT70e K6Iȩs0IU%(4vѡ=IQͿ\RJB%͡rCF[NNNSNm1ǔ6Tr]u/ʹcjA:M Z^ePmqBK)q_dBtG(isʸsh{r>T.k* ;&r ]@|/.Å;~}}ޱtkӵXxAw~V꭮&*ޮm$0, R^k(5&B/VD &FT]NvU9 [æ5 ဪ7|cpX]"r=t1Q76ث n8êl|V{aT)ESKAZgOS g| ͬ>?#|97PAwնӕJW'08b|?O}-<ίVCzn(@pZbvy%`~>5aU$J\JeFWk!=j)2dG^=uegT4x I6OP' @3iyߠN&CxWL\+y~寜:qڕRe͘ց2`0|'A]X\}M.7MNMyy Oeuv@9#Ņ[LW}L|{J<˴qZ\#|Xc]'%۸u*e ޳f>ŒRkfJ p\N+? CCDN좥Lz#JF|hN{~X‚jp/W]ZTe{#o4WhkI8K KZW7g_q[a@{W r%Yq H yGyx,Q =kbosQ):Rj,Yy'jvp/`5[T.C`.HE42xy)sܚ{IVƨ`GwM.8*dhky$뷖VxsfF冝fsPϯ7l(E@'܀;p6خ}dr zNl5wD."B:/8ȫk^S_worRj7?!.Lv RyPqoBRh;A تy55X8^z"!y9!PU)@^6ߴQeڂh}c.!QJB2gNN2ߔ q9lhDh-b.]kŽ{0'FmZcQP5tH>`POv$wN{9e9H ˺4AHV Yy5[r%VM:y(@լMJΦ 8+5l ݆JWSXd|t0/?F`r~$(/htYɝ ۽_!NB2b#vCb#ޛU)dk'ZiOY :3Wl4dU6"ѝD`xC:/V_dW"[DJNk]R^L:q[~#{V'6Njeƛlk#ROAhb=p/>XR6K;-d=+ݗG٦?[v,/)jƜFPǨM4l\?FIv{Bm6o5bT90:Bl { ;6_+͡2O6hB=:8{OXPߠcoN,l0~̂1K=]'1k2Nƌ~7p; c }25d6@IV^ƒE9vR؉huV,yf-%%KfXy%ϳZ lĘIc{Hse)~\ȟ4Xk{bbR8CuI1IS2w:2}i0tdSջ@.6. :)[_U ^)|=GWYNnNL 7* ~wQ|m^H#j6yYdA՗Dks U"S6Z׍jZϼZ\J浪ekS2/Fr浫(z̻~OZ~OZ#z˛NYT RND[gsϹcXtWM[P C)7]˭36ш(w^\ysU@|uz.r}}ha B<^\W-k!M2 l` ]I0Gy&Hr? 9s2da.^D}֍4>ULc')K_K}ӛxz^jkD5;T"VPMQ!~b$v,R/yML_P`! 9ҝ۬ğ\.q];b:Du#`U$Wk0$X)=?-sdH=D~kuVb8ҖL1D^D^ `oN`Ph>&lZ.ݦۛˏާ%A<6c>s:\jgPM*k/BoYoq*ۭ||KJyٷxd5bf [9 GcR3z.]ySCԯu_n|OGa6c!8Ņ~{$  -?Շ@K:CĘ^?XVTog{هrгՊ`Oc1[~9<`K"El|2Aiwcth@BD'J8w9wW)2Sċ_5בF~2R&nFw.wOg]eOl rR%z%` yפ![E&ZzgDa5Ӧy6*k5-)B ꣄Y$ˍ 1߽lUXV]cq~:wӻsTޣ@8?Qi]ۗË 9"7#_8tӭ0 j f3f*|`Z]˔6ʑwLّ!I5<˰LCQLIfԮ&o7*`Erk 0Ӧgʗ'E 2(E],}3oo߰u5 .w= 2MXoEdQٺ:2ݼɪt@U lB6ԛvp7>HVG? ]6wGrGڿGU]\N#:訉QuL" $҈3$@hvV[momiն0& &T * 4\[ks&?̹{^볲ΐPfAM*/&QR6_p+[텹&r͔1Cl@Gn;S|`&*H@rͭ&D~1a}hR }_X[@fןh3>[Ljt]"'42g2WrC 7(UEɃ0au[ "Ţ6zͰF$^f'v8֎=op6~2v!BѤ 7j::g"h>Pצh\#(0_&2_,ѝ#CWYp5ڭ u +rCW2_i\HEeB>FX; 2 ->.߂4:oKA9PRjU]RS@×c8՞N)r/,P$X`L# p-g ORgTj_X!䢟3$=wla u(vwтhg:rU.IHEъQ:W|VT7P:ߒOTL\4e3{ ʾjT<~Rx(o}z4M=!mC?ҞS{zI*ЬjXTl.pɟkc*Ubw[g3^'CuA <֏574Mq\#4:Al2Aan IfkXMJmM=q dPyfŝ 29ZOPH0UYv+Utuɍ=r* s~qIݻ* zeۙo#B$jui7SRFؒ|e$g;"2 C=Xsye9ÈmnԄ_Oq{^K_)NjR k:ނi|Ħ,c t]ڧ1M+V (BuFR:K ҈=[R=@oyw4z'ϡd ^:>m!Ɠa`MtQuMٍa3iWF:a{O95#s%P&EX>QƇQJUW?DZ=L/NB~9^9dO?{67 u`}\:h+u!n`|]kXuXx/9}ӡ× x)*|m1=`oOgjom 0 =c..~ QCSީ:NR(M;A`[Y|qVxZ_Wo ]EXYw|:&x:6*dLnw CxpS^^/eR&Yy)-o&R 1*v^?FɽW+R[ Ǘh!ޫlwPͣsA%R|mnYSCN"3:eu)7H;ۿxOKu+Ѿ}5ڃpy;؅Dyq|B tI-lGˇ #%xT, ^v~\>R}teθܥA8v a-f^.> 5KEd³uonKK2N\_wk糷{J]M<;vJ3 U0+H{C:ɾ8^Bx5!Ś\_||>CpLyIXvx+߷@J]4hl Oٶ_.&B'=:H[&oq s'\3PHGY{)=*m}ʎ`ضW4n'!0T[u,0r= &.ZzVDsmg[p'q]D] 87LWl!=+ {`GsEL.!x? ~Od_tiWM"[Jj?T%Pi`SE|faԏ\ 4. \88=;c)-AߗF}NFcUEaҍ!]@ ཯6I!)/wJ5\&Ro!C]F6\ˢ÷`U.YH`,\\#x-5Ҝk-l[0ۢBIUxH9P=ZCnxy8oYOi\A?*_/2CrkG|KKM!N` 8R˿@\X oW !Np(yz2fly"NI]n@u8:ou\ dG]V[Mr*yjAns(7î2 {IҐ%_S CXt|e@O3.KZ]|\hw,g|aSPxwyԉ<)Eʖhe_V1;sU+o:%t}?y U7O*$ug5E1"*̈К"D[^!E=hn݀(CLk N\aVn)M]Dǔ|' vǀyWhp$# mBΪ:Ly4tg"K^kv!DFgG:t'CxMbtjw;k˿`bx82ɔ=8Ammy_LٛJW^vA8Ge̟? ?&E 'gWr{,S F , x( 2jm~)\ e+#ǃ3uO}azXFPd wVJ ]W 8xJ*Ǎɼ/I%|ޕ2<-ǁ,ҕP))K/v;PܶO#8B 茤w Uć?݅f&t-6-ˬiܘSmy'1>U߁s3B;G{1wFK''ŒƢz4jtRs[۲nƝlmDLi3_@%eW⨊;WE6OjPrtf. aB G.I=W f],:*/we:Yf!|S:L erA?T+<=op5GlV S;MIBb`]z);M8vstwghC ς |C |v u2ѵVL'9KN x-R-t"EM4"m8?KH)J^+ɃݔNu1>1Y"٭' bCWŕXh#?,n65鄿K9'jHȝq6YW벬QOw~>Il!ՁGCň;GQ[>,J,%@ԝN)O6gz}.+lCSƤERA~BP*766h 8"%d{j }ʀ#!BsTd\#^7 B)-VU/I`Vb!N o1V1Yf^ºT(eA1HGHg3ClხwAJ0]%Siy!&&j{h"FG V~VI8B%$2P=֥[َ9b*ѡw㘽mn xA5ssܺөO%}hVG}»BQsΙ@QN J? O_X.]fou(!xp%|" )M9n1+sC& zN|?Z}VQ?%_$4˛k>R Q*Xs$e5+jq,t#F}kl}~rH3"b=TArGmM e&:NtjEo^5nrENi U*OYʘR~4U^ĭ0XOWb,p.?kXb n`EȺ(Cw"̶StɶL%h9yD\{y"\ gi/:פw4&kG\P^b"ezMS{l!/vw1{Ә q· ?:w kfLD`w귊d!$ L .#V4.v22sXۀ&E:kPJT%7Sǰ]y=Ӵ(6``;ASŦ?3RMŦ6rj&<@ _ZQ Ȼcl6MV";+W}.WAQMu\x>7ŜcҮ 7@~bG 1pe<aWpe] LSw0SZעd.bȽ =57eSR ܠ1uHd+J KY~H,s>z4~IJݳK)PO:; ("Q׆<|P7s>wsWydJQ#tM*qT ĎgAy7; Ԍ'rYd#ɲ#UotG"0dZQ3'Xݰ x9X*daQP\@(3+ҘT7zQ-C)`yxw s2+u`;6.5_8^,>:z{YxHS j||Mv)ұzLl[,܈FOzI h*4q$3tN>&N>e$;`IN32ť[[#X+0)MQy|rFÆ "?#ïawo{[a9΀i$xgK|CbM=% ßmt,0 $d3O sm{ztvŤN%Ԥ MCЏ@:GZ dơ~yN5C}IUWS,,o*ɬ 3sht,1 _\ zYK"XX;>Fe(@eK.wnjdMn -D(PMpԶVy%50T2K&z&?΋;m$iļa'[RCGuDcᗻn'VB+_z_%!@Q3 vVY;8jʻb:缑Z(R$1Lndǣ/zg΀{ХGUՐ&ݗr>OF b†#6UN0>65Y@q'[ck EM(8"X9cCz,6'kElZ=Vd⨲|`^M%4%{LzN}wgrWѦo@.Mnz /Ӄ >19Gu&{%֋ D2ZJEB du+;A@ڢSh:L۽d} a7Uj,\ Ӹᲊx|x*5Mi5WC*rJߴ#LCTF5Tc8OU5,FlxFZTeL5J@0*"-EI~Kޘh T8l@%kzĦ8PL9\u &BM SΜ,6!x7jġn#&980 b1b: lW5C_reo@Yc d ZqasV=zw Zlfb&4 (lF4 . =ic83zت(_Iq8o>}rѹA)SfHN{\1Dtv@qQ)q.{s[`_#oC=Sa>d"ֽyL|]~z4ćW O#f `ʗWWXm'~?/’iTmV5^^UG +h[MA97XgA'쨚/R"eZ |mx&=1)SHo} Jfa*!9+5NqOja'!{'H56X?#*@V(Qensu^dTFsrd"?ґb7+vnIʫy#\oݝA:=b!AgYu.bvػC5BRo0qס) 7/ )%0=Ac 칱=z~ƞܲT-2צ4xhvVF֯Boa7fjtG ȸ\}w]3Jdٯ_aPTuKhׯY?Bjʓ]Kc:$43*|qkEp 4CyE|i`7.Uipg hofs<4Qgq{/>5_P$.}lD>幫̈=OyuT]pމNp(Q3(7c.u]Cg7#!7$e(%:fB vY^sr0|'mIgͰVh#"lČ 0%fD=9`CjFkuQnc=UɵwLXDZV-ĘPJě8b~(x"I׌h>KȫvUb{+MޱY7tz'{4EADzC+#B!~]|Ԁi Mf~ʥx2q j;sT[ڡ#KnK?`] 弊[*'G^,,:}#@N +V|j΂vׇ o#xtee3IsZsI NrB m +>P)}j7؃wGZB**-ntIG4uT=L(HD{H 1r2}B 2 0^E\:~"}  2͇k.!%='7'c >" vJ` k Q3&;jqZzVqoߵĀFiH { eC:`Tu3zac;{uoL.- W u)Q$8f Iem;dXrg10 8d Ty1nf2ã<`\q4;#&A[yNxy hъ5D=/վӣLuPc}pރ4dx{Ut}U:?eYS,\Z?& U nzg$¼uvf)J/xO()θq nIEO9 I*$EbWpG1K/E5é%"CLR$9c(;|Kmd|dKt n[ j}vĖҎ˰2?ED6 K*A.tKnډa9O^8kEnEs=b &;hd  i@MrG=0ּP~FTvd®j&is&]H"eѡ,&.AZ=f/1Xd^VAlX " H"*䣣5p `6~KFaGLKf$q5 Tعq/9[Rz^95ʑvj 3\B'=_3ĺO]$2yuܛ O{r:"M3t=lIU-pS"V#Kr|=a cy{T#Mr9YkmF9]F9`7d8KwzR;,w/Kr}:wCic_a# l- (Yr#渫st>[^s7o囵 0QT,Q[#Sa>g:q~̒ݵ >k mG=MjxE܌<کjqw]vֺĝ#aK6*aV&Z&XȮ23kHpPɪ'j U,m6U[WNJ ֢.ܽW9pm:\,q{uPȬJ[><7WGsBD=gA:Ögc %(1)h*Y݋*ŘɋIJY4a,G\JB$LDRHʑ aNd  ^\琒:ލ }wﻄUa-!h#Lh|2|n|q"f~2n.L/XX N#WY:'+XB8t4 qot/*>JuҺ*HgO(}l187^ULLu~=ꆄP:!<ԡ_T͐ϩ#HAl>?*v/co+}/i*xz:'Δ2[a d'<{5GQxI jlȐe<,.t67Ħ6B^앋eWxŖ!އs/I % ʍӸVWb xRV\aO86GdA"M kfW ɀN'<°\7-P&`ŦWɻlh? uHpy U軓&myvx`+51S0jCŔf#PIF!'-MQPmUѩ5sDS_TEcCsG-8`~"g-I~ǺdwEFffcFY,c &(V hϽ:;&?# ʜr(U^FФ.?nCr1FCHNӠ.dҰMgT,-Fk)C^9\Q)~m4׺하,'G@3|G>Gcf\zeƉb-#[r,!1&"g e ~Ղ[:_Vی"N7_ќE?<> ]Ljd R,w% ^7QyXɘi84yŘi غM;qȱFhÏ s2/w̭aGH鈣ß[|RxRؓƛb`A^xa<5U 0! JaզA(2`OQߛ6f{:Wh's B:KY8)=Atٴ$+ 0c YWjny ^IIo|gVݰ0,z*Bh+d| nl`j)3!8ۥ4d9·v;r]9Fxg:Bd橎.(ԧ=_(uQi r\^V"Ωm|,V^ DnX`'heln$./߼)E./_b^Pٱ׶ kXg~#?JȘGw1;F񂶻D֭Y_KÇ`G#Z 0Dw2Kk2ge+(wGu9g,(;M۳{ðŊ:5Rͺu;5~ԝ+;R, ntX7,29[ Gc 7d,=&fAh!/F- COb:sL^:UM*k>>R+ $o|b;+N}vvx\<[k&ߑ.MwZ%ߤth.s"oRwġg㟻?$v}xB0bnyYbB#hõtp/>"AwF*qdVgȋfzB%'b1F,ΐb:U"0Kmܧ1JKi[٤W[Nߣ^_!g ?dɰϡ;+178Gl̛n2N> ?S.jغa=v0P0!6~&$5 "6$Ӵɫa?-`<0 /gEW`@ddqǂ֎7!;0NnԎO@0A -܌&E^3 ňX愚-0ݦ^#(uXLɟ_3h7ʹWӸy5ѶV6-Dq05ކƴ.?wQwFM'u f/b^z;K N'E8;k`tr ^)ЬC 6 )m)((`l.??z:XtKDhCᝤ }e vwZ0lwͩґ-=,˙TRV_(݉1:ҕ×~;_WvpN 6Nk% Te!< nrDˆҁ-NWb2k1+j|% Lʷ7 +_+[._)ލ"Qk _-r#<#z1&Lx<Ɓ-ey-9Z(EH|eo6K}BtThIMtafA7>3sےhiqq+D#ass[!w;$Ki Ao!t ]>aaMcbXa Oa+~đ%w4pJW`YLqBXub2MݨUZLpvWZO[\VX`:R$.s!. TTϞ6%#쏔gCépJV.vmMv"yAdr-Ww'R` 䇎q@wq?mhBԶ&Ҙߎ^?Jhlci`b,[FQin~7=r( Ju_1jGu89G(89+Ki,%PGvj2WDVJo=cP);N6d!p]y.#R/|Y9_nY~V."7%q[Mhq B+|῭EzG lV1 (7. ?Hv? !ʆI gEAQ|N].mmqsGRLyYSPkû+8X2\LxP[\曶&_CD#/1|Mbد%3~!GG\ ")*W2k[1XIb;؅j^ױq)GSHp)f4k6 bIspv!IpFL|2d8uk1+XUkVW@K ZׯګlQu ޡ,˸?b8L6И7"Rp_pM޲|B P{ODZ?4qX3?&Ǻov?\n sbcA#gmgXngpB+28Z؛EA ^E`' hM`GRsw@w$>__6AS$xM8wnQ #J7D]ύ/֮BFt,9l=ڄ\*] wѕ)oZւca͚[AZR݋?FumS) ct DS|+G;W69?Ȯƛ"|Y;tS,6f B,v$|ހ :uw0*̺8{U<Y2@` Xa5:Z,HQG?跷⸉}H,u#!-e);Ѡa6 ;ĭђMMKJ#~^\ +ﱟ.ՄQ#O'^7Nyٟ ņآliؼ~>`~5iѝ\)vK=&Oscy l3 _Y j<~} Mto`$P/8)K@t'^:$e\6tҧnVE6Cs]J1ץY#h&' ⚐t4bũ0;J>nrZv8+<ȟZyv=SAJ/[dŎbD܆$MJxxen9}-%E-<,o &TW+A59?<|=L,z6H]|}rX7k=)f&Bw@ybe18p.56Hs;?vӐNbX~g]u}ȉewM[,E:|cYȺ?vjwPSӦ&{*uv#Ϋ?[OX j+}fB={Z4b6{Y#u(# ;6ƥo0wܹ;z,54U1Z; 4~{qD{)[^d|^EuomC+巬1 a$w#vYk*ػpvdBDڰlaɬiFX$RgwÈ6h1w8xρ0햆B[ @5V'O( ^mXj,<{r-Ґ=elgz9"Է}v8%R1laƀ\>xWrzXh5_*[ d,ShV&vO|)bx 4CIt6\X,_GuP=#NG"9aS% #z@<"Ⱦ,(h * }Yfd+,f.u6 !z|gҞoo! QdF[w+ qUtGl~0'u̇>H7Ҥ-h6rȡ#_Pݖp(90J bl8uGGv"rF_+x{4j_"rZq^;zsØRI*IZ<8?s1W*8IM;^vVK v-鄴`nG{~q"b*dcvy#6&Lsa buE)rS.Ey9Zi{7Ƹej_ l G8O(HϷNquڎ a s -'ʮG|ޡ/"L)\EnGByMbc΢nvc"46% UDJJ |yrmƕ"pCkacےǶ%7/UTitYrx =r l"GkR؇R{jD<nlo/ 'lE,P {q|?T6?zm`*SZ cnH~#zHi5iu! F88WR2oHy+|]93b. ռvT\b)Zi? 1҂R"|#aହ=z4Y:bjp_̖``_o/bBPRi6dvfOPic$,N]%G@\ݰtmO[\)>tC r 3kkPv秬%%KuE .V'G _OOIA]S[҄P*ԦؤΤfY갨.: e@97߱6RhPs)æJ,vXps9k=H21z ,^h^W#ŭ) R%5B>%E?5/ERx\Say둇,r/6ß*s9#k^QF5nBX襹GߧgGa^PJ˾A(?@)R/fB6AtS-sc:.5-s5 ؄- S2\bf/z53qGن /ô)ô{$IƤ14Σa}ctSQ$Ef-,*>Լ eU|h n)u/Iy$m-)oI!-X063weeYɅ(Ȯ]ٔF`j;j? pU}h! $S̟?BgHxwi|6CQ?_CB,RJQLB\"5½H} dO>4,}t=HJ@L>@`EatI%kyOBSeb.sr>;XĦ}p[ >&j>7=ӈ5|ӻaڝqisUnKMΉSvZQ꠯9}jq '_2st8SmėN4]Ozf"FƇޕ9QI _8 inF񄈮j!~71qPq3vشMB٭7 c~ʡG߀g̸h1.d42+Y^ygt&en=d|G 6|b|4p͠8 'zHRz?4<Y>dII.(⦆^ݔKOtX*ġ:Ŕ1^xE $v}\H #h Ҥyt\%}brF@wV}~zm2 !n[igGsCv_MFIsKBن*qA6Zka?[s";EܞeN}|G-% {6:O u| CGĀ9Yzdr .S ""J7aMMa'`h{^á3KJp@4y8FK _.G3;l?o±o9ysUG*x1tJ#}P*7(rkTryOq{T_^EBM _M*Z͸8գD,ޞE愞怱.͟CGHSGr-;ߞ *{loG8v*NtSr ~lKSYJow#b67:)dгh.u1bpÖS L{OyT|Ĥ7@IՇ!I^ x ,-bpWD3mXutY 8 Q(=QE}sSZm3!,!*|PcheNŦeOR:gQTKJD 5泤̲) W˹Q>p7]tu%b40 ,\ ybK"S 9W9 L*۱c(dAy WdR A>6~K1As$y lr.3 {EDzb'[_ӕb+w_ Ym o ]1Y@٨MM8X'xX_daj\-/I혾{ FV]g$\N:-Hj"4xfS\MijqioaUAɋQ`,& "evFn;  g' wG#~vT V BT9ݗƕsc:  'رuxh:)LghDfLg 9[lx+0H׸~ORdL{UDu40rb{)*&]mgYsY{D;3cw$Ap00 Jf^(qB̄ 7l_h\ndʄdFMY#^OPZUʼn}3o C]k_^t g:n-iiJ˕Oһ PR#)G7? AڍVPk53n80Н(/ t?&ngƽ͗4:N)ÒTE3ũ譇; ۅp {L[&<[@\'у/w`F8h6.46`JS·oV7<4R VD.̗z197k܍Ԇi%7(9}+ \P>()^pAg(~Klڏ܏cF0ːmϒ>KDN"}Jp.VX+Ň(V}P?7N= []n]V"qO>$'L@lHҽK * al`R16k" XEACR[aEՠjZ"桫*xW\dC+phth;+[E*h0ȒǸdɖ}2QwRUeY ̘~U!VƯ6ulwv,[zk2'1~uW hE>`3G~~ +5SȀI&*>5_7wɄ[Kk @3ҽ9Z\ꭉ} C{ռTkTC|ZI8WkCmIt\5 ŚMUl/lt3]-bI~Pݰb@7l iOOC=,01KV)_Wl:# <-Aǟڔ׮H] tɌ)!Mg(B^b4ӓ Qq筼Vo#}z4i7S0ҷ鮁1c.Z1(>,ni%,\rvm@b1k^&A&HYr؀&ѤZA4!f *rnx/LqE>on6F]8Ve91VÚ[D ^Pg>W62PbmLJT"0 svӥX=dЦ$E.LH0N(r̰Ś.͏ 38P%#iWcj aA&wyrhN8k^2C3L"C9^E`dpI$v9 C6$3Oag3\is#FyݻkDCäMxQއf#"C hLinYй\ %i X\ ]VÚ5EW >$(^:LB(e񶖎cG`c%,90cO^`9tlΧV蜍-^]>yu&>o 0-AӄϡR-v3겔U i4^$hZKZ rko}grd+ ttH>ZZU \!4@ aùL3 r$]7Ҩg_ūGFRtr 1`_4qJ:pfkQNEhH=Qt |&BDdd_?/t~%X4 c>ň-j[BbW 3Vܺ CNFaa8n=j40p5Lp\gzriď]z%TN1.0 p /TX5Vp~KBp1"7 J=.ʀw)g@9x 81VP34[stEV}g򵜸S(k^%K^&XZ +pUC*'V$BQ`%hX3­v{sIn ݸќ0: B7}YU"Węk1!54)+BUƒYt!2[v$da'Ѐe/93Zhph$4skp;miiS+QB`L]FD_ fKx>gCpq B07Vɕf a YN!W'<+= ,%/"Z ʉ=a{v B) G1#J?sٯ,Ocjn_GbF1bw#*}J2x~$n,޳O8ntrh`L%N==Rxv& W7#U-fi)6-XZ WN/ZNv/"||{I#Ͷό.si\:e54*Y'vU)h V(%~e8h!mZUmwt6hGy5 `wO"4M׹?ՂdVvH5<:eH,شɑ YO n FBRJE߲ 3`\ HlWf'"|pVZ5zKQ;ܝ8U⏜ϧ6 5WB6xom.ߐW] _,2qx<GO. INe^$8{@7~|s>ll3 UJN^NlIZ޶96aR^~ئ~u{ѝZ#p,[j2!ķr/׏s]j|.Sd ,X}PFlk\f:Őn{xJ6~KElo\px^\46mNl 0!(mYǻ-x7 ]xSkG*h"8HMp5Wm9(u ʪG,jIy="ry 9p+LNv 8Iz7uٕ:ӛfA/A*4բ+Q lG< v1]a*`ATNqHcYM N# :1mN 0mvl>ZH aMyY3E`^ c^gk.k؄^R6 j8U+g F'- $g4(ϕm+5Y?yW-UZ^z.q *:c{a@i)73^49tz^xOh">H[Kk1bcI\Vy m㣯bp5/cA:cA&cA\ Ã8r VB^P$.- -.zʹ+!}CEPMMfP!q¯uStl{گf7RqnDe1ms$9`*2oq&HB. ~/pEE|lewE#܆ϩJjq=*iO ( եji@,0':Ñک=^ mbgXytGMo؈l3] usHґA2ԫ4"9M{ciO-mC&VX| %M[Y IMSv!%ELZK28B6tin;_G|b (,< rk O*+S6@2>uZ7+a-L` |a拭2' cb"IEzNBc+k.~z75 T8zfn%Wlt?QP~ue嶋e~s_$d8$D)lu!F6%}j!:aG>;^Ad,Ts['UJjD=#'VH> ̩^̡,mgS]Ao㛵?3Nhp(tz37+BZ}Ɗ4?9EDi%]5 dn4U߇v)9p7_13dp[*d^]A;!qT͈y݁^<^G͈t&s:C5oK`g8YFKy8y&Zc#H`x1$hr);/! "6csXO9!>ͩR@'He6A?ZH[Ӟ`Lͷȅ7aVPA~^Uق9c,~aF3`)u2OMg[FX6DJ7rm,E0r5 :QڬYh5gQap =%Mϼ]?Nqͼe%72 m3znU`lx3Ox Ь):,vbAE~(K j-R; mjG{e5s\}TNs=NF^)a1}@A Y)掌UkT_qssSOh\C=ex5.c0enMmmG{PDY"tZoIjhB{a5nn uB:JZTan7k S?J;j"d􋡳 xdPJc A=J098rYΖ=u4+)Ll,FgOa@ )7xyzh a{F WC ?652UTy&?3UPA‹bk8 ~˫06W5u +X$;F ,k௧-kU0qC!*,:Ksv6$SW*Ͻ} B#6 P_G/Dn0cCb6ʏʭ/6a8GBHW7㶙C .mՏ PGnduSz˱WPs'oqSYJ(;JqbZWY?Dj'?FJl'H*1Ii^$T(?k˚j(HٸH mGCmHc- ~Ε4i}&E<hӒ>7~\gVXSZ^!YԀU*@ʹ_Gh-,/{ykwD$^5"mt M,Mr;1,& "I*b/+o*x_j yϏ-$=rAm6mF|$Z"BϿUW⡧}D :ivĝAҦߛM(s?^= Mb;~ds>ftބޡ{AUx:JFlX`: LUҦA0NyKCWznd&OQsx\h1ƗBչ@b>nd<RPHfvdDϘ؟4O d~!mz "` di#`5ۙ.Niӓ(sZ){10L1i4ɶ}W<ԩ#_u5_޲ggb>.˝ތ5**sw$U'e;t2푑~7] tH+.&k-Dkym:}ɖ84jajW㣒Rt-׫[f鞨av1nt7Y^'7S{%Se&fOQXgyQLbcR݇Ọ`SySZ%=ڦ_!䰸F;bؕ]?)/( ߧ 8;5yN`d#3aRȓ.F]ah^)Λ=̣j=yۂz]9y2{x=HHN>#+?(z>U.췃 *uäFw^_g*% ^dR׋ѵP#e 'iR thu>0m wNhT%uDk‚MI-ۇVu&hLy`.۸׸+;qWwx{gQoYlO˵Hsr+8-RXWtg$Zօn{ .}2 lo4vt㋝\jkɠMAqxvIHϋ٦V84Sm(( t)f@t)ZXd$ُgʑ`x#|+f{z|y'(GG+YnWH$ͫ5;>؎u '%b)0!WL=ǔk]P'תy 5yj&픪OxX yP(W[锅lC#$>Ԟ.Sdot,6綋MRܑE.+t'huwyyWٔ0Q.`J AR/(r q{$wq 0kФYfiӸj۝PR{dO}Ӷ" 1>d6jϾ8 +ٮ*]~RS~'I ci,l$d䕶>37iyJi^[lc]); *d'&da6͟ln6cHE91@>#RHCK@M9`B 2V❻% M9/3?fy,I)M3M-됌6B3N C+nZ .C>ekUk[I_ - 'RRUeA^N|5U5^Ƣ`hCs_%U¥'E7b''y]^j\pfVX=&>L0]( AʮB(u!A 4!㡽t`ETY:_ DmdDg)vIrCe T,9db]BKbڪanzU{`q_Sr93]ձ)֤L ` 6Ի]WkxW0_0, rx𞠍Xa<kkx˫/1(է4~ݬߜ[1jKeJï8ߧ`<#Фsq7$$DJ+)J8Cdt= *օZ[yDlzFh6 Q}B~mn5 E֮ 뗮 dñ/<{Tؖ;L? ɕ=?ea!aBHvVxS^n IJ- qH[ZcB$[-K$iޏ8z ۇs~A)Ͷ#r9Q"${T+ǽQBbz%iuN0i0E) -Ӕ1ݐ,;G^mERr'{C^рt9~!zSVA%S<M@"(z7#8n&S˗.KNl#ݯ49PDP:@!{A _R,tmPKFyQ-`U&y|PcvLUt`e^q{Fū1JT ȁtFk) JwioEt"&3PXN6qĝEo["U^޸CbdMEXCPUoU: }./+ְ5$P!4QUW⡝P%x"G@>W'WVҺtݡ3o~Ȼy."MωM838# 1Lz, J -/N3Z'Elwˍ!EM kŻ5 @>J?t>|׿\@>(S}Pڕ5 C PpA+Fm2 bx) $@JDt a GU 1vch M =HC؊M^YGe<1bOCf T':lv߱msv"2>OavTCFbmhƆYI:${O+iGxS0zB$^&‡Wa}k5dR7֮ P6m0|!K_Gï=)n9۬5Cnxf!bÐF^v;ͶXǙgC}7;kqKݰ^J+FسC&LGhQ;qPs3_΂?z)OTr/do4R ,&A7vc1vHkovcF;ro#"إ{5go\ޥg ҷuנC]&S1WImQO' vepѕx$B~/go+G}䶇fVvs;"֏y-RM|]Z<=6WPk&K-8.ު{}"e9=)4N:jLOB`>eWj(.B}@ܽkm >x %핢6Jv^VR2Ƴ[sk5A"&YKǙq ?wG9VdD,qиq?1 ]^n3կ_7yi#B!@RhZCp yy{O^V6A{Ad*B=o4 C}%9,P_̫2LvesǴyzm!KڂemRMX6O^.oĽ#g~=f|}<4V:5c bs [.>|IB \<`0`u=$_AoX>fdFL[2ܶ0TD eiܢS$[p!Ӡj]g gʆ {WU X9ʫCS [Rjx*{]9"tbβ,\~*6{͹=O B%U:k5atO ۰dצrGvїƆٗZ1?ގBu~IR7J4-(I .Ѭ[E3W^n9(+o28}[ y'nÕCSQGe=3iK=G%XK#-hCJۦ΄㳄>ٓ"9׽fJ{4Sղ=d&mF^iF fV+ }'vژ^!q)4KR{pP=ĕvhAN (PHg]#Kӡ0sPU@ V{pF.>"ʠ_&["/)E)to >ho4Ǖz؁1iW!] W9_0:,I<Ե '4^\M!uAjťzXv;SWY^:U6aNEwq$섒NٹyxSxt .GO#+)Yq\($#OYBt)͇n[\fǪ/֥99V1K0u5~#&pX?8`nxߟ80l;j0e7~̼II)St=Z,} îR,twJbP^ IxD;ruٸa"X lcձG{sM6&PiԡI5$L=+*;sOMa0jtQ!ҙd}شŧ><1!e)C{e./KSÌO] sH=ڙp1ũ«lkqXxwdpٺu8J2n[m#)M^:)Hi|̹Ԃϥ̲ϥ <7w)gm )k gC%e/n5lZF܆| dCFs} mmGm)Kѥ#EXl%rM duT1E*Ala=/-z3ͱ^K=KړƊq 3nS3Rqio}:>$;QPE;!+ xږū%Huh6{*-X+;xny(4VyRJwd#Qa=4Q-fa R` r(O- (6HC@T$FFא}9`AF|ʾU\GT⎂ϞQ="l#mR#71 YN\ =3 g 0N`,l(nW~ƄwX\zq38}6c/id35tn~*5槈"ᴳ#&Dy+uIϖW*ѧ/+3'l|zGu0T%d*r/z=phJ\X7#4Yo|\6_v]woU֪gUT^q[A-EWQQ0f GLYss_羪flj8@2i"!S_9:#&a>c6_BٳyH|kq;#ȼR&Sߕ1_ft th-$3CfC]E1Ȣl?{O?p57]\IшaV}W7bXmUr%uXhaCȽ|zTMo;vmRnePHƄCRjE(w iRf+t9APy)F#om.ϧHό (I<`!oUzEomBM9D4̭HS(m{zyBt$uOI_˭:0?Ϻ Eh~VI1AlIψ?gLB**~zC<v4r:nU#ZE9÷)j9\j EݢQ8Rc)Jэٚ#&4FL(P *>D@J/ڴ٭u@(jvRBKLWCB|13>>V3:nl P=!}Q18f)(0Ob;qQ2UE9QpU/1 Rwh2+9`Pu6v[?iKR^qq1DB썈x1&d9tfZf|El$gCݹ&Q:ej&dc U4lh\F tnL3ݒ8 T AX #Z-\M=!0n~ͭ}V\܃ЅҞAԎ& JK9- (^E6?ËdW1S.Ce Ⳳl>L&EOE E+RG ÊY"kT 6w:29y)rY2 =uJw6Z=V`دo{CtHK(R/Dn_D;уs+<٭[Sޡ]U r !u̍Α/Ne -v]iOO-Ib~@+[A\ qש>uq.!amdi D#rfGH{ _-iF _Ae6ЫZ-GcΔ+qGe!0G BIHe@! /uܟݦgzQlA1O>; !e!rE#m;lŭ=s_L_cpOkSv֍@Sz)Ktd_48 %k;l*{Ln}h)z7Oì)GGxZN"Oujg͓e&~(sPKM X|n ߘ"#3}|N,x$!%@>UFG0=̀~˕|B#D)/K6c>>7h k(]Mo#8S,{PS{ 4[dS6OϫqQnƮ6An+=AZBQu'2[s&bQ;_j~PK`>& IP[[x0:@ʕv2H[)`rjbœ MbnrS1Bt1rt~wf9hLqS&L" ρ?Sty oK i&jT'DUD /"JLӓ'9ìOܱG: Qx$[WMi>.W//1þ UKuh47Q`8u[ZGpdZ#e2%& RL7rY2|]mՋ1g˱^TrKlq 9jJ2nsÑJ,.xӕgE —/]s\msSay{\=`K୶;+4E?71 Ú~Fݎgw@4¡lSMA!2 ˀ&];T^t]eRC<<&_\ŎU_׳ɦmWAQ}d۞WYfR[ffJc. Jވ.MXJ89"EIGqF4S@z^10e3&= ƿ؝ z)>'Pysh'7"|Z6l!g܌(,6RhkGز0||Zzc Srzn#[|x \/)WW#!Yž)}n&}C026pI \4_l!fwOS]&T˸$uiwPh3MW514ߢ$ Wk,ߎ\c̑qyzg':Aχ4%]Z fm1!epwE/de'|X[nZ2AGľmȎ1ܓ@OʛL'#@Ӊ,_N6N/^hDỳl tp ">T9v~hG¼yCP d'BOH FYHbf*lnQ$Hи[8:Nb n$Pˌ,2E-$)w!RkZs5!G:3w0@A\4#(,\Wb"ow SjFG% Y)3ܘ//rߊ%i2SOʿ)&"}] pSٓ3=}n tZ|ʌSd^{UNsg'`G͐TI*ByC95j 8[8FO>e.|} fQlt.#-6=tz!!@Þ8hgbiZpcvw1yfp~C~t\3xuvvFis)ti,雦P40u<\ %{ a=wEuIY`(V\5Y61A7d @ " `)V!qajmmVV.6 .^TYV r2C6];+\7|yn% r(geE6 #/ZsW9 58BZ:Z*A]~pX`@͇A%Inǒ^=u)~a3YsS"y%R>םGyi Q1:vHʐbūs\riZslYM\ LvPL=l3R400=)eFs\ef(N,=*Y<0vKA7C!ztsHfG=KFdN#׆OQRY3_;͔Ms<\^%@$(}U=1a6Vܺd8JO)ҳ;ECX]opB?k5LJ'9\ \ob#l∣0 o4e\U\\ G4[;\w%SUjGC3=<uRL|;ܔcZk8>6Ј+3󁊫 ^rJ:7 Lɽ +&B 4 0)+3 ^" wb4քhҷwM_vA\9\v$Q:~$#u@vV"BaD|8F5"NZR"^&aZ,g!>fswia'trf+ W!Z_9s0V m:^8^,%\;H CjLܐo$du7!;r)zH%<{FZ(n^xo P4J]7tIPR>0ʮJ6c|ݪ%eW%_N">ȷxac[Y-t s_LB:."uJfL!ʆG0ڲ*$"e`?ǣ4%@tYe#~Z=yL_XٵH^_!֏xD9+!<pSb⪧wu7?Y}(6IQVN>XVjgt)iU`T)1J5QؑȚiSx8e ^_mXm"x گ}BAb&Y1]!~i# { lԖ[ /mUϞ}a/^ #Cv :lJ2+LKҚYm=l[9c =HGcyJneֽYFMr1mvN,5Q̗eDN0/RDt gIy(E!$L'rSoF;鴟u>E+-M~z]iF6+dR{uSVq^*9';B& 羢CˬRCfYX{ngnDC= $cR`?C|_d ڸ%Vś*/;0hw i3$ZO@in'101^Ձ:I3Ԏs!(ϙ,@D/zro_wsΉ,bOk>PY촮[k-&*EXaf V4YS.4BHAn3WD /)VV8ţ#E r$Oi?8(AYeNEJ92paREv`QLsw" /F8+9TŠT&ZXS7D~*a,  p7n7!&f2{?i<ie\Vg'm susb`{!^JS "*.{)u/wWV^EQ7mEúہ~=%4 fŽVG5@ltU\TB*ղK!-<noUܡJ[K\Z1+jk[遴o3ϑLWJkPY{ $WrMo4/g3+eG-"+eؽ*%c77JKaJ|\֝ o->>QAT`͑xbml3gg!5LF iaÇJV^lYFסL.WT֞;oZl jOr3=Jfwr[ȟc>R-hzۉ#lMکDFؘ[iÑz_)?A'' 7ISRW4KqXAX?#̏A_YM<"tzfXt2=gӖK=8$F4*Ez6'ZjVP>m+<+"ɒ؛۴4 _z*kxLl7jެV,sxM! "8aG5 P}$X;;sTZx@}pbN#ĺ c+vTfr޲#>.)<1M@LvmEC!KsF#VEޞ"OZMrW`5_[A? A?9TEwCIa# B7wFx2tv%Ӳ:z#uvKށ~Жk w.|Sd)· rQtJW 1_\@r1UPfꇞM;=uVs$|CS8E7[!oq D꘴Db'DN]"wq9!pAgEieZ6r0kO{)SvQ٤8eGNSհޚ㶩H b:: [~ F$\)nIAc&ru]"ƒ9~Wʂk LKh$>\8H={K`U+E}^D^G2q<WJx)Ryr(kQͨ>,J1F2FҼšIţAW MƂzij;wR{pA?#W}Q.nae?=pOScNc(ޮc# e֊Sz%|N#ϿB.}&&%}K>[/lkF w m0cGq ~54 /Z_M|j-=9>dۉ.,O p#9 ȎbE"YI4{m{uh4ҰX/V+jZFa&NּPvx]ݸ0;ⶴ)AmH?Ew4őr 7,KQAtrFS/i>2=:MUA!i z* ;G]GAݣb5f"vҖz8df_ME]zHk9.4T_W9tETL:ϒt#k-i[ < $d( f;2y`-^&.(7C^*B![no!MyY~;& .b|[B< O.2+_MkKx1.i;DW8\n]fKBqWaMq唎\ uDkoA@)<ĚViKiWVWæJI@)%uon?ÚYqXϭaa qX uQ{[T^qx 뿱=Hb/B߸5yv| AI7T̠T e<)8|%rjNANw]2cz764XrqNrxS{e:_nwFpAM,AM:hɟʞhPAAM瞼dPST1AMG/ jWAM/iKй? j:_6A O jAP\= ^5:;AMz5m jAM]4%TsQPSԔqje5MуAMi;3хi0t6_};i=݅P2ʹKYO ec13b@f]6k_^ )#络 Ic>11?*#n^z^# neՄ?z=bzfXd;mL"C. 6z&hMݼW3I9%AU*{hS=A(],`KGw n1^H;OB/+3AOaXqgXڹv+PݱYy@cur^z!"e2"yyGv|wUQo_;GdBE&tL`/A (2!kn=2.0"R`0Ȅ,+_F&܌EG&<|G&p]PXqKJ9"ȋ3}q ס*| :=1p/ծӚ 1,AܦL36)(ȀmȠ~E:ހ;/b{zlMױ {N Oў(;&80?؄@%bNW v^26ᷝ؄'/$6=cھ+6G'36A=A’t_&x9}bƟcF ? c0DyKێ* Jy{"'GA \;zv~OP—m໰JxPf$̄z1*! '.R! Y8␡jeչ<#3 o[鲓4gUlqJhL{Ix_7[y65&1z;&+%dr'x'^}q0M қі*9bpWoj3j@]#4-0'fJ'6ѝߩ$3H \L8|BLFQt ƵQ.2Hyhe#@dA]}p۠zh-(qlw4,HF01/; M GFfu$Vr9h9S|ANMNBm{Q:zgF:q0t!ߨP4&@8Cn;_4A TI?nJ;*At##4RTdLR<7W|4Fs1 )zIdmZ1.B}H8[tC,l!vly|:V[[/؁15;l؁7+تc^"dUي?T{z`+kW2Vc%-HVpޭ`oQk!`oÛZhGa{7pUDuhƲ5O {(Wҭ)'_[YMhi#~ɭ<ϝ}kDY=zGP~7A %dJZOlP-45sL~<}yV"qRGL/|sY3vk /su~YCB}"5% *B#?Gq}> dUK-"a$Yx ⛳i2MMR={oۤ=e+j=}pI/4N3!]:e\3]q.Ätrw] G]y^O݃S';!昄t2SBF[Ѥ]H96 14p~U-me8@>i;NTxltLҺhr*Lp([MZTASYQiǯrN:* hS"w*c@ѡ]gUYX]r2)G %oY*opao;rRs~SZ Ekcj>Tk`Cv*NflmlmDpgI8SnAGx6|b̵~a2IMTQkrݷ&n]kY gCO64_fvcotLh*4Th+ΐLTuHf!^*դi(f6lXFzg JBny瀢/%Q֗]{1CF6_ԜNkL*LFh:cTh!@me m2laLS>MP:*S-SgRudσtݮo$ANRiȗ$htո_f`4`n+p%[ĺy_0]ޘmbN2ZO YAz'r15\,HRqx ڢ5eC<2>{ݩ(ÈO[yf?_s[5n2xFel2lZS䫵 hl#h/tr7k9uP#06[y qlY !H(AzHK:GA 1fߛG32烌~{wy4eb[fF~1,`hl 3 Fdu/N\j_#6ֳtC8mH6XOyƑ$[_|aKdz;,_83ihyQ,'i㩽1f$eͳTN}v$V_sRz*+W~M3ctjXcR?WL1\ [wdǤ)7G, (N?wZ,]Ou91>]brt9Z]#qRr=MWĮ$ ΞFIlpzw7iotzCYb_M z.pGC1Iwӧ5}g8 d&8Vr`Ng'{2MTwz3Ig#m? RsjmeUxҩ6x }88)UeG(+ $OwB d;iq@( 'S~W;:;}O:ľ |G'/~7/~1NRFvc6| "^ӻX8)>#e4sC>pм&uXVX($X PUe} QvV՛ڤZ+-M)7h"nlXÜl&nU_nsq))z!qC#f$HT{:zQ`u*vbP4:`;X(jJY[WWv̨d 8JUMGY : >&,h?X0hdlFFA_GLz3/a+H dyS1FwUp{oy,kW_CM„VK|!]x OCB* *?Y0I߼}0Y\N j Uy,]Hf -`|(O#6MJy.u4Y[q ĎC\t[7f4%QAҖ Ժ !|=ӮvF/XN 2mR h3]↝W\qdR94 ]H`sUv Xp+NDםgq"Ɉ*b4 JFZbU Cݮ* +-Ƞ_4F *ZqVOH|nƴx>3 !XGBSn Jz0A`_„T+_,\9{MR?ĺqJon2[izF^W XXWi> 󨿾&Ln%B 1swjCNqqL$'FXz4ccdS46őf mc$k4Msh^BR>:n[ $Ob zU.nˆi5*q wAl0X=eeʼnql ܨ/g"W1L+*nXS屩vn_w/eMl+B`uh\z b~6qkQ.֐s]6SΦQ <TN՝fJF7}fa+v;\{:KӊҘduN5OhyQ.::e.̥fb Js,B| h6 C;FvyX+.nH Mˁ-#I#y;YτH{DxP ڵh#(c@F^M