arctica-greeter-0.99.1.5/arctica-greeter-check-hidpi0000755000000000000000000000460614007200003017031 0ustar #!/usr/bin/python3 # -*- coding: utf-8 -*- # Copyright (C) 2017 Clement Lefebvre # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authors: Clement Lefebvre import gi gi.require_version('Gdk', '3.0') from gi.repository import Gdk import sys import os HIDPI_LIMIT = 192 def get_window_scale(): window_scale = 1 try: display = Gdk.Display.get_default() screen = display.get_default_screen() primary = screen.get_primary_monitor() rect = screen.get_monitor_geometry(primary) width_mm = screen.get_monitor_width_mm(primary) height_mm = screen.get_monitor_height_mm(primary) monitor_scale = screen.get_monitor_scale_factor(primary) # Return 1 if the screen size isn't available (some TVs report their aspect ratio instead ... 16/9 or 16/10) if ((width_mm == 160 and height_mm == 90) \ or (width_mm == 160 and height_mm == 100) \ or (width_mm == 16 and height_mm == 9) \ or (width_mm == 16 and height_mm == 10)): return 1 if rect.height * monitor_scale < 1500: return 1 if width_mm > 0 and height_mm > 0: witdh_inch = width_mm / 25.4 height_inch = height_mm / 25.4 dpi_x = rect.width * monitor_scale / witdh_inch dpi_y = rect.height * monitor_scale / height_inch if dpi_x > HIDPI_LIMIT and dpi_y > HIDPI_LIMIT: window_scale = 2 except Exception as detail: syslog.syslog("Error while detecting hidpi mode: %s" % detail) return window_scale if __name__ == '__main__': window_scale = get_window_scale(); print ("{script}: Window scale is {value}".format(script=os.path.basename(sys.argv[0]), value=window_scale), file=sys.stderr) print (window_scale, file=sys.stdout) sys.exit(0) arctica-greeter-0.99.1.5/arctica-greeter.doap0000644000000000000000000000147314007200003015601 0ustar arctica-greeter Arctica Greeter Mike Gabriel arctica-greeter-0.99.1.5/arctica-greeter-guest-account-script.in0000755000000000000000000001511214007200003021343 0ustar #!/bin/sh -e # (C) 2008 Canonical Ltd. # Author: Martin Pitt # License: GPL v2 or later # modified by David D Lowe and Thomas Detoux # # Setup user and temporary home directory for guest session. # If this succeeds, this script needs to print the username as the last line to # stdout. . gettext.sh export TEXTDOMAINDIR=/usr/share/locale export TEXTDOMAIN=arctica-greeter # set the system wide locale for gettext calls if [ -f /etc/default/locale ]; then . /etc/default/locale LANGUAGE= export LANG LANGUAGE fi is_system_user () { UID_MIN=$(cat /etc/login.defs | grep UID_MIN | awk '{print $2}') SYS_UID_MIN=$(cat /etc/login.defs | grep SYS_UID_MIN | awk '{print $2}') SYS_UID_MAX=$(cat /etc/login.defs | grep SYS_UID_MAX | awk '{print $2}') SYS_UID_MIN=${SYS_UID_MIN:-101} SYS_UID_MAX=${SYS_UID_MAX:-$(( UID_MIN - 1 ))} [ ${1} -ge ${SYS_UID_MIN} ] && [ ${1} -le ${SYS_UID_MAX} ] } add_account () { temp_home=$(mktemp -td guest-XXXXXX) GUEST_HOME=$(echo ${temp_home} | tr '[:upper:]' '[:lower:]') GUEST_USER=${GUEST_HOME#/tmp/} if [ "${GUEST_HOME}" != "${temp_home}" ]; then mkdir "${GUEST_HOME}" || { echo "Failed to create ${GUEST_USER}'s home directory (${GUEST_HOME})" exit 1 } rmdir "${temp_home}" fi # if ${GUEST_USER} already exists, it must be a locked system account with no existing # home directory if PWSTAT=$(passwd -S ${GUEST_USER}) 2>/dev/null; then if [ $(echo ${PWSTAT} | cut -f2 -d' ') != L ]; then echo "User account ${GUEST_USER} already exists and is not locked" exit 1 fi PWENT=$(getent passwd ${GUEST_USER}) || { echo "getent passwd ${GUEST_USER} failed" exit 1 } GUEST_UID=$(echo ${PWENT} | cut -f3 -d:) if ! is_system_user ${GUEST_UID}; then echo "Account ${GUEST_USER} is not a system user" exit 1 fi GUEST_HOME=$(echo ${PWENT} | cut -f6 -d:) if [ ${GUEST_HOME} != / ] && [ ${GUEST_HOME#/tmp} = ${GUEST_HOME} ] && [ -d ${GUEST_HOME} ]; then echo "Home directory of ${GUEST_USER} already exists" exit 1 fi else # does not exist, so create it useradd --system --home-dir ${GUEST_HOME} --comment $(eval_gettext "Guest") --user-group --shell /bin/bash ${GUEST_USER} || { rm -rf ${GUEST_HOME} exit 1 } fi dist_gs=/usr/share/arctica-greeter/guest-session site_gs=/etc/arctica-greeter/guest-session # create temporary home directory mount -t tmpfs -o mode=700,uid=${GUEST_USER} none ${GUEST_HOME} || { rm -rf ${GUEST_HOME} exit 1 } if [ -d ${site_gs}/skel ] && [ "$(ls -A ${site_gs}/skel)" ]; then # Only perform union-mounting if BindFS is available if [ -x /usr/bin/bindfs ]; then bindfs_mount=true # Try OverlayFS first if modinfo -n overlay >/dev/null 2>&1; then mkdir ${GUEST_HOME}/upper ${GUEST_HOME}/work chown ${GUEST_USER}:${GUEST_USER} ${GUEST_HOME}/upper ${GUEST_HOME}/work mount -t overlay -o lowerdir=${dist_gs}/skel:${site_gs}/skel,upperdir=${GUEST_HOME}/upper,workdir=${GUEST_HOME}/work overlay ${GUEST_HOME} || { umount ${GUEST_HOME} rm -rf ${GUEST_HOME} exit 1 } # If OverlayFS is not available, try AuFS elif [ -x /sbin/mount.aufs ]; then mount -t aufs -o br=${GUEST_HOME}:${dist_gs}/skel:${site_gs}/skel none ${GUEST_HOME} || { umount ${GUEST_HOME} rm -rf ${GUEST_HOME} exit 1 } # If none of them is available, fall back to copy over else cp -rT ${dist_gs}/skel/ ${GUEST_HOME} cp -rT ${site_gs}/skel/ ${GUEST_HOME} chown -R ${GUEST_USER}:${GUEST_USER} ${GUEST_HOME} bindfs_mount=false fi if ${bindfs_mount}; then # Wrap ${GUEST_HOME} in a BindFS mount, so that # ${GUEST_USER} will be seen as the owner of ${GUEST_HOME}'s contents. bindfs -u ${GUEST_USER} -g ${GUEST_USER} ${GUEST_HOME} ${GUEST_HOME} || { umount ${GUEST_HOME} # union mount umount ${GUEST_HOME} # tmpfs mount rm -rf ${GUEST_HOME} exit 1 } fi # If BindFS is not available, just fall back to copy over else cp -rT ${site_gs}/skel/ ${GUEST_HOME} cp -rT ${dist_gs}/skel/ ${GUEST_HOME} chown -R ${GUEST_USER}:${GUEST_USER} ${GUEST_HOME} fi else cp -rT /etc/skel/ ${GUEST_HOME} cp -rT ${dist_gs}/skel/ ${GUEST_HOME} chown -R ${GUEST_USER}:${GUEST_USER} ${GUEST_HOME} fi # setup session su ${GUEST_USER} -c "env HOME=${GUEST_HOME} site_gs=${site_gs} @pkglibexecdir@/arctica-greeter-guest-session-setup.sh" # set possible local guest session preferences source_local_prefs() { local USER=${GUEST_USER} local HOME=${GUEST_HOME} . ${site_gs}/prefs.sh chown -R ${USER}:${USER} ${HOME} } if [ -f ${site_gs}/prefs.sh ]; then source_local_prefs fi echo ${GUEST_USER} } remove_account () { GUEST_USER=${1} PWENT=$(getent passwd ${GUEST_USER}) || { echo "Error: invalid user ${GUEST_USER}" exit 1 } GUEST_UID=$(echo ${PWENT} | cut -f3 -d:) if ! is_system_user ${GUEST_UID}; then echo "Error: user ${GUEST_USER} is not a system user." exit 1 fi GUEST_HOME=$(echo ${PWENT} | cut -f6 -d:) # kill all remaining processes if [ -x /bin/loginctl ] || [ -x /usr/bin/loginctl ]; then loginctl --signal=9 kill-user ${GUEST_USER} >/dev/null || true else while ps h -u ${GUEST_USER} >/dev/null do killall -9 -u ${GUEST_USER} || true sleep 0.2; done fi if [ ${GUEST_HOME} = ${GUEST_HOME#/tmp/} ]; then echo "Warning: home directory ${GUEST_HOME} is not in /tmp/. It won't be removed." else umount ${GUEST_HOME} || umount -l ${GUEST_HOME} || true # BindFS mount umount ${GUEST_HOME} || umount -l ${GUEST_HOME} || true # union mount umount ${GUEST_HOME} || umount -l ${GUEST_HOME} || true # tmpfs mount rm -rf ${GUEST_HOME} fi # remove leftovers in /tmp find /tmp -mindepth 1 -maxdepth 1 -uid ${GUEST_UID} -print0 | xargs -0 rm -rf || true # remove possible {/run,}/media/guest-XXXXXX folder for media_dir in /run/media/${GUEST_USER} /media/${GUEST_USER}; do if [ -d ${media_dir} ]; then for dir in $(find ${media_dir} -mindepth 1 -maxdepth 1); do umount ${dir} || true done rmdir ${media_dir} || true fi done userdel --force ${GUEST_USER} } case ${1} in add) add_account ;; remove) if [ -z ${2} ] ; then echo "Usage: ${0} remove [account]" exit 1 fi remove_account ${2} ;; *) echo "Usage: ${0} add" echo " ${0} remove [account]" exit 1 esac arctica-greeter-0.99.1.5/arctica-greeter-guest-session-auto.sh0000755000000000000000000000444014007200003021044 0ustar #!/bin/sh # # Copyright (C) 2013 Canonical Ltd # Author: Gunnar Hjalmarsson # # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation, version 3 of the License. # # See http://www.gnu.org/copyleft/gpl.html the full text of the license. # This script is run via autostart at the launch of a guest session. . gettext.sh export TEXTDOMAINDIR=/usr/share/locale export TEXTDOMAIN=arctica-greeter DIALOG_SLEEP=${DIALOG_SLEEP:-4} # disable screen locking (GNOME, Unity) gsettings set org.gnome.desktop.lockdown disable-lock-screen true # disable screen locking (MATE) gsettings set org.mate.screensaver lock-enabled false # disable screenlocking (XFCE, Pantheon) gsettings set apps.light-locker light-locker-enabled false gsettings set apps.light-locker late-locking false gsettings set apps.light-locker lock-on-lid false gsettings set apps.light-locker lock-on-suspend false # info dialog about the temporary nature of a guest session dialog_content () { TITLE=$(eval_gettext 'Temporary Guest Session') TEXT=$(eval_gettext 'All data created during this guest session will be deleted when you log out, and settings will be reset to defaults. Please save files on some external device, for instance a USB stick, if you would like to access them again later.') para2=$(eval_gettext 'Another alternative is to save files in the /var/guest-data folder.') test -w /var/guest-data && TEXT="$TEXT\n\n$para2" } test -f "$HOME"/.skip-guest-warning-dialog || { if [ "$KDE_FULL_SESSION" = true ] && [ -x /usr/bin/kdialog ]; then dialog_content TEXT_FILE="$HOME"/.guest-session-kdialog echo -n "$TEXT" > $TEXT_FILE { # Sleep to wait for the the info dialog to start. # This way the window will likely become focused. sleep $DIALOG_SLEEP kdialog --title "$TITLE" --textbox $TEXT_FILE 450 250 rm -f $TEXT_FILE } & elif [ -x /usr/bin/zenity ]; then dialog_content { # Sleep to wait for the the info dialog to start. # This way the window will likely become focused. sleep $DIALOG_SLEEP zenity --warning --no-wrap --title="$TITLE" --text="$TEXT" } & fi } # run possible local startup commands test -f /etc/guest-session/auto.sh && . /etc/guest-session/auto.sh arctica-greeter-0.99.1.5/arctica-greeter-guest-session-setup.sh0000755000000000000000000000252114007200003021232 0ustar #!/bin/sh HOME=${HOME:-$(getent passwd $(whoami) | cut -f6 -d:)} # disable some services that are unnecessary for the guest session services="jockey-kde.desktop jockey-gtk.desktop update-notifier.desktop user-dirs-update-gtk.desktop" for service in ${services}; do if [ -e /etc/xdg/autostart/${service} ]; then [ -f ${HOME}/.config/autostart/${service} ] || cp /etc/xdg/autostart/${service} ${HOME}/.config/autostart echo "X-GNOME-Autostart-enabled=false" >> ${HOME}/.config/autostart/${service} fi done # disable Unity shortcut hint [ -d ${HOME}/.cache/unity ] || mkdir -p ${HOME}/.cache/unity touch ${HOME}/.cache/unity/first_run.stamp [ -d ${HOME}/.kde/share/config ] || mkdir -p ${HOME}/.kde/share/config echo "[Basic Settings]" >> ${HOME}/.kde/share/config/nepomukserverrc echo "Start Nepomuk=false" >> ${HOME}/.kde/share/config/nepomukserverrc echo "[Event]" >> ${HOME}/.kde/share/config/notificationhelper echo "hideHookNotifier=true" >> ${HOME}/.kde/share/config/notificationhelper echo "hideInstallNotifier=true" >> ${HOME}/.kde/share/config/notificationhelper echo "hideRestartNotifier=true" >> ${HOME}/.kde/share/config/notificationhelper # Load restricted session #dmrc='[Desktop]\nSession=guest-restricted' #/bin/echo -e ${dmrc} > ${HOME}/.dmrc # delay the launch of info dialog echo "export DIALOG_SLEEP=4" >> ${HOME}/.profile arctica-greeter-0.99.1.5/arctica-greeter-set-keyboard-layout0000755000000000000000000000520514007200003020561 0ustar #!/usr/bin/python3 # -*- coding: utf-8 -*- # Copyright (C) 2017 Clement Lefebvre # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authors: Clement Lefebvre import sys import os import syslog import subprocess if __name__ == '__main__': try: # Exit if something is missing for required_file in ["/etc/default/keyboard", "/usr/bin/setxkbmap"]: if not os.path.exists(required_file): syslog.syslog("%s not found." % required_file) sys.exit(0) # Log current keyboard configuration output = subprocess.check_output(["setxkbmap", "-query"]).decode("UTF-8") syslog.syslog("Current keyboard configuration: %s" % output) # Parse keyboard configuration file XKBMODEL = "" XKBLAYOUT = "" XKBVARIANT = "" XKBOPTIONS = "" with open("/etc/default/keyboard", "r") as keyboard: for line in keyboard: line = line.strip() if "XKBMODEL=" in line: XKBMODEL = line.split('=')[1].replace('"', '') if "XKBLAYOUT=" in line: XKBLAYOUT = line.split('=')[1].replace('"', '') if "XKBVARIANT=" in line: XKBVARIANT = line.split('=')[1].replace('"', '') if "XKBOPTIONS=" in line: XKBOPTIONS = line.split('=')[1].replace('"', '') # Apply keyboard configuration command = ["setxkbmap", "-model", XKBMODEL, "-layout", XKBLAYOUT, "-variant", XKBVARIANT, "-option", XKBOPTIONS, "-v"] syslog.syslog("Applying keyboard configuration: %s" % command) output = subprocess.check_output(command).decode("UTF-8") syslog.syslog("Result: %s" % output) # Log new keyboard configuration output = subprocess.check_output(["setxkbmap", "-query"]).decode("UTF-8") syslog.syslog("New keyboard configuration: %s" % output) except Exception as e: # best effort, syslog it and bail out syslog.syslog("ERROR: %s" % e) sys.exit(0) arctica-greeter-0.99.1.5/AUTHORS0000644000000000000000000000000014007200003012724 0ustar arctica-greeter-0.99.1.5/autogen.sh0000755000000000000000000000101614007200003013665 0ustar #!/bin/sh # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0` test -z "$srcdir" && srcdir=. PKG_NAME="arctica-greeter" REQUIRED_AUTOMAKE_VERSION=1.7 (test -f $srcdir/configure.ac \ && test -d $srcdir/src) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level arctica-greeter directory" exit 1 } which mate-autogen || { echo "You need to install mate-common from the MATE Desktop Environment" exit 1 } USE_COMMON_DOC_BUILD=yes . mate-autogen arctica-greeter-0.99.1.5/ChangeLog0000644000000000000000000016312114007200003013444 0ustar 2021-02-05 09:16:32 +0100 Mike Gabriel * release 0.99.1.5 (HEAD -> master, tag: 0.99.1.5) 2020-12-07 13:16:13 +0000 Jacque Fresco (7ac42ab) * Translated using Weblate (Malay) 2020-11-24 06:40:01 +0000 Jakub Fabijan (cec6722) * Translated using Weblate (Polish) 2020-11-11 18:34:43 +0000 Habib Rohman (b1a0662) * Translated using Weblate (Indonesian) 2020-10-23 21:41:13 +0000 Adolfo Jayme Barrientos (7469254) * Translated using Weblate (Spanish) 2020-10-23 21:37:51 +0000 Adolfo Jayme Barrientos (b128ea4) * Translated using Weblate (Catalan) 2020-09-24 08:22:16 +0000 Lauri Virtanen (a33cee4) * Translated using Weblate (Finnish) 2020-09-21 03:12:45 +0000 Kornelijus Tvarijanavičius (d40b6ae) * Translated using Weblate (Lithuanian) 2020-09-18 13:07:06 +0000 Satnam S Virdi (e6af2c9) * Translated using Weblate (Punjabi) 2020-09-14 23:35:51 +0000 Doma Gergő (4479c15) * Translated using Weblate (Hungarian) 2020-09-12 21:09:13 +0000 ssantos (db07aca) * Translated using Weblate (Portuguese) 2020-09-13 17:13:03 +0000 Nathan (34d16a4) * Translated using Weblate (French) 2020-09-08 06:55:46 +0000 Suraj (ad92403) * Translated using Weblate (Malayalam) 2020-09-04 06:47:09 +0000 antuketot76 (a4e4c5f) * Translated using Weblate (Malay) 2020-08-27 19:47:13 +0000 Quentin PAGÈS (aecd5be) * Translated using Weblate (Occitan) 2020-08-29 20:54:21 +0000 oo nth (4bb43cf) * Translated using Weblate (Hindi) 2020-08-23 16:07:04 +0200 Mike Gabriel (e64eafd) * debian/control: The bin:pkg is a linux-any package (as we require systemd at runtime). 2020-08-23 16:00:16 +0200 Mike Gabriel (36d9d07) * Drop all distro-theming packages and dependencies and default to Blue-Submarine GTK theme, Adwaita Icon theme and 'Sans' font. 2020-08-20 10:06:57 +0000 Satnam S Virdi (b95bf57) * Translated using Weblate (Punjabi) 2020-08-07 19:18:18 +0000 Oğuz Ersen (bd791c2) * Translated using Weblate (Turkish) 2020-07-30 03:52:53 +0000 Sithu Aung (a6fb951) * Translated using Weblate (Burmese) 2020-07-28 08:11:11 +0000 Kristjan Räts (e3f879f) * Translated using Weblate (Estonian) 2020-07-23 10:34:30 +0000 lingcas (9bd4d4b) * Translated using Weblate (Chinese (Traditional, Hong Kong)) 2020-07-19 14:41:46 +0000 ssantos (d6a91f6) * Translated using Weblate (Portuguese) 2020-07-14 15:01:52 +0000 TA (46d63a5) * Translated using Weblate (Indonesian) 2020-07-08 12:17:25 +0000 Abdul Khan (7a35bbd) * Translated using Weblate (Hindi) 2020-06-21 17:32:08 +0000 CHAIWIT PHONKHEN (c5db576) * Translated using Weblate (Thai) 2020-06-18 04:00:28 +0000 Gaurav Kumar (d967b3f) * Translated using Weblate (Hindi) 2020-05-30 09:01:21 +0000 Pratchaya Chatuphian (d4cf42c) * Translated using Weblate (Thai) 2020-05-15 01:07:19 +0000 RIZWAN AHMAD (ca2c104) * Translated using Weblate (Hindi) 2020-05-14 22:31:01 +0000 Andrius Majauskas (4377379) * Translated using Weblate (Lithuanian) 2020-05-08 03:44:26 +0000 Abdusalam (27f32db) * Translated using Weblate (Uyghur) 2020-04-03 17:25:53 +0000 Allan Nordhøy (d5ad59b) * Translated using Weblate (Nepali) 2020-03-23 11:44:16 +0000 Buescu Bogdan (0683b69) * Translated using Weblate (Romanian) 2020-03-17 16:18:58 +0000 Satnam S Virdi (5d8e67c) * Translated using Weblate (Punjabi) 2020-03-13 09:49:10 +0000 Hemanta Sharma (a91297d) * Translated using Weblate (Nepali) 2020-03-02 17:13:50 +0000 พัชรพล ผาริวงศ์ (a87b542) * Translated using Weblate (Thai) 2020-02-25 14:38:43 +0000 f0roots (b070191) * Translated using Weblate (Romanian) 2020-02-19 17:15:47 +0000 Michal Biesiada (957d2d1) * Translated using Weblate (Polish) 2020-02-19 04:18:01 +0000 Nirmal Manoj C (375f0e8) * Translated using Weblate (Malayalam) 2020-02-20 13:32:33 +0100 Mike Gabriel (69708cd) * Revert "Translated using Weblate (Latin)" 2020-02-07 09:55:56 +0000 bughuntermert (f55dfd6) * Translated using Weblate (Latin) 2020-02-03 23:11:47 +0000 Garreciq (d23a7a4) * Translated using Weblate (Polish) 2020-02-01 15:10:10 +0000 Guntitat Sawadwuthikul (73a1190) * Translated using Weblate (Thai) 2020-01-19 08:53:01 +0000 آراز (5b9c13b) * Translated using Weblate (Persian) 2020-01-10 18:01:18 +0000 ihaveapiece (f88d2e9) * Translated using Weblate (Persian) 2020-01-08 14:52:51 +0000 Manuela Silva (9de9396) * Translated using Weblate (Portuguese) 2020-01-07 10:10:50 +0000 Jun Hyung Shin (cf82da9) * Translated using Weblate (Korean) 2020-01-05 18:24:21 +0000 Prachi Joshi (764e1ca) * Translated using Weblate (Marathi) 2020-01-02 01:20:13 +0000 Mareks Dunkurs (c4c61a3) * Translated using Weblate (Latvian) 2019-12-31 13:29:08 +0000 Milo Ivir (938542f) * Translated using Weblate (Croatian) 2019-12-30 22:35:22 +0000 Sveinn í Felli (05829ca) * Translated using Weblate (Icelandic) 2019-12-28 17:44:14 +0000 Prachi Joshi (32755b8) * Translated using Weblate (Marathi) 2019-12-27 18:11:33 +0000 Prachi Joshi (46b6800) * Translated using Weblate (Marathi) 2019-12-27 17:00:36 +0000 Prachi Joshi (ff023ca) * Translated using Weblate (Marathi) 2019-12-21 15:00:49 +0000 Prachi Joshi (112e213) * Translated using Weblate (Marathi) 2019-12-02 22:14:06 +0100 Mike Gabriel (8b23c20) * release 0.99.1.4 (tag: 0.99.1.4) 2019-12-02 20:02:38 +0100 Mike Gabriel (28202f9) * Fix 'Creation method of abstract class cannot be public.' in GreeterList class. 2019-11-28 05:32:54 +0000 Saroj Dhakal (fb7bace) * Translated using Weblate (Nepali) 2019-11-13 11:23:01 +0000 Oto Zars (7f09744) * Translated using Weblate (Latvian) 2019-11-09 07:09:28 +0000 Tuomas Lähteenmäki (57ddfd4) * Translated using Weblate (Finnish) 2019-11-02 14:18:17 +0000 Allan Nordhøy (629d44f) * Translated using Weblate (Albanian) 2019-10-29 13:40:10 +0000 Arsen Shehi (7bdd512) * Translated using Weblate (Albanian) 2019-10-23 14:38:15 +0000 Mattias Münster (3a31d29) * Translated using Weblate (Swedish) 2019-10-14 16:40:53 +0000 ศักดิ์นรินทร์ ชาติทอง (6147e0a) * Translated using Weblate (Thai) 2019-10-10 12:01:18 +0000 Jennifer (15feb99) * Translated using Weblate (Dutch) 2019-10-07 22:38:37 +0000 BennyBeat (2a05006) * Translated using Weblate (Catalan) 2019-10-04 02:05:24 +0000 JaewonLee0217 (1cd7183) * Translated using Weblate (Korean) 2019-10-01 03:38:47 +0000 김상남 (ebe04fa) * Translated using Weblate (Korean) 2019-09-28 08:11:25 +0000 yzqzss (a998ad4) * Translated using Weblate (Chinese (Simplified)) 2019-09-28 11:58:20 +0000 Juri Grabowski (c509ed0) * Translated using Weblate (Russian) 2019-09-07 22:13:14 +0000 thami simo (f7e37f4) * Translated using Weblate (Arabic) 2019-08-27 02:45:20 +0000 Swann Martinet (e792847) * Translated using Weblate (English (Canada)) 2019-08-27 02:50:37 +0000 Swann Martinet (b974ee0) * Translated using Weblate (English (Australia)) 2019-08-27 11:04:02 +0000 leela (f592d18) * Translated using Weblate (Uzbek) 2019-08-27 02:41:03 +0000 Swann Martinet (d4a1d9d) * Translated using Weblate (French) 2019-08-27 02:55:36 +0000 Swann Martinet (a4f3f4e) * Translated using Weblate (Italian) 2019-08-27 11:05:19 +0000 leela (692424b) * Translated using Weblate (Catalan) 2019-08-27 11:01:55 +0000 leela (362738b) * Translated using Weblate (Bosnian) 2019-08-27 11:03:25 +0000 leela (bfd6d93) * Translated using Weblate (Basque) 2019-08-27 02:44:11 +0000 Swann Martinet (6cebf1f) * Translated using Weblate (German) 2019-08-27 11:01:05 +0000 leela (7c4ea33) * Translated using Weblate (Thai) 2019-08-27 11:02:34 +0000 leela (536dab5) * Translated using Weblate (Gaelic) 2019-08-27 11:04:40 +0000 leela (af77119) * Translated using Weblate (Valencian) 2019-08-25 12:23:59 +0000 leela (6f51cf1) * Translated using Weblate (Marathi) 2019-08-22 23:00:31 +0000 Swann Martinet (a38ff99) * Translated using Weblate (French (Canada)) 2019-08-22 22:54:09 +0000 Swann Martinet (5baea11) * Translated using Weblate (French) 2019-08-23 01:46:32 +0000 leela (5d3d996) * Translated using Weblate (Hindi) 2019-08-22 23:20:11 +0000 Swann Martinet (ee12a93) * Translated using Weblate (English (United Kingdom)) 2019-08-20 12:51:00 +0000 Adolfo Jayme Barrientos (0cb5ebf) * Translated using Weblate (Spanish) 2019-08-16 15:37:44 +0000 Elizabeth Sherrock (974d88e) * Translated using Weblate (Chinese (Simplified)) 2019-08-10 06:56:21 +0000 Sourav Jha (fdb4e05) * Translated using Weblate (Hindi) 2019-08-04 11:28:10 +0000 Matúš Baňas (88b01eb) * Translated using Weblate (Slovak) 2019-08-01 14:55:51 +0000 saeid porhosein (d649d26) * Translated using Weblate (Persian) 2019-08-01 15:00:28 +0000 saeid porhosein (ed86167) * Translated using Weblate (English (United Kingdom)) 2019-07-26 15:12:42 +0000 yinaroh@all-mail.net (ef267a7) * Translated using Weblate (Chinese (Simplified)) 2019-07-25 19:57:17 +0000 Alba Kaydus (cde6f47) * Translated using Weblate (English (United Kingdom)) 2019-07-22 21:21:07 +0000 Pierre Soubourou (5f9b0fa) * Translated using Weblate (Esperanto) 2019-07-25 19:27:12 +0000 Alba Kaydus (983f6b7) * Translated using Weblate (Filipino) 2019-07-21 16:34:14 +0000 Pierre Soubourou (61ea955) * Translated using Weblate (Esperanto) 2019-07-14 13:54:26 +0000 Ryo Nakano (80d67d4) * Translated using Weblate (Japanese) 2019-07-09 13:46:37 +0000 Ali Avcı (17d7e9f) * Translated using Weblate (Turkish) 2019-07-01 19:15:18 +0000 Elizabeth Sherrock (63042b4) * Translated using Weblate (Chinese (Simplified)) 2019-06-05 07:43:13 +0000 Nader Jafari (84a1d45) * Translated using Weblate (Persian) 2019-06-11 20:28:28 +0000 Lucas Ayala (797d81f) * Translated using Weblate (Spanish) 2019-06-05 18:41:11 +0000 Sveinn í Felli (77b8ed1) * Translated using Weblate (Icelandic) 2019-05-21 11:52:51 +0000 THANOS SIOURDAKIS (ad0e7fa) * Translated using Weblate (Greek) 2019-05-14 17:50:21 +0000 John Rey Basilio (35532bf) * Translated using Weblate (Filipino) 2019-04-28 12:30:35 +0000 gvlfm78 (0e872f2) * Translated using Weblate (Italian) 2019-04-26 07:17:37 +0000 Syahmin Sukhairi (cad5644) * Translated using Weblate (Indonesian) 2019-04-19 20:56:16 +0000 Rui Mendes (86d2d37) * Translated using Weblate (Portuguese (Brazil)) 2019-04-19 20:53:25 +0000 Rui Mendes (0e228e3) * Translated using Weblate (Portuguese) 2019-04-17 21:26:15 +0000 Jos Wolfkamp (540f8a2) * Translated using Weblate (Dutch) 2019-03-17 21:23:02 +0100 Mike Gabriel (fb57bc0) * release 0.99.1.3 (tag: 0.99.1.3) 2019-03-04 00:56:26 +0000 Pierluigi Ghinello (b25b6f2) * Translated using Weblate (Italian) 2019-02-24 08:52:01 +0000 Yaron Shahrabani (5ba0434) * Translated using Weblate (Hebrew) 2019-02-23 07:09:04 +0000 Doma Gergő (8341e2d) * Translated using Weblate (Hungarian) 2019-02-19 22:30:41 +0000 Sandra M (9e3d9a7) * Translated using Weblate (Valencian) 2019-03-17 21:15:49 +0100 Mike Gabriel (687a823) * update NEWS for 0.99.1.2 (we obviously forgot that...) 2019-03-17 21:06:05 +0100 Mike Gabriel (2d9cdd0) * release 0.99.1.2 (tag: 0.99.1.2) 2019-03-17 19:09:09 +0100 Mike Gabriel (fbced2e) * src/arctica-greeter.vala: Use set_decorated(false) on main_window, rather than fullscreen(). With fullscreen() Arctica Greeter's main window gets only shown on the primary monitor and one cannot let the login box follow the pointing device to the active monitor anymore. 2019-03-17 18:19:09 +0100 Mike Gabriel (3319cd2) * debian/30_arctica-greeter-theme-debian-futureprototype.gschema.override: Fix typo in SVG background image path. 2019-03-17 17:25:37 +0100 Mike Gabriel (7aab296) * Remove mlockall. 2019-03-17 17:16:28 +0100 Mike Gabriel (2a09380) * Merge branch 'jbicha-vala44' 2019-03-06 13:41:20 -0500 Rico Tzschichholz (88f6c01) * Fix build with vala 0.44 2019-02-14 16:47:16 +0100 Mike Gabriel (88df37b) * debian/*.gschema.override: Use /login/background.svg as background image. Works on stretch and buster alike. 2019-02-12 23:19:53 +0100 Mike Gabriel (50ee97a) * debian/control: Typo fix in LONG_DESCRIPTION. Spotted by Thomas Vincent. 2019-02-06 11:08:45 +0100 Mike Gabriel (37571f3) * release 0.99.1.1 (tag: 0.99.1.1) 2019-02-06 11:02:38 +0100 Mike Gabriel (900dcfb) * update NEWS for 0.99.1.0 (we obviously forgot that...) 2019-01-26 08:36:00 +0000 ssantos (97fc865) * Translated using Weblate (Portuguese) 2019-01-11 16:13:31 +0000 Louies (7b8f0f2) * Translated using Weblate (Chinese (Traditional)) 2018-12-25 07:39:29 +0000 Yadhesh Assassin (9bdd327) * Translated using Weblate (Tamil) 2018-12-11 04:24:14 +0000 xhesikab (cc33c95) * Translated using Weblate (Albanian) 2018-12-02 07:34:26 +0000 Ryo Nakano (bdf931c) * Translated using Weblate (Japanese) 2018-11-22 20:15:41 +0000 ssantos (5f9e664) * Translated using Weblate (Portuguese) 2018-11-23 12:20:36 +0000 Ryo Nakano (54ad9db) * Translated using Weblate (Japanese) 2018-11-15 12:26:51 +0000 Oto Zars (3e378ad) * Translated using Weblate (Latvian) 2018-11-13 11:00:00 +0000 Ryo Nakano (6cff804) * Translated using Weblate (Japanese) 2018-11-12 12:44:18 +0000 rt (fbf6bd5) * Translated using Weblate (Japanese) 2018-11-03 17:02:04 +0000 Kamen (c27ca56) * Translated using Weblate (Bulgarian) 2018-10-03 11:57:05 +0000 scootergrisen (2aa6dc4) * Translated using Weblate (Danish) 2018-10-01 00:58:23 +0000 Kristoffer Grundström (8bc3cb7) * Translated using Weblate (Swedish) 2018-09-27 12:58:20 +0000 Володимир Бриняк (e6a07d4) * Translated using Weblate (Ukrainian) 2018-09-25 20:47:09 +0000 A BOUZINAC (2d271a7) * Translated using Weblate (French) 2018-09-23 20:04:47 +0000 Himanshu Awasthi (d25e979) * Translated using Weblate (Hindi) 2019-02-06 10:50:43 +0100 Mike Gabriel (d2339d9) * Debian artwork: Move Debian logos into separate bin:pkgs. 2019-02-06 10:22:23 +0100 Mike Gabriel (a6bc3d4) * debian/arctica-greeter-theme-debian.install: Drop logo file. No more logo when the generic active theme from Debian gets used. 2019-02-06 10:20:45 +0100 Mike Gabriel (30a05b6) * debian/rules: Switch to dh_missing override for --fail-missing post-install check. 2019-02-06 10:16:38 +0100 Mike Gabriel (b22daed) * Debian artwork: Provide two new bin:pkgs: Debian 9 Themes (softwaves) and Debian 10 Themes (futurePrototype). The default Debian theme will use the Debian system's active theme. 2019-01-23 12:20:42 +0100 Mike Gabriel (cbe181c) * GSchema: Prepend a two-digit number to the override name of arctica-greeter-theme-ubuntumate. 2019-01-23 12:19:10 +0100 Mike Gabriel (b917f0f) * GSchema: Prepend a two-digit number to the override name of arctica-greeter-theme-debian. 2018-11-26 13:37:46 +0100 Cobinja (96fc2ca) * Fix background if image file is not readable. 2018-11-26 13:33:06 +0100 Mike Gabriel (ad14c13) * arctica-greeter-theme-ubuntumate: Add theme for Ubuntu MATE (cave: not installable on Debian). 2018-11-19 12:47:02 +0100 Mike Gabriel (909a90a) * debian/control: Update B-R libayatana-ido3-0.4-dev -> libayatana-ido3-dev. 2018-09-11 18:26:32 +0000 Mike Gabriel (0771250) * Translated using Weblate (German) 2018-09-06 20:18:47 +0000 mohsen sorny (bbb6f88) * Translated using Weblate (Persian) 2018-09-05 04:13:03 +0000 mohamad farid (b4284cc) * Translated using Weblate (Malay) 2018-08-31 12:12:28 +0000 Yaron Shahrabani (e2095b3) * Translated using Weblate (Hebrew) 2018-08-29 21:29:40 +0000 WaldiS (135b12d) * Translated using Weblate (Polish) 2018-08-28 13:33:12 +0000 Allan Nordhøy (ad4e62d) * Translated using Weblate (Norwegian Bokmål) 2018-08-23 20:53:53 +0000 Viktar Vauchkevich (ef04927) * Translated using Weblate (Belarusian) 2018-08-22 04:23:05 +0000 Kristjan Räts (da364e3) * Translated using Weblate (Estonian) 2018-08-18 08:48:26 +0000 OIS (fdb8c84) * Translated using Weblate (Occidental) 2018-08-18 09:12:50 +0000 OIS (bcf54c8) * Translated using Weblate (Russian) 2018-09-06 08:00:46 +0200 Mike Gabriel (4d0870b) * src/background.vala: Fix for previous commit. Vala needs a bool expression in if-clauses. 2018-08-22 12:40:41 +0200 Mike Gabriel (db7f409) * src/background.vala: Fix FTBFS against Vala 0.42. This introduces a slight behaviour change compared to the previous version, but actually in a direction we want it to be. 2018-08-17 08:05:31 +0000 Mike Gabriel (be4ea18) * Translated using Weblate (German) 2018-08-17 09:59:49 +0200 Mike Gabriel (27e46fc) * translations: Update translation files. 2018-08-17 09:58:13 +0200 Mike Gabriel (7446652) * translations: Add Occidental (ie) language as requested by OIS on Weblate. 2018-08-09 04:48:21 +0000 deebeepea (58d308e) * Translated using Weblate (Filipino) 2018-08-08 19:42:59 +0000 Filip Hron (c0ad68e) * Translated using Weblate (Czech) 2018-08-08 16:38:31 +0000 Dharmendra (1988c9c) * Translated using Weblate (Gujarati) 2018-07-19 13:47:03 +0000 Dovydas Jakas (2431ea1) * Translated using Weblate (Lithuanian) 2018-07-19 13:42:46 +0000 Dovydas Jakas (2c1e18e) * Translated using Weblate (Lithuanian) 2018-07-10 15:26:26 +0000 Srichon Buntarigwong (fecfed1) * Translated using Weblate (Thai) 2018-06-29 07:50:57 +0000 kong (fc915fa) * Translated using Weblate (Thai) 2018-06-17 22:40:46 +0000 Calin Sopterean (c780d95) * Translated using Weblate (Romanian) 2018-06-18 06:23:34 +0000 Doma Gergő (5a3edd5) * Translated using Weblate (Magyar) 2018-06-12 13:20:26 +0000 whr (d4d1c40) * Translated using Weblate (Chinese (Simplified)) 2018-06-11 16:43:04 +0000 Ilyas Bakirov (f83eba6) * Translated using Weblate (Kyrgyz) 2018-06-07 01:17:52 +0000 ۋولقان (ea6df0e) * Translated using Weblate (Uyghur) 2018-06-07 00:51:43 +0000 Nureli (41bbe5d) * Translated using Weblate (Uyghur) 2018-05-30 19:43:41 +0000 Aashish Chenna (93be2e3) * Translated using Weblate (Telugu) 2018-05-29 17:20:07 +0000 Aashish Chenna (22f02b3) * Translated using Weblate (Telugu) 2018-05-25 14:12:13 +0000 Jacky Blois (7ab88fa) * Translated using Weblate (French) 2018-05-17 21:52:13 +0000 Nicola Lombardi (b96ea76) * Translated using Weblate (Italian) 2018-05-17 21:44:58 +0000 Nicola Lombardi (50f94e1) * Translated using Weblate (Italian) 2018-05-10 21:54:34 +0000 Gayathri Das (30c8dd6) * Translated using Weblate (Hindi) 2018-04-27 22:45:21 +0000 antuketot76 (c85bde6) * Translated using Weblate (Malay) 2018-04-27 22:27:39 +0000 antuketot76 (192a56c) * Translated using Weblate (Malay) 2018-06-21 13:34:50 +0000 Mike Gabriel (b64aabd) * Posix.Signal.: Provide old-style Posix.SIG API calls if built with Vala API version << 0.40. (Fixes FTBFS on Debian 9). 2018-06-16 23:35:22 +0200 Mike Gabriel (b12c6d9) * Use Posix.Signal.* rather than Posix.SIG*. (Vala 0.40 deprecations). 2018-06-16 22:36:15 +0200 Cobinja (d1caee5) * Add option to show GUI on a specific monitor 2018-06-16 22:25:26 +0200 Victor Kareh (85ec476) * arctica-greeter-check-hidpi: Fix HiDPI auto-detection. 2018-06-16 22:24:39 +0200 Mike Gabriel (cc72215) * debian/control: Add D: marco. 2018-06-16 20:22:13 +0200 Mike Gabriel (9b3526d) * src/arctica-greeter.vala: Have MATE's marco WM as window manager for Arctica Greeter. Makes handling windows opened via some of the indicators much more organic. 2018-05-11 20:43:15 +0200 Mike Gabriel (606273e) * src/user-list.vala: Rename gsettings key remote-service-fqdn to remote-service-configure-uri. Support an empty string as value and show a more intelligent message if it's empty. 2018-05-11 16:48:38 +0200 Mike Gabriel (b54ac1c) * Remote Logon configuration support: session name is now "remoteconfigure". 2018-05-08 23:38:30 +0200 Mike Gabriel (f9c678d) * user-list.vala: fix missing parentheses from previous commits 2018-05-08 09:21:55 +0200 Mike Gabriel (411bbb6) * src/user-list.vala: Rephrase username field text to "Account ID" (can be email or user name). 2018-05-08 09:15:31 +0200 Mike Gabriel (a27d1f0) * src/user-list.vala: Hide "Set up..." button, if uccsconfigure is a non-supported remote login session. 2018-05-08 09:09:29 +0200 Mike Gabriel (6ad8446) * src/user-list.vala: Mention X2Go in remote logon help / setup hint. 2018-05-07 15:45:15 +0200 Mike Gabriel (97e48ff) * release 0.99.1.0 (tag: 0.99.1.0) 2018-05-07 11:35:47 +0200 Mike Gabriel (da0cd95) * arctica-greeter-guest-account-script.in: Copy site guest session skel over dist guest session skel, so that the site admin is in fact able to override some settings in the dist skeleton that we provide. 2018-05-06 01:39:57 +0200 Mike Gabriel (3cd3dd0) * src/user-list.vala: Add debugging to remote_login PAM prompt responding. 2018-05-04 22:14:00 +0200 Mike Gabriel (879b9e6) * src/user-list.vala: Obtain PAM_FREERDP2 prompts from public API in security/pam-freerdp2.h. 2018-05-04 15:25:46 +0200 Mike Gabriel (eed9d64) * src/user-list.vala: Obtain PAM_X2GO prompts from public API in security/pam.x2go.h. 2018-05-04 14:02:18 +0200 Mike Gabriel (9ff8e09) * src/user-list.vala: Follow-up fix for previous commit. 2018-05-04 13:02:19 +0200 Mike Gabriel (91b8cbd) * Use RLS/pam_x2go.so API v5. The PAM prompt now queries "remote command:", not "x2gosession:". 2018-04-16 16:29:55 +0200 Mike Gabriel (df4800a) * debian/control: Drop from B-D: libgnome-desktop-3-dev. Not needed. 2018-03-15 02:31:35 +0100 Björn Esser (897df0e) * main-window: Calculate the really needed screen size properly 2018-03-16 14:44:32 +0100 Mike Gabriel (cfec4f6) * release 0.99.0.4 (tag: 0.99.0.4) 2018-03-16 14:17:05 +0100 Mike Gabriel (8aba383) * src/arctica-greeter.vala: Trigger UPower activation when greeter starts. 2018-03-16 14:16:14 +0100 Mike Gabriel (76f2e65) * HiDPI: Do not enable it in test-mode. 2018-03-16 13:52:28 +0100 Mike Gabriel (9e025f2) * debian/*.install: Correctly install the guest session script man page into the guest session bin:pkg. 2018-03-16 12:37:45 +0100 Mike Gabriel (7ddfa06) * Port HiDPI support from slick-greeter. 2018-03-16 12:00:30 +0100 Mike Gabriel (48db8ca) * src/{user-list.vala,user-prompt-box.vala}: Fix segfault in newly introduced debug message. 2018-03-15 07:59:17 +0100 Robert Ancell (1e59b6a) * Use Ubuntu logo for Unity session (has no since no longer Ubuntu default) 2018-03-12 21:10:45 +0100 Michael Webster (5c611a8) * src/arctica-greeter.vala: Clear the AT_SPI_BUS property on the root window on exit, so the user session components won't fail to connect. 2018-03-12 21:07:48 +0100 Ikey Doherty (bda58f0) * greeter: Avoid expensive Python calls when it isn't needed. 2018-02-28 10:59:19 +0100 Mike Gabriel (177dab0) * post-release update of debian/changelog 2018-02-28 10:14:24 +0100 Mike Gabriel (6777383) * release 0.99.0.3 (tag: 0.99.0.3) 2018-02-20 11:36:29 +0000 Veselin Georgiev (3c8b7e5) * Translated using Weblate (Bulgarian) 2018-02-15 10:03:26 +0000 Ko Phyo (94ff0d8) * Translated using Weblate (Burmese) 2018-02-11 00:55:34 +0000 Rafael Henrique Mendes de Oliv (3dfb9d7) * Translated using Weblate (Portuguese (Brazil)) 2018-02-11 00:54:45 +0000 Rafael Henrique Mendes de Oliv (8f85b15) * Translated using Weblate (Portuguese (Brazil)) 2018-02-09 19:31:11 +0000 Joel Vinay Kumar (965ac26) * Translated using Weblate (Telugu) 2018-02-04 15:04:33 +0000 Michal Čihař (b94becf) * Translated using Weblate (Telugu) 2018-02-03 17:32:50 +0000 scootergrisen (2d86552) * Translated using Weblate (Danish) 2018-01-30 21:05:43 +0000 Марс Ямбар (b30f69a) * Translated using Weblate (Ukrainian) 2018-01-29 05:49:46 +0000 Joel Vinay Kumar (d4ece44) * Translated using Weblate (Telugu) 2018-01-27 08:57:44 +0000 Mutaz Tayyeb AbuSaad (5131b49) * Translated using Weblate (Arabic) 2018-01-27 08:50:59 +0000 Mutaz Tayyeb AbuSaad (0e921da) * Translated using Weblate (Arabic) 2018-01-24 09:16:22 +0000 Sveinn í Felli (3073113) * Translated using Weblate (Icelandic) 2018-01-22 20:21:35 +0000 Марс Ямбар (c50983a) * Translated using Weblate (Ukrainian) 2018-01-04 20:22:29 +0000 Sebastian Rasmussen (7473640) * Translated using Weblate (Swedish) 2018-01-04 15:32:06 +0000 Tamir Azaz (1e72c52) * Translated using Weblate (Slovenian) 2018-02-27 19:26:26 +0100 Mike Gabriel (e13e0d9) * Merge branch 'jbicha-vala39' 2018-02-27 09:06:23 -0500 Jeremy Bicha (3b79b4b) * Fix build with vala 0.39 2017-12-07 11:24:13 +0100 Mike Gabriel (a1266d6) * debian/control: Let's recommend the new FreeRDPv2 version of lightdm-remote-session-freerdp(2). 2017-12-07 08:53:43 +0100 Mike Gabriel (f22b7af) * White-space cleanup. Removing superfluous EOL white-spaces. 2017-11-29 18:22:14 +0000 Juan Picca (c855090) * Translated using Weblate (Spanish) 2017-11-29 13:38:11 +0100 Mike Gabriel (174191b) * update-po(t).sh: Handle .xml and .ini files gracefully. 2017-11-28 18:22:53 +0100 Mike Gabriel (a313875) * release 0.99.0.2 (tag: 0.99.0.2) 2017-11-28 18:22:07 +0100 Mike Gabriel (3537ac6) * debian/copyright: Update copyright attributions for new man page. 2017-11-28 18:02:56 +0100 Mike Gabriel (96b5cac) * data/arctica-greeter.1: Improve (not much, but a little) the arctica-greeter man page. 2017-11-28 18:02:25 +0100 Mike Gabriel (9ef87a0) * arctica-greeter-guest-account-script: Add brief man page for the guest account creation script. 2017-11-28 17:17:21 +0100 Mike Gabriel (1a2635a) * More places to fix for the guest session script renaming. 2017-11-28 17:09:57 +0100 Mike Gabriel (33f57b4) * Update translation files. 2017-11-17 23:24:26 +0000 Allan Nordhøy (27c02f4) * Translated using Weblate (Norwegian Bokmål) 2017-11-28 16:46:35 +0100 Mike Gabriel (acd892c) * Rename various scripts, so that they have 'arctica-greeter' in their file name (and not just 'arctica'). 2017-11-28 16:34:39 +0100 Mike Gabriel (4fe6467) * debian/control: Bump Standards-Version: to 4.1.1. No changes needed. 2017-11-28 16:10:47 +0100 Mike Gabriel (a1f2ee0) * debian/copyright: Add machine-generated copyright.in file. 2017-11-28 16:10:16 +0100 Mike Gabriel (dec42ab) * debian/copyright: Update copyright attributions. Appropriate for official Debian package. 2017-11-28 15:09:15 +0100 Mike Gabriel (55f0154) * data/badges/COPYING.badges: Add attributiong for desktop session badges. 2017-11-28 14:52:54 +0100 Mike Gabriel (82e9fb7) * Update files update-po(t).sh, includes added license headers. 2017-11-28 14:51:58 +0100 Mike Gabriel (5a19212) * no Transifex anymore, we have moved to Weblate... 2017-10-30 09:40:21 +0100 Mike Gabriel (6f8134a) * Revert "a11y: Use HighContrast rather than HighContrastInverse." 2017-10-30 09:19:49 +0100 Mike Gabriel (ce53a04) * debian/control: Typo fix in D of arctica-greeter (comma vs. dot). 2017-10-26 15:11:55 +0200 Mike Gabriel (a7472c9) * debian/control: Add to D (arctica-greeter): x11-xkb-utils (for setxkbmap). 2017-10-26 15:10:56 +0200 Mike Gabriel (64719ae) * arctica-greeter-set-keyboard-layout: Add encoding tag to the header. 2017-10-26 15:06:40 +0200 Mike Gabriel (5791c16) * arctica-greeter-set-keyboard-layout: Add license header and copyright holder. Assume same license as in COPYING file. 2017-10-26 14:51:25 +0200 Clement Lefebvre (6d087e7) * a11y: Use HighContrast rather than HighContrastInverse. 2017-10-26 14:43:24 +0200 Mike Gabriel (818a6c0) * debian/control: Switch to Arch: any for bin:pkg arctica-greeter-guest-session. 2017-10-26 14:30:54 +0200 Mike Gabriel (164a06e) * Explicitly set the keyboard layout 2017-10-26 14:17:27 +0200 Clement Lefebvre (f192e26) * Add support for numlockx. 2017-10-26 14:14:40 +0200 Mike Gabriel (0f7e41f) * src/settings.vala: White-space cleanup. 2017-10-26 14:05:59 +0200 Mike Gabriel (b78391b) * copyright holdership: Add myself as copyright holder and author to file headers of files I have worked on. 2017-10-26 13:47:01 +0200 Mike Gabriel (afdb9fc) * src/arctica-greeter.vala: Fix debug message, we use MSD, not USD. 2017-10-25 19:43:48 +0200 Mike Gabriel (b6e1341) * src/user-list.vala: Add debug message providing info about added users / labels. 2017-10-23 23:33:58 +0200 Mike Gabriel (32ffe2d) * release 0.99.0.1 (tag: 0.99.0.1) 2017-10-23 23:18:06 +0200 Mike Gabriel (5ad6cbc) * src/user-list.vala: Use directory enumerator for getting a random number of background image. Check if the returned directory entry is not a sub-directory. If so, then skip it. 2017-10-23 23:13:02 +0200 Michael Webster (0003057) * background: Don't realize() this immediately - only start the image gathering thread during initialization. 2017-10-23 22:55:17 +0200 Mike Gabriel (3bc7cc6) * data/org.ArcticaProject.arctica-greeter.gschema.xml: Fix schema path. 2017-10-16 08:19:32 +0000 Michal Čihař (af13ba7) * Translated using Weblate (German) 2017-10-07 20:16:59 +0000 Kristjan Räts (5575cbe) * Translated using Weblate (Estonian) 2017-10-03 09:48:15 +0000 developerchan1 (55cbf1c) * Translated using Weblate (Indonesian) 2017-10-02 05:17:32 +0000 Marc Schöni (0459355) * Translated using Weblate (German) 2017-10-02 05:16:01 +0000 Marc Schöni (78f28e2) * Translated using Weblate (German) 2017-09-29 18:04:44 +0000 Anders Jonsson (c41f749) * Translated using Weblate (Swedish) 2017-09-16 03:14:46 +0000 Allan Nordhøy (f41055e) * Translated using Weblate (Norwegian Bokmål) 2017-09-08 09:51:50 +0000 ប៉ុកណូ រ៉ូយ៉ាល់ (4256251) * Translated using Weblate (Central Khmer) 2017-08-29 10:02:10 +0000 Jan Poulsen (ceb047d) * Translated using Weblate (Danish) 2017-08-29 09:11:07 +0000 Kjetil Fleten (c58bb1d) * Translated using Weblate (Danish) 2017-08-21 15:12:30 +0000 Володимир Бриняк (2a3ab44) * Translated using Weblate (Ukrainian) 2017-08-13 17:47:50 +0000 Viktar Vauchkevich (d6fe6df) * Translated using Weblate (Belarusian) 2017-07-21 16:24:25 +0200 Mike Gabriel (2183709) * po/: Update po/.po files from newly generated arctica-greeter.pot file. 2017-07-21 16:24:05 +0200 Mike Gabriel (c14bc0a) * update-po.sh: Add simple script to update po/*.po files. 2017-07-21 16:23:02 +0200 Mike Gabriel (9d50a7d) * po/: Update arctica-greeter.pot file. 2017-06-20 23:48:39 +0200 Mike Gabriel (a55e300) * src/arctica-greeter.vala: Don't load any external application when launched in test mode. 2017-06-20 23:48:12 +0200 Mike Gabriel (123a23f) * src/menubar.vala: Disable all indicators in test mode. 2017-06-20 23:17:44 +0200 Mike Gabriel (d297788) * src/settings_daemon.vala: sd_pid is a private property. 2017-06-20 21:43:56 +0200 Mike Gabriel (dded5f2) * src/greeter-list.vala: Move get_active_entry() functionality from ListDBusInterface to the GreeterList class. 2017-06-20 15:53:01 +0200 Clement Lefebvre (4216b5d) * Fix Arctica Greeter preventing DE from applying cursor theme/size. 2017-06-20 15:42:34 +0200 Clement Lefebvre (31ce82f) * Don't draw the background before starting the session. 2017-06-20 15:37:30 +0200 Mike Gabriel (d14e5d8) * rebase debug PID 2017-06-20 15:36:56 +0200 Mike Gabriel (dcf9702) * src/menubar.vala: Silence build warning due to usage call to deprecated ensure_style() method. 2017-06-20 15:36:01 +0200 Clement Lefebvre (89876fc) * src/background.vala: No runtime warning on empty background image filename. Ported from slick-greeter. 2017-06-20 15:33:20 +0200 leigh123linux (b37ceae) * Add basic screenshot capability. Ported from slick-greeter. 2017-06-20 15:31:58 +0200 Mike Gabriel (54ff85c) * debugging: Print out process PIDs for launched subprocesses. 2017-06-20 15:20:08 +0200 Clement Lefebvre (ba46af1) * Add support for validating session names (and proper fallback for uninstalled sessions). Ported from slick-greeter. 2017-06-20 14:20:23 +0200 leigh123linux (2fa9791) * Work around GTK 3.20's new allocation logic. Ported from slick-greeter. 2017-06-20 14:32:18 +0200 Mike Gabriel (196464c) * Fix at-spi-bus-launcher path in Fedora (ported and modifed from slick-greeter). 2017-06-20 14:19:53 +0200 Mike Gabriel (70a6deb) * white-space fix 2017-06-20 13:32:10 +0200 Mike Gabriel (c66157e) * debian/rules: Remove duplicate override_dh_install target. 2017-06-20 13:19:56 +0200 Mike Gabriel (399b52b) * src/background.vala: Drop logo background. 2017-06-20 12:17:49 +0200 Michael Webster (ae38752) * src/arctica-greeter.vala: Disconnect the event filter when the main window is destroyed. 2017-06-20 11:28:09 +0200 Michael Webster (d68171e) * src/prompt-box.vala: Avoid 'pango_layout_get_cursor_pos: assertion 'index >= 0 && index <= layout->length' failed' error. 2017-06-20 11:27:44 +0200 Michael Webster (29eb6f8) * src/prompt-box.vala: get_preferred_height() ovrride only needed with GTK3 >= 3.20. 2017-06-20 11:20:35 +0200 Michael Webster (552dd36) * Fix prompt display in gtk3 > 3.20 (ported from slick-greeter) 2017-06-20 10:49:30 +0200 Mike Gabriel (434484b) * Move data/*_badge.png to data/badges/ subfolder. 2017-06-20 10:42:38 +0200 leigh123linux (6dea496) * menubar clean-up before session start: i.e. kill onboard and orca on session startup (ported from slick-greeter). 2017-06-17 10:03:26 +0200 Mike Gabriel (d58721a) * Debian Theme: use Debian 9 logo including the version number as is for now. 2017-06-16 16:59:46 +0200 Mike Gabriel (b8d4893) * New theming bin:package: arctica-greeter-theme-debian. 2017-06-16 16:59:46 +0200 Mike Gabriel (4181e30) * New theming bin:package: arctica-greeter-theme-debian. 2017-06-16 16:58:51 +0200 Mike Gabriel (cc5dcc0) * src/logo-generator.vala: Make logo-generator more flexible. Allow passing-in of output logo's width and height. Fix placing of version string. 2017-06-16 14:24:19 +0200 Mike Gabriel (a78a48f) * configure.ac: Stop automake from whining, set subdir-objects flag. 2017-06-16 14:18:39 +0200 Mike Gabriel (2bf440e) * src/session-list.vala: Regression fix for failing session logins caused by eece8599b774b4b30eeb31a39bc7c3c36d24b011. 2017-06-16 13:41:43 +0200 Mike Gabriel (de6ec89) * data/arctica-guest-session-startup.desktop.in: Remove double slash in Exec= field. 2017-06-16 13:38:09 +0200 Mike Gabriel (cb831b9) * arctica-guest-session-auto.sh: Don't rely on .profile to be loaded, define a default for DIALOG_SLEEP. 2017-06-16 13:10:44 +0200 Mike Gabriel (c88e2b1) * Update .po files. 2017-06-16 13:10:24 +0200 Mike Gabriel (ea07b73) * po/arctica-greeter.pot: Update translation template, now with translatable text from our guest shell scripts. 2017-06-16 13:07:20 +0200 Mike Gabriel (90c9d12) * Make arctica-desktop.desktop xgreeters file translatable. 2017-06-16 13:05:37 +0200 Mike Gabriel (987fb8c) * debian/arctica-greeter-guest-session.install: Let's have EOL and EOF. 2017-06-16 13:04:42 +0200 Mike Gabriel (afd9836) * Make intltool more happy with our guest shell scripts (i.e. adding .sh suffix). 2017-06-16 10:16:11 +0200 Mike Gabriel (94b4313) * src/session-list.vala: Present list of available sessions in case-insensitive order. 2017-06-14 13:17:54 +0200 Mike Gabriel (0d5437a) * Artwork: Add icon badge for Sugar Desktop. 2017-06-14 13:13:31 +0200 Mike Gabriel (56392e6) * Artwork: Add icon badge for surf-display. 2017-06-14 12:49:32 +0200 Mike Gabriel (8818fd6) * Artwork: Add icon badge for Xmonad. 2017-06-14 12:48:22 +0200 Mike Gabriel (b1175d8) * Artwork: Add icon badge for the Window Maker. 2017-06-13 23:44:30 +0200 Mike Gabriel (a7bb797) * Artwork: Add icon badge for the Budgie Desktop. 2017-06-13 22:16:27 +0200 Mike Gabriel (095b1df) * Artwork: Add icon badge for awesome. 2017-06-13 22:06:55 +0200 Mike Gabriel (213f805) * Artwork: Add icon badge for the matchbox wm. 2017-06-13 22:04:43 +0200 Mike Gabriel (b3e44b2) * Artwork: Add icon badge for i3 wm. 2017-06-13 21:38:54 +0200 Mike Gabriel (d1debd1) * data/lxde_badge.png: Recreate from .xcf file, removes gray outlines. 2017-06-12 15:12:22 +0200 Mike Gabriel (63394a6) * override_font() deprecation warning: replace by GtkCssProvider blocks. Additionally, don't hard-code Cabin font anymore, use font_name gsettings property instead. 2017-06-12 13:36:11 +0200 Mike Gabriel (99d2c26) * FIXME: Disable the greeter wrapper so far, as systemctl --user calls will fail with the wrapper enabled. (This brings back the Ayatana Indicators to the greeter login screen). 2017-06-12 13:30:44 +0200 Mike Gabriel (c76e0b1) * src/arctica-greeter.vala: Fix copy+paste flaw blocking atspid to be destroyed at greeter exit. 2017-06-12 11:06:27 +0200 Mike Gabriel (a3d58d0) * Makefile.am: Add 'compile' to list of DISTCLEANFILES. 2017-06-12 10:44:00 +0200 Mike Gabriel (e3b4202) * Make guest account support functional. Port various items from Ubuntu's LightDM package. 2017-06-12 01:20:07 +0200 Mike Gabriel (ccba9e5) * debian/control: Drop mate-settings-daemon from Recommends: field. Already in Depends: field. 2017-06-12 01:17:59 +0200 Mike Gabriel (8a7f97e) * Split up packaging: outsource arctica-greeter-remote-logon and arctica-greeter-guest-session. Allow the admin to selectively add those features or remove them, if needed. 2017-06-12 00:57:46 +0200 Mike Gabriel (1fa6100) * guest-account: Blindly copy Ubuntu's guest-account script from bin:package lightdm into this project. 2017-06-08 21:25:39 +0200 Mike Gabriel (2e747f6) * src/settings-daemon.vala: Make sure the SettingsDaemon subprocess gets killed when greeter exits. 2017-06-07 16:19:47 +0200 Mike Gabriel (49f36af) * src/settings-daemon.vala: Flaw when switching to m-s-d. The media-keys plugin is to be diabled. 2017-06-07 16:12:20 +0200 Mike Gabriel (0109864) * src/settings-daemon.vala: Avoid race condition that could launch the settings daemon twice. 2017-06-04 23:52:50 +0200 Mike Gabriel (c1fcb12) * Rename owned greeter bus to a generical, product-independent name: org.ayatana.Greeter. 2017-05-31 16:24:39 +0200 Mike Gabriel (4017149) * Play system-ready sound when arctica-greeter is ready for loggin the user in. Ship system-ready sound with our own sound theme as ubuntu-sounds is not available on all distros. 2017-05-31 16:14:21 +0200 Mike Gabriel (9e97d28) * fix-patch-whitespace: Help tool from X.org to have white-space clean changeset commits. 2017-05-30 12:01:17 +0200 Mike Gabriel (25606b6) * Use ShutdownDialogType.SHUTDOWN on incoming shutdown requests. This enables Hibernate and Suspend buttons, which is nice. 2017-05-30 12:00:48 +0200 Mike Gabriel (087e04c) * src/shutdown-dialog.vala: Grab Reboot button focus when user requests a reboot. 2017-05-28 02:36:30 +0200 Mike Gabriel (0e4fbb4) * Return "greeter" as session_name rather than "ubuntu" in SessionManager DBus interface. 2017-05-28 02:32:53 +0200 Mike Gabriel (8e50dfa) * nm-applet startup: Fix typo in cmd line option. 2017-05-26 01:59:28 +0200 Mike Gabriel (ebf839b) * comment change: MATE and GNOME share the same session manager namespace 2017-05-23 12:02:34 +0200 Mike Gabriel (930c41a) * DBus own_name: Clear up mess. Arctica Greeter owns two buses: org.ArcticaProject.ArcticaGreeter (formerly: com.canonical.UnityGreeter) and org.ayatana.Desktop (formerly: com.canonical.Unity). 2017-05-23 10:57:36 +0200 Mike Gabriel (794b686) * src/arctica-greeter.vala: Enable nm-applet again, launch with --indicators option and let's hope the system has nm-applet with indicators support compiled-in. 2017-05-18 23:29:59 +0200 Mike Gabriel (63d9a2f) * Acquire DBus session bus 'com.canonical.Unity' for now. Same bus name is used in ayatana-indicator-session and maybe elsewhere. 2017-05-18 23:27:51 +0200 Mike Gabriel (5d54b6a) * session list's back button: Make background transparent. 2017-05-18 23:05:43 +0200 Mike Gabriel (cd2de8b) * src/menubar.vala: Give the indicator icons a bit more space (i.e. height := 32). 2017-05-18 23:02:29 +0200 Mike Gabriel (2a524d3) * Theming: Use Numix GTK/icon theme. 2017-05-17 16:46:38 +0200 Mike Gabriel (f238d62) * Gdk.cairo_create() has been deprecated in GTK 3.22. Use Gdk.Window.begin_draw_frame() instead. 2017-05-17 16:45:44 +0200 Mike Gabriel (aa15b94) * Disable nm-applet while we are not able to pipe it into ayatana-indicator-application. 2017-05-17 16:04:18 +0200 Mike Gabriel (8dd317d) * Silence GTK 3.22 warnings relating to deprecation in Gdk.Screen. 2017-05-17 14:25:55 +0200 Mike Gabriel (c9f0793) * src/arctica-greeter.vala: Cleanly exit nm-applet when switching to the user context. 2017-05-17 14:20:15 +0200 Mike Gabriel (0916a5f) * indicator service launching: Check AGSettings for what indicator to load and remember loaded indicators to clean up properly when switching to the user context. 2017-05-17 10:20:59 +0200 Mike Gabriel (0cddbb4) * indicator support: Launch ayatana-indicator-session service via Arctica Greeter. 2017-05-16 14:27:06 +0200 Mike Gabriel (237d630) * indicator services: Launch inicator power service via systemd before showing the greeter. 2017-05-15 16:49:07 +0200 Mike Gabriel (5ad2a0e) * src/arctica-greeter.vala: Fix systemd launch of ayatana-indicator-application service. 2017-05-15 16:48:26 +0200 Mike Gabriel (0ee3892) * Fix indicator name for ayatana-application. 2017-05-15 13:44:52 +0200 Mike Gabriel (8a8362a) * arctica-greeter.vala: Fix .service file name for starting up Ayatana Indicators Application as a service. 2017-05-15 13:41:21 +0200 Mike Gabriel (9649a93) * Use systemd to launch the Ayatana Indicators Application Service. 2017-05-15 13:31:16 +0200 Mike Gabriel (1347098) * debian/rules: Let's skip tests for now, until we got them fixed. 2017-05-15 13:30:45 +0200 Mike Gabriel (54d2745) * debian/control: Fix Recommends: field. Let's use ayatana-indicator-* packages rather. 2017-04-30 23:35:30 +0200 Mike Gabriel (e0afbd7) * rebase m-s-d 2017-04-29 21:30:15 +0000 Mike Gabriel (a4ab356) * Switch to using MATE's Settings Daemon. 2017-04-18 08:23:00 +0000 Robert Ancell (d70a693) * Handle errors from liblightdm. 2017-04-18 08:16:30 +0000 Robert Ancell (e36ceb6) * Show error when failing to connect to LightDM daemon. 2017-04-18 08:15:20 +0000 Robert Ancell (4d8cb25) * Use GenericSet instead of HashTable. 2017-04-18 08:13:45 +0000 Robert Ancell (9d87509) * Compile with Vala debugging information 2017-04-18 08:12:26 +0000 Robert Ancell (b7ffb48) * Fix test mode by skipping xsettings checks. 2017-04-18 07:56:29 +0000 Robert Ancell (a3cf506) * Use valgrind to make build logs bigger help in triaging FTBFS problems. 2017-04-15 14:50:33 +0000 Mike Gabriel (24d9086) * vala: Replace all 'static const' declaration by 'const'. 2017-04-15 14:45:33 +0000 Mike Gabriel (5274b88) * debian/rules: Preserve upstream's po/arctica-greeter.pot (it gets recreated during build). 2017-04-15 14:43:11 +0000 Mike Gabriel (77ee958) * unit tests: GLX extension not required in our Xvfb test runs. 2016-09-15 10:18:55 +0000 Mike Gabriel (b206777) * Don't use deprecated -GtkWidget-focus-line-width style property anymore, replace by outline-width property. 2016-09-15 10:02:52 +0000 Mike Gabriel (47ff24f) * Don't use deprecated GtkButton-child-displacement-{x|y} style properties anymore. 2016-09-15 11:27:53 +0200 Mike Gabriel (b262c5e) * po/co.po: Add co language to Transifex and update (empty .po file). 2016-09-15 09:22:06 +0000 Mike Gabriel (faf1999) * update po/arctica-greeter.pot 2016-09-15 09:13:38 +0000 Robert Ancell (65cc346) * Explicitly set scale and geometry for Cairo.XlibSurface. 2016-09-15 09:11:49 +0000 Robert Ancell (440a813) * Limit prompt fields to 200 characters in case a key is being held down (e.g. by a cat). 2016-09-15 09:07:39 +0000 Mike Gabriel (df985b3) * Wait for gnome-settings-daemon xsettings plugin is ready to avoid HiDPI resolution changing. 2016-09-15 08:54:00 +0000 Robert Ancell (8b9cf7f) * Update LINUGAS. 2016-09-15 08:53:16 +0000 Robert Ancell (fabfbff) * Work around Vala trying to use a new GTK 3.20 function. 2016-09-15 08:49:20 +0000 Iain Lane (b20beff) * Apply the Gtk.ResizeMode.QUEUE fix to another place, so that the shutdown dialog is positioned correctly again. 2016-02-26 11:34:08 +0100 Mike Gabriel (1190fb9) * Rename RemoteLoginService interface to RemoteLogonService. 2016-02-26 11:33:30 +0100 Mike Gabriel (27a7262) * Find nasty typo in our project name. Thanks to Jeppe Simonson for helping with getting that tracked. 2016-02-23 15:05:01 +0100 Mike Gabriel (305e0c5) * debian/control: Alternative Ds fonts-droid-fallback | fonts-droid. Fix FTBFS on Debian stretch/unstable. 2016-02-23 08:37:15 +0100 Mike Gabriel (c6b9d72) * debian/control: Add D (arctica-greeter): gnome-settings-daemon. 2016-02-23 07:25:25 +0100 Mike Gabriel (0d47a28) * Transifex: Add .tx/config configuration file. 2016-02-22 23:06:56 +0100 Mike Gabriel (7b3849b) * po: Add helper script update-pot.sh. 2016-02-22 22:39:15 +0100 Mike Gabriel (585f614) * po: Add arctica-greeter.pot PO translation template file. 2015-11-10 23:30:04 +0100 Mike Gabriel (16012a3) * debian/control: Fix build-dependency issue for nightly builds. 2015-11-07 06:08:26 +0000 Mike Gabriel (37f53f3) * Build against Ayatana Indicators instead of Ubuntu Inidicators. 2015-11-05 13:52:17 +0100 Mike Gabriel (9f47961) * Use org.ayatana namespace for Ayatana indicators. 2015-11-05 13:51:52 +0100 Mike Gabriel (0cf0756) * NEWS.Canonical: Fix copy+paste error. 2015-10-28 23:35:33 +0100 Mike Gabriel (25ad920) * Set a session name in our own namespace. 2015-10-28 15:34:16 +0100 Mike Gabriel (252faeb) * toggle-box.vala: Catch Glib.Error where it occurs when setting normal button style. 2015-10-28 05:10:09 +0100 Mike Gabriel (fac2a33) * Re-do session badges with proper color to alpha algorithm. 2015-10-28 04:46:11 +0100 Mike Gabriel (80488bf) * Make our new icons transparent in the logo area, not black. 2015-10-27 22:41:27 +0100 Mike Gabriel (69a43a8) * Make session list in toggle box configurable concerning font color and button bg color. 2015-10-27 21:54:27 +0100 Mike Gabriel (d1d9cb3) * Set default background color (before image is loaded) to a color similar to our default image. 2015-10-27 21:45:04 +0100 Mike Gabriel (7a09c56) * add forgotten xsession_badge.{png,xcf} 2015-10-27 21:43:14 +0100 Mike Gabriel (e03befb) * Add badge (.png) for default Xsession. 2015-10-27 21:29:30 +0100 Mike Gabriel (41cd118) * Add badge (.png) for Openbox window manager. Also make greeter aware of openbox-kde and openbox-gnome. 2015-10-27 21:14:36 +0100 Mike Gabriel (cf52b7d) * Add badge (.png) for TWM window manager. 2015-10-27 20:43:24 +0100 Mike Gabriel (7001ab9) * fix for last commit 2015-10-27 20:39:12 +0100 Mike Gabriel (5fff773) * Darken badges for MATE and LXDE. 2015-10-27 20:27:57 +0100 Mike Gabriel (3dcfdaf) * data/Makefile.am: Drop org.ArcticaProject.ArcticaGreeterSession.gschema.xml from target. 2015-10-27 19:54:46 +0100 Mike Gabriel (e50ccde) * data/Makefile.am: Install new badges. 2015-10-27 19:49:12 +0100 Mike Gabriel (ba8900a) * Attempt to fake a session with org.gnome.SessionManager. 2015-10-27 19:29:32 +0100 Mike Gabriel (8ad0245) * Add badge (.png) for XFCE desktop session. 2015-10-27 19:23:47 +0100 Mike Gabriel (48dd06f) * Add badge (.png) for MATE desktop session. 2015-10-27 19:18:43 +0100 Mike Gabriel (891105e) * Add badge (.png) for LXDE desktop session. 2015-10-27 18:18:04 +0100 Mike Gabriel (2ef3a81) * fix for a18ab60: UGSettings class has been renamed to AGSettings. 2015-10-27 11:42:32 +1300 Robert Ancell (e80a7fc) * Use non-deprecated Gdk.Cursor methods 2015-09-16 08:58:28 -0400 Robert Ancell (a18ab60) * Add an option to only show users in a list of specified groups 2015-09-16 08:42:44 -0400 Robert Ancell (a9369a5) * Remove obsolete CONFIG_FILE define 2015-02-19 14:57:35 +0200 Alberts Muktupāvels (bedfb6d) * Add class name for toggle button 2015-02-19 14:33:16 +0200 Alberts Muktupāvels (4bfa70a) * Add class name for option button 2015-01-27 20:34:20 +0000 Lars Uebernickel (a7e3214) * DashEntry: remove .spinner class 2015-01-16 21:57:29 +0100 Albert Astals Cid (c1a0b36) * Support the session name for Plasma 5 2014-12-17 09:12:01 +0200 Alberts Muktupāvels (adb9b2e) * Fix prompt-box height. 2014-11-29 14:14:09 +0200 Alberts Muktupavels (eb9d205) * Restore event type for button-release-event. 2014-11-29 13:56:19 +0200 Alberts Muktupavels (4a5a14d) * Change event type when calling button press event in release event. 2014-11-19 15:11:44 +0300 Dmitry Shachnev (c8331a0) * Update for new gnome-flashback sessions names 2014-11-04 15:56:26 +1300 Robert Ancell (a937ee8) * Don't copy delegates. Apparently not allowed 2014-11-04 15:54:24 +1300 Robert Ancell (138bf14) * Don't use deprecated Gtk.Widget API 2014-11-04 15:49:30 +1300 Robert Ancell (c1726b3) * Don't use deprecated liblightdm API 2014-11-04 15:49:06 +1300 Robert Ancell (269ff16) * Don't use deprecated Gdk X11 API 2015-10-27 10:07:58 +0100 Mike Gabriel (aa5077f) * Set gettext-domain from unity to arctica-greeter. 2015-10-27 09:55:12 +0100 Mike Gabriel (9767eeb) * Logo: Reduce spacing between logo text and version, shrink version string. 2015-10-27 09:51:46 +0100 Mike Gabriel (2399e71) * Logo: Rework TheArcticaGreeter logo. 2015-10-27 01:03:40 +0100 Mike Gabriel (7b9bd55) * Don't own session com.canonical.Unity, own org.ArcticaProject.ArcticaProjectGreeter instead. 2015-10-26 23:13:23 +0000 Mike Gabriel (47036c2) * Comment out never used upstart_pid variable. 2015-10-27 00:07:43 +0100 Mike Gabriel (28b3e3f) * debian/rules: Remove build-cruft (.c files) after build. 2015-10-26 22:46:02 +0000 Mike Gabriel (5aea9e6) * logo-generator: Reduce separator between logo text and version number. 2015-10-26 22:09:25 +0000 Mike Gabriel (8e72820) * Provide TheArcticaGreeter logo, drop Ubuntu logo. Adapt logo-generator. 2015-10-26 20:45:14 +0100 Mike Gabriel (c7dbb58) * debian/rules: Fix bogus. 2015-10-26 20:35:17 +0100 Mike Gabriel (ce3b008) * debian/rules: No need to remove logo.png after package build. 2015-10-26 20:33:54 +0100 Mike Gabriel (cf78e2f) * debian/rules: Clean .stamp files after package build. 2015-10-26 20:31:04 +0100 Mike Gabriel (175a4c1) * Revert "Remove *.stamp files on distclean." 2015-10-26 20:14:31 +0100 Mike Gabriel (8c82d89) * Remove *.stamp files on distclean. 2015-10-26 20:11:45 +0100 Mike Gabriel (c72e594) * Add source files (gimp graphics) for background images. 2015-10-26 20:10:39 +0100 Mike Gabriel (f086aa0) * Background image: use a more blue'ish background image. 2015-10-26 18:31:57 +0100 Mike Gabriel (b86e64e) * Disable code depending on upstart. 2015-10-26 17:26:23 +0100 Mike Gabriel (4ce2ca5) * Fix parentheses in dialog message. 2015-10-26 17:13:48 +0100 Mike Gabriel (abc1d35) * debian/control: Don't use package name as SYNOPSIS. 2015-10-26 17:13:21 +0100 Mike Gabriel (b48f5ff) * Fix dialog message. 2015-10-26 15:59:16 +0100 Mike Gabriel (0a03c98) * Use Cantarell font to build versioned logo. Requires fonts-cantarell to be available at build time. 2015-10-26 15:55:14 +0100 Mike Gabriel (5811d62) * Drop hard-reference to uccs.canonica.com. Make default Remote Logon Service server configurable through gsettings. 2015-10-26 15:52:42 +0100 Mike Gabriel (1cfbd06) * Drop Ubuntu background. Use some temporary swirly gradient background. 2015-10-26 15:35:21 +0100 Mike Gabriel (c301096) * debian/rules: No need to extra-copy logo.png at override_dh_auto_install. 2015-10-26 15:34:50 +0100 Mike Gabriel (e1573ab) * Drop optionally using unity-settings-daemon with Arctica Greeter. 2015-10-26 15:12:51 +0100 Mike Gabriel (51bf806) * font work: Use Cabin and Cantatell fonts instead of Ubuntu and Ubuntu Light. 2015-10-26 15:09:50 +0100 Mike Gabriel (422c6d0) * debian/control: Recommend ubuntu-settings-daemon | gnome-settings-daemon instead of mate-settings-daemon. 2015-10-26 13:34:39 +0000 Mike Gabriel (7b4efc8) * Drop the idea of using mate-settings-daemon on non-Ubuntu systems, use gnome-settings-daemon instead. 2015-10-26 13:31:33 +0000 Mike Gabriel (c9220a0) * Fix failing testsuite by enforce setting XDG_DATA_DIRS internally if XDG_DATA_DIRS is not set in the environment. 2015-10-26 04:45:27 +0100 Mike Gabriel (a8365c6) * Move logo-with-version creation into upstream code and away from debian/rules. 2015-10-07 08:28:21 +0000 Mike Gabriel (da5a410) * Rename UGSettings to AGSettings. 2015-09-22 20:11:17 +0200 Mike Gabriel (c96cf1a) * Fix for last commit: Add forgotten translation files. 2015-09-21 17:56:38 +0200 Mike Gabriel (ab139b6) * Rebase against Unity Greeter in Ubuntu 15.10. 2015-09-21 17:47:18 +0200 Mike Gabriel (bf0db8a) * Rebase against Unity Greeter from Ubuntu 15.04 2015-09-21 17:42:30 +0200 Mike Gabriel (ec5e539) * Rebase against unity from Ubuntu 15.04 2015-09-21 17:33:33 +0200 Mike Gabriel (72ff799) * Support alt+super+s for enabling screen reader to match Unity shell keybinding. 2015-09-21 17:24:51 +0200 Mike Gabriel (8852309) * Make arctica-greeter build on Debian and Ubuntu alike. 2015-09-19 16:53:38 +0200 Mike Gabriel (1896346) * Make arctica-greeter build against Debian unstable _and_ Ubuntu (and probably break at runtime). 2015-09-19 12:56:08 +0000 Mike Gabriel (eac0956) * Makefile.am: Provide dist hooks for creating upstream ChangeLog and AUTHORS file. 2015-09-19 14:53:43 +0200 Mike Gabriel (c5beb9c) * Set upstream version to 0.99.0.1 2015-09-19 14:42:19 +0200 Mike Gabriel (f2b9070) * Adapt to using ArcticaProject's remote-logon-service. 2015-09-19 14:09:33 +0200 Mike Gabriel (13e2fba) * Provide our own background image arctica-greeter.png. 2015-09-19 12:40:42 +0200 Mike Gabriel (f84be4f) * fork unity-greeter as arctica-greeter 2014-12-06 10:36:38 +0100 Mike Gabriel (a2072d8) * Fix failing test "remote_login_only" after we made Remote Login only to appear properly on screen. 2014-12-06 10:35:38 +0100 Mike Gabriel (c3bbc8f) * Improve selection code of new entry if an entry is removed. 2014-12-02 14:10:45 +0100 Mike Gabriel (2bc8483) * Fix config parameter (show-remote-login -> greeter-show-remote-login). 2014-12-01 12:25:39 +0000 Mike Gabriel (e74028d) * fix for commit 5328fc2 2014-12-01 13:00:30 +0100 Mike Gabriel (15f085a) * Add to D: network-manager. TODO: Without network-manager no Remote Login. This needs to be addressed later. 2014-12-01 12:58:25 +0100 Mike Gabriel (5328fc2) * Show Remote Login box if no other boxes (usernames, other login, guest login) are to be shown. 2014-11-28 16:51:55 +0100 Mike Gabriel (5a726a4) * Remote Login Only sessions require show-remote-login to be true in SeatDefaults. 2014-11-28 16:44:45 +0100 Mike Gabriel (c0e5832) * 90-unity-greeter-x2go.conf: Override all known LightDM setups that we know of in Ubuntu. 2014-11-28 16:23:40 +0100 Mike Gabriel (2bddd36) * We also allow usernames for UCCS login. 2014-11-28 16:07:15 +0100 Mike Gabriel (c3ad1ba) * If normal user sessions _and_ guest sessions are disabled, make sure the remote login services gets activated. 2014-11-28 15:01:57 +0100 Mike Gabriel (834e272) * fix changelog entries 2014-11-28 15:01:36 +0100 Mike Gabriel (4d989d1) * Add to R (unity-greeter-x2go): xinput. 2014-11-28 10:55:47 +0100 Mike Gabriel (1c27048) * Make lightdm-xsession the default session to launch. 2014-11-28 10:50:59 +0100 Mike Gabriel (0cd9dca) * Allow UCCS logins that are not email addresses (but usernames). 2014-11-28 09:29:59 +0100 Mike Gabriel (7f45435) * debian/control: Upgrade to D (unity-greeter): lightdm. Upgrade to R (unity-greeter): remote-login-service, lightdm-remote-login-x2go, lightdm-remote-login-freerdp. 2014-11-27 13:54:56 +0100 Mike Gabriel (3f03110) * fix for last commit 2014-11-27 13:54:28 +0100 Mike Gabriel (20dc10f) * debian/rules: Fix installation of logo.png into bin:package. 2014-11-12 05:30:43 +0100 Mike Gabriel (b4b0c4e) * debian/watch: Drop file (i.e. reference to original unity-greeter upstream download resource). 2014-11-12 05:30:07 +0100 Mike Gabriel (c681de9) * debian/copyright: Adapt file to forked context of unity-greeter-x2go. 2014-11-12 05:23:23 +0100 Mike Gabriel (31d6243) * Bump Standards: to 3.9.6. No changes needed. 2014-11-12 05:22:54 +0100 Mike Gabriel (d46818b) * Put myself in Maintainer: field. 2014-11-12 05:21:05 +0100 Mike Gabriel (af4e9cc) * debian/control: Rename (src:)package: unity-greeter -> unity-greeter-x2go. 2014-11-12 05:20:08 +0100 Mike Gabriel (d8f5e85) * debian/source/format: Switch to format 1.0. 2014-11-12 05:15:31 +0100 Mike Gabriel (0132755) * debian/control: Adapt Suggests: field to usage with X2Go. 2014-11-12 05:13:27 +0100 Mike Gabriel (ef58047) * mark as UNRELEASED 2014-11-12 05:12:54 +0100 Mike Gabriel (c356792) * Apply patch 01_x2go+rls.patch. Natively support X2Go Session. 2014-11-02 20:41:17 +0100 Mike Gabriel (4ae9e07) * upload to ppa:x2go/stable+ppa (ubuntu/14.04.10-0ubuntu1+x2go1) 2014-11-02 20:40:40 +0100 Mike Gabriel (8e2d33d) * Imported Upstream version 14.04.10 arctica-greeter-0.99.1.5/configure.ac0000644000000000000000000000576314007200003014167 0ustar # -*- Mode: m4; indent-tabs-mode: nil; tab-width: 4 -*- dnl Process this file with autoconf to produce a configure script. AC_INIT(arctica-greeter, 0.99.1.5) AC_CONFIG_MACRO_DIR(m4) AM_INIT_AUTOMAKE(subdir-objects) AM_PROG_CC_C_O AM_PROG_VALAC([0.24.0]) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) GLIB_GSETTINGS dnl ########################################################################### dnl Dependencies dnl ########################################################################### dnl #### removed from PKG_CHECK_MODULES: libido3-0. PKG_CHECK_MODULES(ARCTICA_GREETER, [ gtk+-3.0 gdk-x11-3.0 libayatana-ido3-0.4 >= 0.4.0 ayatana-indicator3-0.4 >= 0.6.0 liblightdm-gobject-1 >= 1.12.0 freetype2 cairo-ft libcanberra pixman-1 x11 xext ]) AC_DEFINE_UNQUOTED([INDICATOR_FILE_DIR], ["${prefix}/share/ayatana/indicators"], [Indicator files are searched for in this directory]) INDICATORDIR=`$PKG_CONFIG --variable=indicatordir ayatana-indicator3-0.4` AC_SUBST(INDICATORDIR) if $PKG_CONFIG --exists mate-settings-daemon; then MSD_BINARY=`$PKG_CONFIG --variable=binary mate-settings-daemon` if test -z "$MSD_BINARY"; then AC_MSG_NOTICE([Could not find path to mate-settings-daemon binary]) else SD_BINARY="$MSD_BINARY" fi fi if test -z "$SD_BINARY"; then AC_MSG_ERROR([Could not find any supported X11 settings daemon]) else AC_DEFINE_UNQUOTED([SD_BINARY], ["$SD_BINARY"], [Path to g-s-d]) fi AC_CHECK_PROG(VALGRIND, valgrind, valgrind --trace-children=yes --num-callers=256) AC_SUBST(VALGRIND) dnl ########################################################################### dnl Internationalization dnl ########################################################################### IT_PROG_INTLTOOL(0.35.0) GETTEXT_PACKAGE=arctica-greeter AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", Gettext package) AC_SUBST(GETTEXT_PACKAGE) dnl ########################################################################### dnl Check for GTK version - 3.20 dnl ########################################################################### PKG_CHECK_MODULES(GTK_3_20_0, gtk+-3.0 >= 3.20.0 , gtk_check_pass=yes, gtk_check_pass=no) if test x$gtk_check_pass = xyes ; then AM_VALAFLAGS="$AM_VALAFLAGS -D HAVE_GTK_3_20_0" AC_SUBST([AM_VALAFLAGS]) fi dnl ########################################################################## dnl Remote Logon Dependencies dnl ########################################################################## AC_CHECK_HEADERS([security/pam-x2go.h],[],AC_MSG_ERROR([Could not find security/pam-x2go.h])) AC_CHECK_HEADERS([security/pam-freerdp2.h],[],AC_MSG_ERROR([Could not find security/pam-freerdp2.h])) dnl ########################################################################### dnl Files to generate dnl ########################################################################### AC_CONFIG_FILES([ Makefile data/Makefile po/Makefile.in src/Makefile tests/Makefile ]) AC_OUTPUT arctica-greeter-0.99.1.5/COPYING0000644000000000000000000010451314007200003012725 0ustar GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . arctica-greeter-0.99.1.5/data/50-arctica-greeter.conf.in0000644000000000000000000000033614007200003017340 0ustar [Seat:*] greeter-session=arctica-greeter ### FIXME: disabling the greeter wrapper so far, as systemctl --user calls will fail with the wrapper ### enabled. #greeter-wrapper=@pkglibexecdir@/lightdm-arctica-greeter-session arctica-greeter-0.99.1.5/data/50-arctica-greeter-guest-wrapper.conf.in0000644000000000000000000000010214007200003022132 0ustar [Seat:*] guest-wrapper=@libexecdir@/lightdm/lightdm-guest-session arctica-greeter-0.99.1.5/data/a11y.svg0000644000000000000000000000375314007200003014103 0ustar Gnome Symbolic Icon Theme image/svg+xml Gnome Symbolic Icon Theme arctica-greeter-0.99.1.5/data/active.png0000644000000000000000000000170714007200003014565 0ustar PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp fe;IDATxbv Vb a`0KM*T"l&vud slK@IENDB`arctica-greeter-0.99.1.5/data/arctica-greeter.10000644000000000000000000000131514007200004015723 0ustar .TH ARCTICA-GREETER 1 "Feb 05, 2021" "Version 0.99.1.5" "LightDM Greeter" .SH NAME arctica-greeter \- LightDM greeter for the modern desktop .SH SYNOPSIS .B arctica-greeter [ .I OPTIONS ] .SH DESCRIPTION .B Arctica Greeter is a LightDM greeter for the modern desktop. .PP It is run by the LightDM daemon if configured in lightdm.conf. .PP It is not normally run by a user, but can run in a test mode with the \-\-test-mode option. This allows the interface to be tested without installing an updated version. .PP .SH OPTIONS .TP .B \-v, \-\-version Show release version. .TP .B \-\-test-mode Run the greeter in a test mode inside the current X session. .TP .B \-?, \-\-help Show help options. .SH SEE ALSO .B lightdm arctica-greeter-0.99.1.5/data/arctica-greeter-blue.xcf0000644000000000000000000542140514007200003017302 0ustar gimp xcf file @BB gimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches)  @arctica-greeter.png     G @s$$$$$$ @Ms!{'2APW'X-Z^_chKlq/txr|<Z  IzUþXT_$p v 7#'*.~27;J<?eCHiLPWTxY+]=bEg)koqu*vj|-fQ99ʡϱԟdF R%w-49@>BGM9RtVXO\'^Ub4gls^t|W2bJ1`u )4A<,@F-K%P}UZ%^gadfKl4py^-xhSdƏ(|yW t,9@nEKPRV[_dave"flgq|cOSqG}= Qo_e"j0:?EiJPVw[ ]1`?afksx_&h(tlYi;A )q39@+DK QU9WYY[n`fuxnr,G[BeT.R#kP / 9(>DJ3OUZ=\I^` elzAo]O,0v} Ot%9GOcTZ=_pedjjnptuFzFcIh j : h  T 2  # 12 E P Z c h m r xW } 7 _ e  = ˨ v v v v v 0  "; $a ' ,9 1E 8 ? E KK M Q U ZC _ c i" n. r! t x z ~ 4 U   h h h h h T ( c    Y  &T , 1 4 6 8; ; ? C H~ MI Q V X [ ] c h o ~y w % 9  I 7 O  Q Q Nj *  Z 9 V s y ! 9  a  ! &( * . 0 4= 6 8 @U FS L Z nH xn z | |  R Ԓ " 0  * ?         >   ' 4 GW RG V X \` _ c# h nI s= y ~ [     m & գ ח Q  L < % RR .4C6G95:;>CIN|SX^k|WU%(;86vԵڏ7 F!&D+06:CObk0oNpPrttvwy{}v :>LYG6֚  f*6vHOTUVXLZ\[]X^`bvd:efi/nzv@v̖ZDYm {( m08k=<?w?@AByCGD[EEGWKaQH^(ku~/mÊĶǞѨ֝ۚK8# $(+. /026:?HV`FiXpptx}]GXJO%qm;("&) ,2<HQY`f1imqw|4>zlN0þNkQ3_YDwj$  oi'$*/37:>BGL>QVN]qj){;e[1xaǥ;ΝՃv>r466H05!.7J:@D:GZKOrS|WZO]s`c~egijlemo`prtw zg}i^jlKC5ھܺ.^5y- wad2 2  )iY !1$2%&$3%&$3%&$3%&$1%&$1%&$2%&$2% &$2% &$%2% &$3% &$2% &$%2% &$%3% &$%3% &$%2% &$%0% &$%0% &$%-%&.%&.%&.%&.%&.%&/%&/%&.%&.%&.%&,%&,%&+%&*%&)%&)%&)%&)%&(%&)%&)%&(%&'%&'%&&%&&%&&%&%%&%%&$%&#%&$%&$%&$%&#%&#%&#%&"%&!%& %& %&%&%&%&% &WXYZW XYZWXYZWXYZW XYZW XYZWXYZWXYZWXYZWXXYZWXYZWXYZWXXYZWXXYZWXXYZWXXYZWXXYZWXXYZWXXYZXYZXYZ XYZ XYZ XY!Z XY!Z XY!Z XY!Z XY"Z XY"Z XY#Z XY#Z XY%Z X Y&Z X Y'Z X Y'Z X Y'ZXY'ZXY&ZXY&ZXY'ZXY'ZXY(ZXY)ZXY)ZXY)ZXY*ZXY*ZXY*ZXY+ZXY+ZXY+Z[XXYY)Z[XYY*Z[XYY*Z[XY,Z[XY,Z[XY Y+Z[Y+Z[Y+Z[Y+Z[Y+Z[Y*Z[Y*Z[ Y+Z[                                 6&'5& '5& '5& '5& '3& '3& '3& '3& '3& '2& '1& '2& '2& '2& '1& '/&'/&'.&'.&'.&'-&'-&'+&'+&')&')&'(&'(&'(&'*&'*&'*&'*&')&'(&'%&'%&'$&'$&'$&'%&'#&'$&'$&'$&'"&'"&'!&'!&'!&' &' &' &' &'& '& '&!'&"'&!'&!'& '&"'&"'Z[\]Z[\ ]Z[\ ]Z [\ ]Z[\ ]Z [\ ]Z [\ ]Z [\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z [\ ]Z [\ ]Z[\ ]Z[\ ] Z[\] Z[\] Z[\]Z[\]Z[\]Z[\]Z[\] Z[\] Z[\] Z[ \]Z[ \] Z[ \]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]^ZZ[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^[\]^[\]^[\]^[\]^[\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\] ^                                          #'("'(#'("'( '( '('('('('(' (' ('!('"('#('"('"('#('#('$('&('&('&('&('&(''('&('(('(('(('((')(')('-('-('-(',(',('.('.('.('.('.('/('0('0('0( '1( '1( '2( '3( '3( '3( '4( '4( '4( '4( '5('6('7('8('7('7('9(]^_ `]^_ `]^_ `]^_ `]^_ `]^_ ` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`a]]^_`]^^_`^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_` a ^_` a ^_` a^_` a^_` a^_` a^_` a^_` a^_` a                                  )()*()(()(())()(()&()&()%()$()$()$()$()#()"()!()!()!()!() () () ()( )( )( )(!)(#)(")(!)*((")*((#)*((#)*(#)*(")*(")*(")*(")*(")*(")*($)*($)*(")*(#)*(#)*(%)*(%)*(%)*(%)*($)*($)*($)*($)*(#) *(!) *( ) *() * (#) * (")* (")* (!)* (")*( )*( )* (")*`a b c`ab c `ab c`ab c `abc `abc `a bc `abc `a bc `a bc`a bc`abc`abc`abc`abc`a bc`abc`abc`abc`abc`abc`abc`a bc`a bc`abc`abc`a bc`a bc`abcd`aabcd`aabcd`aa bcd`aa bcda bcda bcdabcdabcda bcda bcda bcda bcda bcda bcda bcda bcdabcdabcdabcdabcda bcda bcda bcdabc dabc dabc dabc d a bc de a bc de a bc de abc de a bc deabc deabc de abc de                                                   )*+,)*+, )*+, )*+, )*+, )*+ , )*+ , )*+ , )*+ , )*+ , )*+ ,-))*+ ,-))*+ ,-))*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)**+ ,-*+ ,-)**+ ,-)**+ ,-*+ ,-*+ ,-*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,- *+ ,- *+ ,- *+ ,-.* *+ ,-.* *+ ,-.* *+,-.* *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.c d efghic d efghi c d efghi c d efghi c d efghi c d efghijc c d efghij c d efghij c d efghij c d efghij c d efghijkcc d efghijkcc d efghijkcc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkcd efghijkcd d efghijkd efghijkcd d efghijkcd d efghijk d efghijk d efghijk d efghijkld d efghijkl d efghijkl d efghijkl d efghij kl d efgh ijkl d efghijkl d efghijkld efghijkld efghijkld efghijkld efghijkld efgh ijkld efghijkld efghijkld efghijkld efghijklmdd e fghijklmdd efghijklmd efgh ijklmd efghij klmd efghijklmndde efghijklmndde efghijklmndde efg hijklmne efghijklmn efghijklmn efghijklmn efghijklmn efghij klmnefghijklmnefghijklmnefghijklmne fghijklmnefghijklmnefghijklmnefghijklmn                                               ,-./0,-./0,-./0,-./0,-./0,-./0,--./0,--./0,--./0-./0-./0-./0-./0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0 -./ 0 -./ 0 -./ 0 -./ 0 -./0 -./0 -./0 -./0 -./0 -./0-./0-./0-./0-./0-./0-./0-./0/--./0.--./0/--./0.+--./0/-*--./0.+(--./0/-*&--./0.+(#--./0/-*&"--./0/.+(# --../0.,(%!-../0/-*&# -../0.+($!../0/-*&" ../0.+($!../0/-*&". ./0.+(#  ./0/-*&" ./0.+(#  ./0/-*&" ./0.+($  ./0/-*&" ./0.+($  ./0/-*&" ./0.+($  ./0/-*&" ./0.+($ ./0/-*&"./0.+($!ijjklmno pqrsiijjkklm no pqrijjkklmno pqrsijjkklmno pqrsjjkklmno pqrsjjkklmno pqrsjkk lmno pqrsjkk lmno pqrsjkklmno pqrsklmno pqrsk lmno pqrsklm no pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmn o pqrstkklmno p qrstklmno pqrstklmno pqrstkllmno pqrstkllmno pqrstlmno pqrstlmno p qrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstsllmno pqrstsllmno pqrstspllmno pqrstsollmno pqrstspllmno pqrstsohlmmno pqrstspldlmmno pqrstsoh_lmmno p qrstspkdZlmmnno pqrstrnh_Ummno pqrstspkdZQmmno pqrstqnf_UNmmnno pqrstsoiaZPKmnno pqrstspld\SLHmnno pqrstsoh_WNJGnno pqrstspldZRLHFnno pqrstsoh_VNIFFnno pqrstspldZQKGFFnno pqrstrnh_UNIFFno pqrstspkdZQKGFFEnno pqrstsoh_UNIFFEEnno pqrstspldZQKGFEEno pqrstsoh_VNIFFEEFnno pqrstspldZQKGFEEFFnno pqrstsoh_VNIFEEFno pqr stspldZQKGFFEEFFnno pqrstsoh_VNIFFEFno pqrstspldZQKGFFEFFnoo pqrstrnh_VNIFFEEFnoo pqrstspldZQKGFFEEFFnoo pqrstrnh_VNIFFEEF˹ ˹˻˻         ͼ  ˾˾ƾþƾøƾø ƼƼùƾø}ƾ| ø||ƾ}||||Ƽ}||zø||zzƾ}|zzø||zz|ƾ}|zz||ø|zz| ƾ}||zz||ø||z|ƾ}||z||||zz|ƾ}||zz||||zz|0/,(# 0.+'# 0/-*&"0.+(#  0/-)&" 0/-+(#  0.,(%!  0/-*&#   0.+($!   0/-*&"   0.+(#   0/-*&"  0.+(#   0/-*&"  0/-+'#   0.,(%!  0/-*&#  0.+($!0/-*&"  0.+(#!0/-*&" 0.+($! 0/-*&" 0.+(#  0/-)&" 0/.+'#  0.,(%! 0/-*&#  0.+($! 0/-*&" 0.+($!0/-*&" 0.+($!/-*&" .+($ -*&"+(# *&" ($!&"  #  "                              stspi_UMHFFE FGHIJKsstrnf]TLHFFE FGHIJstspkdZQKGFFEF FGHIJKstrng_UNIFFEE FGHIJKstspkcZQKHFEE FGHIJKstspmf_UNIFFEE FGHIJKstsoiaZPKGFEEF FGHIJKstspld\SLHFFEEF FGHIJKstsoh_WNIGFEEF FG HIJKstspldZRLHFFEF FGHIJKstsoh_UNIFFEF FGHIJKstspkdZQKGFEE FGHIJKstrnh_UNIFFEF FGHIJKstspkdZQKGFFEEF FGHIJKstsqmf^UNIFFGHHIJKsttsoiaZPKGFEEF FGHIJKtspld\SLHFFEEF FGHIJ Ktsoh_WNIGFEE FGHIJ KtspldZQLHFFEE FGHIJ Ktroh_UNIFFE FGHIJ KtspldZQKGFFEEFG HIJ Ktrnh_WNIFFEEFG HIJ KtspkdZQKGFEE FGHIJ Ktrnh_UNIFFEE FG HIJ KtspkcZQKGFEEFGHIJKtqnf^UNIFFEEF FGHIJKtsoiaZPKGFEE FGHIJKtsple\SMIFFEF FGHIJKtsoh_WNIGFFEF FGHIJKtspldZRLHFFEF FGHIJKtsoh_VNIFFEE FGHIJKspldZQKHFFEEF FGHIJKsoh_VNIFFE FGHIJKpldZQKGFFEF FGHIJKoh_VNIFFEE FGHIJKldZQKGFEE FGHIJKh_UNIFFEE FGHIJKdZQKGFFEE FGHIJK_VNIFFE FGHIJKZQLHFEE FGHIJKUNIFFEEF FGHIJKLQKGFEE FGHIJKLNIFFEE FGHIJKLKGFFEE FGHIJKLIFFEE FGH IJKLGFFEF FGHIJKLFFEEF FGHIJKFEF FGHIJKLFFEF FGHIJKL FGHIJKLFEF FGHIJKLEF FGHIJKLEF FGHHIJKL FGHHIJKL FGHHIJKL FGHIJKLFGHIJKLFGHIJKLFG HIJKLFGHIJKLKLFGHIJK LFGHIJKLKFFGHIJKLKFFGHIJKLKĹ||z |}||z |}Ƽ}||z| |}||zz |}ļ|zz |}||zz |}ù}|zz| |}ƾ||zz| |}ø}|zz| |} ƾ||z| |}ø||z| |}Ƽ}|zz |}||z| |}Ƽ}||zz| |}||}ù}|zz| |}ƾ||zz| |} ø}|zz |} ƾ||zz |} ø||z |} ƾ}||zz|}  ||zz|}  Ƽ}|zz |} ||zz |}  Ƽ}|zz|}||zz| |}ù}|zz |}ƾ||z| |}ø}||z| |}ƾ||z| |}ø||zz |}ƾ||zz| |}ø||z |}ƾ}||z| |}ø||zz |}}|zz |}||zz |}}||zz |}||z |}|zz |}||zz| |}}|zz |}||zz |}}||zz |}||zz |} }||z| |}||zz| |}|z| |}||z| |} |}|z| |}z| |}z| |} |} |} |}|}|}|} |}|} |}||}||}                                                                   #  #            !  !  1 - / / 3 2 2 .  2  2 1 1  - 3 0 / / 0 )  )  )  ) ' ) + - KLKLKLKLKLK LK L KLK L KLK LKLK L KLK L KLK LKLK LKL KLK L KL KL KL KL KLK L KLK L KLK LKLK LKLK LKLKLKLKLKLKLKLKLK L KLK LKL KLKLKL KLKLKLKLK LKL KLK LKLK LKLK LKLMK LKLMK L KLMK L KLMLK LKLKLKLKLKLMLK L KL MK L KL MK L KL MKLKLMKL KLMLKLM LKLM LKL M L KL M L KL M L KL M L KLMLKLK L MLKLK LMLML K L ML K"LML KLKLML K"L ML KL MLKLMLKLMLKLMLKLMKLKLM KLKLM KLKLMKLMKLMLMKLMKLM                                                 "  "      L3M L4ML/M L3M L3M LML-M L3ML/M L2M L4M L4ML:ML:ML:ML8ML9ML9ML9ML9ML9ML9ML9ML:MLMLMML=MLMN;MN;MN 3 4/ 3 3 - 3/ 2 4 4:::89999999:=;; != !< !; !; !; !; !; !: !; !; !; !; !9 !7 !7 !7 !8 !8 !6 !4 !"MNMNN'MN$MN$MN"MNM NM NM NMNM NMNMNM%NM#NM$NM$NM#NM%NM$NM#NM&NM$NM&NM(NM*NM,NM,NM,NM,NM,NM'NM.NMNM&NM.NM-NM-NM0NM0NM0N M3N M3NM0N M2N M2N M3N M5NM6NM6NM6NM7NM6NM;NM9NM;NM=NM=NM=NM=NM)())*7) *3) *2)*/)*)*)&)*#)*!)+*)?`a`=`a`=` a3`a$`a#`a`a`(a`/a`3a `7a`:a`=a`=a`a b5a b4ab/ab'ab a$ba*bacbc)b acb c$b a c$b acb acbaccb!cbcb)cb.cb.cb;cb=cba`aab:ab6ab6a b4a bab-ab+ab(ab(acb"acb acbacba cbcbacbacbacbacbacba cba#cba$cbcba+cba+cb-cb0cb4c b##',,3 6:<886.*$##"$'*03 3 7:=>:66 4 -+(("   #$++-04 (+'(,'(('(('(''($'( '"('%('&(''('+(',(',('.('2( '6('8('9(';('>('( ();():()7()6(_'^]_*^]_&^]_&^]_%^]_$^_ ^"_^%_^&_^`"_^`&_^`'_^ ` _^ `!_^`#_ ^`%_^`&_^`_`_^`_`!_^` _^``!_`_`_`_`_ `_`_)`_+`_+`_-`_0`_2` _2` _4` _a2` _a4`_a8` a3`_a a3`_a a2`_a a0`a*`a'`a&`a#`a#`a!`a ` a`&a`&a`&a`*a`,a`-a`/a`/a`0a`4a `b0a `b0a `b0a`b0a`'*&&%$ "%&"&'  !# %&! ! )++-02 2 4 2 48 3 3 2 0*'&##! &&&*,-//04 0 0 00''&'&&'&'&-'&.'&1' &1' &3' &3' &9'&9'&:'&='&='&'(='(='(='(<'(8'(7' (3' (3'(/'(.'(-'(,'()'(&'(&'($'(!'( ' (' (' (' ('#(''(''(''('(('/('0('1( '1( '4( '4( '5( '6('7('7(':('@(']\]\&]\]\-]\.]\1] \^-] \^.] \^*] \^0]\ ^-]\ ^-]\ ^/]\^.]\^-]^+]^+]^*]^(]^%]^ ]^]_^]_^]_ ^]_^]_^]_^] _^] _^]_^]_^]_^]_^ ]_^ ]_^ ]_^ ]_^ ]_^]_^] _^] _^]`_^`_^`_^`_^ `_^`_^`_^`_^`_^`_ ^`_ ^`_ ^`_ ^`_ ^`_^`_^`_^ `_^!`_#`_%`_%`_&`_'&-.1 - . * 0 - - /.-++*(%                  !#%%&&'<&';&';&'8&'8&'8& '5& '4& '4& '1&'-&'-&',&'+&')&''&'&&'&&'$&'#&'#&!'&"'&"'&"'&$'&''&('&('&)'&)'&*'&+'&-'&/'&0'&2' &4' &4' &4' &4' &5' &8'&8'&<'&<'&<'&(':'&(<'(<' \[Z \[Z \[Z \[Z \[Z\[Z\[Z\[Z\[Z\[Z\[ Z\[ Z\[ Z\[ Z]\[ Z]\[ Z]\[Z]\[Z]\[Z]\]]\[Z] ]\[Z] ]\[ ]\[]\[]\[]\[]\[]\[]\[]\[]\ []\ []\ []\[!]\["]\["]\["]\[$]\[']\^&]\^&]\^&]\^&]\^$]\^$]\^$]\ ^%]\ ^%]\ ^'] \ ^'] \^$] \^$] \^!] \^ ] \^#]\^"]\^%]\^$]\^#]\_^^#]\_^#]_^"]                 !"""$'&&&&$$$ % % ' ' $ $ !  #"%$###" &2% &3% &2% &2% &1%&0%&/%&+%&+%&*%&(%&#%&#%&"%&"%&!%& %& %& % &%"&%$&%$&%&&%&&%)&%+&%+&%+&%,&%,&%,&%.&%.&%/&%0&%4& %4& %4& %5& %4& %6&%;&%;&%;&%;&%=&%&'&=&$ZYX$ZYX$ZYX$ZYXZ(ZY)ZY+ZY)ZY*ZY+ZY/ZY/ZY1Z Y2Z Y2Z Y3Z Y4Z Y4Z Y7ZY8ZY:ZY:ZY[Z8ZY[:ZY[9ZY[9Z[8Z[8Z[6Z [4Z [2Z [2Z [2Z [1Z [1Z [1Z[-Z[*Z[*Z[)Z[)Z[(Z\['Z\[&Z\[%Z\[!Z\[ Z\[ Z\[Z\[Z \[Z \[Z \[Z \[Z\[Z\[Z\[Z\[Z\[Z\[Z\[Z\[Z\[Z]\\[Z            "$"#"#$$" !   !  ! ""     #"!     %,$%,$%,$%+$%'$%%$%&$%&$%&$%#$%!$%!$%!$%$ %$ %$$%$$%$$%$%%$(%$(%$)%$)%$)%$)%$*%$0%$0%$0%$0%$0%$0%$1% $3% $6%$6%$7%$8%$9%$:%$:%$;%$;%$;%$%&%=%&%=%&=%&;%&;%&;%&:%&9%&7% &5% &5% &5% &3% &2% &1%&/%X!W VX W VX#WVX!W VYXXWVYXXWVYXX WVYX!WVYX"WVYXWVYXWVYXWVYX!W YXW YXW YXWYXWYXWYXWYXWYXWYXWYXWYXWYXWYXWYXWZYYXWZYXWZYXWZYXWZYXWZYXWZYX WZYX W ZYXW ZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXZYXZYXZYXZYXZYXZYXZYXZY XZY XZY XZY XZY XZY XZY X ZY X!ZYX$ZYX$ZYX!  #!  !"!                $4# $4# $3# $2#$0#$/#$/#$.#$-#$-#$-#$-#$+#$(#$(#$(#$&#$&#$&#$$#$$#$!#$!#$ # $# $# $#!$##$##$#%$#%$#&$#&$#'$#'$#)$#)$#)$#*$#*$#,$#.$#0$#1$ #2$ #%$0$ #%$0$ #%$0$ #%$0$ #%0$ #%0$ #%2$#%3$#%3$#%1$#%0$#%0$#%1$#%1$#%1$#%3$# %3$#% %3$# VUT VUT VUT VUTVUTVUTVUTVUTVUTVUTVUTVUTWVVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVU TWVU TWVU T WVU T WVU T WVU T WVU T WVU TWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWWVUWVUWVUWVUWVUWV UWV UXWWV UXWWV UXWWV UXWWV UXWV UXWV UXWVUXWVUXWVUXWVUXWVUXWVUXWVUXWVUX!WVUX!WVU X WVUX X WVU                    !!  #,"#*"#("#("#("#'"#&"#%"#%"#$"#""#""#""#""# "#"#"#" #" #""#""#"%#"%#"%#"%#"%#"&#"(#")#")#"*#"*#",#",#"-#"-#".#".#"/#"1# "4# "4# "4# "5# "6#"6#"6#"6#"7#"7#":#":#":#":#";#";#";#"=#"@#SRQSRQTSRQTSSRQTSSRQTSSRQTSRQTSRQTSRQTSRQTSRQTSRQTSR QTSR Q TSR Q TSR Q TSR Q TSR Q TSR Q TSR QTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRTSRTSRTSRTSRTSRTSRTSRTSRUTTSRUTTS RUTS RUTS RUTS RUTS RUTSRUTSRUTSRUTSRUTSRUTSRUTSRUTSR UTSRUTSR UTSR UTSR UTSRUTSRUTSUTSUTSUTSUTS                 "!!"!"!""!""!""!$"!&"!'"!'"!'"!'"!)"!)"!)"!*"!*"!,"!/"!2" !2" !2" !3" !3" !/"!/"!/"!0"!2" !3"!"!3"!"!9"!="!="!8"!9"!9"!9"!:"!9"!9"!9"!;"!>"!"="!"="!""!="!="!="!"#<"#<"Q POP OQPQPOPO"QPOP O"QP O"QP O$Q P O&Q P O'QPO'QPO'QPO'QPO)QPO)QP O)QP O*QP O*QP O,Q PO/QPO2QPO2QPO2QPO3QPO3QPO/Q PO/Q PO/QP0QP2Q POQ2QPQPOQ2QPQPOQ8QP=QP=QPRQ6QPRQ7QPRQ7QPR7QPR7QPR5QPR5QPR4QPR6QPR9QPRR7QPRR6QPRR7QR7QR7Q R5Q R5Q R5Q R0QP R0QP R0QP R0QP R2QR0QR0QR0QR.QR-QR*QSR*QSR*Q  " " " $ & '''')) ) * * , /22233/ / /02 228==677775546976777 5 5 5 0 0 0 0 2000.-*** D!"=!";!":!";!"9!"8!"8!"6!"6!"6! "4! "4! "4! "4! "4!ONOONOOPNON7NONON7NONON4NONON4NONO5N O5N O4N O4N O6NO3N O1NONO0NO0NO2N O2N O2N O2N O0NO/NO/NONO8NO/NONO.NO.NO*NO*NO)NO*NO*NO*NO*NO+NO,NO0/1 1 /..,-***+),))*%%&%% !    !    # !  )         "!N0ON0O N1O N2O N2O N1O N2O N2ON7ON:ON%&=%&:%&:%&9%&8%&7%&6%&5% &3% &3% &3% &/%&.%&-%&-%&,%&+%&*%&*%&*%&(%&'%&'%&%%&"%&"%&!%&% &% &% &%!&%"&%"&%$&%%&%%&%'&%(&%)&%)&%*&%+&%-&%-&%-&%.&%0&%0& %4& %4& %5& %5& %5&%6&%8&%8&%8&%8&%9&XYZXYZXYZXYZXYZXYZXYZXYZ XYZ XYZ XYZ XYZXY ZXY"ZXY#ZXY$ZXY$ZXY&ZXY(ZY(ZY)ZXYY*ZY*ZY+ZY+ZY+ZY+ZY.Z Y1Z Y1Z Y1Z Y2Z Y3Z Y4Z Y5Z Y4Z[YY2Z[Y2Z[Y2Z[Y6Z[Y4Z[Y5Z[Y3Z[6Z[5Z [4Z [4Z [4Z [3Z [1Z [1Z [1Z [.Z[-Z[-Z[,Z[*Z[\Z'Z[\Z&Z[\Z%Z[\%Z[\%Z[\%Z[\#Z[\                  !!     " !   "  " " " %;&%&=&%&}&'&8&'8&'8&'7&'6&'4& '3& '1& '/&'.&'-&'.&',&',&'*&'*&'(&''&'%&'#&'"&' &' &'&'&'&"'&"'&#'&$'&&'&&'&''&('&('&)'&*'&*'&-'&.'&/'%Z[\$Z[\"Z[\"Z[\"Z[\Z[\Z[\Z[ \Z[ \Z[ \Z[ \Z[ \Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\ Z[\ Z[\]Z Z[\] Z[\]Z[\]Z[\]Z[\]Z[\ ]Z[\ ]Z[\ ]Z[[\]Z[[\][\][\][\][\][\][\][\][\][\][\] [\] [\] [\] [\] [\][\"][\"][\#][\!]^[\"]^[\"]^[\\#]^\!]^\]^\ ]^\ ] ^\] ^\"] ^\"] ^\ ]^!" ""                 ""#!""#!   " "  &)'&*'&,'&.'&.'&.'&0' &2' &2' &3' &5'&6'&6'&7'&8'&:'&:'&'('='(':'(;'(;'(7'(7'(6'(4' (4' (/'(/'(.'(-'(-'(,'(*'()'(('(''(&'(%'($'(#'('(' ('"('"('$('$('$('%('(('(('*('+('-('.('.('-('0( '3( '4( '5( '5(\']^\(]^\(]^\)]^\']^\']^\']^ \'] ^ \&] ^ \&] ^ \'] ^\&]^\%]^\&]^\&]^\%]^\$]^\$]^&]^#]^_]"]^_]"]^_#]^_#]^_]^]^_]^_]^_]^ _]^ _]^_]^_]^_]^_]^_]^_]^_]^_]^_]^_]^_]^_` ]^_` ]^_` ]^_`]^_`]^_ `]^_ `]^_ `]^^_ `^_`^_`^_`^_`^_`^_`^_`^_`^_`^_`^_` ^_` ^_` ^_` ^_`'(()''' ' & & ' &%&&%$$&#""##             '"('!('%('(('((')('+(',('/('0( '2('6('6('6(':('=('(=('(()=():()9()4( )4( )4( )2( )2( ).().()-()^_`^_ `^_ `^_ `^_ `^_`^_`^_`^_`^_` ^_`^ _`^_`^_`^_`^_`^__`^__`_ `_#`_%`_)`_)`_*`a__,`a_*`a_*`a_)`a_(`a_)`a _(` a _'` a_)` a_)` a_(`a_'`a_(`a_*`a_`*`a+`a$`a$`a"`a!`a` a`!a`!a`"a`%a`%a`&a`'a`(ab`(ab`'ab`'ab`%a b `'a b `'a b `&a b `'a b`%a bc`&a bc`&a bc       #%))*,**)() ( ' ) ) ('(**+$$"! !!"%%&'((''% ' ' & ' % & & {()8()5( )5( )2( )/()/(),()+())()'()%()$()#()()()(!)(!)(#)(&)())(+)(+)(,)(/)(/) (2) (2) (2)(6)(:)(:)(=)(;)*:)*9)*9)*9)*5) *3) *1) *0)*0)*0)*.)*,)*')*'`a`a$`a$`a$`a$`a!`a`a`#a`%a`%a`+a`-a`-a`/a`0a `2a `2a `0ab `.ab`-a b`0a b`/a b`-ab/ab,abca*abca(abc'abc%abc$ab c#ab cab cabcabcabca bca bcabcabcabca bcab ca b#c ab#c a b$c a b$ca bcb$ca bcb%ca b.ca b/ca b-cd b/cd b.cd b.cd b.cdb,c db-c db+c db,cd0cd0cd.cd,cd'cde'$$$$!#%%+--/0 2 2 0 .- 0 / -/,*('%$ #       # # $ $ $ % . / - / . . ., - + ,00.,' ()(!)(")($)(*)(.)(/)(/)(/) (2) (4)(6)(:)(:)(:)()<)*7)*5) *1) *0)*,)*+)*()*()*&)*%)*")*)"*)#*)$*)(*)**).*).*)/* )1* )0*+ )/*+).*+).*+),* +).* +.*+,*+**+)*+%*+$*+ *+*+*!+*#+*%+*'+*)+,**(+, ab cab cabcabcabcabcabcabcabc abc abcab$cab%cab+cab+cabb,cb/cb0cb6cb6cb6cb9cb9cbc;cd7cd5c d1c d0cd,cd+cd(cd(cd&cd%cd"cdecdecdecd ecd ecdecdecdecde cde cdef cdefcdefcdefcde fcde fdefdefdefgdefgdefgh defgh defghdefghdefg hdefg hdefghdefghefghieefghi     $%++,/066699;75 1 0,+((&%"          )*:)*8)*3) *-)*+)*))*$)*) *) *)!*)'*)(*).* )2* )2* )3*):*):*)=*)**+6*+3* +/*+-*+**+%*+"*+*!+*#+*'+*(+*++*.+ *1+ *4+*6+*8+,*5+,*+1+ ,3+ ,-+,++,'+,$+, +,+ ,+,-+,-+ ,-+, -+,- +,- +,-+,-+,-+,-+,,"-,%-,'-cd:cd8cd3c d-cd+cd)cd$cdc dc dc!dc'dc#dec%de c#de c de cdec$decdecdecdd!ed$ed!efd!efd!e fdef d!efd!efdefdefgdefgef gheefghef ghefg hef gh efgh efghefghefghiefghieffgh ifgh ifghi fghi fghifghijffghijfghijghijkghi jkghijkhij khijk hijk hijkhijkhijklhi jklhiijk lijklijkl:83 -+)$  !'#% #    $                  )6*)*)*+7*+1* +**+#*+*+*&+*)+*0+ *4+*8+*+,+8+,0+,)+,%+,!+,+#,+(,+., +3,+6,+1,-+,0, -),-#,-,!-,$-,(-,.- ,2- ,4-,:-,-.2- .,-.&-."-.-".-'.--.c6dcdcnde0de*de%ded ed$ed-ed0e d4ed6efd3ef1e f*ef#efefe&fe)fe+fg e'f ge$fghe!fgh f ghf ghfghf g h f g&hf g*hiff g)hi g%hig"high#hi!hih#ih(ih,ij h&i jh%ijh#i jkhiij ki jki jki j!k i j$k i j(ki j'kli j%k l j#klj"kljklk#lk'lk'lmk(lm k!lmk#l mnk!l m nkll mnl mnl mnl m"n l m'n lm'no6n0*%   # ( ** & #!&)+ ' $!   & * ) %"#!#(, & %#     ! $ ( ' % #"#''( !# !     " ' '#*+*+**+*+ ,+,+-,+,-, ,-,--,- .-%. -1.-y.d7edeefefe*fecfgf gf'g f4gfghg/hg]h ihih-ihdijiji+j i1jkiijkj-kj`klk(lk6lk(lml'm l&m nmlm%n m1nmXn onon(on7onyo7 0\*c ' 4/] -d+ 1-`(6(' & % 1X (7y*+*+3*+*&+*3+ *;+*+ ,2+,!++,+2, +:,+,-:,-$,%-,,-,2- ,:-,-.'-!.--.-5. -:.-.$ed0ed8ed@efef3efe&fe3f e;fef gfggf1fg#fgh gfh g f&hgf0hg5h g=hgh i2hi!h+ih2i h:ihijij1ij!ik&jikji%kj i,kj2k j:kjk l1klk*lk1l k:lkl mlm,lm!l)mlnml!nml-nmln4n m:nmno+non(on4o n7on$"+3 =3&3 ; 1#  &05 = 2!+2 :1!&% ,2 : 1*1 : ,!)!-4 :+(4 7-*)0*)6*)7*)8*)*+;*+7*+0*+,*+$*+"* +*%+*'+*-+*1+ *5+ *9+*<+*+,;+,7+ ,2+,,+,'+,#+,+%,+(,+-,+-.,+-*, +-&,+-',+-&,+-", -,$-,)-,--,1- ,3- ,7-,9-,=-,-.<-.7- .2-.--.&-.#-. --dc0dc6dce5dce1dc e2de.de)de"d ed%ed*ed,edf,edf.edf)edf(edf$ef"e feg#feg fe g!feh g f eh gf eh gfehgfeh gfhgf!hgfi"hgfi h g f i!hgfih gfihgfiihgihg%ihj"ih j#ihk j ihk ji hk jihk jihk jihkji k ji$k jil"kj i l"kjilkjilkjilkjlkj$lkjmlkm!lkn mlkn ml k n ml kn mlknmlkn mlknn ml-0651 2 . ) "   #" #    #  !     !" ! %" #       $ " "$!       )*<)*<)*<)*7)*6)*/)*+)*))*$)*#)*") *)%*)&*)(*)&*),*)-*)2* )7*)9*)=*)+8*)+8* +4* +1*+0*++*+(*+&*+%*+"* +*"+*$+*&+*)+*-+*/+*,0+ *,.+ *,/+* ,,+* ,-+*,-+*,++,(+,&+,$+-,, +-,+-,+ -,+ -,+-,+-,+-,+-, +7cb9cb)())*9)*7)*6)*0)*.)*.)*.)*,)*))*')*')*")*")*!)!*)"*)$*)%*)(*))*)+*'*)+**)++*)+)* )+)* ) +(* ) +)*) +**)+'*)+&*)+'*)+$*) b2a` b2a`b b0ab,ab+acbb+acb(acb(acb$acb a cb a cbacbacbacbacbacbacbac bacba!cba"c ba%c b a'c baba(cba+cba+cba/cbac.cb1c b2c b2c bd0cbd/cbd/cbd)cbd,cbd.cd.cd,cd)cd'cedd'ced"ced"c ed!c edc edc edcedcedcedcfeedcfedcfedcfed cfed c fed c fedc fedcgffedcgfedcgfedchggfedc 2 2 0,++(($   !" % ' (++/.1 2 2 0//),..,)''""!          ()(=()=():()9()8()8()6( )3( )3( )1( )1()0()/()-()-())()'()&()$()"() () ( )(!)(#)(#)($)($)(&)(()())(+)(+)(.)(0)(2) ((`_)`_+`_a`)`_a)`_a%`_a(` _a)` _ a&` _ a)`_a(`_a'`_a*`_a*`_a'`_a#`_a$`_a$`a$`a$`a!`a `a` a` a`$a`$a`%a`ba'a`b'a`b'a`b&a`b'a`b'a`b&a` b&a ` b'a `cb b&a `c b&a `c b'a`c b'a`c b)a`c b*a` c b&a` c b$a` c b%a`c c b$a cb"a cb acb acbac bac bac bac bac bac bac bac bac bac bacba!cba#cb a()+))%( ) & )('**'#$$$$!   $$%'''&''& & ' &  &  ' ' ) * & $ % $ "             !# (9'(6'(6' (5' (4' (3' (3' (1'(.'(-'(,'(,'(*'(*'()'()'(''(%'($'("'( ' (' ('!('"('$('$('$(''('((')('+('+('.('/('/('0('2( '2( '2( '5( '6('6('7('7('8('9(';('=('>('(=('(=('((_^"]_^]_^] _^] _^] _^] _^] _^]_^]_^]_^]_^]_^]_^]_^]_^ ]_^ ]`_^ ]`_^ ]`_^ ]`_^ ]`_^]`_^]`_^]`_^] `_^] `_^] `_^]`_^]`_^`_^`_^`_^`_^`_^`_^`_^`_ ^`_ ^`_ ^`_ ^`_^`_^!`_^!`_^"`_^$`_^a"`_^a#`_^a"`_^aa"`_^aa`_^aa`_ a!`_ a!`_ a!`_ a%`_a!`_a"` _a"` _a#` _a"` _a#`_a"`_"                  !!"$"#"" ! ! ! %!" " # " #"'=&'9&'9&'9&'8&'7& '5& '5& '5& '4& '4& '2& '2& '1&'0&'0&'.&',&'*&'(&''&'&&'$&'$&'$&'#&' &'&'& '&!'&#'&#'&#'&$'&%'&&'&)'&)'&*'&,'&,'&,'&,'&-'&-'&1' &1' &2' &2' &5' &5' &('3' &(2' &(3'&(4'&(4'&(2'&(2'&(3'&(2'&(4'& (3'& (3']\[ Z]\[ Z]\[ Z]\[ Z]\[ Z]\[ Z ]\[Z ]\[Z ]\[Z ]\[Z ]\[Z ]\[Z ]\[Z ]\[Z]\[Z]\[Z]\[Z]\[]\[]\[]\[]\[]\[]\[]\[]\ []\ []\ []\ [ ]\ [!]\ [#]\[^ ]\[^]\[^]\[^ ]\[^!]\[ ^]\[ ^]\[^ ^]\[^ ^!]\[^ ^ ]\ ^]\ ^]\ ^]\ ^]\^!] \^ ] \^] \^] \^"] \^!] \_^^ ] \_^] \_^]\_^ ]\_^ ]\_^]\_^]\_^]\_^]\_^]\ _^]\ _^]                  ! #  !    !     !    " !       &-%&,%&,%&,%&*%&)%&*%&'%&'%&(%&(%&'%&&%&#%&!%& %&!%&!%&% &%"&%"&%"&%%&%%&%%&%%&%&&%'&%'&%(&%)&%)&%*&%+&%,&%-&%.&%/&%/&%/&%1& %2& %4& %4& %4& %6&%8&%8&%8&%8&%9&%:&%:&%:&%<&%=&%~&%&?&#ZYX#ZYX$ZYX$ZYX&ZYX*ZYX*ZYXZ*ZY+ZY-ZY-ZY.ZY1Z Y2Z Y2Z Y2Z Y2Z Y2Z Y[Z1Z Y[Z4ZY[3ZY[2ZY[2ZY[3ZY[3ZY[3ZY[4ZY[3ZY[3ZY [1ZY [1ZY[ [2Z [2Z [1Z[/Z[/Z[.Z[.Z[-Z[,Z[+Z[)Z\[(Z\[(Z\['Z\[&Z\[&Z\[$Z\[$Z\[$Z\[#Z\[#Z \[#Z \["Z \[!Z \[Z \[Z \[Z\[Z\[Z\[Z\[Z\[Z\[Z       !                  %2$#%%.$#%%,$#%%,$#%%/$%-$%+$%*$%*$%*$%*$%($%'$%&$%&$%&$%&$%$$%#$%"$%!$%!$%!$%!$%$ %$!%$!%$!%$!%$!%$%%$%%$%%$%%$'%$&%$&%$(%$*%$*%$+%$,%$,%$-%$-%$.%$/%$0%$1% $1% $2% $2% $2% $2% $2% $5% $7%$6%$6%$&5%$&6%$&7%$&6%$ XWVUXXWVUXXWVUXXWVUXX WVXW VXW VYXXWVYXXW VYXXW VYXXW VYXW VYXW VYXW VYXWVYXWVYXWVYXWVYXWV YXWV YXWV YXWV YXWV YXWV YXWV YXWVYYXWVYYXWYXWYXWYXWYXWYXWYXWYXWZYYXWZYYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYX W ZYX W ZYX WZYX WZYX WZYX WZYX WZYX WZYXWZYXWZYXWZYXWZYXWZYXWZYXW                               #$#=#$#=#$#=#$#=#$9#$9#$9#$9#$8#$7#$7# $5# $3# $2# $2# $2# $3# $3# $1#$/#$/#$.#$-#$,#$+#$+#$+#$+#$*#$&#$'#$'#$'#$&#$&#$%#$%#$%#$##$"#$"#$"#$"#$#$#$# $# $#!$#!$#!$#!$#"$#$$#%$#&$#%$#%$#%$#&$#UTSUTSUT SUT SVUUT SVUUT SVUUT SVUUT SVUT SVUT SVUT SVUT SVUT SVUT SVUTS VUTS VUTS VUTS VUTS VUTS VUTS VUTS VUTSVUTSVUTSVUTSVUTSVVUTVUTVUTVUTWVVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUT WVUT WVUTWVUT WVU T WVUT WVU T WVU T WVU T WVU T WVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVUTWVUTWVUTWVUTWVUT                                     #<"#}"#"="#="#:"#:"#9"#8"#7"#6" #5" #3" #3" #2" #2" #2" #2" #3" #3" #2" #2"#/"#,"#,"#,"#+"#+"#*"#*"#*"#*"#*"#*"#)"#'"#%"#%"#%"#$"#$"#$"#$"#$"##"##"#""#""#!"# "# "# "#" #"!#""#""#"##"$#"$#"$#"$#"%#"&#"SR+QSR)QR)QSRR&QSR&QSR%QSR%QSR%QSR%QSR$QSR$Q SR#Q SR"Q SR!Q SR!Q SR!Q SR Q SR Q SR Q SRQ SRQ SRQSRQSRQSRQSRQSRQSRQTSRQTSRQTSSRQTSRQTSRQTSRQTSRQTSRQTS RQTSRQTSRQTSRQTSRQTSRQTSRQ TSRQ TSRQ TSRQ TSRQ TSRQ TSRQ TSRQ TSR QTSR QTSR QTSR QTSR QTSR QTSR QTSR QTSR QTSRQTSRQTSRQTSRQTSRQ+))&&%%%%$$ # " ! ! !                         "4! "3! "!",! "3!"*! "1! "1! "1! "1! "1! "1! "1! "1! "1! "1!"-!"-!"-!",!",!"'!"&!"%!"%!"!"$!")!"!""!")!"!"#!"'!"'!"%!"%!""!""!""!"$!"!!"!!"!!" !" !" !"!"!!"!"! "! "! "!""!$"!&"!'"!'"!)"!+"!+"!)"!)"!)"!*"!*"!)"! QP,O QP,O QPQP*O Q P)OQP(O Q P$O Q P$O Q P'O QP"O QP"O QP"O Q P$O QP!O Q P'O Q P'OQP%OQP%OQP$OQ P"OQPOQPOQPOQPOQPOQPQPOQ POQPQPOQ POQPQPOQ POQ POQ POQ POQ POQ POQ POQPOQ POQ POQ POQPOQPOQPOQ POQPOQ POQPO QPO QPO QPOPO"Q PO$QPO&QPO'QPO'QPO)QPO+QPO+QPO)QPO)QPO)QPO*QP O*QP O)QP O , , * )( $ $ ' " " " $ ! ' '%%$ "                 " $&'')++)))* * ) !%ON%ONONONONONONONONON'ON(ON&ON%ON&ON&ON&ON'ON'ON'ON'ON+ON+ON)ON*ON*ON*ON*ON*ON*ON0ON.ON-ON-ON.ON1O N1O N1O N1O N1O N2ONON8ON9ON9ON8ON6ON6ON7ON7ON7ON7ON9ON9ON:ON:ON:ON;ON;ON;ON;ON;ON?ONO~O%%'(&%&&&''''++)******0.--.1 1 1 1 1 2899866777799:::;;;;;?~!; !< !< !: !: !: !; !; !; !9 !8 !8 !8 !7 !8 !8 !8 !: !9 !5 !5 !5 !5 !5 !4 !6 !5 !4 !2 ! !! / ! !! / ! !! / !0 !0 !1 !1 !, !. !- !- !. !. !/ !. !* !+ !+ !+ !+ !+ !+ !+ !+ !* ! !# ! !!# !# !% !# !# !# !# ! ! 1N M1N M6NM4N M5N M5N M5N M4N M4N M4N M;NM;NMNMNNMN=NMN=NMN}NMNNMNON=NO=NONON=N- . 3/ 0 0 1 0 0 . 445...354 0 1 3 3 3 253 3 1 . / . 00 / 1,.--../.*++++++++*###%####   MLM?MNM=MNM=MN=MN;MN != != !> ! ; !< !; !9 !9 !9 !: !: !8 !9 !3 !5 !3 !3 !3 !2 !1 !0 !0 !0 !/ !1 !1 !/ !0 !0 !, !, !, !- !, !, !+ !, !( !( !( !M(NM(NM(NM(NM(NM(NM*NM*NM,NM-NM+NM+NM*NM*NM,NM.NM.NM/NM/NM/NM0NM/N M2N M1N M3N M4N MNM-N M5NM6NM6NM6NM6NM6NM:NM8NM7NM8NM8NM:NM;NM;NM:NM9NM9NMzNMN((((((**,-++**,..,,/0/ 2 / 1 2 ,2320005302, 0 / / . , + *00/1 1 ,.0,,,-,,),((( 5! 5! 5! 6! 6! =! ;! ;! :! 9! :! :! ;! !"!"!=!"!7!"7!"6!"6!"5! "6!"5! "4! "5! "5! "6!"6!"6!"6!"6!"6!"5! "-!"-!"2! "2! "+!"+!"+!"*!"&!"! "&!"&!"'!"'!")!"*!"*!")!")!"%!""!"!""!"!""!"!""!""!"!!"!!":OP:OP9OP6OP6OP9OP9OP9OP9OPQ7OPQ5OPQ6OPQ6OPQ5OPQ4OPQ4OPQ1O PQ1O PQ1O PQ1O PQO0O PQO0OPQ3OPQ+O PQ+O PQ+O P Q-OPQ,OP Q+OP Q)O P Q&OP Q'OPQ&OPQ&OPQ(O PQ(O PQ(O PQ'O P Q)OPQ"OPOPQ"OP Q OP Q!O PQ!O PQ!O PQ!OPQ!OPQP Q!OPQ!OPQ OPQOPQO PQO PQO PQOPQO PQOPQOPQPQOPQPQOPQPQO PQO PQO PQOPQ::966999975665441 1 1 1 0 03+ + + -, + ) & '&&( ( ( ' )""  ! ! ! !! !!        !7"!7"!8"!;"!="!}"!""#";"#:"#9"#:"#:"#9"#9"#9"#9"#9"#5" #5" #5" #4" #2" #2" #1" #1" #/"#0"#/"#."#."#,"#,"#,"#,"#,"#,"#+"#*"#)"#("#P5QRP5QRP6QRP9QRP9QRP7QR7QRPQ5QR7QR6QR6QR6QR4Q R4Q R3Q R4Q R4Q R3Q R1Q R1Q R0QR/QR.QR.QR-QR-QR-QR,QR+QR+QR+QRSQ*QRS(QRS'QRS'QRS&QRS%QRS$QRS$QRS$QRS$QRS#QR S$QR S$QR S#QR S QR S QR S QR SQR SQRSQRSQRSQRSQRSQRSQRSQRSQRSQRSTQQRSTQRSTQRSTQRSTQRST5569977576664 4 3 4 4 3 1 1 0/..---,+++*(''&%$$$$# $ $ #     "-#"-#"0#"0# "1# "1#"0# "1# "2# "3# "3# "4# "5# "5#"8#"9#":#":#":#";#"<#"<#"<#"=#"=#"=#"##$#=#$#=#$#=#$#=#$#<#$=#$;#$;#$:#$:#$:#$:#$8#$9#$8#$7#$5# $4# $4# $2# $2# $2# $1# $1# $1# $-#$-#$-#$-#$-#$-#$+#$*#$)#$)#$RSTRSTUR RSTURSTU RSTU RSTURSTU RSTU RSTU RSTU RSTU RSTU RSTU RSTURSTURSTURST URST URST URST URST URST URSTURSTURSTURSTURSSTUSTUSTUVSSTUVS STUVS STUVS STUVS STUV STUV STUV STUV STUV STUV STUV STUV STUV STUVSTUVSTUVSTU VSTU VSTU VSTU VSTU VSTU VSTU VSTTU VSTTU VSTTUVSTTUVSTTUVSTTUVTUVTUVTUVWTTUVWTTUVWTUVW                                      #*$#*$#+$#+$#/$#/$#/$ #1$ #/$% #.$% #.$% #.$% #.$% #/$% #0$% #0$% #/$%#1$%#1$%#/$%#/$%#-$ %#0$ %#0$ %#/$ %#/$ %#/$ %#-$%0$%/$%/$%.$%/$%-$%-$%,$%)$%)$%)$%($%($%'$%&$%&$%%$%$$%"$%"$%"$% $% $%$%$ %$!%$!%$#%$#%$"%$"%$"%$#%$%%$$%$$%UVWUVWUVWUVWUVWUVWUVW UVW UVWX UVWX UVWX UVWX UVWX UVWX UVWX UVWX UVWXUVWXUVWXUVWXUVWXUVW XUVW XUVW XUVW XUVW XUVW XUVWXVWXVWXVWXVWXVWXVWXVWXVWXVWXVWXYV VWXYV VWXYV VWXY VWXY VWXY VWXY VWXYVWX YVWXYVWX YVWX YVWX YVWX YVWX YVWX YVWX YVWX YVWWX YVWWX YVWWXYVWWXYVWWXYWXYWXYWXYZWWXYZ                                  $:%$:%$:%$=%$=%$=%$%<%&%=%&%<%&=%&:%&:%&8%&8%&8%&5% &4% &4% &4% &4% &3% &3% &2% &1% &/%&/%&/%&.%&-%&)%&)%&)%&(%&)%&'%&'%&&%&$%&$%&$%&$%&%& %& %&%&% &%&%"&%"&%$&%%&%%&%%&%%&%'&%&&%'&%(&%)&%)&%)&%+&%-&%-&WXY ZWXYZWXYZWXYZWXYZWXYZWXXYZXYZXYZXYZXYZXYZXYZXYZXYZXYZ XYZ XYZ XYZ XYZ XYZ XY!Z XY!ZXY!ZXY%ZXY&ZXY&ZXY&ZXY'ZXY'ZXYY'ZY(ZY*ZY*ZY*ZY+ZY+ZY,ZY-ZY.ZY0Z Y2Z Y1Z Y1Z Y1Z[Y Y/Z[ Y/Z[ Y/Z[ Y1Z[ Y0Z[Y1Z[Y2Z[Y/Z[Y/Z [Y.Z [Y.Z [Y-Z [Y.Z [Y0Z [Y/Z [YZ/Z [0Z[/Z[/Z[                           %;&%=&%=&%=&%&|&'=&'=&'=&'<&':&'8&'8&'8&'8&'5& '4& '4& '2& '2& '1& '.&'.&'.&'/&'/&',&',&'*&')&'(&'(&''&'#&'#&'#&'#&'#&'!&'!&'!&' &'&!'&!'&"'&#'&#'&#'&&'&&'&''&('#Z[\"Z[\"Z[\!Z[\ Z[\Z[ \Z[ \Z[ \Z[ \Z[ \Z[ \Z[\Z[\Z[\Z[\Z[\Z[\Z[\]Z[\]Z[\]Z[\]Z[\]Z[\] Z[\] Z[\]Z[\] Z[\] Z[\ ] Z[\ ] Z[\ ] Z[\ ] Z[\ ]Z[\ ]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[[\][\][\][\][\][\][\][\][\][\] [\] [\] [\] [\][\]^[\]^[\]^[\]^[\]^[\]^[\]^[\]^[\]^[\]^                      &0' &1' &2' &2' &3' &3' &3' &5'&7'&7'&5'(&3'(&4'(&4'(&4'(&3'(6'(6'(5' (3' (1' (1' (1' (1' (0'(/'(-'(+'(+'(*'(('(''(&'(%'(%'($'("'("'(!'( '('(' ('"('#('$('&('%('%('&('(('(('*(',(',('-(',('0('0('0( '1( '1( '3( '3( '4(\!]^ \"]^ \"]^ \"]^ \"]^ \]^ \]^ \]^\!]^\!]^\!]^_\!]^_\"]^_\]^_\]^_\]^_]^_]^_]^ _]^ _]^ _]^ _]^ _]^ _]^_]^_]^_]^_]^_]^_]^_]^_`]^_`]^_`]^_`]^_`]^_`]^_` ]^_` ]^_ ` ]^_ `]^_ `]^_ `]^_ `]^_ `]^_`]^_`]^_`]^_`]^_`]^^_`]^^_`^_`^_`^_`^_`^_`^_`^_` ^_` ^_` ^_` ^_` ^_`a! " " " "   !!!!"                    '5('6('9(';(';('=('(()<():()8()8()6()7()7()7()2( )4( )2( )1( )0()/().()-(),()+()(()&()%()#()"()"()#()"() () ^_`^_`^_!`^_#`^_#`^_"`a^__"`a_!`a_"`a_#`a_"`a_%`a_&`a_&`a_#` a_`a_`a _!`a _!`a _ `a _ `a _ `a_"`a_!`a_!`a_#`a_"`a_`#`a_`!`a_` `a_``a`!a `a` a` a` a`ab`"ab` ab`ab`ab`!ab`"ab`#ab`$ab`!a bc``#abc`!a bc`!a bc`!abc `!a bc `"a bc `"a bc `!ab c`#ab c` a b c`a b c` a b c`a bc`a bc`a bc`abc"abc a bc !##""!"#"%&&#  ! !   "!!#"#! !    " !"#$! #! ! ! !  "  "  ! #       " -(),()+()(()'()$()$()#()#()!()()(!)($)($)(&)(&)(()(*)(+)(-)(-)(-)(/)(/)(0) (0)*( (0)* (2)* (1)*(2)*(4)*(2)*(3) *(1) *()/) *.)*.)*.)*.)*+)*+)*()*()*&)*%)*")*#)* )* )*)*)*) *+))*+)*+)"*+)"*+)!*+) *+)!* +)!* +) * +)"* +)!*+ )!*+`'a bc`&a bc`'a b c`a&a b c`a%a b c$a b c$a bc#a bc#a bc!a bca bca bcabcabcabcabca bca bca bcabcabca b"ca b$ca b$ca b%c a b%cda a b&cd a b'cd a b%cda b%cdab%cda b%cdab$c da b#c dab b#c d b cdb%cdb'cdb'cdebb$cdeb$cdeb#cdeb%cdeb$cdebc#cde"cde#cd e cd e cd ecd ecdecdefccdefcdefcdefcdefcdefcdefcde fcde fcde fgc cde fgc cde fg cde fgh' & ' & % $ $ # # !       " $ $ % % & ' % %% %$  # # %''$$#%##"#                  %)*%)*$)* )* )*)"*)#*)%*)&*)'*)&*+))**+)'*+)'*+)&*+ )'* + )%* + )$* + )$*+)&*+)&*+)&*+)%*+)$*+)*$*+$*+"*+!*+ *+*+,** +,*+,*+,*+,*+,*+ ,*+ ,*+ ,*+,*+,*+, *+,- *+,-*+,-*+,-*+,-*+, -*+, -*+, -*+, -+,-+,-+,-+,-+,-+,-+,-+,-+,-+,-+,- +,-. +,-. +,-.%cde%cde$cde cde cd ecd ecd ecdecdecdecdefccdefcdefcdefcdef cde f cde f cde f cde fgcdefgcdefghccde fghcde fghcde fghcdde fghde fghde fg hde fg hde fgh de fghid de fg hi de fghide fg hide fg hide fghide fg h ide fg h idefg h ie fg hije e fg h ije fg hij e fg h ijk e fg h ijke fg hijke fg h ijke fg h ijke fg h ij ke fg hij ke fg h ij ke fg h ij klf fg h ij kl fg h ijkl fg h ij klfg h ij klfg h ij k lfg h ij k lfg h ij k lfg h ij k lfgg h ij k lmfgg h ijk lmg h ij k lmg h ij k lmng h ij k lmn h ij k lmn%%#                                                                                                     *(+,*&+, *&+ , *&+ , *$+,*&+,*&+,*$+,*%+,*#+,-$+,-!+,-+,-+, -+, -+,-+,-+,-+,-+,-+,- +,- +,- +,-+,!-+,#-+,%-+,&-.+,,%-.,%-.,%-.,$- . ,%- . ,$- . ,#-.,%-.,$-.,$-.,$-.,!-."-.-.- .- ./-- ./-./-./-. /-. /-. /- ./-./ -./ -./-./-./-./-./-./-.. /-.."/."/0.."/0."/0efghiefghi efgh i efgh i efghiefghiefghijefghijefghije fghijk fghijk fghijkfghijkfghij kfghij kfghijkfg hijklffgghijklghijklghijklhijkl hijk l hijk l hijklhijklmhhijklmhijklmhijklmnhiijklmn ijklmn ijklmn ijklm nijklm nijklm nijklmnijklmnoijklmnojklmnojklmnoj klmn oklmn o klmno klmno klmnopkk lmnopklmnopk lm nopklmno pk lmno p lmno p lmnop lm noplmnoplmn opqllmn opqlmnopqlm nopqmn opqm nop qmn nop qmn nopq nopqrn n opqr n opqr                       ļ Ƽ  Ƽ        Ⱦ           ,+-,.-,/- ,1- ,5-,4-.,2-.,2- .,-.-.--.*-.&-.$-."-.- .-".-$.-(.-).-,.-,./ -+./ -+./-). /-)./-&./-'./&./$./!./. /.$/.%/.'/.+/.-/.0/ .1/0..1/0.1/0.0/0.-/0.,/0)/0'/0%/0$/0 /0/!0/$0/%0/(0/+0/-0//0//0 //0/.-///0/.--+*//-0/.--+*)'&//-0/.--+*)'&%#"//0,0/.--+*)'&%#"! 0+0/.--+*)'&%#"! *0/.--+*)'&%#"! '0/.-+*)'&%#"! ijkl ijklijklmijklmijkl mijjklmnjklmnjkl m njkklmnklmn klmn klmn klmnokklmnoklmnoklmn olmnolmnolmno lmnolmnoplmnoplmnoplmno pmnopmnopmnopnopnop nop nopq no pqnop qnop qnopqopqopq opqroopqropqropqrsopqrsopqrspqr spqrspqrspqrs pqrs pqrstpqrstpqrs tpqrs tpqrstqrstqrstqrsts qrstsqpomqqrstsqpomkheqqrstsqpomkheb^\qqrstsqpomkheb^\YURqqrrstsqpomkheb^[XUROMKrrstsqpomkheb^\XUROMKIHGrrstsrpomkheb^\YUROMKIHGFFrstsqpnlheb^[XUROMKIHGFFE      ü  ƾ             }}||}||z -1. -4.-9.-./5. //./)./$././.#/.'/.-/.0/ .5/.6/.y/06/01/ 0,/0'/0"/0/!0/'0/*0//0 /20/60/90/=0/070/.20/.-,+*0,0/.-,+**)(('&0'0/.-,+**)((&%#"0"0/.-,+**)('&&%%$#"!! 00/.-,+**)('&%%$#"!! 0/.-,+**)('&%%$#"!! 0/.-,+*)('&%%$#"!!  0/.-,+**)((&%$#"!! 0/.--+*)('&%%$#"!  0/.-,+*)'&%$#"!! 0/.-,+*)('&%#"! 0/.--+*)('&%$#"! "0/.-,+*)'&%$#"!! &/.--+*)((&%#"! *-+*)'&%$#"! .)'&%#"! 2%#"! 5! 831 /)lm%n o m$nom"nomnon!on%on&opn#o p n!opn opnopnopo#po'po-po0p o1pqo*p qo)pq)pq!pqpqp#qp%qrp#qr p#q r p"q rsp q r spq rspq rsq rsqr!sq r$s qr'stq r s tq rstqrstrstrstrss#ts!tsqss!tsqponsstsqponmlkiges stsqpponlkkigedca_^\sstsqpponlkigedca`_\ZYXUTRsstsqpponlkigedb`^\ZYXVTRPONMLKssttsqpponlkigedb`^\ZXVTRPONMLKJIIHHGttsqpponlihedb`^\ZXVTRONMLKJIIHGFFtsqpponlkigec`^\ZXVTRONMLKJIHHGGFFEtsqponligedb`_\ZWTRONMLKJIIHGFFE tsqppomkhec`^\ZXVTRONLKJIHHGFF EF tsqpponligeb^\ZWTRONMLKIIHGFFE Ftsqponligec`^[XURONMKJIIHGFFEFtsqppomkheca^\ZWTQNMKJIHGGFF EFsqponligeb^\ZWTRONMKIHGGFFEFpomkheca_[YURONLKJIHGFFEFkheb^\ZWTQOMKJIHGFFE"Fb^\XURONLKIHGFFE'FXUROMKJIHGFFE(FOMKIHGFFE+FGIHGFFE%FGFE%F GFE&FGE$FGH% $"!%&# !       $ &#   #%# # "     ! $ '  #!! }}||}}||z}||z }|| z| }||z |}||z|}}|| z|}}||z|}||z|}||z"|򬦣}||z'|}||z(|}||z+|}}||z%|}|z%| }|z&|}z$|}././.'/ .5/./0/*0 /30/00/0/0 /.- 0/. -,+**))0/.-,+**))('&%%/.-,+**))('&%%#"!!-,+**))('&&%%#"!! *))(('&&%%#"!!  %#"!! '! 0o%) 3zopopo'p o5popq pqp!pqp,q p4qp$qrq*r qrsqrrqr%sr/sr8srstst s!ts+ts8tsts0tstsqpptsqp ponllkk tsqponlkkigedccbbctssqponllkkigedccbba_^\ZYXXponllkkigedccba_^\ZYXXUTRPNNmlkkigedccba`^\ZZXXUTRPNNMLKJIIdcca_^\ZZXXUTRPNNMLKJIIHGFFZYXXUTRPNNMLKJIIHGF FE FEFPNNMLKJIIHGFFEF EFEFEJIIHGF FEFEFEFE!F E1FE8FErFG%FGF)G F$GHGHFG#HG,H G2HG;HGzHI' $ -8 !, 4$* %/8 !+80 }||}| |z |z|}||z| z|z|z}| |z|z|z|z!| z1|z8|zr|}%|}|)} |$}}|}#}, }2};}z. /./+. /.,/.//.4/ .0/00/+0-. /0)*+,--./0%&(()*+,--./ 0!"##%%&'(())*+,--./0 !"##%%&()*+,--./0  !"##%%&'(()**+,--./ !"##%%&&'(()**+,& !"##%%&&'(. !"#$5 <))%,5 7=o pop+o po,po/po4p o/./>/0  2   =  =  6  7 ; : : 8 < < < < < ; < >  =   MLKLKMML KML KML KML KML KLMML KLMML KLML KLML KML KML KML KML KML KML KML KML KMLKMLK MLK!MLK MLK MLK!MLK!MLK!MLK#MLKM"MLKLKMMLMLKM#MLKM MLKLKMLKLMLKLMLKL"MLKLM!MLKL"MLK%MLK#MLK$MLK'MLK#MLK$MLK$MLKM$MLKM#ML&ML&ML'ML(ML(ML(ML(ML(ML(ML)ML)ML)ML-ML-ML-ML.ML'ML                  !  !!!#"# "!"%#$'#$$$#&&'(((((()))---.',&',&',&',&'-&'+&'+&'+&'+&'+&')&'(&''&''&'(&''&'(&''&'(&'(&''&''&'%&'%&'$&'&&'&&'&&'%&'$&'$&'$&'#&'"&'"&'$&'#&'!&'!&'!&'!&'!&'!&'!&' &'&'&'&'&'&!'& '&!'&!'&!'&!'&!'&"'&"'&"'&#'&"'&"'&$'&$' Z [\] Z [\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\]Z[\]Z[\]Z[\]Z[\]^ZZ[\]Z[\]^ZZ[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]^ZZ[\]Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[ \]^[\]^[\]^[\]^Z[[\]^Z[\]^Z [\]^[\]^[\]^[\]^[\]^[\]^[ \]^[ \]^[ \]^[\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^                             '((''(''(''('(('(('(('((')('*('*('*('*('+('+(',('-('.('-('-(',(',('-('.('0('/('0( '1( '1( '1( '1( '1( '3( '1( '2( '3( '3( '3( '3( '3( '4( '4( '4( '5('6('6('6('6('7('7('7( '5('7('7('7('7('7('7('7(':('8('9(':(':(]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`a]]^_`a]]^^_`a]^^_`a]^^_`a^_`a^_`a^_`a^_`a^_`a]^^_`a]^^_`a^_`a^_`a]^^_`a^_`a^_`a^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_` a ^_`a ^_`a ^_` a ^_`a ^_` a ^_` a ^_` a ^_` a ^_` a^_` a^_` a^_` a^_` a^_` a^_` a^_` a ^ _` a^_` a^_` a^_`a^_`a^_`a^_`a^_`a^_`a^ _`a^_`a^_`a^_`a                             ()*( )*( )*()*()*( )*(!)*(!)*(")*( )*()*( )*( )*()*(!)*(!)*(")*($)*(#)*(!) *(#) *(#) *(#)*(#)*(#) *(") *( ) *(!) *(!) *( ) *(!) *( )*( )*(!)* (")*( )*()*()*()*( )* (!)* (!)* ( )* ( )* (")* (!)* ()* ( )* ()* ( )* ( )* ()* ()* (!)*(")* (!)* ()*( )*( )*( )*+((!)*+((!)*+((!)*+(( )*+`aabcd`aabcd`aabcd`aabcd`aabcd`aabcdabcd`aabcdabcdabcdabcdabcdabcdabcdabcdabcdabcda bcdabcdabc da bc da bc da bcdabcdabc dabc dabc dabc deaabc deaabc deaabc dea bc deabc deabc de abc deabc deabc deabc deabc deabc de abc de abc de abc de abc de a bc de a bc de abc de abc de abc de abc de abc de abc de abc de abc deabc de abc de abc d eabc d eabc d eabc d efaabc d efaa bc d efaabc d efaabc d ef                                                                  *+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-.* *+ ,-.* *+ ,-.* *+ ,-.* *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-.*+ ,-. *+ ,-. *+ ,-. *+,-. *+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,- .*+ ,-.*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,-.*+ ,-.*++ ,-.*++ ,-.+ ,-.+ ,-.+ ,-./++ ,-./+ ,-./+ ,-./+ ,-./+ ,-./d efghijkld efghijkld efghijkld efghijkld efghijklmdd efghijklmd efghijklmd efghijklmd efghijklmd efghijklmndd efghijklmndd efghijklmndd efghijklmndd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnde efghijklmndeefghijklmndeefghijklmndeefghijklmn efghijklmn efghijklmn efghijklmnefghijklmn efghijklmn efghijklmn efghijklmn efghijklmnefghijklmnefghijklmnoefghijklmnoeefghijklmnoefghijklmnoeefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefgh ijklmnoefgh ijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoeffghijklmnoeffghijklmnofghijklmnofghijklmnofghijklmnopffghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopóó  Ĵ-./0/-*&" --../0/-)%!--../0.+'# --../0/-*&"-../0/,(%!-. ./0.+'# -. ./0/-*&"./0.+($ ./0/-*&" ./0/-)%!./0.+'# ./0/-*&" ./0/-)%! ./0.+'#  ./0/-*&" ./0/-)%! ./0.+(#  ./0/-*&" ./0.+($  ./0/-*&"  ./0/-)%! ./0.+'#  ./0/-*&" ./0/-)%!./0.+'#  ./0/-*&"./0/-)%! ./0.+'#  ./0/-*&" ./0/-(%! ./0.+(#  ./0/-*&" ./0.+($  ./0/-*&"  ./0/-)%! ./0.+'#  ./0/-*&" ./0/-)%! ./0.+'#  ../0/-*&" ../0/-)%! ../0.+'#  ./0/-*&" ./0/-)%! ./0.+'#  ./0/-*&" ./0/-)%! ./0.+'#  ./0/-*&" .//0/-)%! .//0.+'#  .//0/-*&" /0/-)%! /0.+'#  /0/-*&" /0/-)%! /0.+'#  /0/-*&" /0/-)%! /0.+'#  /0/-*&" /0/-)%! /0.+'#  /0/-*&" mno pqrstqme\RLHFmmnno pqrstspkbYOIFFmmnno pqrstsoh^UMHFEmmnno pqrstqme\RKGFEmnno pqrstspjaXNIFFEmnno pqrstrnf^TMHFEEmnno pqrstspldZQKGFEEnno pqrstsoh_VNIFFEEnno pqrstqme\RLHFFEEnno pqrstspkbYOIFFEEFnno pqrstsoh^UMHFFEEFnno pqrstqme[QKGFFEEFnno pqrstspkbXOIFFEEFnno pqrstsoh^UMHFFEFFno pqrstqme[QKGFEEFFno pqrstspkbXOIFFEEFFno pqrstrnf_TMHFEEFno pqrstspldZQKGFEEFno p qrstsoh_VNIFFEEFno pqrstqme\RLGFFEEFno pqrstspkbYOIFFEFno pqrstsoh^UMHFEEFno pqrstqme[QKGFEEFFno pqrstspkbXOIFFEEFFno pqrstsoh^UMHFFEFFno pqrstqme[QKGFEEFFno pqrstspkbXOIFFEEFFno pqrstsoh^UMHFFEEFFnoo pqrstqme[QKGFEEFo pqrstspkaXOIFFEEFo pqrstrnf_TMHFFEEFFo pqrstspldZQKGFEEFo pqrstsoh_VNIFFEEFFo pqrstqme\RLGFFEEFo pqrstspkbYOJFFEEFo pqrstsoh^UMHFFEEFFo pqrstqme[QKGFEEF Fo pqrstspkbXOIFFEEF Fo pqrstsoh^UMHFEE FGoo pqrstqme[QKGFFEEFFGoo pqrstspkbXOIFFEEF FGoo pqrstsoh^UMHFEE FGo pqrstqme[QKGFFEEFFGo pqrstspkbXOIFFEF FGo pqrstsoh^UMHFEE FGo pqrstqme\RKGFFEEFFGo pqrstspkbXOIFFEE FGo pqrstsoh^UMHFEE FGHoop pqrstqme\RKGFFEF FGHop pqrstspkbXOIFFEF FGHop pqrstsoh^UMHFFEFFGHoppqrstqme\RKGFEE FGHp pqrstspkbYOIFFEE FGHp pqrstsoh^UMHFEE FGH pqrstqme[QKGFEEF FGH pqrstspkbXOIFFEEFFGH pqrstsoh^UMHFEE FGH pqrstqme[QKGFFEEFFGHpqrstspkbXOIFFEFFGHpqrstsoh^UMHFFEEFFGHpqrstqme[QKGFFEF FGHpqrstspkbXOIFFEEFFGHpqrstsoh^UMHFFEEFFGHpqrstqme[QKGFEE FGH|Ƽ||ø|z}|zƻ||z|zzƾ}|zzø||zz||zzƼ||zz|ø||zz|}||zz|Ƽ||zz|ø||z||}|zz||Ƽ||zz|||zz|ƾ}|zz| ø||zz|}||zz|Ƽ||z|ø|zz|}|zz||Ƽ||zz||ø||z||}|zz||Ƽ||zz||ø||zz||}|zz|Ƽ||zz|||zz||ƾ}|zz|ø||zz||}||zz|Ƽ||zz|ø||zz||}|zz| |Ƽ||zz| |ø|zz |}}||zz||}Ƽ||zz| |}ø|zz |}}||zz||}Ƽ||z| |}ø|zz |}}||zz||}Ƽ||zz |}ø|zz |}}||z| |}Ƽ||z| |}ø||z||}}|zz |}Ƽ||zz |}ø|zz |}}|zz| |}Ƽ||zz||}ø|zz |}}||zz||}Ƽ||z||}ø||zz||}}||z| |}Ƽ||zz||}ø||zz||}}|zz |}                                                                                   E FGHIJKLEFGHIJKLEFGHIJKLEFGHIJKLEFGHIJKLEFGHIJKLEFGHIJKLEFFGHIJKLEFFGHIJK L FGHIJK LFGHIJK LFGHIJK LFGHIJKLKFFGHIJKLKFGHIJKLKFGHIJKLKFGHIJKLKFGHIJKLKFGHIJK LKFGHIJKLKFGHIJKLKFGHIJKKLKFGHIJKKLKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGGHIJKL KFGGHIJKLKFGGHIJKLKGHIJK LKGHIJK LKGHIJK L KGHIJK L KGHIJKL KGHIJKL KGHIJKL KGHIJK LKGHHIJKLKGHHIJKLKGHHIJKLKHIJK LKHIJK LKHIJK LKHIJKKL KHIJKLKLHIJK L KLHIJKL KLHIJKL KLHIJKL KLHIJKLKLHIJKLKLHIJKLKLHIJKLKLHIJKLKLHIJKLKLHIIJK LKLHIIJK LKLHIIJK LKLz |}z|}z|}z|}z|}z|}z|}z||}z||} |} |} |} |}||}|}|}|}|}|} |}|}|}|}|} |} |} |} |} |} |} |} |} |}} |}}|}}} } } } } } } } }}}             1 3 * * 0 1 2 3 3 1 0 / / 1 1 2 4 5 4 7 7 7 6 6 7 7 7 9 9 8 5 5 6 8 9 7 8 ; = ; ; =  } < = = = =  LK KLMLK KLMLKLMLKKLMLKKLMLKLML KLML KLML KLML KLML KLMLK KLMKLM KLM KLM KLM KLM KLM KLMKLMKLMKLMKLMKLMKLMKLMKLMKLMKL MKLM KLM KLMKLMLMKLMLMKLMLMKL"MKL MKL MKL MKL MKLMKLMKLLM LMLML#MKL$MKL$MKL'MKL*MKL(MKL&ML&ML$ML)ML)ML+ML+ML+ML%ML%ML&ML%ML,ML,ML.M                 "     #$$'*(&&$))+++%%&%,,. 9MN8MN8MN;MN3MNMN3MNMN4M N4M N4M N4M N5M N3M N2M N1M N1M N0MN0MN/MN1M N2M N2M N2M N.MN1M N.MN3M N0MN0MN.MN/MN/MN.MN*MN)MN,MN+MN+MN+MN,MN,MN)MN(MN'MN'MN'MN&MN&MN'MN'MN'MN'MN$MN%MN!MN!MN#MN#MN#MN MNMN!MN"MN"MN"MN988;334 4 4 4 5 3 2 1 1 00/1 2 2 2 .1 .3 00.//.*),+++,,)('''&&''''$%!!### !""") !) !) !) !' !) !( !( !' !# !# !# !" !" !" !# !" ! !! !! !! #!! ! ! ! !! !! !! !! !! ! !! !! &! &! &! (! '! '! '! '! $! &! '! *! )! '! )! (! '! '! .! .! -! ! !&! .! .! ,! ,! ,! -! .! .! .! -! -!NO|NONOOPO:OP;OP9OP9OP;OP=OP=OP?O 5 5 5 5779:::7766z};=;;;;;>:;99;==? !" !"!!" !"!!"!!"!"!"!""!""!#"!!"!%"!&"!&"!&"!""!("!&"!"!"!"!"!"!"!*"!*"!("!("!("!("!("!,"!-" !1" !"!+" !"!)"!)"!+"!/" !1"!0"!0"!0"!0"!." !1" !4" !4" !5" !5" !5" !5" !5"!6"!6"!7"!7"!7"!9"!9"!9"!7"!7"!9"!9"!9"OPQOPQOPQOPQOP!QOP!QOPQOPQO P"QO P"QOP#QO P!QOP%QOP&QOP&QOP&QO P"QOP(QO P&QOPQPQOPQPQOPQPQOPOP*Q OPOP*Q OPOPP(QOP(QOP(QOP(QOP(Q OP,Q OP-Q OPQ0QOPQP+QOPQP)QO P)Q OP+QOP/QOP1QOP0QOP0QOP0QOP0QO P.QOP1QOP4QOP3QROOP5QOP5QPOOP5QPOOP3QR P3QRPOOPP3QRP2QRP2QRP2QRP2QRP4QRP3QRP3QRP2QRP1QRP1QRP0QRP0QR!! " "# !%&&& "( &* * ((((( , - 0+) ) +/10000 .1435553 33222243321100'"#("#'"#'"#'"#%"#%"#$"#$"#$"##"##"#!"# "# "#" # "#"!#"#" #" #" #""#"$#"&#"%#"%#"%#"%#"%#"&#"&#"(#"'#")#")#")#"*#"+#"+#"+#"+#",#",#"-#".#"0#"0#"0#"0# "1# "1# "2# "1# "1# "1# "2# "2# "3# "3# "4#"6#"7#"7#QRSTQRSTQRSTQRSTQRSTQRSTQRSTQ RSTQRSTQRSTQRS TQRS TQRS TQRS TQRS T QRS T QRS T QRST QRST QRS T QRST QRST QRST QRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRRSTQRRSTURSTURSTURSTURSTURSTURSTURSTU RSTU RSTU RSTU RSTU RSTU RSTU RSTU RSTU RSTU RST U RSTURSTURSTURSTU                         (#$(#$(#$'#$'#$&#$%#$$#$$#$$#$##$##$ #$ #$ #$#$ #$#$#!$#!$#!$#!$##$#$$#%$#&$#%$#'$#'$#($#($#($#)$#'$#)$#($#)$#+$#+$#,$#-$#,$%##+$%#+$%#,$%#-$%#,$%#+$%#,$% #,$% #,$% #+$% #*$% #*$% #+$% #,$% #-$%#.$%#-$%#+$ %#*$ %#*$ %#-$ %#*$ %TUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUV WTUV WTUV WTUV WTUVWTUV WTUV W TUV W TUV W TUV W TUVW TUVW TUVW TUVW TUV W TUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUUVWXUUVWXUVWXUVWXUVWXUVWXUVWXUVWX UVWX UVWX UVWX UVWX UVWX UVWX UVWX UVWXUVWXUVWXUVW XUVW XUVW XUVW XUVW X                           $%%$%%$&%$)%$)%$*%$*%$+%$+%$+%$,%$.%$.%$.%$/% $1% $1% $3% $3% $1% $2% $4% $4% $4% $5%$6%$6%$8%$8%$7%&$$7%&$6%&$5%&$3%&$6%&$6%&$5%&$5%&$7%&$%7%&7%&7%&5% &4% &3% &2% &1% &2% &2% &1% &1% &0%&0%&-%&-%&-%&-%&-%&,%&+%&,%&+%&*%&*%&WXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXY Z WXY Z WXY Z WXY Z WXY Z WXYZ WXYZ WXYZ WXYZ WXYZ WXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXXYZXYZXYZXYZXYZXYZXYZXYZ XYZ XY Z XY!Z XY!Z XY!Z XY!Z XY"ZXY#ZXY#ZXY#ZXY#ZXY#ZXY$ZXY&ZXY'ZXY'ZXY'Z                     %.&%.&%/&%/&%/&%/& %3& %3& %3& %4& %5& %4& %4& %4& %5&%8&%8&%:&%:&%:&%:&%<&%=&%&=&%&=&%=&%=&%}&'&{&'=&'=&':&':&'9&'7&'7&'7&'6&'5& '4& '5& '5& '5& '5& '5& '3& '2& '0&'0&'0&'.&'-&'-&'+&'*&'*&')&'(&'/Z[/Z[-Z[-Z[\Z,Z[\Z+Z[\Z*Z[\Z)Z[\(Z[\'Z[\'Z[\'Z[\'Z[\%Z[\#Z[\"Z[\"Z[\!Z[ \"Z[ \"Z[ \!Z[ \Z[ \Z[ \Z[ \Z[\Z[ \Z[ \Z[\Z[\Z[\Z[\Z[\Z[\]ZZ[\Z[\]Z[\]Z[\]Z[\]Z[\]Z [\]Z[\]Z[\]Z[\]Z[\]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ] Z[\ ] Z[\ ] Z[\ ] Z[\ ] Z[\]Z[\]Z[\] Z[\] Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]                              &)'&)'&*'&*'&,'&,'&,'&,'&-'&-' &1' &1' &2' &2' &0'( &0'( &1'( &,'( &/'( &0'(&1'(&1'(&-' (&-' (&.' (&/' (&/' (&1' (&1' (&'1' (2' (1' (-'(-'(+'(,'(,'(+'(+'(*'()'()'()'(&'(%'(%'(%'(%'(#'(#'(#'("'("'(' ('!('!('!('"('#('&('%('%('$('$([\] ^[\] ^[\\] ^\] ^\] ^\] ^\]^\]^\]^\]^ \]^ \]^ \]^ \]^ \]^_ \]^_ \]^_ \]^_ \]^_ \]^_\]^_\]^_\]^ _\]^ _\]^ _\]^ _\]^ _\]^ _\]^ _\]]^ _]^ _]^ _]^_]^_]^_]^_]^_]^_]^_`]]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_` ]^_` ]^_` ]^_`]^_`]^_`]^_`                                      '6('6('6('8('8('8('8('8(';('<('(<()>()(<()<();():():():()8()7()5( )5( )5( )2( )2( )0()/().().().().(),()*()*()*())()*())()'()'()^_`a^^_`a^^_`a^_!`a^_ `a^_"`a^_ `a^_ `a^_` a^_` a^__` a_` a_` a_` a_ ` a_` a_ ` a_`a_`a_`a _ `a _`a _!`a _ `a_`a_`a_`a_"`a_`a_ `a_`a_`a_`a_`a_`ab_`ab__``ab_``ab`ab`ab`ab`ab`ab`ab`a b`a b`a b`a bc`a bc`a bc`a bc`a bc`a bc`a bc`a bc`a bc`a bc `a bc `a bc `ab c `ab c `ab c `a b c`a b c! "              ! "                        ()( )( )(")(#)(#)(%)(%)(&)(()(+)(,)(,)(,)(,)*((-)*(*)*(+)*(*)*(*)* (*)* ())* (() *(,) *(-) *(*) *(*) *(+) *(-) *(+)*())*())*(')*())*')*()*()*')*&)*#)*")*!)*!)*+))*+))*+)*+)*+)*+)*+)*+)*+)* +)* +)* +)* +)* +)* +)*+)*+)*+)*+)*+)*+)*+a bca bca bca bca bca bca bca bca bca bcabca bca b!ca b"ca b!cdaa b#cda bcda b cdab!cdab!cd a b cd ab!cd ab c da b c da b c da bc da bc da bc da b"c da b cdeaa bcdea bcdeabcdea bcde bcde bcde bcdebc d ebcd ebcd ebcd ebcd ebcd efbbcd efbbcd efbcd efbccd efcd efcd efcd efcd efc d e fc d efgcc d efgc d e fgc d e fgc d e fghcc d e fghcc d e fghcd efghcd e fghcd efghcd efghc d efgh            ! " ! #  !!  !           "                                     )*+ ) *+ ) *+ ) *+ )*+ )*+)*+)*+)*+)*+,))*+,)*+,)**+,)**+,*+,*+ ,*+ ,*+ ,*+ ,*+ ,*+,*+,-**+,-*+,-*+,-*+,-*+,-*+,- *+, - *+ , - *+, - *+, -*+, -*+,-*+ ,-*+ ,-*+ ,-*+,-*+,-*+,-*++,-+,-+,-+,-.++,-.+,-.+ ,-.+ ,-.+,-.+ ,-.+ ,-. + ,-. + ,- . + ,- . + ,- . + ,-. + ,-.+ ,-.+ ,-.+,-.+ ,-.+ ,-.+ ,-./++ ,-./ cde fgh cde fgh cde fgh cde fgh cde fgh cd e fghcde fghcde fg hcd e fg hcde fg hiccd e fg hicd e fg hicdde fg hicd d e fg hide fg hi d e fg h i d e fg h i d e fg h ijdd e fg h id e fg h ijde fg h ijde fg h ijkdde fg h ijkd e fg h ijkde fg h ijkd e fg h ijkd e fg h ijke fg h ijk e fg h ij k e fg h ij k e fg h ij kle e fg h ij klee fg h ij kle fg h ij kle fg h ij kle fg h ij klefg h ij kle fg h ij kle fg h ij k le fg h ij k lef fg h ij k lmf fg h ij k lm fg h ij k lmfg h ij k lmnffgh ij k lmnfg h ijk lmnfg h ij k lmnfg h ij k lmnfg h ij k lmnfg h ij k lmnfg h ij k lmnfgg h ij k lmng h ij k lm nogg h ij k lm noghh ij k lm noh h ij k lm no h ij k lm noh ij klm nohij k lm noh ij k lm noh ijk lm noh ij k lm noh ijk lm n ophhijk lm n op                                                                                                                      ö   ö   ø                       ĸ  +,-.+,-.+,-.+,- .+,- .+,-.+,-.+,,-.,-. ,-. ,-. ,-. ,-.,-.,-./,-./,-./,-./,-./,-./-. /-. /-. /-./-./-./-./-./-./-./-./-./ -./ -./-./0--./0-./0-./0-./0-./0-./0-./ 0-../ 0./ 0./0./0./0./0./0 ./0 ./0 ./0 ./0 ./0./0./0./0/../0/.,../0/-+)../0/.-+(&..//0/.,*'%".//0/.-+(&#! //0/.,*'%"!//0/-+)&#"  h ij k lmnh ij k lmnh ij k lmnh ij k lm nh ij k lm nh ij k lmnh ij k lm nohi ij k lm no ij k lm no ij k lm noij k lm noij k lm noij k lm n oij k lm n oij k lm n opij k lm n opij k lm n opj k lm n opj k lm n opj k lm n op k lm n o p k lm n o pk lm n o pk lm n opk lm n opk lm n opk lm n opqkk lm n opqk lm n opqkl lm n opq lm n opqlm n opqlm n op qlm n op qlm n op qrllm n op qrlm n op qrlm n op qrlm n op qrslmm n op qrsm n op qrsm n op qrsmn n op qrs n op qrsn o p qr sn op qr sn op qr stnn op qr stn op qr stn op qr stn op qr stno op qr st op qr s t op qr s top qr s top qr s tso p qr s tsqoop qr s tspnioop qr s tspmhboo p qr s tsqokf`Zoop p qr s tspnid^XRop p qr s tsqokfa[UOLp p qrs tspnid^ZRNKHp p qr s tspmgb\UQLIGF                                        ƻ                        ȼ                    ɾ                                                           ü    ü    }|."/0.$/0.$/0.#/ 0.#/ 0 . /0 ."/0 . /0.!/0.!/0. /0./0. /0.//0/ 0/"0/$0/$0/#0/.-//$0/.-+*//$0/.-+*(&//#0/.-+*(&$"//"0/.-+*(&#" //!0/.-+*(&$"! / /#0/.,*(&$" / /!0/.-+(&$"  /"0/.-+*(%#! /"0/.-+*(&#! /!0/.-+*(&$" /!0/.-+*(&$"! /0/-,*(&$"!  / 0/.-+(&$"  /0 0/.-+*'%#! /00/.,*(&#! 0/.-+(&$" 0/.-+*'%#! 0/.,*(&#! 0/.-+(&$" 0/.-+*(%#! 0/-,*(&#! 0/.-+(&$" 0/.-+)'%#! 0/.,*(&#! 0/.-+(&$"  0/.,*'%#!   0/.-+(&#!  0/.+*'%"! 0/.-+(&#!  0/.,*'%"!0/.-+(&#" 0/.,*'%#!0/.-+(&#" 0/.,*'%#!0/-+)&#" 0/.-+(&#!/.,*(%" -+(&#! *'%"! &#! #!   nopqrsnn opqrsn opqrsn opqrsno opqrs op qr s opqr s opqr sopqrstoop qrstopqrstopqrstop qrstoppqrstp qrs tp qrst p qr stsp pqrsts p qrstspolpp qrs tspolhdpp qr stspolhd_Zpp qrs tspolhd_ZVQpp qrstspolhd_ZUQNKppq qr stsqolhd_ZVQNLIHpq qrstsqpnie_ZVQNKIGFFq qrs tspnkfa\WRNKIGFFEq qr s tspolhd_ZSNLIGFFEqrs tspolhd_ZUPMIHFFEFqqr s tspolhd_ZVQNKHGFFEFqr s tsqolhd_ZVQNKIGFFEFqr s tsqpmid_ZVQNLIHFFEFqr s tspnkfa\WRNKIGFFEFqrr s tsqolhd^ZSNLIHFFqrrs tsqpnid_ZUPLIHFFE Fr stspokfa\WQNKIGFFE Fr s tsqolhd^ZSNLIGFFEFrs s tsqpnid_ZUPMIHFFEF s tspokfa\WQNKIGFFEEF s tspolhd_ZSNLIGFFEEFs tsqpmid_ZUPMIHFFEFGs tspnkfa\VQNKIGFFEFGs tspolgc]ZSNLIGFFEEFGHss tspnid_ZUPLIHFFEFGHs tspokfa\VQMKHGFFEFGHs tspnid^ZSNLIGFFEEFGH tspokfa\UPLIHFFEFGH tspnhd^ZRNKIGFFEEFGH tsqokfa\UPLIGFFEEFG Htspnid^ZRNKIGFFEEFG Htsqokfa\UQMIGFFEFG HIttspnid^ZSNKIGFFEFG HItsqokfa\UQMIHFFEEFG HItspnid^ZSNKIGFFEEFG HItsspmgb\UQMIHFFEFG HIsqokf`ZTNKIGFFEEFG H Ipnid_XRMJHFFEEFG H Ikfa\UPLIGFFEEFG H IJd^ZRNKHFFEEFG HIJ\UPLIGFFEEFG H IJTNKIGFFEE FG H IJKMJGFFEFG HIJKIGFFEFG H IJKFEFG HIJKFEFG HIJK                      þ  þ  þ  þ þ  þ }||  }||z  þ}||z þ||z| þ}||z| þ}||z| ||z| }||z| þ|| ||z | ü}||z | þ}||z| ||z| ü}||zz| þ}||zz| ||z|} }||z|} þ}||zz|} ||z|} ü}||z|} }||zz|} ü||z|} }||zz|} ü}||zz|} }||zz|} ü}||z|} }||z|} ü||zz|} }||zz|} ||z|} ü}||zz|}  ||zz|}  }||zz|}  ||zz|} }||zz|}  }||zz |}  }||z|} }||z|}  |z|} |z|} $0/.-,+*(&%#"! "0/.--+*('&$"!  0/.-+*)'&%#" 0/.--+*(&%#"! 0/.-+*)(&$"! 0/.--+*(&%#" 0/.-+*)(&$"! 0/.-+*(&%#" 0/.--+*(&$"! 0/.-+*)(&#"!   0/.-+*(&%#" " 0/.-+*(&$"! "0/.-+*(&$"!  0/.--+*(&$" !0/.-+*)(&#"  0/.-+*(&%#"   0/.-+*(&$"! .-+*(&$"! +*(&#" !(&$" $"!!   "%(()+ * (  ' '&%&&"! "$&(),.0 1 3 2 3 8 5 4 6 7 6 , + ) ) "  stsqpomjfd_\YUROMKIHGFFEstsrpomkhea^ZVROMKIHGFFEFs stsqpnlheb^[XTQNLIHGFFEF stsrpomkfd_\YUROMKIGFFEFstsqpnlheb_ZVROMKIHGFFE Fstspomkfd_\YTQNLIHGFFE Fstsqpolheb_ZVROMKIHFFEFstsqpnkhd_\YTQNLIHGFFEFtspomkfd_ZWROMKIHFFEF tspolheb_ZUQNLIHGFFEF tspolhd_\YTQNKIHFFEF tsqpolhd_ZVROMKIHFFEFGtsqpnlhd_ZVQNLJHGFFEFGtspomkfd_ZVQNKIHFFEFGtsrpnlheb_ZUQNKIGFFEF GHtsspolhd_\YTQNKIGFFEFGHspolhd_ZVROMKIGFFEF GHolhd_ZVQNLJHGFFEFG Hhd_ZUQNKIHFFEFG H_ZVQNKIGFFEFGHVQNKIGFFEF GHNLIGFFEF GHIHFFEFGHIFEFGHIFEEFGH IEFGHIEFGHIFGHIJFFGHIJFGHIJ FGHIJKF FG HIJK FG HIJKFGHIJKFG HIJ KFGHIJ KFGHIJKG HIJKGH IJKGHIJKGH HIJKH IJK HIJKHIJKHIJ!KHIJ#KH IJ'KHIJ)KIJ,K IJ,K IJ/K IJ0KL IJ0KLIJ2KLIJ1KLIJ.KLJ1KLJ4KLJ4KL,KL+KL)KL)KL"KLKL}||z}||z| }||z| }||z|}||z |}||z |þ||z|}||z|||z| þ}||z| þ||z| þ||z|}}||z|}||z|}}||z| }þ}||z|}þ}||z| }þ}||z|} ||z|} }||z|}}||z| }}||z| }||z|}|z|}|zz|} z|}z|}|}||}|} |}| |}  |} |}|}  |} |}} } }}   !# '), , / 0 021.144,+))"%!!(*/0 57:4 0-&#&'*, 2 57$   2  1 2 &  #   "                * (                   #               $ (   !   EF#FG H!F GHF GHF GHF GHF GHIF GH I F GHIF GHIFGHIFGGHIGH IGH IJGHI JHI JK HIJK HIJK HI JKHIJKHI JKHI JKIJ$KIJ&K I J(K IJ,KIJ0KIJ5KJ6KJ8KJcKLKL KL2KLKLK1K L2K L&KLKL#KLKLKL"KLKL KLKLKKLK LKLKLKLK LKLKLKLKLKLKLK*LK(LKLKLKLK LK LKLK LKLKLKLKLKLKLKLKLKLKLK L#K LK LKLK LKLKLKLKK LKLKLKLK LKLKLKL$KL(KLKLKL!KLKLKLz|#|} !| }| }| }| }| }| } | }| }|}|}}} } }        $& ( ,0568c 21 2 &#"   *(    #     $(!& 1& )  (         $   /   =    $ ;          !       !  8 5  4  4  1  0           "  #        u HIHIH&IH.IH6IHIJIJIIJI&J IJKJKIJ&KJ.K J4KJjK L)KLK L(K LKLKL KLKLK LKLKLKLK$LKLKLK/LKLL K=LKLLKLK$LK;LK LKLKLK LK LKLKLKLKLK!L KL KLKL KLKLL!KL KL8K L5KLKL4KLKL4KLKL1KLKL0KLKLKLKLKLKLKLKLKLKLKLKK"LKLK#LKLKLKLKLKLKLKLKuL&.6& &. 4j ) (   $/ =$;   !   ! 8 54410"#u;0,/:  = ;  < &  %         +  - /                        2  2  Q <  ,    *         $  0 0  2  :  I+H!IH)IH1I H5I H>IHJJ;IJ0IJIJIKJKJKJJIKJI%KJI-KJ7KJ=KJBKLKL=KL;KLKL;0%-7=B=;<&% + -/  22Q<, * $002:*('#(+.02 5 844 4-*'$ "%)+.04 68:= x  3  1  1 + - -   (  !# & !   " !  $            %  0 0       ! " ' H G"FEFGHIKHH GFEFGH H GFEFHGFEH GFEHHGFIH GFIHGF IH GFIHGHGFIHG FIHG FIHGFJIHGFJIHGFKJJIHGK JIHG KJIHG K JIHK JIHKJI HKJIHKJIHK JIH$KJIH&KJI*KJI+KJ I.KJI0KJI4KJI7KJIKL2KJ;KJKLKL/KJKKLKL1KLKL1KL+KL-KL-KLKLKL(KL KL!K#LK&LK!LKLKLK"L!KLKL$KLKLKLKL KLKL K LK LKLK LKL KL%KLKL0KL0KLK LKLLKKLKLKLKL!KL"KL'K L }"|z|} }|z|}  }|z|}|z }|z}| }|}|  }|}}|} |} |}|}|}|} } }    $&*+ .0472;/11+--( !#&!"!$     %00 !"' !"#&'(*+-.//0$0 / "#%&(*+-.//0$0 / !"$&(*+--./0#0 / !"#&'(*+-./0#0/ "#%&(*+-.//0#0/ !"$&(*+-.//0!0/  !"#&(*+--./0!0/  "#&()*+-./0!0/ "#%&(*+-./0 0 !"$&(*+-./00 "#&(*+-./00 "#&(*+-./00!"#&(*+-./00 "#&(*+-./00 "#&(*+-./00!"$&(*,.//00!"$&(+-./00 !#%')+-./00 !#&(*+-./0 0  "#&(*+-./0 0  "#&(*,-//0 0!"$&(+-./00 !#%')+-./00 !#&(*,.//00 "$&(+-./00 !"%')+-./00 !#&(*,./00 "$&(+-./ !#%'*,. !#&(+!"%'! !#"!!"#     "        $%'(*,-/0 %  )  *  + -MORUZ^aehlopqstt sr qHILNQTX\_dhknpqssttsr qFGIKMORVZ_dfkmopsst tsr qEFFGHILNQUZ]aehloprsttsrqEFHIKNQTX\_dhlopqstt srqFEEFGIKMORVZ_dhknpqsst tsrqFEFGHILNQUZ_dfkmoprst tsrqFEFGIKNQUZ_behloprst tsrqFFEFGIKNQTX\_dhknprst t sr FEFGIKMNRVZ_dhknprst t sr FEFGHILNQUZ_dhlopsst t sFEFGIKNQUZ_dhloprst t sFEFGIKNQUZ_dhloprst t sFEFGIKNQUZ_dhknpsst tsFEFGIKNQUZ_dhloqst tsGFFEFGIKNQVZ_dinpqst tsGFEFGIKNRW\afknpsst tsGFEFHILNSZ^chlopsst tsGFEFHILPUZ_dhlopsst tsHGFEFGHKNQUZ_dhlopst tHGFEFGIKNQUZ_dimpqsttHGFEFGIKNRW\afknpstt HGFEFGILNSZ^chlopstt HGFEFHJMPUZ_dinpqstt HGFEFFGIKNQW\afknpssttIH HGFEFGILNRZ^chlopsttII HGFEFHILPUZ_dinpssIIHGFEFGHKMQV\afkopII HGFEFGILNSZ^dinI I HGFEFHIMPU\afI I HGFEFGIKNRZ^I I HGFEFGILPUJII HGFEFGIKNJJ IHGFEFGIJJIHGFGKKJJI HGFEFKJ I HGFEKJ IHGFEKKJI HGF KJ I HG F KJ I HG F KJI HG FKJI HG FKJI HGFKJ I HGFKJ I HGFKJ I HGFKJ I HGFKJ I HGFKKJ IHGKJ I HG KJ I HG"KJ I H#KJ I H&KJ IH&KJ IH)KJ IH+KJ IH-KJ IH L!KJ IH L$KJ I L'KJ I L'KJI L*KJI񇌑   |}  z||}z| |zz|} |z|} |z|} ||z|}  |z|}  |z|} |z|} |z|} |z|} |z|} }||z|} }|z|} }|z| }|z| }|z|} }|z|}}|z|} }|z|} }|z| }|z||} }|z|}́ }|z|ˁ}|z|}Ɓ }|z|} }|z| }|z|} }|z|} }|z|} }|z|}}|} }|z| }|z }|z }|  } |  } |  } | } | }| }| }| }| }| }| } }  }" # & & ) + -  !  $ ' ' */.-/.-/.-/.-/.-/. -/. -/. -/. -0/.-0/.-0/.-0/.- 0/.- 0/.- 0/.-0 0/.0/.0/.0/.0/.0/.0/.0/ .0/ .0/ .0/ .0/ ./00/.-./00/.*,./00/.&(+-./00/.#%'*,./00/. "#&(+-./00/.!#%'*,./00/ "#&(+-./00/!"%'*,./00/ "#&)+-/00/!#%(+-./00/ "%'*,./00/ !#&(+-./00/ !"%'*,./00/  !#&)+-/00/ !#%(+-./00/  "%(*,./00 / !#&)+-/00 /!#&(+-/00 / "%(*-./00 / "%(*,./00 / !#&)+./00/!#&(+-/00/ "%(+-/00/ "%(*-./00/ "%'*,./00/ !#&)+./00/!#&(+-/00/ "%(+-/00/  "%(+-/00/  "%(*-./00  "%'*,./00 !#&)+./00!#&(+-/00 "%(+-/00 "%(+-/00qpp o nm lkqp o nm lkqp o nm lkqp o nm lkqqp o nm l qp o nml qp o nml qp o nml qp o nmlr qp o nmlr qp o nmlr qp o nmlsr qp o nmlsr qp o nmsr qp o nmsr qp o nmssr qp o n sr qp on sr qp ont sr qpont sr qp ont sr qp ont sr qp ont sr qp ont sr qp ontt sr qp o t sr q p ost t sr q p opst t sr qpokoqst t sr qpodinpsst t sr qpo\afkopst t sr q poSZ^dinpsst t sr q poMQU\afkopst t sr q poIKNSZ^dinpst t sr qpFHIMQU\afkoqst t sr q pFGIKNRZ^dinpst t sr q pEFFHIMQU\bhmpsst t sr q pEFGIKNSZ`fkopst t sr q pFEFGIMRX]dinpsst t sr q pFEFGILPU\afkoqst tsr qpFEFHKNRZ^dinpst t srqpFEFGILPU\bgmprstt sr qpFEFGHKNSZ`fkoqst t sr qpFEFGJMRX_dinpst t sr qp FEFGILPU\bhmpst tsr qp FEFHKNTZafmprstt sr qpF FEFGJMRZ_ekoqst t sr qpF FEFGIMQX_dinpstt sr qFEFGILPU\bhnpstt srqGF FEFGHKNTZagmpst t srqG FEFGJMRZ`fmpssttsrqGFEFFGIMRZ_ekoqstt srqG FEFGILQX^dinpstt srqHG FEFGILPU\bhnpstt srqHGFEFHKNTZagmpstt srqHGFEFGJMRZ`gmpstt srqHG FEFGIMRZ`fmprstt srqHHGFEFGIMRZ_ekoqstt srHG FEFGILQX]dinpstt s HG FEFGILPU\bhnpsttsrIHHGFEFFHKNTZagmpsttsI HGFEFGJMRZ`gmpsttsI HG FEFGIMRZ`gmpstts                                                                             􁄊  |  |}  z||  zz|}  ||zz||}  |z|}  |z| |z|}  |z|}  |z|}   |z|}   |z|  | |z|}  | |z|}  |z|} }| |z|} } |z|}}|z||} } |z|} } |z|} }|z| }|z|} } |z|} }|z|} } |z|} } |z|}Ɂ}|z|| }|z|} } |z|}- ,+*-,+*-,+* -,+* -,+ * - ,+ * - ,+ *-,+ *- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*.- ,+*..-- ,+*..-,+.- ,+.- ,+.- ,+.- ,+ .- ,+.- ,+ .- ,+ .- ,+ .- ,+ .- , +.- , +.- , +.- , +.- , +.- ,+/..- ,+/.- ,+/.- ,+/.- ,+/.- ,+/.- ,+/.- ,+/.- ,+/.- ,+//.- , /.- , /.- , /.- , /.- ,/.-,/.-,/.-,/.-,/.-,/.-,/.-,/.-,/.-,0//.-,0/.-0/.-,00/.-0/.-0/.-kj i hg f edkj i hg f edkj i hgf ed kj i hg f edlkkj i hg f elk kj i hg f el kj i hg f el kj i hg f el kj i hg fel kj i hg fel kj i hgfel kj i hgfe l kj i hg femll kji hg fem lkj i hg fem l kji hg fem lkj ihgfenm l kj i hg fennmm l kj i hgfennm lkj i hgfnm l kj i hgfnm l kj i hgfnm l kj ihgfnm l kj ihgf nm l kj i hgfnm l kj i hgf nm l kj i hgfonnm lkji hgfo nml kji hgfo nm lkji hgfoo nm l kji hgonm l kji hgo nm lkj i ho nml kj ihgoo nm l kjihpoo nm l kj ihp o nm lkj ihp o nm lkjihp o nml kjihp onml kj ihpo nmlkjihp o nml kj ihpo nm lkj ihp onm lkj ihpp onm lkji p onm lkji po nm lkji p onm lkji po nm lkjiqp ponmlkjiq p onm lkjiq p onm lkjiq p onmlkjiq ponmlkjiq p onmlkjiq po nmlkjiqq po nmlkjq po nmlkjrqq ponmlkjr q ponmlkr q ponmlkjsrrq q po nmlksrr q po nmlksrq po nm lk                                                                                                                                                  *')(*)) ( *%) ( *() ( *') ( *()(*')(*')(*&)(*()(*()(*')(*%)(*&)(*%)(*%)(**#)(*$)*$)(**$)(**%)+**$)+*#)+*")+* )+* )+*)+*)+*)+*)+*) +*) +*) +*) +*) +*) +*) +*)+*)+*)+*)+*)+*)+*)+*)+*),++*),+*),+*),+*),+*),+*),+*),+*),+* ),+* ),+* ) ,+* ) ,+* ) ,+*) ,+*) ,+*)- ,+*)- ,+*)dcbadc b a dcb a dc b a dc b a dc baed dcbae dcbae dcbaedc bae dcbae dcbaedcbaedc baedc baedc baeedc ba edcb e dcbae e dcbae e dcbfe e dcbf e dcbf e dcbf e dcbf e dcbf edcbf e dcbf e dcbf edcbf e dcgff e dcgf e dcg f e dchggf e dchggf e dchgf e dchgf e dchgf e dchg f e dchgf e dchgf e dchgf e dchg f e dchgf e dc hgf e dcihhgf e dcihgf e dcihgf e dci hgf e dcihgf e dci hgf e dci hg f e dcihgf e dcihgf e d cihgf e d cihg f e d cjiihgf e d cjiihgf e d cjihgf e dcjihgf e dcjihgf e dckjihgf e dckjihgf e dc                                                                              =('=('=('=('@()(=()(=()=()<()<();();();();():()9()6()6( )5( )5( )4( )2( )1( )1()/()/()/().().()-(),(),()-()-()*()*())())())()(())()(()(()'()'()&()%()%( a`_^a`_^a`_^a`_^a`_a`_a`_a`_a`_a` _a` _a` _a` _a` _a` _a` _a` _a`_a` _a`_a`_baa`_baa`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_cbba`_ccbba`ba`cbba` ba`cbba`c ba`c ba`cba`c ba`cba`cba`c ba`cba`cba`c ba`c ba` cba` cba` cba` cba` cba` cba` cba`cba `cba `cba `cba `cba `cba `cba `cba`cba`                               +'&+'&-'&-'&('+'&(,'&(,'&(+'&(+'&(*'&(,'&(-'&(+' &(*' &(+' &(,' &()' & ()' & ()' & ()' & ()' & (*' & (+'& (+'&()'& (*'& ()'& (+'&(*'&(+'&(,'&(,'&()'&(*'&(*'&(*'&()'&()'&()'&(()'&((*'(*'(*'()'()'(('(&'(&'(''(''(&'(&'($'(&'(#'("'(!'(!'(!'('('('(' ('^]\[^]\[^]\[^]\[_^^]\[__^]\[__^]\[__^]\_^]\_^]\_^]\_^]\_^] \_^] \_^] \_^] \_^] \ _^] \ _^] \ _^] \ _^] \ _^] \ _^]\ _^]\_^]\ _^]\ _^]\ _^]\_^]\_^]\_^]\_^]\_^]\_^]\`_^]\`_^]\`_^]\`_^]\`_^]\``_^]\``_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^] `_^] `_^] `_^] `_^]`_^]`_^] `_^] `_^]`_^]                    (&%'&%(&%+&%,&%,&%,&%,&%,&%-&%.&%.&%/&%0&%0&%0&%0&%1& %1& %1& %2& %1& %1& %2& %4& %3& %4& %5& %5& %5& %5& %6&%8&%7&%8&%8&%8&%:&%:&%:&%:&%'&9&%'&:&%'9&%'9&%'9&%'8&%'8&%'8&%':&%'':&%'';&';&';&':&'9&'9&'8&'8&'7&'8&'7&'7&'6&[*ZY[+ZY[,ZY[+ZY[*ZY[*ZY[*ZY\[[)ZY\[[)ZY\[[)ZY\[[)ZY\\[)Z\[)Z\[)Z\[)Z\['Z\[(Z\[(Z\[)Z\[&Z\[&Z\[%Z\[%Z \[%Z \[#Z \[#Z \[#Z \[#Z \["Z \[!Z \[!Z \[ Z \[Z \[Z\[Z\[Z\[Z\[Z\[Z\[Z\[Z]\\[Z]\\ [Z]\[Z]\[Z]\[Z] \[Z] \[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\ [Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\ [Z]\[Z]\[Z                     %!$% $% $% $% $% $% $% $%$ %$ %$ %$ %$ %$ %$%%$&%$&%$&%$&%$%%$&%$&%$%%$&%$%%$%%$)%$)%$)%$*%$*%$+%$*%$+%$+%$,%$,%$,%$,%$-%$.%$.%$.%$.%$.%$.%$-%$.%$.%$1% $1% $&%/% $&%/% $&%/% $&/% $&0% $&1% $&1% $&0% $&0% $&1% $&2% $&2% $ YXWV YXWV YXWV YXWV YXWV YXWVYXWVYXWVYXWVYXWVYXWVYXWVYXWVYXWVYXWVZYXWVZYYXWVZYXWZ YXWVZZYXWVZZYXWVZZYXWVZZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXW ZYXWZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXWZYXWZYXWZYXWZYXWZYXWZYX WZYX WZYX WZYX WZYX WZYX WZYX WZYX WZYX WZ YX WZ YX WZ YX WZYX WZYX W                                    $6#$6# $5#$6# $5# $5# $5# $5# $4# $3# $2# $2# $3# $3# $3#$/#$/#$.#$/#$/#$.#$.#$.#$.#$-#$.#$/#$-#$-#$,#$,#$,#$*#$*#$)#$+#$*#$*#$*#$(#$'#$'#$(#$(#$(#$)#$)#$'#$'#$&#$&#$%#$##$%#$%#$%#$%#$##$$#$"#$"#$"#$"#$"#VUT SVUT S VUT SVUT S VUT S VUT S VUT S VUT S VUT S VUT S VUT S VUT S VUTS VUTS VUTSV UTSV UTSVUTSVUTSVUTSVUTSVUTSVUTSVUTSWVUTSWVUTSW VUTSWVUTSWVUTSWVUTSWVUTSWVUTSWVUTSWWVUTSWVUTSWWVUTSWVUTSWWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTW VUTW VUTWVUTWVUTWVUTWVUTWVUT WVUT WVUT WVUT WVUT W VUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT                               #;"#:"#9"#9"#:"#:"#:"#9"#9"#8"#8"#8"#8"#8"#7"#6"#7" #5"#6" #4" #4" #4" #4" #4" #4" #5" #4" #3" #2" #2" #1" #1"#/"#0"#/" #1"#0"#0"#0"#/"#."#-"#-"#,"#-"#."#."#,"#,"#,"#,"#+"#+"#+"#+"#,"#,"#)"#)"#'"#'"#("#("#'"SR+QSR+QSR*QSR)QSR)QSR)QSR(QSR'QSR(QS R*QSR)QSR(QSR(QSR(QSR'QSR%QSR&Q SR%QSR%Q SR$Q SR"Q SR"Q SR"Q SR"Q SR!Q SR"Q SR"Q SR"Q SR"Q SR!Q SR!Q SR!QSR QSR QSRQ SR!QSR QSR QTS SR QTS SRQTSSRQTSRQTSRQTSRQTSRQT SRQT SRQTSRQTSRQTSRQT SRQTSRQTSRQT SRQT SRQT SRQT SRQTS RQTSRQTS RQTS RQTSRQTSRQTSRQ++*)))('( *)((('%& %% $ " " " " ! " " " " ! ! !   !              "5! "4! "4! "1! "2! "2! "2! "2! "3! "5! "5!"!"5!"!"5!"!"!"1! "1! "1!"0!"0!"/!"/!"/!"/!"/!"0!"0!"0! "1!",!",!",!",!"-!"-!"-!"-!"-!"+!"+!"+!"+!"+!"+!"+!"+!"+!"+!"+!")!")!")!"*!"*!"+!"*!"*!")!")!"(!")!")!"%!"'!"&!"&! QP3O QPO2O QP2O Q1O Q2O Q2O Q2O QPO0O QPO1O QP3O QP1OQPQP1OQPQP1OQPQPQ1O Q1O QP,OQP,OQP*OQP-OQP,OQP-OQPO-OQOP)OQPOOP)OQPOPP'OQP(O QPOPP)OQP)OQP)OQP(OQP)OQPO+OQP%OQP%OQP%OQP$OQP&OQP$OQP$OQP$OQP"OQP"OQP"OQP"OQP&OQP#OQP'OQP'OQP%OQP#OQP%OQP#OQP#OQP#OQ P OQ POQP OQP OQP$OQ POQPOQ POQPOQPO 3 2 2 1 2 2 2 0 1 3 1111 1 ,,*-,--))'( )))()+%%%$&$$$""""&#''%#%###    $  5! 1! !! 1! 1! 4! 4! 5! 5! 5! 4! 4! 5! 5! 5! 6! 6! 6! 6! 6! 6! 6! 6! 6! 8! 9! 8! ;! ;! ;! 9! 7! 8! 8! 8! ! !! ! !>! !=! !=! !=! O)NO)NO(NO(NO(NO(NO%NO%NO%NO$NO"NO"NO!NO"NO"NO!NO!NO"NO#NO#NO#NO#NO#NO#NON ON ON!ON!ON#ONO!N#ON#ON!ON#ON$ON!ON!ON!ON!ON!ON&ON&ON&ON!ON$ON#ON$ON$ON$ON%ON%ON&ON&ON%ON%ON%ON%ON%ON&ON(ON)ON)ON)ON                !!###!"$!!!!!&&&!$#$$$%%%&%%%%%&(((( != !; !; ! ~ %NM%NM!NM!NM!NM"NMNM%NM%NM"NM"NMNM!NM NMNM!NMNM NM$NM!NMNM)NM*NM+NM)NM)NM,NM+NM*NM*NM*NM+NM%NMNM+NM*NMNNMM)NM(NM(NM(NM(NM-NM-NM+NM*NM.NM-NM-NM+NM+NM+NM,NM,NM+NM0NM0NM0NM0NM.NM.NM.NM.NM/NM.NM4N M4N M3N M%%!!!"%%""! ! $!)*+)),+***+%+*)((((--+*.--+++,,+0000,**,/.4 4 3  *ML)ML)ML,ML,ML,ML,ML-ML-ML/ML.ML.ML/ML/ML-ML.ML-ML.ML/ML0ML0ML.ML2M L1M L2M L,ML+ML+ML2M L2M L1M L1MLML6ML2M L4M L4M L2M L2M L1MLML1MLML1MLML8ML9ML3MLML3MLML3MLML.MLML4M L6ML8ML8ML7ML7ML7ML4M L5M L4M L5M L5M L7ML7ML:ML;ML;ML*)),,,,--/..//-.-./00.2 1 2 ,++2 2 1 162 4 4 2 2 11189333.4 6887774 5 4 5 5 77:;;&$'&$'&$'&#'&#'&%'&&'&$'&$'&%'&%'&%'&&'&&'&''&('&''(&&('(&('(&&)'(&&)'(&&('(&&''(&&'(&''(&''(&('(&('(&('(&('(&''(&('(&''(&''(&('(&('(&)'(&)'(&)'(&('(&&'(&%'(&''(&''(&&'(&('(&)'(&)'(&)'( &)'( &)'(&('(&('( &'' ( &)' ( &)' ( &(' ( &)' ( &(' ( &(' ( &(' ( &(' ( &(' ( &(' ( [\] ^ [\] ^[\] ^[\] ^[\] ^[\] ^ [\] ^[\] ^[\] ^[\] ^[\]^[\]^[\]^[\]^[\]^[\]^[\]^_[[\]^_[\]^_[[\]^_[[\]^_[[\]^_[[\]^_[\]^_[\]^_[\]^_[\]^_[ \]^_[\]^_[\]^_[\]^_[\\]^_[\]^_[\\]^_[\\]^_[\]^_[\\]^_[\\]^_[\\]^_[\\]^_\]^_\]^_\] ^_[\ \] ^_[\\]^_\]^_\]^_\]^_\]^_ \]^_ \]^_\]^_\]^_ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _                             ':(':(':(';('<('<('<('<('<('<('(=('(=('(=('(=('({()<()<()<();();()<()<()<();();():():():():()9()9()9()9()9()9()9()8()8()8()6()6()6()6()6()6()6()5( )^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^__`a^__`a^_ _`a^_ _`a^_ _`a_`a_`a_`a _`a_`a_`a_`a_`a_`a_`a_`a _`a _`a _`a_`a _`a _`ab _`ab _`ab _`ab _`ab_`ab _`ab _`ab _`ab _`ab _`ab _`ab _`ab _`ab _`ab _`ab_`ab_`ab_`ab_`ab_`ab_`ab_`abc__`abc_`abc_`abc__`abc_`abc_`abc_`abc__`abc__`abc_`abc                       ( )*+(!)*+(!)*+(!)*+(!)*+(")*+(!)*+( )*+( )*+(!)*+(!)*+()*+( )*+(!)*+(!)*+(!)*+(!)*+())*+())*+()*+()*+(!)*+()!)*+())*+())*+())*+())* +()* +())* +())* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+,))*+,abc d efa bc d efa bc d efa bc d efabc d efa bc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabbc defabbc defabc d efabc d efabc d efabbc d efgabbc d efgabbc d efgabbc d efgabbc d efgabc d efgabbc d efgabbc d efgbc d efgbc d efghbbc d efgbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc defghbc d efghbc d efghbc defghbc d efghbc d efghbc d efghbcc d efghc d efghbcc d efghbcc d efghbcc d efghc d efghc d efghc d efghc d efghc d efghc d efghc d efghc d efghc d efghc d efghicc d efghi                                                                    + ,-./+ ,-./+ ,-./+ ,- ./+ ,-./+ ,-./+ ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,- ./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./+ ,-./+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-./+ ,-. /+,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+, ,-./0+,,-./0, ,-./0+,,-./0+,,-./0+,,-./0+,,-./0 ,-./0 ,- ./0 ,-./0,-./0fghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfgghijklmnopfgghijklmnopghijklmnopghijklmnopghijklmnopghijklmnopghijklmnopghijklmnopghijklmno pghijklmno pghhijklmno pqghhijklmno pqghhijklmno pqhhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmnopqhijklmnopqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhiijklmno pqrhiijklmno pqriijklmnopqrhiijklmno pqrhiijklmno pqrhiijklmno pqrhiijklmno pqrijklmno pqrijklmno pqrijklmno pqrijklmno pqrƴƴȶȶȸɸɹɸɸɸ/0/-)%! /0.+'#   /0/-*&"  /0/-)%!   /0.+'#    /0.*&"   /0/-)%!   /0/,($    /0.+(#    /0/-*&"   /0/-)%!   /0.+'#    /0/-*&"   /0/-)%!   /0.+'#    /0/-*&"   /0/-)%!  /0.+'#  /0/-*&" /0/-)%! /0.+'#  /0/.*&" /0/-)%! /0/,($  /0.+(#  /0/-*&" /0/-)%! //0.+'#  //0/-*&" //0/-)%! //0.+'#  //0/-*&" //0/-)%! /0/,($  /0.+(#  /0/-*&" /0/-)%! /0.+'#  /0.*&" /0/-)%! /0/,($  /0.+(#  /0/-*&" /0/-)%! /0.+'#  /0.*&" /0/-)%! /00/,($  /00.+(#  /00/-*&" /00/-)%! 0.+'#  0.*&" 0/-)%! 0/,($  0.+(#  0/-*&" 0/-)%!  0.+'#   0/.*&"  0/-)%!  0/,($   0.+'#   0/.*&"  pqrstspkbXOIFFEE FGHpqrstsoh^UMHFFEEFGHpqrstqme[QKGFFEEFFGHpqrstspkbXOIFFEFGHpqrstsoh^UMHFFEEFFGHpqrstrne\RKGFFEF FGHpqrstplcZOJFFEF FGHIppqrstspiaWNIFFEF FGHIppqrstsog_TLHFEE FGHIppqrstqme[QKGFFEEFFGHIpqrstspkbXOIF FGHIpqrstsoh^UMHFFEF FGHIpqrstqme[QKGFFEF FGHIpqrstspkbXOIFFEEF FGHIpqrstsoh^UMHFEE FGHIpqrstqme\RKGFFEF FGHIpqrstspkbXOIFFEFFGHIpqrstsoh^UMHFEEFGHIpqrstqme[QKGFEEFGHIpqqrstspkbXOIFFEEFFGHIpqqrstsoh^UMHFFEEFFGHIpqqrstqne\RKGFFEEFFGHIpqqrstsplcZOJFFEFGHIpqqrstspiaWNIFFEEFFGHIpqqrstsog_TLHFFEEFFGHIqrstqme[QKGFEEFGHIqrstspkbXOIFFEEFFGHIJqqrstsoh^UMHFFEEFFGHIJqqrstqme[QKGFFEEFGHIJqqrstspkbXOIFFEEFGHIJqqrstsoh^UMHFFEEFGHIJqqrstqme\RKGFFEEFFGHIJqqrstplcZOJFFEFFGHIJqrstspiaWNIFFEEFFGHIJqrstsog_TLHFFEEFFGHIJqrstqme[QKGFFEEFFGHIJKqqrstspkbXOIFFEEFGHIJKqqrstsoh^UMHFEEF FGHIJKqqrstrne\RKGFEEF FGHIJKqqrstplcZOJFFEEFFGHIJKqqrstspiaWNIFFEEFFGHIJKqrstsog_TLHFEEFGHIJKqrstqme[QKGFEEFFGHIJKqrstspkbXOIFEE FGHIJKqrstsoh^UMHFEEF FGHIJKqrstrne\RKGFFEF FGHIJKqrstplcZOJFFEEF FGHIJKqrrstspiaWNIFEE FGHIJKqrrstsog_TLHFEE FGHIJKKqrrsstqme[QKGFEE FGHIJKKqrrsstspkbXOIFEEFGHIJKKrstsoh^UMHFEEFGHIJKrstrne\RKGFFEEFFGHIJKrstplcZOJFFEFFGHIJKrstspiaWNIFFEFFGHIJKrstsog_TLHFFEF FGHIJKrstqme[QKGF FGHIJKrsstspkbXOIF FGHIJKrsstsoh^UMHFEEF FGHIJKrsstqne\RKGFEEF FGHIJKstsplcZOJFFEEF FGHIJKstspiaWNIFEE FGHIJKstsog^TMHFEE FGHIJKstqne\RKGFEE FGHIJKƼ||zz |}ø||zz|}}||zz||}Ƽ||z|}ø||zz||}}||z| |}ƾ||z| |}Ĺ||z| |}ö|zz |}}||zz||}Ƽ| |}ø||z| |}}||z| |}Ƽ||zz| |}ø|zz |}}||z| |}Ƽ||z||}ø|zz|}}|zz|}Ƽ||zz||}ø||zz||}}||zz||}ƾ||z|}Ĺ||zz||}ö||zz||}}|zz|}Ƽ||zz||}ø||zz||}}||zz|}Ƽ||zz|}ø||zz|}}||zz||}ƾ||z||}Ĺ||zz||}ö||zz||}}||zz||}Ƽ||zz|}ø|zz| |}}|zz| |}ƾ||zz||}Ĺ||zz||}ö|zz|}}|zz||}Ƽ|zz |}ø|zz| |}}||z| |}ƾ||zz| |}Ĺ|zz |}ö|zz |}}|zz |}Ƽ|zz|}ø|zz|}}||zz||}ƾ||z||}Ĺ||z||}ö||z| |}}| |}Ƽ| |}ø|zz| |}}|zz| |}ƾ||zz| |}Ĺ|zz |}ö|zz |}}|zz |}                                                                                                                                       IJKLKLIJK LKLIJK LKLIJKL KLIJKL KLIJKL KLIJKKLKLIJKK LKLIJKL KLKLIJK L KLKLIJK L K LIJK L K LIJK L K LIJK L K LIJK L K LIJK L K LIJKL K LIJKK L KLIJKKL K LIJKKL K LIJKLKL K LIJKKL KLIJKKLKL KLIJJKKLKL KLJKLK LJKLK LJK LK LJK L K LJK LK LJK LK LJKL KLJKKL KLJKKL KLJKKLKLKLKLKLKLK L KLK L KLK L KLKL KLK LKLKL KLK L KLK LKLK LKLKLKLKLKLKLKLKLKLKLKLK L KLK LKL KLKLKLKL KLKLK LKLK L KLMKK L KLK L KLK L KLK L KLK L KLK L KLMKKL KLMKL KLM                                                          LML*ML)ML,ML,ML-ML.ML,M LML,M L2M LML+M L2M L1M L1M L1M L2M L3M L3M L3M L2ML0M L1M L3M L3M L4M L4M L4M L4M L4M L2M L2M L2MLML3MLML2ML9ML9ML7ML7M L5M L5M L5ML7ML7ML7ML8ML8ML8ML:ML;MLMLM=MLM?M  & "%% + ++++2 9;;83681 2 (!!""$%+01 19<<<<=>=?   "  # + + , 0 ) - * ' )  $  # !  $  /    /                                    )            + * * ) ) ) ( . - + - - 5 5 6 8 9 = = = = ; @ LKLKLKJIKL LKL KJIKL L)KJIKL(KJIKL)KJIKKL%KJKLKJKL#KJKKL*KL'KL)KLKL$KLKL#KL!KLKL$KLKL/KLKLKLKL/KLKLKLKL K LKLKLKLK L K LKLK L K LKLK L K LKLLK L KLK L KLK L KLK L KLKLKLKLK LKLKLKLK LKLLK)LK LKLLK LKLLK LKLLKLK LK+LK*LK*LK)LK)LK LMLK MLK M"LKM%LK M!LKL M LK M"LK M'L K M'L KM"LKM$LKM$LKM(LKMLM"LKM&LKMLMLKMLKMLMLMLMLML    )()%#*')$#!$//          )    +**))   "% !  " ' ' "$$("& "%(+-/00 "%(+-/00 "%(+-/0 0 "%(+-/0 0 "%(+-/0 0 "%(+-/0 0 "%(+-/0 0 "%(+-/00 "%(+-/00 "%(+-/00 "%(+-/00 "%(+-/00  "%(+-/00  "%(+-/00  "%(+-/00  "%(+-/00  "%(+./0 "&),.0 #&*-/!#'*-!%(+ "%( "% "      !                                                  IHG FEFGIMRZ`gmpsttsIHG FEFGIMRZagmpsttsI HG FEFGIMRZ`gmpsttsI HG FEFGIMRZ`gmpsttsI HGFEFFGIMRZ`gmpsttsJI IHG FEFGIMRZ`gmpsttsJJ I HG FEFFGIMRZ`gmpsttJ IHG FEFFGIMRZagmpsttKJJ IHG FEFFGIMRZ`gmpsttKJ I HG FEFGIMRZ`gmpsttKJ IHG FEFGIMRZ`gmpsttKJ I HG FEFGIMRZ`gmpsttKJ I HG FEFGIMRZ`gmpsttKJI HG FEFGIMRZ`gmpsttKJ IHG FEFGIMRZ`gmpsttKKJ IHG FEFGIMRZagmpstK KJ IHG FEFGIMRZahnqsK KJIHG FEFFGIMRZciosK KJ IHG FEFGIMT\dkpK KJIHG FEFGJNU^emK KJIHG FEFFHKPX_fKKJIHG FEFHLQZ`KKJIHG FEFILRZKKJI HG FEFGIMRKKJIHG FEFFGIMKKJIHG FEFGIKKJ IHG FEFGKKJI HG FEFFKKJ IHG FEFKKJIHG FEKJIHG FEKKJIHG FKJIHG FKJIHG FKLKJIHG FKLLKKJ IHG F LKJIHGFKLKJIHGFKLKJIHGFLKLKJIHGFLKJ IHGF LKJIHGFKLLKJIHGFKL LKLKJIHGFLKJIHGFLKJI IHGFLKK LKJIHGK LKJIIHGK LKJIHGK LKJIHK LKJIHK LKJIHK LKJIHKLKJIHKLKJIH K LKJIH K LKJIHKLKJIHKLKJ IHK K LKJIHLLK K LKJIHLLK K LKJILK LKJIIL K LKJI} |z|}} |z|} } |z|} } |z|} }|z||} } |z|}˂ } |z||} } |z||} } |z||} } |z|} } |z|} } |z|} } |z|} } |z|} } |z|}̈́ } |z|}̈́  } |z|}˄ } |z||}˄  } |z|}Ą } |z|} } |z||} |z|} |z| } |z|}} |z||}} |z|} } |z|} } |z|| } |z|} |z} |z} |} |} |} | } | }|}|}|}| }| }|}| }|}| }| } } }            0/.-0/.-0/.-0/.-0/.- 0/. - 0/. - 0/. - 0/. - 0/. -0/. -0/. -0/.-0/.-0/.-0/.-0/.-0/.-0/.-/00/.-/00/.-+-/00/.-(+-/00/.-%(+./00/.-"&),.00/.- #&*-/00/.-!#'*-/00/.!%(+-/00/. "%(+-/00/. "%(+./00/ . "&),.00/ . #&*-/00/ .!#(*-/00/ .!%(+./00/ . "&),.00/ . #&*-/00/.!#(+-/00/.!%(+./00/. "&),.00/.  #&*-/00/. !#'*-/00/. !%(+./00/.  "%),.00/.  #&*-/00/. !#'+./00/. "%(+.00/.  "&*-/00/. !#'+-/00/. "%(,.00/. "&*-/00/. !#'+-/00/. "%(+.00/. "&*-/00/ !#'+./00/ "%(,.00/  #&*-/00/ !#'+-/00/ "%(,.00/ #&*-/00/  !$(+.00 /   "&)-/00 /  #(+-/00 /  !%(,.00 /   #&*-/00 /srq po nmlksr q ponmlksr q ponmlksr q ponmlksr q p onmlksrq ponmlksrq po nmlksrq p onmlktssrq ponmltsrq p onmltsrq ponmlt srq ponmlt srq ponmlt srq p onmltsrq ponmlt srq ponmltsrq ponml tsrq ponmlsttsrq ponmlpsttsrq ponmlmpstt srq po nmlgmpsttsrq ponmagmpsttsr q p onmZahnqsttsrq ponmRZbiorttsrq ponmMT\dkpsttsrq p onmJNU^empsttsrq ponHKPX_fmpsttsrq ponFHLQZ`gmpsttsrq ponFILRZahnqsttsrq ponEFFIMRZbiorttsrq ponFGIMT\dkpsttsrq ponEFGJNU_empsttsrq ponFEEFGKPX_gnqstt srq ponFEFFHLRZbiosttsrq ponFEFIMT\dkpsttsrq ponFEFFGJNU_fmpsttsrq ponFFEFHKPX`gnqstt srq ponFFHLRZbiorttsrq poFEFIMT\dkpsttsrq poFEFGJNU]empsttsrq poFEFGKPX_gnqsttsrq poFEFHLRZbiosttsrq po FIMS\dkpsttsrq po FEFFGJNU^fnpsttsrq po FEFHKQZahosttsrq poGFFEFILR\dkpsttsrq poGF FEFGINU^fmpsttsrq poGF FEFGKQZaiosttsrq poGF FEFFHLR\dkpsttsrq poG FEFGINU^fmpsttsrq poG FEFFHKQZahosttsrq poHGG FEFILR\dkpsttsrq pHGG FEFGINU^fnqttsrq pHG FEFGKQZaiosttsrq pHG FEFIMS\dkpsttsrqpHG FEFGINU^fmpsttsrqpHG FEFFHKQZaiosttsrqpHG FEFFIMS\dlpsttsrqpHGFEFGJNW_hnrttsrqpHG FEFFHLQZckpsttsrqpHG FEFINU_fmpsttsrqpIHHG FEFGKPZaiosttsrqpIHG FEFFHMS\dlpsttsrqp                      ||z|||}z|}|zz|} |z|||z||z||}||z| |||z||z|}|z|}|z| | |z||} |z|}||z|}| |z|}}| |z|}}| |z||} |z|}} |z||}} |z|}} |z|}} |z|}} |z|} |z|}} |z||} |z||}|z|}} |z||} |z|} |z|}} |z||- ,+*)- ,+*)- ,+*)- ,+*)- ,+*)- ,+*)- ,+*)- ,+*)- ,+*)- ,+*) - ,+*) - ,+*) - ,+* - ,+* - ,+* - ,+* - ,+*- ,+* - ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*.-- ,+*.- ,+ *.- ,+ *.- ,+ *.- ,+ *.- ,+ *.- ,+ *.- ,+ *.- ,+ *.- ,+ *.- ,+*.- ,+*.- ,+*.- ,+*.- ,+*.- ,+* .-,+* .- ,+* .- ,+* .-,+* .- ,+* .- ,+* .- ,+* .- ,+*.- ,+*.- ,+*.- ,+*/..- ,+*/..- ,+/.- ,+/.- ,+/.- ,+/.- ,+/.- ,+/ .-,+/.- ,+/.-,+/.- ,+kjihgf e dckjihgf e dckjihgf e dckjihgf e dckjihgf e dckjihgf e dckjihgf e dckjihgf e dckjihgf e dckjihgf e dclkkjihgf e dclkjihgf edclkjihgf e dlkjihgf e dlkjihgf e dlkjihgf e dlkjihgf edlkjihgf edlkjihgf edlkjihgf edlkjihgf edlkjihgf edmllkjihgf edmllkjihgf edmlkjihgf edmlkjihgf ednmmllkjihgf ednmlkjihgf ednmlkjihgf ednmlkjihgf ednmlkjihgf ednmlkjihgf ednnmlkjihgf ednnmlkjihgf enmlkjihgf enmlkjihgf enmlkjihgfenmlkjihgfenmlkjihgfenmlkjihgfeonnmlkjihgfeonnmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfeonmlkjihgfepoonmlkjihgfepoonmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgf                )%()%()"()!() () ()( )( )( )(!)(")(")(*) )(*)!)(*")(*!)(*!)(* )(* )(*!)(*!)(*)(*)(*)(*)(*)(* )(*!)(*!)(*#)( *")( * )( * )( *)( * )(*)( *)( *)( *)( *)( *)( * )( * )(* )(*)(*)(* ) (* ) (*!) (*!) (*!) (*#) (*") (* ) (* ) (* ) (+**!) (+**) (+**) (+**!)(+** )(+*)(+*) (cba`cba`cba `cba`c ba`cba`cba`cba`cba`cba`cba`cba`cba`dccba`dccba`dc ba`dcba`dcba`dcba`dcba`ddc ba`ddcbadcbadcbadcbadcbadcbadcbadcbadcbadcba dc ba dcba dcba dcbaed dcbaed dcbaed dcbae dcbae dcbae dcbae dcbae dcbaedcbae dcbae dcbae dcbae dc b ae dc b ae dc b ae dc b ae dc b aedc b ae dc b a e dc b a e dc b ae dcb afee dcb afee dcb afee dcb afe e dcbafe e dcbaf e dcbaf e dcb a                                                  !('!('!('!(' (' (' ('#('"('"('"('"('"('"('$('&('&('((''(''(''(''('(('((')('*('*(',(',('*('*(',('+(',('-('/('0('.('.('.('/('/('/('/('/('/('1( '2( '2( '2( '3( '4( '4( '5( '4( '5( '3( '5( '4( '5( '5( '6('6('7('`_^]`_^]`_^ ]`_^ ]`_^ ]` _^ ]` _^ ]`_^ ]`_^ ]`_^ ]`_^ ]`_^]` _^ ]` _^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]a``_^]a`_^]a`_^]a`_^]a`_^]a``_^]a``_^]a`_^]a`_^]aa`_^]aa`_^a`_^]aa` _^a` _^a`_^a`_^a`_^]aa`_^]aa`_^]aa`_^]aa`_^]aa`_^ a`_^ a`_^ a` _^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_ ^ a`_^a`_^a`_^                                    '6&'6&'6& '1& '1& '1& '1& '1& '1& '1& '1& '1&'0&'0&'0&'.&'.&'-&'.&'-&'-&'-&',&',&'*&'*&'*&')&')&'(&'*&')&'*&''&''&''&''&'&&'&&'&&'&&'%&'%&'%&'$&'$&'$&'$&'%&'$&'$&'$&'#&'!&'!&' &'!&'!&' &' &'&'&'&'&]\[Z]\[Z]\[Z ] \[Z ] \[Z ] \[Z ] \[Z ]\[Z ]\[Z ]\[Z ]\[Z ]\[Z]\[Z]\[ Z]\[ Z]\[Z]\[Z]\[ Z]\[ Z]\[ Z]\[ Z]\[ Z]\ [ Z]\ [ Z]\ [ Z]\[ Z]\[ Z]\[ Z]\[ Z]\[ Z]\[ Z]\[Z]\ [ Z]\[ Z]\ [Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z^]\[Z^] \[Z^] \[Z^]\[Z^]\[Z^]]\[Z^] \[Z^]\[Z^]\[Z^]\[Z^]\[Z^]\[Z^]\[Z^]\[Z^]\[Z^]\[Z^]\[Z^] \[Z^]\ [Z^]\[^]\[                                 &0% $&0% $&0% $&1%$&1%$&0%$&0%$&/%$&0%$&1%$&1%$&1%$&0%$ &/%$ &.%$ &-%$ &.%$ &/%$ &/%$ &/%$ &0%$ &0%$ &.%$ &/%$ &/%$ &0%$ &1%$& &1%$& &2%$& &1%$& &1%&0%&0%&/%&.%&-%&.%&/%&.%&.%&-%&-%&-%&-%&,%&,%&+%&*%&*%&,%&,%&+%&*%&)%&)%&)%&*%&+%&+%&*%&*%&)%&(%&)%ZYX WZYX WZYX WZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZZYXWZZYXWZZYXWZZYXZYXZYXZYXZYXZYX ZYXZYXZYXZYX ZYX ZYXZYXZYX ZYX ZYX ZYX!ZY X!ZY X"ZY X"ZY X$Z Y X$Z Y X%ZY X$Z Y X#ZY X#ZY X#ZY X#ZY X$ZY X$ZY X$ZY X%ZY X%ZYX                                              $ #$# $# $# $# $# $#!$#!$#!$# $# $# $# $#"$##$##$#$$#"$##$#$$#$$#$$#$$#$$#%$#%$#%$#&$#&$#%$#%$$#%$#%$$$#%$&$#%$'$#%'$#($#%$&$#%$&$#%$%$#%%$#%$$#%#$#%#$#%#$#%$$#%%$#%%$#%%$#%#$#%#$#%#$#%$$#%$$#%&$#%'$#%'$#%'$#%'$#%)$#%($#%($#%'$# WV UT WVUTWVUTWVUTWVUTWVUTWVUTWVUTWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWVU TWV U TWV U TWVU TXWVU TWVU TXWWVUTXWWVUTXWWVUTXWV UTWV UTXWWVUTXWWVUTXWWVUTXW VUTXW VUTXW VUTXW VUTXWVUTXW VUTXW VUTXWVUTXWVUTXWVUTXWVUTXW VUTXWVUTXWVUTXWVUTXWVUTXWVUTXWVUTXWVUTXWVUTXWVUTXWVUTXWVUT                                     #'"#'"#&"#&"#&"#%"#%"#&"#&"#%"#%"#%"#$"#$"#$"#$"##"#""##"#$"##"##"##"#""#""#!"#""#!"#""#!"#!"#"#" #"!#"!#"!#" #" #" #" #" #"!#"!#""#""#"##"##""#"!#"!#""#""#""#""#"##"##"##"$#"$#"%#"%#"$#"$#"TSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQ TSRQ TSRQ TSRQ TSRQ TSRQ TSRQ TS RQ TSRQ TSRQ T SRQ TSRQ TSRQ TSRQ TSRQ TSRQTSRQT SRQ TSRQ TSRQ TSRQTSRQTSRQTSRQTSR QTSR QTSRQTSR QTSRQT SRQT SRQT SR QT SRQTSRQTSR QTSR QTS RQTS RQTS RQTSR QTSR QTSR QTSR QTSR QT SR QT SR QT SR QTSR QTSR QTSR QTSR QTSR QTSR QTSR QT SR Q                                                     "&!"&!"&!"&!"&!"$!"$!"$!"$!"$!"$!"#!"#!""!""!"#!"%!"%!"%!"'!"'!"!"!"'!"'!"&!"&!"%!"%!"!"!"!"!"!!"!!" ! "! "! "!!"!""!!"!""!"!""!""!""!""!'"!'"!'"!'"!'"!$"!%"!%"!#"!#"!%"!%"!&"!("!("!)"!'"!'"!$"!$"!QPOQP OQP OQP!OQP OQPOQPOQPOQPOQPOQPOQPOQPOQPOQPOQPOQ POQ POQ POQ POQ POQPQPOQ POQPOQPOQ POQ POQ POQPQPOQPQPOQ POQ POQ PO QPO QPO QPO!QPO"QPO!QPO"QPQPO"QPO"QPOPO"QPOPO"Q PO'QPO'QPO'QPO'QPO'QPO$QPO%QPO%QPOO#QPO#QPO%QPOO%QPOO&QPO(QPOO(QPOO)QO'QPO'QPO$QPO$QPO  !                !"!""""" '''''$%%##%%&(()''$$}! !(ON(ON)ON.ON.ON-ON-ON-ON'ON(ON,ON*ON*ON*ON+ON,ON*ON*ON)ON*ON+ON+ON/ON/ON0ON0ON,ON,ON,ON,ON,ON1O N,ON-ON1O N/ON1O N/ON/ON/ON.ON.ON.ON.ON/ON0ON0ON-ON2O N2O N4O N5O N5O N5O N5O N3O N.ONO N4O N4O N3O N3O N1O N1O N1O N(()..---'(,***+,**)*++//00,,,,,1 ,-1 /1 ///..../00-2 2 4 5 5 5 5 3 . 4 4 3 3 1 1 1 !: !: !: !; !: ! !7 ! !7 !: !: !; !; !; !9 !9 !: !< !< !7 !8 !7 !8 !7 !7 !7 !8 !8 !8 !8 !7 !7 !7 !6 !8 !: !9 !8 !6 !7 ! !1 !8 !2 ! !!2 !1 !1 ! !! 2 !6 !6 !6 !5 !4 !4 !5 !5 !2 !2 !4 !4 !4 !4 !4 !4 !2 !0 !. 3N M3N M2N M1N M2N M2N M2N M2N M4N M3N M3N M4N M4N M4N M5N M6NM5N M5N M5N M7NM6NM2N M2N M4N M5N M7NM9NM6NM6NM5N M7NM8NM7NM7NM7NM8NM8NM6NM4N M6NM6NM7NM9NM7NM7NM9NM9NM9NM;NM;NM:NM:NM8NM;NM:NM:NM6NM8NM9NM9NM9NM9NM9NM9NM. . - - - * * - / / / 0 . . 0 32 - . //* * , . 02/.- //0211/.& / )* + )*000 1 0 / 0 . . - / + - . . . ,*( ;ML5M L9ML8ML9MLM}ML8ML;ML:ML7ML7ML7ML8ML;ML;ML;ML;ML;ML=ML=ML=ML=ML>MLM:ML>MLM=MLMMLM=MLM=MLM{MLMLM=MLM=MLMMLM;5 989}8;:7778;;;;;====>:>==={<=>==<=> &(' ( &)' ( &)' ( &*' ( &*' ( &)' ( &'' (&(' ( &&' ( &&' ( &&'( &&'( &&'(&&'(&''(&''(&''(&''(&''(&)'(&)'(&&'(&&'(&%'(&%'(&&'(&%'(&*'(&*'(&*'(&('(&&'(&&'(&('(&('(&*'(&)'(&)'(&('(&('(&('(&''(&'''(&'''(&'''(&'''(&'''(&'''(('(('()'(&'''()'()'(('(('(''(''(&'(&'(&'(&'(%'(%'( \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _\]^ _ \]^ _ \]^ _ \]^_ \]^_ \]^_\]^_\]^_\] ^_\] ^_\] ^_\]^_\]^_\]^_\]^_\]^_\]^_\]^_\]^_`\]^_`\]^_`\\]^_`\\]^_`\\]^_`\]^_`\]^_`\]^_`\]^_`\]^ _`\]^_`\]^_`\]^_`\]^_`\]^_`\]^_`\]]^_`\]]^_`\]]^_`\]]^_`\]]^_`\]]^_`]^_`]^_`]^_`\]]^_`]^_`]^_`]^_`]^_`]^ _ `]^ _ `]^_ `]^_`]^_`]^_`] ^_`] ^_`                      5( )5( )4( )4( )3( )3( )3( )2( )2( )2( )2( )2( )2( )2( )2( )2( )2( )1( )1( )0()/()/()/()/()/()0()0()/()/()/()/()-(),(),()+()+(),()*()+()+()+()*()*()*()*())())())())())())())())()(())())()&()&()&()'()&()&()&()&()_`abc__`a b_`abc_`abc_`abc_`abc_`abc_`abc_`abc_`abc_``abc_``abc_``abc_`abc_`abc_`abc_`abc_`abc`abc`a bc`a bc`a bc`a bc`a bc`a bc`abc`abc`abc`abc`abc`abc`ab c`ab c`ab c`a b c`a b c`a bc`ab c`ab c`ab c`ab c`a b c`a b c`ab c`ab c`a b c`a b c`a b c`a b c`a b c`a b c`a b c`ab c`a b c`ab c`ab c`a bc`abc`a bc`a b c`a bc`abc`abc`abc                                    )*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+, )*+, )*+ , )*+ , )*+ , )*+ ,)*+ , )*+ ,)*+ ,)*+ , )*+ ,-) )*+ ,-) )*+ ,-) )*+ ,-) )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,-)*+ ,-)*+ ,-)*+ ,- )*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-c d efghic d efghic d efghic d efghicd efghicd efghicd efghic d efghic d efghic d efghic defghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghijcc defghijcc d efghij c d efghij c d efghij c d efghij c d efghij c d efghijc d efghij c d efghijcd efghijcd efghij c d efghijkc c d efghijkc c d efghijkc c d efghijkc c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c defghijk c defghijkc d efghijkc d efghijkc d efghijk c d efghijkc d efghijkc d efghijkc d efghijkc d efghijk                                                           ,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./ 0,-./ 0,-./ 0,--./ 0,--./ 0,--./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./0-./ 0-./ 0-./0-./0-./0-./0-./0-./0-./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0ijklmno pqrsiijklmno pqrsiijklmno pqrsiijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmnopqrsijklmnopqrsijklmnopqrsijklmno pqrsijklmno pqrsijjklmno pqrsijjklmno pqrsjklmno pqrsjklmnopqrsjklmno pqrsjklmno pqrsjklmno pqrsjklmno pqrstjkklmno pqrstjkklmno pqrstjkklmno pqrstkklmno pqrstklmno pqrstklmno pqrstklmnopqrstklmnopqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstskkllmno pqrstskkllmno pqrsts˹˹˹ͻͻͻͼ˼˼0/-)%!  0/,($   0.+(#    0/-*&"   0/-)%!   0.+'#    0.*&"   0/-)%!   0/,($    0.+'#    0/.*&"  0/-)%!  0/,($   0.+'#   0.*&"  0/-)%!  0/,($   0.+'#   0/.*&"  0/-)%!  0/,($   0.+'#  0/.*&" 0/-)%! 0/,($  0.+'#  0.*&" 0/-)%! 0/,($  0.+'#  0/.*&" 0/-)%! 0/,($  0.+'#  0/.*&" 0/-)%! 0/,($  0.+'#   00/.*&" 0/-)%! 0/,($  0.+'#  0/.*&" 0/-)%! 0/,($  0.+'#  0.*&" 0/-*%! 0/-)%!  00/,($   00.+(#  0/.*&"  0/-)%! 0/,($!  00.+'#   0/.*&"  0/-)%!  0/,($   0.+'#   0.*&"  /-*%!  /-)%! /,($   .+(#   stplcZOJFFEE FGHIJKstspiaWNIFFEEF FGHIJKstsog_TLHFEE FGHIJKstqme[QKGFEE FGHIJ KstspkbXOIFFEEFFGHIJ Kstsoh^UMHFEE FGHIJK Kstrne\RKGFEEFGHIJK KstplcZOJFFEEFGHIJ KstspiaWNIFFEEFFGHIJ Kstsog^TLHFEEF FGHIJ Kstqne\RKGFEEF FGHIJ KstsplcZOJFFEEF FGHIJ KstspiaWNIFFEEFFGHIJ Kstsog^TMHFFEEFFGHIJ Kstrne\RKGFEEFFGHIJ KstplcZOJFFEEFFGHIJ KstspiaWNIFFEEFFGHIJ Kstsoh^TLHFFEEFFGHIJ Kstqne\RKGFFEFFGHIJ KstplcZOJFFEEFFGHIJ KstspiaWNIFEE FGHIJ Kstsoh^TLHFFEEFFGHIJ Ksttqne\RKGFFEEFFGHHIJ KsttplcZOJFFEEFFGHIJ KtspiaWNIFFEEFFGHIJ Ktsog^TLHFEE FGHIJ Ktrne\RKGFEEFGHIJKtplcZOJFFEEFGHIJKtspiaWNIFFEEFGHIJKtsog^TLHFFEEFGHIJKtqne\RKGFFEEFFGHIJKtplcZOJFFEEFFGHIJKtspiaWNIFFEEFFGHIJKtsog^TLHFFEEFFGHIJKtqne\RKGFFEFFGHIJKtplcZOJFFEFFGHIJKtspiaWNIFFEEF FGHIJKtsoh^TMHFFEEFFGHIJKLttqne\RKGFEE FGHIJKtplcZOJFFE FGHIJKtspiaWNIFFEE FGHIJKtsog^TLHFFEEFGHIJKtqne\RKGFEE FGHIJKtplcZOJFFEEFFGHIJKtspiaWNIFFEEFFGHIJKtsog^TLHFFEEFFGHIJKtrne\RKGFEEFGHIJKtqldZOJFFEEFGHIJKtpkbXNIFEEFGHIJKLttspi`VMHFEEFGHIJKKLttsog_TLHFEEFGHIJKtqne\RKGFEEFGHIJKLtplcZOJFFEEFGHIJKtspiaWNIFFEEFFGHIJKLtsog^TMHFEEFGHIJKLtqne\RKGFEEFFGHIJKLtplcZOJGFEF FGHIJKLspiaWNIF FGHIJKLsog^TMHFFEF FGHIJKLrne\RKGF FGHIJKLpldZPJGF FGHIJKLpkbXNIFFEFFGHIJKpi`VMIFFEFFGHIJKLog_TLHFFEFFGHIJKLƾ||zz |}Ĺ||zz| |}ö|zz |}}|zz |} Ƽ||zz||} ø|zz |} }|zz|} ƾ||zz|} Ĺ||zz||} ö|zz| |} }|zz| |} ƾ||zz| |} Ĺ||zz||} ö||zz||} }|zz||} ƾ||zz||} ƹ||zz||} ø||zz||} }||z||} ƾ||zz||} Ĺ|zz |} ø||zz||} }||zz||} ƾ||zz||} Ĺ||zz||} ö|zz |} }|zz|}ƾ||zz|}Ĺ||zz|}ö||zz|}}||zz||}ƾ||zz||}Ĺ||zz||}ö||zz||}}||z||}ƾ||z||}Ĺ||zz| |}ø||zz||}}|zz |}ƾ||z |}Ĺ||zz |}ö||zz|}}|zz |}ƾ||zz||}Ĺ||zz||}ö||zz||}}|zz|}Ⱦ||zz|}Ƽ|zz|}Ĺ|zz|}ö|zz|}}|zz|}ƾ||zz|}Ĺ||zz||}ö|zz|}}|zz||}ƾ}|z| |}ƹ| |}ö||z| |}}| |}ƾ}| |}Ƽ||z||}Ĺ||z||}ö||z||}                                  #  #  #  !                                 !  %  !  %  %  $  $   $   $  %  %  '  / / 5 5 2 (   3 0 4 0 / 1 1 1 *   2 3 ) KLKLMKLKLM K LKLMK K L KL KL KLMKKL KLM K LKLM K L KLM K LKLM K LKLM KLKLM KL KLMK L KLMKLKLMK LKLKLMK L KLM KLKLMK LK!LMK LK LMK L KLMK L KLMLMK L KLMK L KLMK L KLMK L KLMKL KLMKL KLMK L KLMKL KLKLMKLKLMKLKLMK LKLMLMK L KLKLMLMK LKLKLMLMK L KLMLMK LKL MK LKL MLKK L KL MK L KL MK L KL MK L KLMKLKL KL MKLKL KL MK L KL MKLKL MKLKL MKLKL M LKL M L KL M L KLM L KLM L KLMKLL KL M LKLM L KLM L KLM L KLML KLML KLML KLML KL MKLL KL ML KLML KLM                 !                                                       MLMNM;MNMN:MN:MN:MN8MN8MN:MN;:::88:<<::;:88768866 !6 !6 !8 !6 !6 !5 !5 !5 !5 !4 !5 !4 !4 !4 !3 !3 !3 !5 !5 !2 !- !- !, !, !, !, !+ !+ !1 !0 !/ !) ! !. !. !- !. !. !) !' !( !( !) !) !( !( !' !% !$ !* !+ !% ! !!% !) !) !' !& !% !% !$ !# !# !" !" ! M2N M5NM7NM7NM7NM7NM7NM:NM9NM9NM9NM:NM:NM9NM7NM8NM9NM9NM;NM;NM9NM9NM=NM=NM=NM=NM|NM=NM>NMN=NM>N ) ,.0..- 0 / / . 0 / . , , - - / / , '+***)+)/ 0/)..-..)'((''(('%$*+%%))'&%%$##""!N)ON+ON+ON)ON(ON'ONON'ON'ONON'ON-ON-ON0ON0ON0ON.O N1O N1ON0ON0ON0ON0O N3O N3O N4O N4O N3O N3O N1ON0ON0ON0ON6ON7O N4ON9ONON4O N3ONON4O N4ON6ON6ON6ON6ON6O N4O N4ONON3ON;ON;ON;ONMN=MN8MN8MN6MN'MN MN.MN,MN,MN$MNMN#MNMNM$NM%NMNMN$NM.NM/NM/N M2N M3N M3N MNM/N MNM+N M4N M4NMNM5NM=NM}N>=886' .,,$#$%$.// 2 3 3 / + 4 45=} ' ! !$ ! ! ! ! ! ! ! ! !! ! &! ! (! ! ! !&! ! ! &! ! ! !&! ! .! ! ! /! ;!MNM;MN9MN-MNMN)MNMNMN!MNMNMNMN!MNMNMNMNM'NMNM'N MNM'NMNMNMNM)NMNMNM)NMNM 1N;9-)!!'' '))X$  & ( && & ./; J !6 ! ! !3 ! !!  ! !% ! ! ! ! ! ! ! ! "! ! ! !!! ! 5! !!MNM=MNM=MNMN5MNM NMNMN'MN MNMNM)NMN M)NMN M)NMN M(NM N M5N M9NM;NM;NM>NM N==5 ' ) ) ) ( 5 9;;>ˉ63%"! 5Њ ! = ! = ! = ! = ! = ! = ! = ! !! 4 !2 MN:MN8MN9MN:MNM=MNMN8M N4M N4MN*MN*MN'MNMN"MN"MN$MN$MN#MNMNNM'NM'NM)NM)NM(NMN M)NMN M(NMN M*NMN M+NMN M3N M3N M4N M8NM;NM;NMMLMMLMMN:MN:MN8MN8MN7M N5MN8MNMN/MN8MN6MN/MN.MN)M##$##%%'''..1 1 1 1 08::<:<=><==>::887 58/86/.)                                                                                   !  !     1  7 5 2 0 0 1 0 0  -  +  -  - 4  -  -  .  / 4  LK LKJILK LKJIL K LKJI L KLKJI L KLKJILK LKJI L K LKJI L K LKJLK LKJLK LKJLK LKJ LK LKJ LK LKJL LK LKJL LKLK LKLKL K LKLKL KLKL KLKL KLKLKLKL KLKLKLKL K LKLK LKLK LKL K LKL K L KL KL KL K L KMLLKLKML K LKMLK LKMLKLKMLK LKMLK LK MLKLK MLKLK MLKLK MLKLK MLKLK ML K LKML K LK ML K LKML KLMLKLKLML K LML K LML K LML K LML K LMLK LMLK LMLKLKLML KLKLML KLKLML KLKLMLKLML KLKML KLKML KLKML KLKML KLML KL                                                                 !$(+.00 /   "&)-/00 /   #'+-/00 /  !%(,.00 /  "&*-/00 / !$(+.00 /  "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/  #(+.00/ "&*-/00/ !$(+.00   "&*-/00  !%(,/00   #'+.00  "&*-/00   #(+.00  "&*-/0 0  !$(+.0 0   "&*-/0 0 !%)-/0 0  #'+.0 0 "&*-/0 0 !%(,/0 0  #'+.0 0 "&*-/0 0  $(+.0 0  "&*-/0 0 !%)-/0 0  #'+.0 0 "&*-/00 !%)-/00  #'+.00 "&*-/00  !%)-/00   #'+.00  "&*-/00  !%)-/00   #'+.00  "&*-/00  !%)-/00   #'+.00  "&*./00  !%)-/00 !$(,/00  #(+.00 "&*-/00 !%)-/00  #'+.00  "&*-/00IHG FEFGINW_hnrttsrqpIHGFEFHLQZckpsttsrqpIHG FEFINU^fmpsttsrqpIHG FEFGKPYaiosttsrqpIHG FEFHLR\dlpsttsrqpIHG FEFGINW_hnrttsrqpIHGFEFHLQZdlpsttsrqpIHG FEFINU_hnrttsrqpIIHG FEFGKQZdkpsttsrqpJIIHGFEFINU_hnrttsrqJIHGFEFGKQZdkpsttsrqJIHG FEFINU_hnrttsrqJIHG FEFGKQZdkpsttsrqJIHG FEFFINU_hnrttsrqKJJIIHG FEFGKQZdkpsttsrqKJJIHG FEFFINU_hnrttsrqKJJIHG FEFGKQZdkpsttsrqKJIHGFEFINU_horttsrqKJIHG FEFGKQZdlpsttsrqKJIHG FEFINU_hnrttsrqKJIHG FEFFGKQZdkpsttsrqKJIHG FEFFINU_horttsrqKJIHG FEFGKQZdlpsttsrqKJIIHGFEFINU_hosttsrqKKJIHG FEFGKQZdlpsttsrqKKJIHGFEFINV_hosttsrKJIHGFEFHLR\emqttsrKJIHG FEFFIOXajpsttsr KJIIHG FEFHMT^fnrttsr KJIHG FEFGKQZdkpsttsrK KJIHGFEFINU_horttsrK KJIHGFEFGKQZdlpstts KJIHGFEFINV_hostts KJIHGFEFHLR\emqtts KJIHGFEFJOYbkpstts KJIHGFEFFHMU^hostts KJIHG FEFGKQ[emqtts KJIHG FINXajpstts KJIHGFEFHMT]fnrtts KJIHGFEFGKQZdlpstts KJIHGFEFFINV_hosttsKJIIHG FHLR\emqttsKJIIHG FEFGJOYbkpsttsKJIHGFEFFHMU^gosttsKJIHGFEFGKR[emqttsKJIHGFEFIOYbkpsttsKJIIHGFEFHMU^gosttsKJIIHGFEFGKQ[emqttsLKKJIHGFEFIOXbkpsttsLKKJIHGFEFHMU^gosttsLKKJIHGFEFGKQ[emqttsLKKJIHGFEFIOXbkpsttsLKKJIHGFEFHMT^gosttsLLKKJIHGFEFGKQ[emqttsLLKJIHGFEFFIOXbkpsttLKJIHGFEFHMU^hosttLKJIHGFEFGKR\enqttLKKJIHG FGJOZclpsttKJIHG FINWaipsttKJIHGFEFHLT_gosttKJIIHGFEFGKQ[emqttKJIHG FIOXbkpsttKJIHG FHMU^hosttLKJIHG FGKR\emqtt} |z|}}|z|} |z|} |z|}} |z|} |z|}}|z|} |z|Ɓ} |z|}Ƃ}|z|}|z|}} |z|} |z|}} |z||} |z|}} |z||} |z|}}|z|} |z|}} |z|} |z||}} |z||} |z|}}|z|Ȅ} |z|}Ȅ}|z|}|z|} |z|| } |z| } |z|}Ʉ }|z|Ʉ }|z|} }|z| }|z| }|z| }|z|| } |z|} } | }|z| }|z|} }|z||} |} |z|}}|z||}|z|}}|z|}|z|}|z|}}|z|}|z|ˆ}|z|}ˆ}|z|ˆ}|z|ˆ}|z|}ˆ}|z||}|z|}|z|}} |}} |}|z|}|z|}} |} |} |}/.- ,+/.-,+/.- , +/ .-, +/.- , +/.- , +/.-, +/.- , + /.- , + /.-, + /.-, + /.- , + /.- , + /.- , + /.-, + /.-, + / .-,+ /.- ,+ /.- ,+ /.-,+/ .- ,+/.- ,+/.- ,+/.-,+/ .-,+/.-,+/.- ,+/.- ,+0//.-,+0//.-,+0/ .-,+0/.-,+0/ .-,+0/ .- ,+0/.- ,+0/ .- ,+0/ .-,+0/.-,+0/.-,+0/.-,+0/ .-,+0/ .- ,+00/.- ,+00/.- ,+00/ .-,+00/.- ,0/ .- ,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-, 0/.-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-,ponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgfponmlkjihgf ponmlkjihgfpponmlkjihgfqpponmlkjihgfqpponmlkjihgqponmlkjihgq ponmlkjihgq ponmlkjihgqponmlkjihgqponmlkjihgq ponmlkjihgqqponmlkjihgqqponmlkjihq ponmlkjihq ponmlkjihqponmlkjihq ponmlkjihq ponmlkjihq ponmlkjihq ponmlkjihq ponmlkjihrqq ponmlkjihrqqponmlkjihrq ponmlkjihrq ponmlkjihsrrqq ponmlkjihsrrqq ponmlkjihsrrqq ponmlkjihsrrqq ponmlkjihsrrqq ponmlkjihsrqponmlkjihsrq ponmlkjihsrqponmlkjihsrq ponmlkjihsrqponmlkjihssrqponmlkjihssrqponmlkjihssrq ponmlkjihssrqponmlkjisrqponmlkjisrqponmlkjisrqponmlkjisrqponmlkjisrqponmlkjisrq ponmlkjisrq ponmlkjisrq ponmlkjisrqponmlkjisrqponmlkjitssrqponmlkjitssrqponmlkjitssrqponmlkjitssrqponmlkjitssrqponmlkjitssrqponmlkjitsrqponmlkjitsrqponmlkji+*)(+*)(+*)(+* )(+* )(+*!)(+* )(+* )(+*)(+*)(+*)(+*)(+*)(+*)(+*)(+*)(+*)(+*)(+*)(+*)(+*)( +*)( +*)( +*)( +*)( +*)( +*)( +*)( +*)( +*)(+ +*) +*) +*) +*)+*)+*) +*)+*)+*)+*)+*)+*)+*)+*)+*)+*)+*)+*),++*),++*),++*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*)f e dcbaf e dcbaf e dcbaf e dcbafe dcbaf edcbaf e dcbaf edcbaf e dcbaf e dcbaf e dcbaf e dcbaf e dcbafe dcbagffe dcbagffe dcbagffe dcbagffe dcbagf e dcbagf e dcbagf e dcbagf e dcbahggffe dcbahggffe dcbahggfe dcbahgfe dcbahgfe dcbahgf e dcbahgf e dcbahgf e dcbahhgfe dcbhgf e dcbhgfe dcbhgf e dcbhgfe dcbhgfe dcbhgf e dcbhgfe dcbhgf e dcbhgf e dcbhgf e dcbhgf e dcbhgf e dcbhgf e dcbhgf e dcbhgfe dcbhgf edcbhgf edcbihhgf edcbihhgfe dcbihhgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgf e dcbihgf e dcbiihgfe dcbihgfe dcbihgf edcbihgf edcbiihgf edcb                                                        7('7('7('7('7('7('8('9('9('9('9('9('9('9(':(';(':(':(';('<('<('<('<('<(';('<('<('<('<(';('<(')(=()(<(')(<('))(;('));('))(;('))<()(<('))(<()<()<()<()<();():();();();();()<()<()<()<()<():()9()9()9();()9()9():()9(a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a` _^a` _^a` _^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a` _^a` _^a` _^a` _^a` _^baa`_baa`_^baa`_^bbaa`_^bba` _^bbaa` _^bba` _baa` _^bbaa`_ba` _ba` _ba` _ba` _ba` _ba`_ba`_ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba`_ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _                                 '&'&'&' &' &' &' & '& '& '& '& '& '&!'&!'&!'&!'&!'&!'&!'&!'&!'&#'&#'&#'&#'&#'&#'&$'&%'&%'&&'&''&''&''&''&&'&&'&$'&$'&%'&%'&%'&('%'&($'&('$'&('$'&('$'&('%'&''&''&('&('&'&('''&(''&(&'&(''&(('&(('&(''&(%'&(%'&(%'&(&'&^]\[Z^^]\[Z^]\[Z^^]\[Z^^]\[Z^^]\[^]\[^] \[^] \[ ^]\[ ^]\[ ^]\[ ^]\[^]\[ ^]\[ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^] \ [^] \ [^] \ [^] \ [^] \ [^] \ [^] \ [^]\[^]\ [^]\[^]\ [^]\[^]\[_^ ^]\[_ ^]\[_^ ^]\[_^ ^]\[_^^]\[_^^]\[^]\[^]\[^] \[_^^] \[_^^] \[_^] \[_^]\[_^]\[_^] \[_^] \[_^]\[_ ^]\[_ ^] \[_ ^] \[_^]\[                                               &)%&(%&(%&'%&(%&(%&(%&(%&(%&(%&'%&'%&(%&'%&%%&%%&%%&%%&%%&%%&%%&%%&%%&%%&$%&$%&%%&%%&%%&$%&#%&!%&!%& %& %& %&!%& %& %&!%&#%&"%&"%&"%&"%&!%&!%&!%&!%&!%&!%&%&%& %& %&% &% &%&%&%&% &% &% &%%ZYX%ZYX&ZY X&ZY X&ZY X&ZYX&ZYX[Z$ZYX[Z$ZYX[Z&ZYX)ZYX[Z&Z YX[Z&Z YX[Z&ZYX[Z&ZYX)ZYX[Z%ZYX[Z%ZYX[$ZYX[$ZYX[%ZYX[&Z YX[%ZYX[&ZYX[%ZYX[&ZYX[&ZYX[&ZYX[&ZYX[&ZYX[&ZYX['ZYX['ZYX['ZYX[['ZYX[[%ZYX[%ZYX[&ZYX[(ZYX[(ZYX[&ZYX[$ZYX[$ZYX[%ZYX[$ZYX[%ZYX[&Z YX[&ZYX[&ZYX[%Z YX['Z YX[)Z YX[(Z YX['Z YX['ZYX[%ZYX[ [$ZY [$ZY [$ZY[$ZYX[[$ZYX[[$ZYX[[#ZYX[[%ZYX                           %($#%*$#%)$#%'$#%)$#%)$#%)$#%)$#%)$#%&$#%&$#%($#%%$#%'$#%'$#%&$#%&$#%%$#%'$#%'$#%'$#%($ # %'$ # %&$ # %&$ # %&$ # %&$ # %%$ # %$$ # %$$ # %$$ # %%$ # %%$ # %%$ # %%$ # %%$ # %&$ # %'$ # %'$ # %&$ # %$$ # %&$ # %'$ # %'$ # %'$ # %($ # %($ # %'$ # %'$ # %&$ # %%$ # %%$ # %%$ # %%$ # %%$ # %&$ # %'$ #%'$# %($# %'$ # %'$ # %'$ #%$$ #%%$ #XWVUTXWV UTXWVUTXXWVUXWVUXWVUTXXWVUTXXWVUTXXWV UTXWVUTXWVUTXWVUTXXW VUXWVUXWVUXWVUXWVUXWVUXWVUXWVUXWVUXWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XW V U XW V U XW V U XW V U XW V U XW V U XWV U XW V U XW V U XW V U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XW V U XW V U XWV UYX XWV UYX XWVU XWVU XWV U XWV U XWV UXW V UXWV U                                              $#"$#"##"%#"%#"'#"&#"&#"%#"%#"%#"%#"'#"'#"'#"'#"'#"'#"'#"'#"'#"'#"'#"'#"'#"(#"(#"(#"(#"(#"(#")#"+#"*#"*#"*#")#"*#"*#"*#"*#"*#"+#"+#"+#"+#"*#"*#"*#"+#"+#")#")#")#"+#",#"+#"*#"+#"+#",#"-#",#",#"T SR QT SR QT SR QT SR QT SR QTSRQTSRQTSRQT SRQT SRQT SR QT SR QTS R QUTTS R QUTTS R QUTTSRQUTTSRQUTTSRQUTTSRQUTTSRQUTTSRQUTTSRQUTTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUT SRQUTSRQUTS RQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUT SRQUTS RQUTSRQUTSRQUTSRQUTSRQUTSRQUT SRQUTSRQUTSRQUT SRQUTSRQUTSRQUTSRQUTSRQUT SRQUT SRQUT SRQUTSRQUTSRQUTS RQUTSRQUTSRQ                             $"!#"!""! "! "!"! "!"! "!"! "!"!"!"!"!"!("!)"!!"!"!!"!"!!"!"!-"!-"!-"!*"!*"!*"!,"!,"!'"!("!("!("!*"!*"!*"!+"!)"!)"!,"!,"!,"!,"!,"!+"!+"!+"!)"!)"!*"!*"!,"!-"!+"!+"!+"!,"!."!."!,"!."!."!+"!,"!,"!-"!-"!-"!-"!-"!$QPO#QPO"QPO Q PO QPQO QPQOPO QPQPO QPQPOQPQPOQPQPO(QPO)QPO!QPQPO!QPQPOO!QPQPO-QPO-QPO-QPO*QPOPPO*QPO*QPOPPO,QPO,QPO'QPO(QPO(QPO(QPO*QP O*QPO*QPO+QPO)QPO)QPO,QP O,QP O,QPO,QPO,QP O+QPO+QPOP O+QPOP O)QPO)QP O*QPO*QPO,QPO-QPO+QPO+QPO+QPO,QPO.QPOO.QPOO,QPO.QPO.QPO+QP O,QP O,QP O-QP O-QP O-QP O-QP O-QP O$#"     ()!!!---***,,'(((* **+)), , ,,, ++ + )) **,-+++,..,..+ , , - - - - - !1O N1ONON1ONON8ON8ON8ON8ON6ON7ON6ON5O N4O N4O N4O N1O N/ONON7ON7ON7ON8ON8ON9ON9ON:ON9ON9ON9ON9ON:ON4ONON3O N=ON5O N8ON8ON8ON7ON8ON7ON8ON9ON9ON:ON:ON8ON;ON;ONNMN=NMN:NM9NM>NMN=NMN=NMN=NMN=NMN=NMN{NMNMN=NMN=NMN=NMNNMN;NMNO;NO;NO;NO;NO=NO()(=()(;()]^_`a]^^_`a]^^_`a]^^_`a]^^_`a^_`a^_`a^_`a^_`a^_`a^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a^_` a^_` a^_` a^_` a^_` a^_` a^_` a^_`a^_`a^_`a^_` a^_` a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^__`a^_ _`a^_`a^_ _`a^_ _`a^_ _`a^_ _`a_`a_`a_`a_`a _`a _`a _`a _`a _`ab _`ab_ _`ab_ _`ab                               (!)*(")*(!)*(#)*(")*(")*($)*(!)*(") *(") *(#) *(#) *(#) *(#) *(!) *( ) *(!) *(") *(") *(") *(") * (#) * (")* (")* (")* ($)* (#)* ($)* (#)* (!)* (!)* (!)* (!)* ( )* ()* ()*(!)*(#)*(#)*(#)*+(( )*+(( )*+( )*+()*+()*+( )*+( )*+( )*+( )*+( )*+(!)*+(")*+(!)*+(!)*+(!)*+()!)*+ )*+!)*+")*+ )*+)* +)*+)* +)* +abcdabcdabcdabcdabcdabcdabcdabcdabc dabc da bc da bc da bc dabc dabc da bc deaa bc dea a bc dea abc dea abc dea bc de a bc de a bc de a bc de a bc de a bc de a bc de a bc de abc de abc de abc de abc de abc de abc de abc de abc dea bc d ea bc d eabc d eabc defaa bc d efaabc d efabc d efabc d efabc d efabc d efabc d efa bc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabbc d efbc d efbc d efbc d efgbbc d efgbbc d efgbbc d efgbbc d efgbbc d efg                                                                                 *+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,- *+ ,- *+ ,-.* *+ ,-.* *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*++ ,- .*++ ,- .*++ ,-.*++ ,-.*++ ,-.+ ,-.+ ,-.+ ,-./++ ,-./++ ,-./+ ,-./+ ,-./+ ,-./+ ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./+ ,-./+ ,-. /+ ,-./+ ,-. /+ ,-. /d efghijkld efghijkld efghijkld efghijkld efghijklmdd efghijklmd efghijklmd efghijklmd efghijklmndde efghijklmndde efghijklmnde efghijklmnde efghijklmndeefghijklmn efghijklmn efghijklmn efghijklmn efghijklmn efghij klmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnoeefghijklmnoeefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoeffghijklmnoeffghijklmnoeffghijklmnoeffghijklmnoeffgh ijklmnofghijklmnofghijklmnofghijklmnopffghijklmnopffghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghij klmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfgghijklmnopghijklmnopghijklmnopghijklmnopghijklmnopghhijklmno pghijklmnopghijklmno phijklmno p óó ĴĴƴ ƴ-./0/--./0/.+--./0.,(--./0/-*&--./0.+($--../0/-)&"-../0/-+(# ../0.,(%!../0/-*&" ../0/.+(#!../0.,(%!. ./0/-*&# . ./0.+($!. ./0/-*&"  ./0/.+(#  ./0.,(%! ./0/-*&#  ./0.+($! ./0/-*&"  ./0.+($! ./0/-)&"./0/.+(# ./0.,(%!./0/-*&# ./0.+($!./0/-*&" ./0.+($! ./0/-*&" ./0/.+(#  ./0/,(%! ./0/-*&#  ./0.+($! ./0/-*&"  ../0.+($! ../0/-*&"  ./0.+(# ./0/-)&" ..//0/-+(#  .//0.,(%! .//0/-*&#  /0.+($! /0/-*&"  /0.+($! /0/-*&" /0.+(# /0/-*&" /0.+($! /0/-*&" /0.+(#  /0/-*&"  /0.+($   /0/-*&"  /0.+($    /0/-*&"   /0.+($    /0/-*&"   /0.+(#    /0/-*&"   /0.+($    /0/-*&"  /0.+($! /0/-*&"   /0/-)%! /0.+'#  lmno pqrstspklmmno pqrstsqnfmmno pqrstsoiammno pqrstsple\mmno pqr strnh_Vmmnno pqr stspkcZQmnno pqrstspmf_UNnno pqrstsoiaZPKnno pqrstspkd\RLHnno pqrs tqnf_UNIGnn o pqrstsoiaZPKGFnno pqrstsple\SMIFFnno pqrstrnh_VNIGFFnno pqrstspkdZQLHFFno p qrstqnf_UNIFFEnno pqrstsoiaZPKGFEEno pqrstspld\SMIFFEEFnno pqrstsoh_WNJGFEEFnnoo pqrstspldZRLHFFEFFno pqrstrnh_VNIFFEEFFno pqrstspkcZQKGFEEFnoo pqrstsqnf_UNIFFEEFFnoo pqrstsoiaZPKGFEEFo pqrstspld\SMIFFEEFFo pqrstsoh_WNJGFEEFo pqrstspldZRLHFFEEFFo pqrstrnh_VNIFFEEFFo pqrstspkdZQKHFFEFFo pqrstqnf_UNIFFEEFFo pqrstspiaZPKGFEEFo pqr stsple\SMIFFEEFo pqrstsoh_WNJGFEEFo pqrstspldZRLHFFEEFGoo pqrstsoh_VNIFFEEFGoo pqr stspkdZQLHFFEF Fo pqrstrng_UNIFFEEF Fo pqrstspkcZQKGFEE FGoop pqrstspmf_UNIFFEEFFGop pqrstsoiaZPKGFFEF FGoppqrstspld\SMIF FG pqr stroh_WNIGFEEF FGHppqr stspldZRLHFFEEFFGHppqrstsoh_VNIFFE FGHpqrstspldZQKGFFEE FGHpqrstrnh_UNIFFE FGHpqrstspkdZQKGFFEEF FGHpqrstsoh_VNIFFEEF FGHpqrstspldZQKGFFEEFFGHpqrstsoh_UNIFFEEFFGHpqrstspldZQKGFEE FGHpqrstsoh_VNIFFEEF FGHpqrstspldZQKGFEE FGHpqrstsoh_VNIFFEE FGHpqrstspldZQKGFFEEFFGHpqrstsoh_VNIFFEE FGHpqrstspldZQKGFEE FGHIppqrstsoh_UNIFFEEF FGHIpqrstspldZQKGFFEEFFGHIpqr stsoh_VNIFFEEFGHIpqrstspldZQKGFEEFGHIpqqrstsoh_VNIFFEEFFGHIqrstqme\RLHFEE FGHIqrstspkbYOJGFEE FGHIqrstrnf]TMHFFEEFFGHIƼùƾ  ļùƼ } ù}|ƾ||}||Ƽ|| ||zù}|zzƾ||zz|ø}|zz|ƾ||z||||zz||Ƽ}|zz|||zz||ù}|zz|ƾ||zz||ø}|zz|ƾ||zz||||zz||Ƽ||z||||zz||Ĺ}|zz| ƾ||zz|ø}|zz|ƾ||zz|}ø||zz|} Ƽ||z| |||zz| |ļ}|zz |}||zz||}ù}||z| |}ƾ| |} ø}|zz| |} ƾ||zz||}ø||z |}ƾ}||zz |}||z |}Ƽ}||zz| |}ø||zz| |}ƾ}||zz||}ø||zz||}ƾ}|zz |}ø||zz| |}ƾ}|zz |}ø||zz |}ƾ}||zz||}ø||zz |}ƾ}|zz |}ø||zz| |}ƾ}||zz||} ø||zz|}ƾ}|zz|}ø||zz||}|zz |}Ƽ}|zz |}||zz||}*&" '#! %"#  !                   !                                                                         d\RLIFFEF FGHIJK^UNIGFEE FGHIJKZQKGFEE FGHIJKSMIFFEE FGHIJKNIGFFEEF FGHIJKLHFFEE FGHIJKIFFEEF FGHIJKGFEE FGH IJKKFEF FGHIJKLFEEF FGHIJKLFEEF FG HIJKLKLF FGHIJKLKFEFFGHIJKEF FGHIJKEFFGHIJKL FGHIKL FGHIJKLKL FGHIJKLKLFGHIJKLFGHIJKLFGHIJKLFGHIJKLFGHIJKLFGHIJKLFGHIJKLKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGGHIJKLKFGGHIJK LKGHIJKLKGHIJK LKGHIJK LKGHIJK L KGHHIJK LKGHHIJKLKGHHIJK L KGHH IJK L KHIJKKLKHIJKKLKHIJKLKHIJK LKHIJKLKLKHIJKLKHIJK LKHIJK LKHIJK LKHIJK LKHIJK LKHIIJKLKIJKLKLIJKLKLKLIJKLKLIIJKLKLIJK LKLIJK LKLIJKLKLIJKLKLKLIJK LKLIJK L KLIJK LKLIJK LKL||z| |}}|zz |}}|zz |}||zz |}}||zz| |}||zz |}||zz| |}}|zz |} |z| |}|zz| |}|zz| |} | |}|z||}z| |}z||} |} |} |}|}|}|}|}|}|}|}|} |} |} |} |} |}}|}} }} } } } }} }                             "  (   2 /  . + + 1 / / 1 1 1 1 1 1 - - 0 1 1 1 1 1 1 2  3 3 9 9 9  6  6   6   7 9 <  = = = < = = ~ KLKLKLKLKLKLKLKLMKKLKLMKLKLMKLKLMKLKLMLKLKLMLKLL KLM L K LML KLKL MLKLMLKLML KL ML KL MLKL MLKL ML K$L ML K#L MLKLML KLML KLML KLMKLMKLM KLM KLM KLM KLM KLM KLM KLMKLKLM KLMK!LMKLMKLMKLKLMKLKLMKLLKLMKLLKLMKLMKL"MKLL#MKL(MKLML$MKL#MKL"MKL%MKL%ML&ML&ML'ML'ML&ML&ML'ML(ML(ML*ML)ML+ML/M           $  #            !"#($#"%%&&''&&'((*)+/ LM=MLM=MLMMN  =  =  < = = >    =  =  ; = ML KLML KLML KLML KLML KLML KLML KLML KLML KLMLKLMLKL MLKL MLKLMLKLMLKLMML KLMML KML KML KML KML KML K#ML K"MLK!MLK!MLK!ML K!ML K'MLK'MLKLLKK'M LKLK%MLK%MLK$MLK$MLK%MLK"MLK'MLK"MLK"MLK"MLK#MLK#MLK%MLK%MLK&MLK*MLK&MLK$MLK&MLK&MLKM&MLKM&MLKM&MLK'MLK'MLK(MLKM'ML(ML(MLKM'MLKM'MLKM(MLK,MLK                  # "!!! ! ''' %%$$%"'"""##%%&*&$&&&&&''('((''(,  !%)-/00   $(,/00   #'+.00   "&*.00   !%*-/00  !%)-/00   $(,/00   #'+.00   "&*-/00    !%)-/00    $(,/00     #'+.00   "&*.00  !%*-/0  !%)-/0   $(,/0    #(+.0   "&*.0   !%*-/   !%)-/   !%(-/    #(,/   #'+.  "&*.   !&*-  !%)-  !%)-  !%)-   %(-    #(,    #(+   "&*  !&*  !%)  !%)  !%)  !%)  !%)   %(   #(   #(  "&  !&  !%   !%    !%    !%   !%   !%   !%  !%   !%   !%   !%   !%   !%  !%   !%    !%  !%  !%  !%  !%   !%LKJIHGFEFFJOZclpsttLKJIHGFEFFINWaipsttLKJIHG FHLT^gosttLKJIHG FEFGKR\enrttLKJIHG FEFGJOZdlpttLKJIHGFEFFINXbkpsttLLKJIHG FIMV`ipsttLLKJIHG FHLT]gosttLLKLKJIHG FGKR\emqttLLKLKJIIHG FGJOZclpstLLKJIHGFEFFINWaipstLLKLKJIIHG FHMT^hostLLKJIIHGFEFGKR\enrtL LKJIHGFEFJOZdlptL LKJIHGFEFINXbkpsL LKJIHGFEFIMV`ipsLLKJIIHGFEFHLT_gosLLKJIIHG FEFGKR\enrLLKJIHGFEFFJPZdlpKLLKJIHGFEFFIOYckpKLLKJIHGFEFFINXakpKKLLKJIIHGFEFHMU_ipKKLKJIHGFEFHLT^goKK LKJIHG FGKR\enKKLKLKJIHGFEFGJPZdmKKLKJIIHGFEFFIOYclKKLKJIIHGFEFFINXckKKLKJIHGFEFFINXbkKKLKJIHG FINXakKKLKJIHG FIMU`iKK LKJIHGFEFHLT_gKK LKJIHGFEFGKR\eKK LKJIHGFEFGJPZdKK LKJIIHGFEFFIOZcKL LKJIIHGFEFFINXcKL LKJIIHGFEFINXcKKL LKJIIHGFEFINXbKKL LKJIHGFEFFINXbKK LKJIHG FINXaKK LKJIHG FIMU_KK LKJIHGFEFHLT_KK LKJIHGFEFGKR\KKLKJIHGFEFJPZKKLKJIHGFEFFIOYKKLKJIHGFEFFINXKKLKL KJIHGFEFFINXKK LKL KJIHGFEFFINXKK LKJIHGFEFFINXKK LKJIHGFEFFINXKK LKJIHGFEFFINXKKLKJIIHGFEFFINXKKLKJIHGFEFFINXKK LKJIHGFEFFINXKK LKJIHGFEFFINXKKLKJIHGFEFFINXKKLKJIIHGFEFINXKKLKJIIHGFEFFINXKKLKJIIHGFEFINXLKKLKJIIHGFEFINXKKLKJIIHGFEFINXKK LKJIIHG FINXKKLKJIHG FINXKKLKJIHG FINXKK LKJIHG FINX}|z||}|z||} |} |z|}} |z|}}|z||͆} |͆} |͆} |}͆} |}͆}|z||͆} |͆}|z|}͆ }|z|͆ }|z|ˆ }|z|ˆ}|z|ˆ} |z|}Ɇ}|z||Ƅ}|z||Ƅ}|z||Ƅ}|z|Ą}|z|Ä } |}}|z|}}|z||}|z||}|z||} |} | }|z| }|z|} }|z|} }|z|| }|z|| }|z| }|z| }|z|| } | } | }|z| }|z|}}|z|}|z||}|z|| }|z||  }|z|| }|z|| }|z|| }|z||}|z||}|z|| }|z|| }|z||}|z||}|z|}|z||}|z|}|z|}|z| } |} |} | } | 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-,0/ .-, 0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,/0 0/ .-,/0 0/ .-,/0 0/ .-,/00/ .-,/00/ .-,/00/ .-,.00/ .-,.00/ .-,-/0 0/ .-,-/00/ .-,-/00/ .-,-/00/ .-,-/00/ .-,-/00/ .-,-/00/ .-,/00/ .-,+.00/ .-,*.00/ .-,*-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/.-,)-/0 0/ .-)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/00 /.-,)-/00 /.-,)-/0 0/.-,)-/0 0/ .-,)-/00/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/00/ .-,tsrqponmlkjitsrqponmlkjitsrqponmlkjitsrq ponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjittsrqponmlkjittsrqponmlkjittsrq ponmlkjittsrq ponmlkjittsrq ponmlkjittsrqponmlkjittsrqponmlkjittsrqponmlkjittsrqponmlkjittsrqponmlkjisttsrqponmlkjisttsrq ponmlkjsttsrqponmlkjsttsrqponmlkjrttsrqponmlkjqttsrqponmlkjpttsrqponmlkjpttsrqponmlkjpttsrqponmlkjpsttsrqponmlkjpsttsrqponmlkjosttsrqponmlkjnrttsrqponmlkjmqttsrqponmlkjlpttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjipsttsrqponmlkjgosttsrqponmlkjenrttsrqponmlkjdlpttsrqponmlkjclpttsrqponmlkjckpttsrqponmlkjckpttsrqponmlkjckpttsrqponmlkckpsttsrqponmlkjckpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjckpttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjbkpsttsrqponmlkjckpsttsrqponmlkj,+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*)ihgf e dcbiihgf e dcbiihgf e dcbiihgfe dcbiihgfe dcbiihgf e dcbiihgf e dcbiihgf e dcbiihgfe dcihgfe dcihgfedcbiihgf edcihgfedcihgfe dcihgfe dcbihgfe dcbihgfedcbihgfedcihgfedcihgfedcihgfedcihgfedcihgfedcihgfedcihgfedcihgfe dcihgfe dcihgfe dcjiihgfe dcjiihgfe dcihgfe dcihgfe dcjiihgfe dcjiihgfe dcjiihgfe dcihgfe dcihgfe dcihgfe dcihgfe dcjiihgfe dcjiihgfe dcjiihgfe dcihgfe dcihgfe dcihgfe dcjihgfe dcjihgfe dcjihgfe dcjiihgfe dcjiihgfe dcjiihgfe dcjiihgfe dcjiihgfedcjiihgfedcjiihgfe dcjiihgfe dcjiihgfe dcjiihgfe dcjiihgfe dcjiihgfe dcjiihgf e dcjiihgf e dcjiihgfe dcjiihgf e dc                                                  )7()7()7()7()7()7()7()7()6()6()7()7()9()9()7()7()7()6()6()6()7()7()6()6()6()6()6()6( )5( )5()6()6()6()6()6()6()6()6()6()6()7()7()7()6()6( )5( )5()6( )5( )5()6()6()6()6()6()6( )5( )5( )5( )5( )5()6()6( )5(ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _cbba` _ba` _ba` _ba` _ba` _ba` _cbba` _cbba` _cbba` _cbba` _cbba`_cbba`_cbba`_ba`_ba` _cbba` _cbba` _cba`_cba`_cba`_cba`_cba`_cba`_cbba`_cbba`_cbba`_cbba`_cba`_cba`_cba`_cba` _cbba` _cba` _cba` _cba` _cba` _cba` _cba`_cba`_cba` _cba` _cba` _cba` _cba` _cba` _cba` _cba` _cba` _cbba` _cba` _cbba` _cbba` _cba` _                                             (&'&(&'&(&'&(%'&(%'&(&'&(%'&(&'&(''&(&'&(&'&(%'&(%'&(%'&(%'&(#'&(#'&($'&(%'&(%'&(('&(('&()'&()'&(&'&(&'&(&'&(''&(('&(&'&(#'&($'&($'&($'&(%'&(%'&(%'&(%'&(&'&(%'&(%'&(#'&(#'&($'&($'&($'&(&'&(''&(&'&(&'&(&'&(%'&(%'&(%'&(%'&(''&(''&(%'&($'&($'&($'&(&'&(&'&(&'&_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_ ^]\[_^] \[_^]\[_ ^] \[_ ^]\[_ ^]\[_^]\[_^]\[_ ^]\[_ ^]\[_ ^]\[_ ^]\[_ ^]\[_^] \[_^] \[_^] \[_^] \[_^]\[_^]\[_^]\[_^]\[_^] \[_ ^]\[_ ^]\[_ ^]\[_ ^]\[_ ^]\[_^] \[_ ^] \[_ ^] \[_^] \[_^] \[_^]\[_^]\[_ ^]\[_^]\[_^]\[_^]\[_ ^]\[_ ^] \[_^] \[_^] \[_^] \[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[                                   &%&% &% &%&%& %& %& %!&%!&%!&%"&%!&%!&% &%!&%!&%!&%&%&%&% &% &%"&%"&%!&%!&%"&%!&% &%&%&% &% &% &% &% &% &% &% &%"&%"&%"&%"&%!&%#&%"&%!&%!&%"&%"&%!&%!&%!&%"&%"&% &%#&% &%!&%"&% &% &%!&%[&ZY[&ZY[&ZY[&ZY['ZY['ZY[&ZY [%ZY ['Z Y ['Z Y [&ZY [&Z Y [&ZY [%ZY [&ZY [%ZY [%ZYX[ [$ZYX[[%ZY [%ZY[&ZY [%ZY [#ZY [#ZY [#ZY [%ZY [%ZY [%ZY ['Z Y ['Z Y [&Z Y [%ZY [%ZY [%Z Y [%Z Y [%ZY [&ZY ['Z Y ['Z Y ['Z Y [(Z Y ['Z Y ['Z Y ['Z Y[(Z Y [&Z Y [%Z Y [%Z Y [&ZY [&ZY['ZY ['Z Y [&ZY ['Z Y ['Z Y ['Z Y ['Z Y [%ZY [$ZY [$ZY [$ZY [$ZY [&ZY [&Z Y                                                                   %%$ #%%$ #%$$ #%%$ #%%$ #%%$ #%&$ #%'$#%'$#%'$#%'$#%($#%'$#%'$#%&$#%&$#%'$#%%$ #%%$ #%%$ # %)$# %)$#%'$#%%$#%&$#%&$#%&$#%&$#%%$#%$$#%$$#%$$#%%$#%%$#%'$#%'$#%&$#%'$#%($#%($#%'$#%%$#%&$#%%$ #%%$ #%%$#%%$#%&$#%&$#%'$#%'$#%($#%'$#%&$#%&$#%&$#%'$#%&$#%%$#%'$#%'$#%'$#%'$#%&$#XWV UYX XWV UYX XW V UXWV UXWV UXWV UXWV UXWVUY XWVUY XWVUXWVUYX XWVUYX XWVUYX XWVUXWVUXWVUXWVUXWV UXWV UYX XWV UYX XWVUYX XWVUYX XW VUYXXW VUXWVUXWVUXWVUXWVUYXWVUYXW VUYXW VUYXW VUYXWVUYXXWVUYX XWVUYX XWVUYXXWVUXWVUXWVUXWVUYXXWVUYXXWVUYXWVUY XW V UY XW V UY XW VUYXW VUYX XW VUY XWVUY XWVUY XWVUYX XWVUYX XWVUYX XWVUYX XWVUYX XWVUYXWVUXWVUYXXWVUYX XWVUY XWVUXWVUXWVUXWVU                                           ,#",#",#"-#"-#"+#",#",#"-#"-#",#"-#",#",#".#".#".#",#",#",#".#".#"-#"-#"-#"-#"-#"-#"/#"0#"/#"-#"-#"-#"-#"-#"-#"-#"-#"-#"-#".#".#".#".#".#".#",#",#",#",#",#",#"-#"-#"-#".#"-#"-#".#"/#".#"-#".#"UTSRQUTSRQUTSRQUTSRQUTSRQUUT SRQUUTSRQUUTSRQUTSRQUUTSRQUUTSRQUTSRQUTSRQUT SRQUTS RQUTS RQUTS RQUTSRQUTSRQUTSRQUTS RQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUUTS RQUTS RQUTSRQUTSRQUTSRQUTSRQUTS RQUTSRQUTSRQUTSRQUTSRQUTS RQUTS RQUTS RQUTS RQUTS RQUTSRQUUTSRQUUTSRQUUTSRQUUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUUTSRUTSRQUTSRQUTSRQUTSRQUUTSRQUTSRQUTSR              -"!-"!-"!,"!+"!,"!,"!,"!."!."!."!."!,"!,"!,"!-"!-"!-"!,"!-"!-"!-"!" !-"!."!-"!/"!/"!."!,"!,"!,"!."!/"!/"!."!."!/"!/"!."!."!."!-"!."!/"!-"!-"!-"!-"!-"!-"!-"!-"!-"!-"!+"!+"!+"!."!."!."!("!"!,"!."!."!-QP O-QP O-QP O,QP O+Q P O,QP O,QP O,QP O.QP O.QPO.QP O.QPO,QP O,QP O,QP O-QP O-QP O-QP O,QP O-QP O-QP O-QPQ O-QP O.QP O-QP O/QP O/QP O.QP O,QP O,Q PO,QP O.QP O/QP O/QP O.QP O.QP O/QP O/QP O.QP O.QP O.QP O-QP O.QP O/QP O-QP O-QP O-QP O-QP O-QP O-QP O-QP O-QP O-QP O-QP O+QP O+QP O+QP O.QP O.QP O.QP O(QPQPO,QP O.QP O.QPOPOO- - - , + , , , . .. ., , , - - - , - - - - . - / / . , , , . / / . . / / . . . - . / - - - - - - - - - - + + + . . . (, . .!9ON9ON9ON;ON;ON;ONONO=ONO=ONO9ON;ON8ON8ON;ON;ON;ON=ON=ON;ON>ONOONO=ONO=ONOONO=ONO9ON:ON6ON6ONONONO8ON6ON9ON999;;;<>==9;88;;;==;><<;;;;;<<<<=>==<=99;;;>=9:66<9:;;::=<;;>869!- !- !- !- !- !, !. !. !, !, !- !, !- !- !, !, !* !* !* !* !* !* !* !+ !+ !+ !+ !+ !' !) !* !* !* !* !) !) !) !) !+ !) !( !( !( !+ !+ !+ !+ !, !, !, !) !- !) !) !* !* !( !) !+ !* !( !. !. !. NMN;NM=NM>NM;NM;NMNMNMN}NMN=NMN?N---,-,..,,-,--,,****&&*+++++')****%$%)+)(((++++,),)-))*)((**(... NMNMN=MN=<::<<<===<=<;;<<<<<<<<;:::99::|=======7==9'"('"('"('$(''('&('&('%('%('%('#('%('%('$('$('$('$('%(''(''('&('&(''(''('(('(('(('((''('(('(('(('&('&('&(''('(('(('(('(('((')(')(')(')(')('*(',(',(',('+('+('+('-(',('+('+('-('-(',(',(',(',('-( ]^_` ]^_` ]^_` ]^_` ] ^_` ] ^_` ]^_` ]^_` ]^_` ]^_`]^_`]^_`]^_`]^ _`]^ _`]^ _`]^ _`]^_`]^_`]^_`]^_`]^_` ] ^_` ] ^_`] ^_`] ^_`] ^_`] ^_` ] ^_`] ^_`]^_`]^_`a]]^_`a]]^_`a]]^_`]^_`]^_`]^_`]^_`a]]^_`a]]^_`a]^_`a]^_`a]^_`a]^_`a]^_`a]^_`a]^_`a]^_`a]^_`a]^_`a]^_`a] ^_`a] ^_`a] ^_`a] ^_`a]^_`a]^_`a]^_`a]^_`a] ^_`a]^_`a]^_`a]^_`a                           ()*( )*( )*()*()*()*()*( )*()*( )*()*( )*( )*()*( )*( )*(!)*(!)*( )*( )*( )*( )*()*()*()*()*( )*( )*( )*( )*( )*(!)*(!)*()*()*()*()*()*()*()*()*() *() *( )*() *() *() *() *() *() *() *() *() *() *() *() *( )*( ) *( ) *( ) *() *( ) *( ) *( ) *`abcd`a bcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`abcd`aabcd`aabcd`aabcd`aabcd`aabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcda bc da bc dabcda bc da bc da bc dabc dabc dabc dabc dabc dabc dabc dabc dabc dabcdabcdeaabcdeaabc dabc deaa bc deaa bc deaa bc de                            *+ ,-*+ ,-.**+ ,-.**+ ,-.*+ ,-.*+ ,-.**+ ,-.*+ ,-.**+ ,-.**+ ,-.**+ ,-.**+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-. *+ ,-.*+ ,-.*+ ,-.*+ ,-. *+ ,-. *+ ,-. *+,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+,-. *+,-. *+,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-.*+ ,-.*+ ,- . *+ ,-. *+ ,-. *+ ,-. *+ ,- .*+ ,- .d efghijklmd efghijklmndd efghijklmndd efghijklmnd efghijklmnd efghijklmndd efghijklmnd efghijklmndd efghijklmndd efghijklmndd efghijklmndd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmndefghijklmndefghijklmndefghijklmndefghijklmnd efghijklmnd efghijklmndefghijklmndefghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmndefghijklmndefghijklmndefghijklmndefghijklmnd efghijklmnd efghijklmnd efghijklmndefghijklmndeefghijklmndeefghijklmndeefghijklmndeefghijklmndeefghijklmn efghijklmndeefghijklmndeefghijklmndeefghijklmn efghijklmnoe efghijklmnoe efghijklmnoeefghijklmnefghijklmnoefghijklmno efghijklmnoeefghijklmnoeefghijklmnoeefghijklmnoeefghijklmnoñññññññ./0/,(# ./0.+(# ./0.*&" ./0/-*&! ./0/-)%! ./0/-(%! ./0/,(#  ./0.+(#  ./0.*&" ./0/-*%! ./0/-)%! ./0/-(%! ./0/,(#  ./0.+(#  ./0.*&" ./0/-*&! ./0/-)%! ./0/-(%! ./0/,(#  ./0.+(#  ./0.*&" ./0/-*&!  ./0/-)%!  ./0/-)%!  ./0/-(%   ./0/,(#   ./0.+(#   ./0.*&"  ./0/-*&!  ./0/-)%!  ./0/-(%!  ./0/,(#   ./0.+(#   ./0.*&"  ./0/-*&! ./0/-)%! ./0/-)%! ./0/-(%   ./0/,(#   ./0.+(#   ./0.*&" ./0/-*&! ../0/-)%! ../0/-)%! ../0/-(%! ../0/,(#  ../0.+(#  ../0.*&" ./0/-*&! ./0/-)%! ./0/-)%! ./0/-)%! ../0/-($  ../0/,(#  ../0.+(#  ./0.*&" ../0/-*%! ./0/-)%! ./0/-)%! ./0/-(%  ./0/,(#  ./0.+(#  ./0.*&" ./0/-*&! no pqrstspi`UMHFFEEFno pqrstsog_TLHFFEEFFno pqrstrne\RKGFFEEFFno pqrstqmdZPJFFEEFno pqrstpkcYOIFFEEFno pqrstspkaXNIFFEEFFno pqrstspi`UMIFFEFFno pqrstsog_TLHFEEFFno pqrstrne\RKGFEEFFno pqrstpldZOJFFEEFFno pqrstpkcYOIFEEFno pqrstspkaXNIFEEFno pqrstspi_UMHFEEFno pqrstsog_TLHFEEFno pqrstrne\RKGFEEFno pqrstqldZPJFFEFno pqrstpkcYOIFEEFno pqrstspkaXNIFEEFno pqrstspi`UMHFEEFno pqrstsog_TLHFFEEFFno pqrstrne\RKGFEFFno pqrstqldZPJFFEFFno pqrstplcZOIFFEFFno pqrstpkbXNIFEEFFno pqrstspkaXNIFEEFno pqrstspi`UMHFEEFFno pqrstsog_TLHFEEFFno pqrstrne\RKGFEFFno pqrstqldZPJFFEFFno pqrstpkcYOIFFEFFno pqrstspkaXNIFEEFFno pqrstspi`UMHFEEFFno pqrstsog_TLHFEEFFno pqrstrne\RKGFEEFFno pqrstqldZPJGFEEFno pqrstplcZOIFFEFFno pqrstpkcXNIGF Fno pqrstspkaXNIF Fnopqrstspi_UMHFFEFFnopqrstsog_TLHFEEFFnopqrstrne\RKGFEEFFnoo pqrstqldZPJFFEEFFGnoo pqrstplcYOIFEEFGnoo pqrstpkcXNIFFEEFFGoo pqrstspkaXNIFFEEFFGoo pqrstspi_UMHFFEEFFGoo pqrstsog_TLHFFEFFGoo pqrstrne\RKGF FGo pqrstqmdZPJGFEEFFGo pqrstplcZOIFFEEFFGo pqrstpkcXNIFFEEFGo pqrstpkbXNIFFEEFGoo pqrstspkaWNIFFEEFFGoo pqrstspi`UMHFFEF FGoo pqrstsog_TLHFFEFFGo pqrstrne\RKGFEEF FGoo pqrstqldZPJFFEEFFGo pqrstplcZOIFFEEFFGo pqrstpkcXNIFFEEFFGo pqrstspkaXNIFFEEFFGo pqrstspi_UMHFFEEFFGo pqrstsog_TLHFEEFGo pqrstrne\RKGFEEFGo pqrstqmdZPJGFEEFFGĹ||zz|ö||zz||}||zz||||zz|Ƽ||zz|Ƽ||zz||Ĺ||z||ö|zz||}|zz||ƾ||zz||Ƽ|zz|Ƽ|zz|Ĺ|zz|ö|zz|}|zz|Ⱦ||z|Ƽ|zz|Ƽ|zz|Ĺ|zz|ö||zz||}|z||Ⱦ||z||ƾ||z||Ƽ|zz||Ƽ|zz|Ĺ|zz||ö|zz||}|z||Ⱦ||z||Ƽ||z||Ƽ|zz||Ĺ|zz||ö|zz||}|zz||Ⱦ}|zz|ƾ||z||Ƽ}| |Ƽ| |Ĺ||z||ö|zz||}|zz||Ⱦ||zz||}ƾ|zz|}Ƽ||zz||}Ƽ||zz||}Ĺ||zz||}ö||z||}}| |}}|zz||}ƾ||zz||}Ƽ||zz|}Ƽ||zz|}Ƽ||zz||}Ĺ||z| |}ö||z||}}|zz| |}Ⱦ||zz||}ƾ||zz||}Ƽ||zz||}Ƽ||zz||}Ĺ||zz||}ö|zz|}}|zz|}}|zz||}                                                                                  FGHIJK LKFGHIJK LKFGHIJKK LKFGHIJKK LKFGHIJK LKFGHIJKLKFGHIJK LKFGHIJK LKLKFGHIJK LKFGHIJKKLKFGHIJKK LKFGHIJKKLKFGHIJKLKFGHIJKL KFGHIJK L KFGHHIJK L KFGHIJK LKFGHIJK LKFGHIJKL KFGHIJKL KFGHIJKL KFGHIJKL KFGHIJK LKLKFGHIJK LKLKFGHIJK L KFGHIJK L KFGHIJK L KFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHHIJK LKFGHHIJK L KFGGHHIJKLKFGGHHIJKL KFGGHHIJKL KFGGHHIJK L KFGGHHIJK L KFGGHHIJK L KGHIJKL KGHIJKL KGHIJKL KGHIJK L KGHIJK L KGHIJKL KGHIJKLKLGHIJKLKL KLGHIJKL KLGHIJKLKGHIJK L KGHIJKLKLGHIJK LKLGHIJK LKLGHIJKLKLGHIJKKLKL KHIJKKLKHIJKK LKL KGHHIJKLKL KGHHIJKLKGHHIJKLKGHHIJKLKHIJK LK|} |} |} |} |} |}|} |} |} |}|} |}|}|} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |} |}}|}} |}} |}} |}} |}} } } } } } } }} } }} }} } }}   } }}}  2 3 9 ; ; ; : 7 7 : 9 9 9 : : ; 9 9   9 9 9 = < < < < < < < = = < < < < < < <  =  =  =  =  =  =   < < = } KL!M KL!MKLMLMKL!MKL!MKL!MKL"MKLMKLMKLMKLMKLMKLMKLMKLMLMKLMLMKLMLMKL#MKLLKKLL#MKL!MKL MKLML!MKLML!MKLML!MKLMLMKLMKLMLMKLMKL MKL%MKL&MKL&MKL$MKL%MKL%MKL%MKL$MKL$MKLL$MKLL$MKLL$MKLL&MKLL&MKLL&MKLL'ML'ML'ML&ML&ML'ML%ML*ML*ML)ML(ML'ML'ML'ML(MKL'MKL'MKL*MKL)ML)M ! !!!!"##! !!! %&&$%%%$$$$$&&&'''&&'%**)('''(''*)) %MN&MN&MN%MN$MN%MN%MN%MN%MN%MN%MN*MN%MN%MN%MN&MN'MN'MN&MN(MN&MN&MN&MN&MN&MN(MN'MN'MN%MN#MN#MN#MN$MN$MN%MN$MN$MN$MN%MN$MN$MNMNM NM NM!NM!NM!NM!NM"NM"NM NMNM!NM"NM"NM!NM!NM"NM"NM!N MNM NM NM!N%&&%$%%%%%%*%%%&''&(&&&&&(''%###$$%$$$%$$  !!!!"" !""!!""!   ! -! ,! ,! +! +! +! -! +! ,! ,! ,! ,! ,! -! ! !$! /! /! /! /! .! -! -! -! -! -! -! ,! ,! -! +! ,! -! -! .! .! .! 0! 1! 1! 1! 2! 2! 2! 2! 3! 3! 3! 3! 4! /! 4! 3! 2! 2! 2! 2! 2! 2! 2! 1! 1! 5! 5! 6!/NO2N O,NO+NO.NO1N O1N O2N O2N O2N O2N O1N O1N O1N O0NO/NO0NO1N O0NO2N O*NON O(NON O1N O/NO/NO/NO)NONO)NONO,NO,NO+NO+NO+NO*NO,NO,NO,NO,NO+NO'NO'NO'NO)NO(NO(NO'NO%NO$NO%NO%NO&NONO-NO&NONO)NO&NO#NO$NO%NO%NO'NO(NO$NO%NO&NO           !  !                  !           !"=!"=!"=!";!";!"!"!6!"!"!=!"!8!"MNM~MNMMNM7MNMN))000, 3 3 3 3 3 3 4 4 4 46;88888;:;<;;:9>~<>7  ! = ! < !> ! = ! < !< !; !9 !9 !6 !4 !4 !5 !5 !5 !2 !0 !1 !0 !0 !0 !0 !/ !/ !. !- ! MN!MN!MNM NM!NM"NM$NM$NM$NM$NM&NM&NM&NM(NM(NM*NM(NM+NM,NM,NM,NM-NM-NM,NM*NM-NM,NM,NM*NM+N M2N M2N M1N M1NM.NM.N M1N M4NM7NM7NM0N M2NM9NM;NM;NM9NM9NM=NM=NM=NM  ; ; ; ; ; ; ; ; 9 = >  9 : : 9 : < ; : ; ; ; ; ; ; ; : : : : : : 9 8 8 8 7 7 7 3 2  8 3  7 7 8 9 9 8 5 1 1 5 9 8 2   +MLK*MLK*MLK+MLKM*ML)ML)ML)ML)MLK+MLK+MLK)MLM LK'MLM LK'MLM LK'MLK'MLK'MLK)MLK)MLKM(MLK)MLK)MLK)MLK)MLK)MLK*MLK(MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK&MLK$MLK$MLK#MLK#MLK#MLK#ML K"MLM LKLKL"MLMLKL!MLKLKL!MLKL!MLKL!MLKL$MLKLMLKLMLKLMML KLMML KLMML KLMLKLMLKLMLKLMLKLKL+**+*))))++) ' ' '''))()))))*(&&&&&&&&&&&&&&&$$#### " "!!!!$      !%   !%   !%   !%    !%   !%    "&    #'   #(    %(   !%)   !%)   !%)   !%)   !%)   !&*   "&*    #'+    #(,   !%(-   !%)-   !%)-   !&*-   "&*.    #'+.    #(,/    !%(-/    !%)-/    !&*-/   "&*.0   #'+.0   $(,/0  !%)-/0  !%*-/0  "&*.00    #'+.00    $(,/00   !%)-/00   "&*-/00    #'+.00    $(,/00   !%)-/00  "&*./00    #'+.00     $(,/00   !%)-/00   "&*./00    #'+.00 !%)-/00   "&*-/00    #'+.00   !%)-/00  "&*-/00   #'+.00  !%)-/00   "&*-/00    #'+.00   !%)-/00   "&*-/00   $(+.00   "&*-/00   #'+.00  !%(,/00    "&*-/00KLKJIHG FINXKKLKJIHG FINXKKLKJIHG FINXKK LKJIHG FINXLLK LKJIHGFEFFIOZLLKKLKJIHGFEFFJOZLLKLKJIHG FGKR\LLKK LKJIHG FHLT^KKLKJIHG FHMU_KKLKJIHG FINXaKKLKJIHG FINXbKKLKJIHGFEFFINXbKKLKJIHGFEFINXbKKLKJIHGFEFINXcKKLKJIHGFEFIOYcKKLKJIHGFEFFJPZdKKLKJIHGFEFGKR\eKK LKJIHG FHLT^gKK L KJIHG FIMU`iKK L KJIHG FINXakKK LKJIHGFEFFINXckKK LKJIHGFEFIOYclKK LKJIHGFEFFJPZdlKK LKJIIHGFEFGKR\enKK LKJIIHGFEFHLT^goKKLKJIIHGFEFHMU_ipKKLKL KJIHGFEFFINXakpKKLKLKJIHGFEFFIOYckpKKLKLKJIIHGFEFGJPZdlpKKLKLKJIIHG FGKR\enrKKLKJIIHGFEFHLT^gosKKLKJIHGFEFIMV`ipsKKLKJIIHGFEFFINXbkpsKK LKJIIHG FJOZdlptKKLKJIIHGFEFGKR\enrtKKLKJIHGFEFHMT^hostKKLKJIHGFEFFINWaipstKKLKJIHGFEFGJOZckpstKKLKJIHGFEFGKR\emqttKKLKJIHGFEFHLT^gosttKKLKJIHGFEFFINWaipsttKKLKJIHGFEFFJOZclpsttKKLKJIHG FGKR\enqttKLKJIHG FHMT^gosttKLLKJIHGFEFFINWaipsttKLKJIHGFFEFFJOZclpsttKLKJIHGFEFGKR\enqttKLKJIHG FHMU^hosttKLKJIHGFGIOYbkpstt L KJIHG FGKR[emqttLKJIHGFEFFHMU^gosttLKJIHGFEFFIOXbkpsttLKJIHGFEFGKQ[emqttLKJIIHG FHMU^hosttL KJIHGFEFFIOYbkpsttLKJIHGFEFGKQ[emqttsLLKJIHGFEFFHMU^gosttsLL KJIHG FGJOYbkpsttsLLKJIHG FHLR\emqttsLKJIHGFEFINV_hosttsLKJIHGFEFGKQZdkpsttsKJIHGFEFFHMT^fnrttsKJIHGFEFGJOXajpsttsL KJIHG FHLR\emqtts} |} |} | } | }|z||}|z||} |} } |} |} |} |}|z||}|z|}|z|}|z|}|z||}|z|} } | } | } | }|z|| }|z| }|z|| }|z|} }|z|Ä}|z|Ą }|z||Ƅ}|z||Ƅ}|z|}Ƅ} |}Ʉ}|z|˄}|z|˄}|z||˄ } |̈́}|z|}̈́}|z|̈́}|z||̈́}|z|}̈́}|z|}̈́}|z|̈́}|z||̈́}|z||̈́} |}} |}|z||}||z||}|z|}} |}|} } |}}|z||}|z||}|z|}} | }|z||}|z|}ˆ}|z||ˆ } |}ˆ} |}|z|}|z|}}|z||}|z|} } |)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,)-/0 0/ .-,*-/0 0/ .-,*.00/ .-,+.0 0/ .-,/0 0/ .-,-/0 0/ .-,-/0 0/ .-,-/0 0/ .-,-/0 0/ .-,-/0 0/ .-,-/0 0/ .-,-/0 0/ .-,.0 0/ .-,.0 0/ .-,/00/ .-,/0 0/ .-,/0 0/ .-,/0 0/ .-,/0 0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-,0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-, 0/ .-,0/ .-,+00/ .-,+00/ .-,+00/ .-,+00/ .- ,+00/ .- ,+00/ .-,+0/ .-,+0/ .-,+0/ .-,+0/ .-,+0/ .-,+0/ .-,+ckpsttsrqponmlkjckpsttsrqponmlkjckpsttsrqponmlkjckpttsrqponmlkjclpttsrqponmlkjdlpttsrqponmlkjenrttsrqponmlkjgosttsrqponmlkjipsttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjkpsttsrqponmlkjlpsttsrqponmlkjlpttsrqponmlkjnrttsrqponmlkjosttsrqponmlkjpsttsrqponmlkjpsttsrqponmlkjipsttsrqponmlkjipsttsrqponmlkjiqttsrqponmlkjirttsrqponmlkjisttsrqponmlkjisttsrqponmlkjisttsrqponmlkjisttsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrq ponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrqponmlkjitsrq ponmlkjitssrqponmlkjitssrqponmlkjitssrqponmlkjitssrqponmlkjihssrqponmlkjihtssrqponmlkjihssrqponmlkjihssrqponmlkjihssrqponmlkjihssrqponmlkjihsrqponmlkjihsrq ponmlkjihsrqponmlkjihsrqponmlkjihsrqponmlkjihsrqponmlkjih,+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),+*),++*),++*),++*),++*),++*),++*)+*)+*)+*)+*)+*)+*)+*) +*) +*) +*) +*) +*) +*) +*)jiihgfedcjiihgfedcjiihgfedcjiihgfe dcjiihgfe dcihgf edcbiihgfe dcihgf e dcihgfe dcihgfe dcihgfe dcihgfe dcihgfe dcihgfe dcihgf e dcihgf e dcihgfe dcihgfe dcihgfe dcihgfedcihgfedcihgfe dcihgfe dcihgfe dcihgfe dcbiihgfe dcbiihgfe dcbiihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfedcbihgfedcbihgfe dcbihgf e dcbihgfe dcbihgfe dcbihgfe dcbihgfe dcbihgfedcbihgfedcbihhgfedcbihhgfe dcbihhgf e dcbihhgfe dcbihhgfe dcbihhgfe dcbhgf edcbhgfe dcbhgfe dcbhgfe dcbhgf e dcbhgfe dcbhgfe dcbhgf e dcbhgf e dcbhgfedcbhgfedcbhgf edcbhgf e dc bhgf e dcb                                                  )6()6()7()6()6()7()6()8()8()8()8()8()8()8()8()6()7()7()6()7()7()7()7()8()8()8()9()8():():():():():():():():():()9():():():():();()<()<()<()<();();();();(')(<(')(<('))(;('))(;(')(:(')(;(')<('))(<()(<(')(;(')(;(')(;('<('cba` _cba` _cbba` _cba` _cba` _ba` _cbba` _cbba` _cbba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _cbba` _ba` _cbba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba` _ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba`_ba` _ba` _^baa` _^baa` _^bbaa` _^bbaa` _^baa` _^baa` _^ba`_^bbaa`_baa`_^baa`_^baa`_^baa`_^a` _^                                          (&'&(%'&(%'&($'&(&'&(&'&($'&($'&($'&(%'&(%'&(&'&(&'&(&'&(!'&(!'&("'&(#'&($'&($'&($'&($'&($'&(%'&(%'&(&'&(&'&(&'&(''&(''&(%'&(%'&(%'&(%'&(%'&(%'&(%'&(%'&('%'&('$'&('$'&('$'&($'&(#'&(#'&(#'&('"'&('$'&%'&%'&$'&#'&$'&%'&$'&#'&#'&$'&#'&"'&"'&"'&"'&#'&_ ^]\[_ ^] \[_^] \[_^]\[_^]\[_^]\[_^]\[_^]\[_ ^]\[_ ^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_ ^]\[_^]\[_^]\[_^]\[_^]\[_ ^]\[_ ^]\[_^]\[_^] \[_ ^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_^]\[_ ^]\[_ ^]\[_ ^]\[_ ^]\[_^ ^]\[_^ ^]\[_^ ^]\[_^ ^]\[_ ^]\ [_ ^]\ [_ ^]\ [_ ^]\[_^ ^]\[_^^]\[^]\[^]\[ ^]\ [ ^]\ [ ^]\ [^]\ [^]\ [ ^]\ [ ^]\ [^]\ [^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [ ^]\ [                                          &%!&%!&%!&%!&%!&%!&% &%&%&%&%&%&% &% &%&%&%&% &% &%&%&%&%&%&%&%& %& %& %& %& %& %&!%&!%&"%&"%&#%&!%& %& %&!%&#%&#%&#%&!%&"%&"%&!%&!%&!%&"%&"%&"%&#%&#%&&%&%%&$%&$%&%%&%%&$%&$%&#% [%Z YX[ [%Z YX[ [%Z YX[ [&Z Y[(Z Y[(ZY[(Z Y [%ZY [%ZY [%Z YX[[&Z YX ['Z YX[[%ZYX[[%ZYX[['ZY[&ZY[&ZY['ZYX[[&ZY['ZY[&ZY['ZY[)ZY[)ZY[)ZY[(ZYX[[&ZYX[[%ZYX[%ZYX[%ZYX[[%ZYX[[$ZY[$ZY[$ZY[$ZY[$ZYX[%ZYX[$ZYX[%ZYX[%ZYX[$ZYX[%ZYX[&ZYX['Z YX['Z YX['Z YX['Z YX[(ZYX['ZYX[&ZYX[&ZYX[&ZYX[&ZYX['ZYX[)ZYX[(ZYX[(ZYX[&ZYX[&ZYX[$ZYX[%ZYX['ZYX['Z YX[(Z YX                      %%$ #%%$ #%'$#%'$#%($#%($#%($#%'$#%&$#%'$#%&$#%&$#%%$ #%%$ #%%$ #%&$ #%'$#%&$ #%&$#%'$#%&$#%%$ #%$$ #%$$ # %&$ # %&$ # %&$ # %'$ # %&$ # %&$ # %&$ # %&$ # %'$ # %'$ # %&$ # %($ # %'$ # %&$ # %&$ # %&$ # %'$ # %($ # %'$ # %&$ # %&$ # %($ # %)$ # %($ # %($ # %)$ # %)$ # %($ # %($ # %'$ # %'$ # %'$ # %%$# %$$# %$$# %$$# %$$# %$$# %#$# %&$ #XWV UXWV UXWVUYXXWVUYX XWVUXWVUYX XWVUXWVUXWVUXWVUXWVUXWVUXWV UXWV UXWV UYX XWV UXWVUXW V UYX XW VUXWVUXWVUXWV UXW V UXW V U XWV U XWV U XW V U XW V U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWV U XWVU XWVU XWVU XWV UTX XWV UTX XWVU XWVU XWV U                                                     ,#",#"*#"+#"+#"*#"+#"+#"+#"*#"+#"+#"+#"+#"+#",#",#"+#",#"-#"-#"-#"-#"-#",#",#",#",#",#"+#"*#"*#"+#"+#"*#"*#"+#"+#"+#"+#")#"*#"*#"*#")#")#")#"*#"*#"*#")#"(#"(#")#"(#"'#"&#"'#"'#"(#"(#"(#"(#")#"UTSRQUUT SRQUT SRQUT SRQUUT SRQUUT SRQUT SRQUT SRQUT SRQUT SRQUT SRQUT SRQUT SRQUTSRQUTSRQUTSRQUTSRQUTSRQUTSRQUTS RQUTS RQUTS RQUTS RQUTS RQUTS RQUTS RQUTSRQUTSRQUTS RQUTSRQUTSRQUT SRQUTSRQUTSRQUTSRQUTSRQUTS RQUTS RQUTS RQUTS RQUTSRQUTS RQUTTSRQUTSRQUTSRQUT SRQUT SRQUT SRQUT SRQUTSRQUTSRQUTSRQUTSRQUTSRQUT SRQUTTSRQUTT SRQUT SRQUTT SRQTSRQTS RQTS RQTS RQUTTS RQ                                      ."!/"!+"!,"!."!."!."!,"!-"!,"!."!-"!,"!,"!,"!,"!,"!,"!+"!-"!,"!,"!,"!+"!+"!*"!+"!+"!+"!+"!*"!)"!)"!"!)"!"!)"!*"!*"!*"!$"!"!-"!-"!."!-"!,"!-"!-"!-"!-"!,"!'"!"!!!"!"!!"!"!!"!"!*"!!"!"!*"!*"!*"!*"!*"!+"!+"!*"!*"!.QP O/QP O+QP O,QP O.QP O.QP O.QP O,QP O-QP O,QP O.QP O-QPO,QPO,QPO,QPO,QPO,QPO,QPO+QP O-QP O,QP O,QP O,QP O+QPOO+QO*QPO+QPO+QPO+QPO+QPO*QPO)QP O)QPQP O)QPQO)QPO*QPO*QPO*QPO$QPQPO-QPO-QPO.QO-QPOO,QPOO-QPOO-QPOO-QPOO-QPO,QPO'QPQPPO!QPQPO!QPQPO!QPQPO*QPO!QPQPO*QPO*QPO*QPO*QPO*QPO+QPO+QPO*QPO*QPO. / + , . . . , - , . -,,,,,,+ - , , , ++*++++*) ) ))***$--.-,----,'!!!*!*****++**!:ON:ON:ON>ONO=ONOON9ON8ON8ON8ON:ON:ON:ON:ON:ON:ON;ON8ON8ON9ON;ON;ON;ON;ON=9888::::::;889;;;;<8777777889999775 3 5 5 64 64 4 4 4 99177755 5 4 5 !. !+ !+ !* !) !) !) !* !, !, !, !, !. !- !- !- !- !+ !) !. !. !. !. !. !. !0 !- !+ !, !/ !/ !. !, !, !, !, !, !. !. !. !1 !0 !0 !0 !- !- !- !, !+ !+ !, !, !1 !/ !/ !/ !0 !1 !/ !2 !2 !2 !2 !/ ~NM=NMNMN=NMNNMNNMN=NMN=NMN}NMN|NM>NMNNM=NM9NM?N.++*)))*,,,,.++--+)....../,)*-/.,++***+- 1000---,++++ 0/./. 0/ 2 0 0 ,/ NMNM=MNM}MNM=MNM=MN=MN=MN=MN=MNMN;MN;MNM=MN!":!":!"9!"=!"=!";!"!"!MLM=MLM=<;:99=9 '2( '2( '2( '2( '2( '2( '2( '2( '2( '2( '3( '3( '4( '4( '3( '3( '3( '4( '5( '4( '4( '4( '4('6('6( '5( '5('6( '4( '5( '4( '4( '5( '5( '5( '5( '5( '4( '5( '3( '3( '2( '2( '3( '3( '3( '4( '4( '3( '5( '4( '4( '2( '4( '4( '3( '3( '3( '3( '3( '3( '4( '4( '4( ^_`a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^ _` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a^_` a^_` a ^_` a ^_` a^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^ _` a ^_` a ^_` a ^_` a ^ _` a ^ _`a ^ _` a ^_` a ^_` a ^_` a ^_` a ^ _` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^ _` a ^ _` a ^_` a ^_` a ^_` a                                                                 ()* ()* ()* ()* ()* (!)* ()* ()* ( )* (")* ( )* (")* (!)* ( )* ( )* ()* ()* ( )* ( )* ( )* ( )* ( )* ( )* ( )* ( )* ( )* ()* ()* ( )* ( )* ( )* ()* ()* ()* (!)*(")* (!)* (!)* ()* ()* ()* ()* ()* ()* ()* ()* ()*+(()*+( ()* ()*+(()* ()* ()* ()* ()* ()* ()* ()* ()* ( )* ( )*+( ( )*+(( )*+(( )*+ abc de abc de abc de abc de abc de a bc de a bc de a bc de a bc de a bcde abc de a bc de a bc de abc de abc de abc de abc de abc de abc de abc de abc de abc de abc de abc de abc de abc de abc de abc de a bc de a bc de a bc de abc de abc de abc de abc d ea bc d e abc d e abc de abc d e abc d e abc d e abc d e abc d e abc d e abc d e abc d e a bc defaa bc defa abc d e abc d efaabc d e abc d e abc d e abc d e abcd e abcd e abc d e abc d e abc d e abcd e abc defa abc defaabc d efaabc d ef                                                                                                                         *+ ,-./**+ ,-./**+ ,-./**+ ,-./**+ ,-./**+ ,-./**+ ,-./**+ ,-./*+ ,-./*+ ,-./*+,-./*+ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*+ ,-./*+ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./*++ ,-./+ ,-./*++ ,-./*++ ,- ./*++ ,- ./+ ,- ./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,- ./+ ,- ./+ ,- ./+ ,- ./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./efghijklmnopeefghijklmnopeefghijklmnopeefghijklmnopeefghijklmnopeefghijklmnopeefghijklmnopeefghijklmnopefghijklmnopefghijklmnopefghijklmnopefghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopefghijklmnopefghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopfghijklmnopeffghijklmnopeffghijklmnopeffghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopijijijijijijijƳƳƳƳƳƴƴƴƴƴƴƴƴƴ/0/,(#   /0.+'#   /0.*&"  /0/-*&!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-($   /0/,(#   /0.+(#   /0.*&"  /0/-*&!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!   /0/-)%!  /0/-($    /0/,(#   /0.+'#    /0.*&"   /0/-*&!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-($!   /0/,(#    /0.+(#    /0.*&"   /0/-*&!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!  pqrstspi`UMHFEEFFGHpqrstsog^TLHFEEFFGHpqrstrne\RKGFEEFFGHpqrstqmdZPJGFEEFFGHpqrstplcZOIFFEEFFGHpqrstpkcXNIFFEFFGHpqrstpkcXNIFFEFFGHpqrstpkcXNIFFEF FGHpqrstpkcXNIFEE FGHpqrstpkcXNIFFEEFFGHIppqrstpkcXNIFFEEFFGHIppqrstpkbXNIFFEF FGHIppqrstspkaWNIFFEF FGHIppqrstspi`UMHF FGHIpqrstsog_TLHFFEFFGHIpqrstrne\RKGFEEFFGHIpqrstqldZPJFFEEFFGHIpqrstplcZOIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEE FGHIpqrstpkbXNIF FGHIpqrstspkaWNIF FGHIpqrstspi`UMHFEEFFGHIpqrstsog^TLHFEEFFGHIpqrstrne\RKGFEEFFGHIpqrstqmdZPJGF FGHIpqrstplcZOIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEE FGHIpqrstpkcXNIFFEEFFGHIpqrstpkbXNIFFEF FGHIpqrstspkaWNIFFEFFGHIpqrstspi_UMHFEEFGHIpqrstsog_TLHFFEEFFGHIpqrstrne\RKGFFEFFGHIpqrstqmdZPJFFEFFGHIpqrstplcZOIFFEFFGHIpqrstspkcXNIF FGHIpqrstspkcXNIF FGHIpqrstspkcXNIF FGHIpqrstspkbXNIF FGHIpqrstpkcXNIF FGHIpqrstpkcXNIFFEFFGHIpqrstspkbXNIFEE FGHIpqrstpkbXNIFEE FGHIpqrstpkbXNIFEE FGHIpqrstpkbXNIFEE FGHIpqrstpkcXNIFEEFGHIĹ|zz||}ö|zz||}}|zz||}}|zz||}ƾ||zz||}Ƽ||z||}Ƽ||z||}Ƽ||z| |}Ƽ|zz |}Ƽ||zz||}Ƽ||zz||}Ƽ||z| |}Ƽ||z| |}Ĺ| |}ö||z||}}|zz||}Ⱦ||zz||}ƾ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ|zz|}Ƽ|zz|}Ƽ||zz||}Ƽ||z||}Ƽ||z||}Ƽ|zz|}Ƽ|zz |}Ƽ| |}Ƽ| |}Ĺ|zz||}ö|zz||}}|zz||}}| |}ƾ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz |}Ƽ||zz||}Ƽ||z| |}Ƽ||z||}Ĺ|zz|}ö||zz||}}||z||}||z||}ƾ||z||}Ƽ| |}Ƽ| |}Ƽ| |}Ƽ| |}Ƽ| |}Ƽ||z||}Ƽ|zz |}Ƽ|zz |}Ƽ|zz |}Ƽ|zz |}Ƽ|zz|}                                                                                                                                         IJKK L K LIJKK L K LIJK L K LIJK LKLIJK L K LIJK L K LIJK L K LIJK L K LIJKL K LIJKL K LIJKKL K LIJKKL K LIJKK L K LIJKK L K LIJKL K LIJKKLKL K LIJKKL K LIJKLKL K LIJKLKL K LIJK L K LIJK L K LIJK LK LIJK LKLKLLIJKL K LIJK L K LIJKL K LIJKLK LIJK LKLK LIJK LKL KLIJK LKL KLIJK LK LIJK L K LIJKL K LIJKL KLIJKL KLIJK LKLIJKLK LIJK L K LIJKLK LIJK L K LIJK L K LIJK LK LIJK LK LIJKLK LIJK LKLIJK LK LIJKK LK LIJKK L KLK LIJKK LK LIJKK LK LIJK LK LIJK LK LIJK LK LIJKLK LIJKL K LIJKL K LIJK L K LIJK L K LIJKLK LIJKLK LIJK LK LIJK LK LIJK L K LIJK L K L                                                                                  L/ML/ML/ML0ML0ML0ML0ML/ML-ML.ML.ML-ML-ML/ML/ML-ML,M LML.M L3M L3M L1M L1M L2M L2M L1ML0M L2M L4M L3M L5M L4ML6ML6ML6M L5ML6M L5M L4M L4M LML.ML/M L4M L4M L2M L3M L3M L3M L3M L2M L4ML.ML0ML0ML0M L1M L1M L3M L3MLML3M L3M L1M L1M L1M L2M///0000/-..--//-, . 3 3 1 1 2 2 10 2 4 3 5 4666 56 5 4 4 ./ 4 4 2 3 3 3 3 2 4.000 1 1 3 33 3 1 1 1 2> ! = ! = ! = ! = ! = ! = ! = ! = ! = ! ~ ! } !  != != != !> ! } != !< != !> ! < !< !< != != != !~ !  ! = !  !M'NM'NM'NM'NM'NM(NM(NM)NM)NM)NM)NM*NM*NM,NM,NM(NM'NM*NM*NM-NM+NM)NM)NM)NM)NM(NM(NM(NM(NM*NM*NM+NM.NM/NM.NM.NM,NM,NM0NM-NM-NM)NM-NM-NM+NM+NM+NM+NM)NM.NMNM(NM+NM+NM*NM+NM-NM)NM,NM,NM)NM'NM)NM)NM*N&&&&&''((()**,,('**,+())'&&&'**+./,,)*/+*&++)+*+).(++**,),,)')))! =! =! !=! !=! =! =! =! (dcbadcbadcba`ddcba`dcba`dccba`cba`cba`cba`cba`cba`cba`cba`cba`cba`c ba`cba `cba`cba `cba `cba `cba `c ba `c ba `cba ` c ba ` c ba` c ba` c ba` cba` cba` cba` cba`cba`cba`cba`cba`cba`cba`cb ba`cbba`cbba`_cbba`_ba`_ba`_ba`_ba`_ba`_bba`_ba`_ba`_baa`_a`_a`_a`_a`_a`_a`_a` _a` _a` _a` _a`_a`_                       &('%('%('$('$('%('%('#('#('#('"('"('!('!('!('('(!'( '( '( '( '( '(!'("'("'($'($'(#'(&'(%'(''(''(''(''(''(''()'(*'&((*'(*'&((*'&(,'&(-'&(,'&(,'&(,'&(*'&(*'&(+'&()'& (+'& (+'& (,'& (,'& (,'& (,'&(,' &(,' &(,' &(+' &(+' &(+' &(,' &(-' &`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^ ]`_^ ]`_^ ]`_^ ]`_^ ]`_^ ]`_^ ]`_^ ] `_^]`_^ ]`_^ ]`_^]`_^] `_^] `_^] `_^] `_^] `_^] `_^] `_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]\``_^]`_^]\`__^]\_^]\_^]\_^]\_^]\_^]\_^]\_^]\_^]\_^]\ _^]\ _^]\ _^]\ _^]\ _^]\ _^]\_^] \_^] \_^] \_^] \_^] \_^] \_^] \_^] \                               '/&'/&'/&'0&'0& '1& '1&'0&'0&'0&'0& '1& '3& '3&'6&'6&'8&'7&'8&'7&'7&'7&'8&'8&'8&'9&%'':&%'':&';&':&';&';&':&%''8&%'9&%'&9&%;&%:&%:&%9&%9&%9&%9&%7&%6&%6&%6&%6&%3& %6&%2& %2& %2& %2& %1& %/&%/&%/&%/&%/&%/&%/&%.&%.&%]\[Z]\[Z]\[Z]\ [Z]\[Z ]\[Z ]\[Z] \[Z] \[Z] \[Z]\[Z ]\[Z ]\[Z ]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\ [Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\\[Z\[Z\ [Z\ [Z \[Z \[Z\[ Z \[ Z \[ Z \[!Z \[!Z \[ Z \[ Z \[#Z \["Z \[$Z \[$Z\[%Z\[%Z\[&Z\['Z\[)Z\[)Z\[*Z\[*Z\[*Z\[)Z\[*Z\[[+Z                             &/%$&0%$&0%$&0%$&1%$&2%$&/%$&/%$&0%$&2%$&1%$&1%$&1%$&1%$&1%$&1%$&1% $&2% $&1% $&1% $&0% $&0% $&0% $&/% $&0% $1% $0%$1% $/%$&%.%$/%$/%$/%$.%$-%$,%$,%$+%$,%$+%$+%$)%$)%$)%$)%$*%$+%$*%$(%$)%$'%$&%$%%$%%$$%$$%$$%$$%$$%$#%$"%$"%$#%$"%$ZY XWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYX WZY X WZYX WZYX WZYX WZYX WZYX WZYX WZYX WZYX WZYXWZYX WZYXWZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXW ZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZYXWZ YXWZ YXWZ YXWZYXWVZZYXWZYXWVZYXWVZYXWVZYYXWVZYYXWVYXWVZY YXWVYXWV                             #$#"$#!$#!$#!$#!$#"$#"$#$#$#$#$#$ #$!#$!#$!#$##$"#$"#$"#$"#$"#$##$##$##$$#$$#$$#$%#$$#$%#$%#$%#$'#$&#$'#$'#$(#$'#$)#$*#$+#$+#$+#$,#$,#$+#$+#$,#$+#$,#$.#$.#$/#$0# $1# $1# $1#$0# $1# $1# $3# $3# $3#WVU TWVU TW VU TW VU TW VU TWVU TWVU TWVU TWVU TWVU TWVUTWVUTWVUTW VUTW VUTWVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUT WVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTWVUTSWWVUTSWVUTSWVUTSWVUTSW VUTSWVUTSWVUTSWVUTSWVVUTSWVUTSWVVUTSWVUTSWVVUTSVUTSVUTS VUTS VUTS VUTSVUTS VUTS V UTS VUTS VUTS VUT S                                         #""#""#""#$"#%"#$"#&"#&"#&"#%"#&"#&"#&"#&"#'"#'"#("#'"#("#("#("#("#("#*"#*"#,"#,"#,"#,"#+"#,"#+"#,"#,"#,"#,"#-"#."#."#/"#/"#/"#/"#0"#0" #2" #1" #1" #3" #2" #3" #3" #5" #4" #4" #5" #4"#6"#6"#6"#6"#6"#6"#7" TSRQ TSRQ TSRQ TSRQ TSRQ TSRQ TSRQ T SRQ TSRQ TSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTS RQTS RQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSRQTSSRQTSSRQSRQSRQSRQSRQSR QSR!Q SR#Q SR"Q SR!Q SR#Q SR"Q SR#Q SR#Q SR#Q SR#Q SR$Q SR$Q SR$QSR&QSR&QSR&QSR'QS R(QS R)QS R)Q             ! # " ! # " # # # # $ $ $&&&' ( ) )"#!"%!"%!"'!"'!"#!"#!"#!"%!"%!"&!"'!"%!"*!"*!"*!"(!"%!"&!"'!"'!"'!"'!")!")!")!")!")!")!")!")!"+!"*!"*!"*!"(!"(!"+!"+!"*!",!"*!"-!"-!",!",!"+!"-!".! "1! "1!"/!"/!"/!"-!"-!"-!",!",! "!",!"!"!5! "5! "2! "4!QPOQPOQPOQ POQ POQ POQ POQ POQ POQ POQ POQ POQ POQ POQ POQ POQPOQPOQPOQPOQPOQPOQPOQ POQ POQP OQ POQP OQP$OQP$OQP%OQP#OQP#OQP$OQP$OQP$OQP%OQP&OQPOP OQPOP OQ P OQP$OQP$OQP%OQP&OQP'OQP&OQP%OQP&O Q P&O QP(OQP+OQP+OQP*OQP+OQP+OQP*OQP*OQP*O QPQP*OQPQPP.O QP,O QP,O QP0O                  $$%##$$$%&   $$%&'&%& & (++*++*** *. , , 0! !=! !=! !~! !=! !>! !|! =! =! >! !=! !;! :! ;! =! :! !; !; ! = !  9NM5N M3N M3N M4N M3N M3N M5N M5N M5N M3N M3N M2N M2N M0NM1N M0NM1N M1N M1N M/NM1N M3N M2N M/NM+NM(NM-NM+NM,NM,NM.NM,NM,NM,NM+NM+NMNNM*NM+NM-NM/NM.NM.NM.NM,NM*NM+NM+NM*NM*NM)NM)NM*NM%NM#NM$NM%NM%NM%NM%NM$NM$NM%NM%NM41 0 1 2 0 1 2 3 3 3 3 2 2 ,- ./ 1 1 /1 3 2 /+(-+,,.,,,++*+-/...,*++**))*%#$%%%%$$%% MLM=MLM:ML9ML:ML9ML9ML9ML9ML:ML:ML:ML:ML8ML8ML:ML;ML;ML;ML8ML8ML8ML5M L:ML4MLML7ML9ML7ML9ML7ML6ML6ML3M L7ML0MLML7ML7ML7ML6ML6ML6ML3M L4M L0ML0ML0ML1M L1M L1M L0ML/ML/ML/ML/ML0ML2M L.ML.ML,MLM L,MLM L,ML,ML,ML<>=:9:9999::::88:;;;8885 :479797663 707776663 4 0001 1 1 0////02 .., , ,,, '4( '4( '4( '4( '4( '4( '5( '4( '4( '4( '4( '4( '4( '5( '5( '4( '5( '4( '4( '4( '2( '2( '3( '3( '3( '5( '5( '5( '5( '5( '5( '5('6( '5( '5( '5( '5( '5('6( '5( '5( '5( '5('6('6('6('6('6('6( '4( '4( '4( '4( '4( '5( '4( '4( '4( '4( '4( '3( '4( '5( '5( ^_` a ^_` a ^_` a ^_` a ^_` a ^ _` a ^ _` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_` a ^_` a ^ _` a ^ _` a ^_` a ^_` a ^ _` a ^_` a ^_` a ^_`a ^_`a ^_`a ^_` a ^_` a^_`a ^_`a ^_`a ^_` a ^_`a ^_`a^_`a ^_` a ^_` a ^_` a ^_`a^_` a^_` a^_` a^_` a^_` a^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_`a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_`a                                                               ( )*+(( )* ()* ()* ()*(!)*+((")*+((")*+((")*+((")*+((!)*+((!)*+((!)*+( ( )*+( ( )*+( ( )*+(()*+(()*+(()*+(()*+(( )*+(( )*+(( )*+((")*+((")*+((")*+( ()*+( ()*+( ()*+(()*+(( )*+(( )*+(()*+(()*+(()*+(()*+(()*+(( )*+(( )*+()*+(()*+( ()*+ ()*+ ()*+ ()*+ ()*+ ()*+ ()*+ ()*+ ()*+()*+()*+(()*+(()*+(()*+ ()*+( ()*+ ()*+ ()*+ ()*+(()*+(()*+(()*+(( )*+ abc d efaabc d e abc d e abc d e abc d eabc d efaabcd efaabcd efaa bcd efaa bcd efaabcd efaa bcd efaabc defa abcd efa abcd efa abcd efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabcd efaabcd efaabcd efa abc d efa abc d efa abc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaa bc d efa bc d efaa bc d efa abc d ef abc d ef abc d ef abc def abc def abc def abc def abc def abc defabc defabc d efaabc d efaabc d efaabc d ef abc d efa abc d ef abc d ef abc d ef abc d efaabc d efaabc d efaabc d efaabc d ef                                                                                  + ,-./+ ,-./+ ,- ./+ ,- ./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,- ./+ ,- ./+ ,- ./+ ,- ./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+,-./+,-./+,-./+,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,- ./+ ,-./+ ,- ./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+,-./+,-./fghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnop /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-(%!   /0/,(#    /0.+(#    /0.*&"   /0/-*&!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!  /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%! pqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkbXNIFFEEFFGHIpqrstpkbXNIFEEFGHIpqrstspkaXNIFEE FGHIpqrstspi`UMIFFEF FGHIpqrstsog_TLHFFEF FGHIpqrstrne\RKGFEEFFGHIpqrstqldZPJFFEEFFGHIpqrstplcZOIFEE FGHIpqrstpkcXNIFFEEFGHIpqrstpkcXNIFFEFGHIpqrstpkcXNIFFEFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkbXNIFFEFFGHIpqrstpkbXNIFFEFFGHIpqrstpkbXNIFFEFFGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFEE FGHHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkbXNIFFEEFFGHIpqrstpkcXNIFEE FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFFEFFGHIƼ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ||zz||}Ƽ||zz||}Ƽ|zz|}Ƽ|zz|}Ƽ||zz||}Ƽ|zz|}Ƽ|zz |}Ĺ||z| |}ö||z| |}}|zz||}Ⱦ||zz||}ƾ|zz |}Ƽ||zz|}Ƽ||z|}Ƽ||z|}Ƽ||z||}Ƽ||z||}Ƽ||z||}Ƽ||z||}Ƽ||z||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||z| |}Ƽ||z| |}Ƽ||z||}Ƽ||z||}Ƽ||z||}Ƽ||z| |}Ƽ||z| |}Ƽ||z| |}Ƽ||z| |}Ƽ||z| |}Ƽ||z| |}Ƽ|zz |}Ƽ|zz|}Ƽ|zz|}Ƽ||zz||}Ƽ||z||}Ƽ||z||}Ƽ||zz||}Ƽ||zz||}Ƽ|zz |}Ƽ||z| |}Ƽ||z| |}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ||z||}                                                                                                                                                IJK L KLIJKKLKL KLIJKKLKL KLIJKKLKL KLIJKKLKLKLK LIJKLKLK LIJKLKL K LIJKL K LIJK L K LIJKLKLKLIJK LKLIJKLK LIJK L K LIJK L K LIJK L K LIJK L K LIJK L K LIJK L K LIJK LK LIJKL K LIJKL K LIJKL K LIJKL K LIJK L KLIJK L KLIJK L KLIJK LK LIJKK LK LIJKK L KLIJKK L KLIJKKLKLKLIJKLKLKLIJKK LKLIJKK LKLIK LKLIJKK LKLIJK L K LIJK L K LIJK L K LIJK L KLKLIJK LK LIJKLK LIJK L K LIJK LK LIJKL K LIJK L K LIJK LKLK LIJK LKLKLIJK LK LIJK L KLIJK L KLIJKL KLK LIJKL KLIJKL KLIJKLKLK LIJKLK LIJKLK LIJKLK LIJK LK LIJKLKL K LIJKLK LIJKLK LIJKK LK LIJKL K L                                                                        L2M L3M L3M L4M L4M L4M L3M L3M L4M L4M L4M L3M L4M L2M L5ML6M L4M L2ML8ML7ML6M L5M L4M L4M L3MLML/MLML/MLML/ML9ML7M L4ML8ML8ML8ML7M L4M L4M L3M L4M L4ML7ML7ML7ML7ML7M L5M L4M L4M L4M L5M L5M L5M L3M L2M L3ML6ML6ML7M L5ML6ML6ML9MLML/MLML/M 2 3 3 4 4 4 3 3 4 4 4 3 4 2 56 4 2876 5 4 4 3///97 48887 4 4 3 4 477777 5 4 4 4 5 5 5 3 2 3667 5669//z ! ! = ! = ! = !  !8 !8 !8 !8 !; !< !< !< !; !9 !9 !; !; != != != !< !> ! = ! = ! < != != !> ! ; !< !; !; !< !< !< !? ! < !9 !9 !< !< !< !< !< !< !< != !< !< !M+NM+NM.NM.NM-NM-NM-NM-NM*NM*NM)NM)NM+NM*NM(NM(NM(NM*NM+NM+NM,NM-NM+NM.NM.NM.NM.NM-NM-NM*NM*NM'NM'NMNM'NM-NM+NM'NM,NM-NM,NM,NM-NM/NM0NM0NM0NM+NM+NM+NM*NM*NM+NM,NM-NM.NM/NM.NM*NM*NM*NM*NMNM*NMNM)NMNM)N+&..----**)(*)'((*'$%&$*+++)'$&#%%+(&+,**+. --,'(('))&'+,+''''(&&!  ?! !=! !()(( cdefg h ijc cdefg h i cd efg hicd efg hicd efg hic d e fg hc d efg hcd e fghbccd e fghbc d e fghbc d e fgbc d efgbc d e fbc de fbc defbc defabbc deabbcdeabc deabcd eabcd eabcd eabcdeabcdeabcdabcdabcd abcd abc d abc d ab"cdab"cdab#cdab%cab%ca b ca b cabca bca bca bc`a bc`abc`a bc`a bc`a bc`ab c `abc `abc ` abc `"abc` `!ab` a b`#a b`&ab`)ab``*a`*a`%a`$a`#a` a_``a_``a                                  ""#%%             " ! # &)**%$# ,--,-,+:,+6, +,,+ ,*+,b+*2+*'+*+*)9*)8* )*)*)*)*)*)*)(=) (5)(0)(*)()3()T(jk jijkjijZih:ih6i h,ih i*hiahgh9h g/h gfg#h g fgh gfg&fgfgfe2fe'fefed=ed9e d-edeMdc9dc8d cdcdcdcdcdcdYcb:cb:c b5cb-cb)cbc bcbcDba=b a5ba0ba*bab3abTa Z:6 , *a9 / #  &2'9/% M98 Y:: 5-) D= 50*3T,!+*,!+*,#+*$+*"+* +*+!*+"*+$*)++$*)+&*)+'*)+)*) +**)+** )+-* )+*/* )-*),*)**))*))*)'*)$*)*")*#)*%)*))*))*+) *1)*6)*;)*<)(;)(7)(2) (1) (1) (1) (-)(*)(')() ()!()!()"(),()-( )1()()3():(ihg fedihg fedihg fe dhgfe dhgfe d hg fe d hgfedhgfedhgfedcggfedcgfedcfedcfedc fedcfed cfed cfeed cedcedcedcedc edc edcedced"cd#cd%cd)cd)cd+c d1cd6cd;cd:cb9cb7cb4c b4c b2c b0cb.cb-cba%cbcba$cba#cb a!cb acb acb acbacbacba cb acb!ab!ab"ab,ab-a b1abab3ab8a`                   "#%))+ 16;:974 4 2 0.-%$# !     !!",- 138 *() ( *') ( *() (*,) (*,) (*.)(*,)(*)+)(,)(*)(*)())(')(&)($)($)($)(#)( )()() ()"()"()$()%())()*()+()+()/()0( )1( )1( )5()6()8()9();(){( dc b a dcb a dc b ad#cb ad c b ad"c bad!c badcc ba c ba c bac bac bac bac bac bac bac bac bac bac bac b ac b!a`c c b a` cb!a` cb a` c b$a`c b#a`c b#a`c b#a`c b%a `cb b%a `cb b&a `cb b&a ` b&a`b'a`b(a`b%a`b%a`b%a`)a`(a`&a`"a`"a` a`a`a`a$`a$`a&`_aa&`_aa*`_aa'`_a$`_a$`_a'`_ a'` _ a)` _ a*` _a,`_a,`_a+`_+`_*`_    #  " !                !  !   $ # # # % % & & &'(%%%)(&"" $$&&*'$$' ' ) * ,,++*('(=('(('(=('(;(':('9('8('7('7('7('7('6('6('3( '4( '1( '0('/('.('.('-('-('+('*('*('*(')('((''(''('&('%('%('$('"(' ('(!'("'("'(#'($'(&'(&'(''(''()'(+'(+'(-'(.'(0' (1' (1' (2' (5'(6'(9'&((:'&((8'&a`_a`_a`_^aa`_^aa`_a`_a`_^a a`_^aa `_^ a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a`_^a``_ ^a``_ ^`_ ^`_^`_^`_^`_^`_^`_^`_^`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^]`_^] `_^ ] `_^ ] `_^ ] `_^ ]`_^ ]`_^]`_^]`_^]`_^]`_^]`_^]_^]_^]_^]_^]_^]_^]_^]_^] _^] _^] _^] _^]_^ ]_^]\__^]\__^!]\                 !(+'&(','&.'&.'&('*'&,'&,'&,'&+'&*'&*'&*'&&'&&'&&'&$'&$'&$'&$'&$'&#'&#'&' &' &'!&'!&'!&'"&'"&'#&'#&'$&'&&'&&'&&')&')&'*&'*&',&'.&'.&'.&'.&'/&'/&'0& '1& '2& '4& '5& '5&'6&'7&'6&':&':&':&';&'>&_^]\_^^]\^]\^]\_^^]\[^]\[^]\[^]\[^]\[^]\[ ^]\[ ^]\[ ^]\[ ^]\[ ^]\[ ^]\[^]\[^]\ [^]\ [^]\ [^]\ [^]\ [^]\ [^]\ [^]\ [^]]\[^]]\[]\[]\[]\[]\[]\[]\[]\[Z]]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[ Z]\[ Z]\[ Z ]\[ Z ]\[ Z ]\[ Z ]\[ Z ]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z\[Z\[Z\[Z\[Z                     -&%,&%,&%+&%+&%+&%*&%(&%'&%&&%&&%&&%&&%&&%&&%%&%%&%$&%$&%#&%"&%"&%"&%"&%&%&%& %& %&"%&#%&#%&#%&$%&$%&%%&&%&)%&)%&(%&*%&+%&,%&,%&-%&-%&-%&.%&.%&.%&0% &1% &1% &1% &1%&0% &2% &2% &5%&8%&8%&7%$&&6%$&6%$&7%$\[[*ZY\[[*ZY\[[*ZY[+ZY[+ZY[+ZY[,ZY[*ZY[*ZY[*ZY[*ZY [-ZY [.ZY [-ZY [-ZY [-ZY [-ZY [-ZY[-ZY[-Z Y[.Z Y[,Z Y[+Z Y[+Z Y[+Z Y[-Z Y[*ZY[*ZY[*ZYX[[Z*ZYXZ,ZY,ZYXZ*ZYX+ZYX+ZYX)ZYX)ZYX)ZYX*ZYX(ZYX'ZYX'ZYX$ZYX$ZYX#ZYX#ZYX#ZYX"ZY X!ZY X ZY X ZY XZY XZY XZYXZY XZYXZYXZYXZYXZYXZYXWZZYXWZYXWZYXW                        %$!%$ %$ %$ %$% $% $%!$%!$%!$%!$%"$%"$%#$%#$%&$%'$%'$%($%)$%)$%)$%*$%*$%*$%+$%,$%+$#%%-$#%%,$#%%-$#%,$#%+$#%)$#%)$# %+$# %+$# %+$# %+$# %.$# %-$# %,$# %*$ # %*$ # %*$ # %)$ # %*$ # %*$ #%/$ #%/$ #%-$ #%-$ #%+$#%,$ #%-$ #%+$#%$,$#.$#.$#-$#,$#+$#*$#*$#YXWVYXWV YXWV YXWV YXWV YXWV YXWV YXWV YXWV YXW V YXW V YXW V YXW V YXW V YXW V YXW V Y XW VYXW VYXWVYXWVYXWVYXWVYXWVYXWVYXWVYXXWVYXXWVYXXWVUXXWVUXXWVUXXWVUXWVUXWVUXWVUXWVU XWVU XWVU XWVU XWVU XWVU XWVU XWVU XWV U XWV U XWV U XWV U XWV U XWV UXWV UXWV UXWV UXWV UXWVUXWV UXWV UXWVUXWWVUWVUWVUTWWVUTWWVUTWWVUTWVUTWVUT                                      $4# $4# $5#$6#$6#$6#$6#$6#$7#$8#$8#$8#$7#$9#$9#$;#$;#$;#$#"#=#"#=#"#;#"$#9#":#"9#"9#"9#"9#"9#"8#"8#"7#"7#"6#"6#"5# "6#"5# "5# "4# "4# "4# "4# "0#"0#"0#"0#"/#"/#"-#"-#"-#"-#",#".#",#",#"+#",#"*#"(#"'#" VUT S VUT S VUT SVUT SVUT SVUT SVUT SVUT SVUT SVUT SVUT SVUTSVUT SVUT SVUT SVUT SVUTSVUTSVUTSUTSUTSRUUTSRUUTSRUUTSRVUUTSRUTSRUTSRUTSRUTSRUTSRUTSRUTSRUTSR UTSR UTSR UTSR UTSR UTS R UTSR UTS R UTS R UTS R UTS RUTS RUTS RUTSRUTSRUTSRUTSRUTSRUTSRUTSRUTSRUTSRUTSRUTTSRUTTSRTSRTSRQTTSRQTSRQTSRQTSRQTSRQ                             #7"#8"#8"#8"#:"#;"#<"#<"#<"#<"#<"#<"#="#="#""!>"!"="!"="!"}"!="!<"!="!="!>"!"<"!<"!;"!;"!:"!:"!9"!:"!:"!6"!6"!6"!6"!4" !1" !1" !1" !4" !4" !4" !2" !2" !3" !1" !1" !1" !5" !5" !/"!1" !."!."!-"!S R*QSR)QSR)QS R*QSR*QSR)QSR)QSR*QSR*QSR*QSR*QSR+QSR,QSR,QSRR,QR-QR,QPR.QPR R/QPRR.QPRR/QR.QR/QR0QR0Q R/QP R0QP R0QP R1QP R2QP R3QPRR5QPR4QPR3QPR4QPR3QPR3QPR2QPR2QPR3QPR0QPR0QPR1QPR2QPR1Q PR.Q PR/Q PR/Q PRQ2Q PRQ2QPOPRRQ1Q PRQ0Q P2Q POQ2Q PORQ/Q P1QPO1QPO5QPO5QPO/Q PO1Q PO.Q PO.Q PO-Q PO *)) **))****+,,,-,. /././00 / 0 0 1 2 354343322300121 . / / 2 21 0 2 2 / 1155/ 1 . . -  "4!"8!"7!"6!"!"6!"!!"1!"!!"1!"!"2!"!"3!"!"3!"!"2!"!"2!"!"2!"!!"3!"O 000121/011000144 4 4 567:7;767877777777:=x=<<==}>5! 3! 5! 5! 5! 3! .! /! 0! 2! 5! 5! 5! 0! !! .! ! .! .! +! +! -! -! *! *! *! '! '! ,! .! -! ,! *! +! +! *! *! (! '! %! ! +! $! ! +! %! ! %! &! $! $! #! !! ! !! "! "! "! !! !! "! "! "! "! "! $! %! !! ! ! O$NO"NO"NO$NO)NO)NO(NO(NO'NO'NO'NO*NONO$NONO$NONO$NONO$NO&NO&NO*NO*NO*NO*NO+NO+NO-N O2N O2NO0NO.NO.NO.NO/NO/NO/NO/N O1NO0NO0NO0NONO0NONO0NO6NO6NONO.N O5N O4N O4N O4N O4N O3N O3N O3NO6NO6N O5N O3NO6NO6NO:NO8NO8NO:NO:NO:N                         ! %NM%NM#NM"NM"NM!NM!NM!NM!NM"NMNMNMNMNMNMNMNMNM NM NM NM"NM"NM!NM NMN MN MN"MN"MN#MN#MN$MN!MN!MN'MN(MN(MN(MN(MN'MN)MN(MN(MN(MN*MN+MN,MN,MN,MN*MN+MN,MN-MN-MN,MN*MN+MN+MN+MN,MN-MN-MN-MN-MN/M%%#""!!!!"   ""!   ""##$!!'((((')(((*+,,,*+,--,*+++,----/?  =  =   = = = w  : < ; : : : : : : : ; 4  4  5  6 7 6 4 3 4 4 6 6 7 7 4 4 2 2 ,ML-ML-ML-ML+ML+ML*ML*ML)ML*ML(ML+ML&ML&MLML%MLML'MLML,MLKM#MLMLKM,MLKM+ML*ML-ML#MLML#MLML#ML%ML&MLK%MLK$MLK$MLK$ML%MLKL&ML&ML%MLK%MLK$MLK$MLK&MLK%MLK%MLK#MLK"MLK$MLK%MLK%MLK$MLKLK$MLKLK$MLKLK$MLK!MLKMLKML KML KML KML KMLKMLKLMMLKLMMLKML K"ML K!ML KMLML K,---++**)*(+&&%',#,+*-###%&%$$$%&&%%$$&%%#"$%%$$$$!     " !  '4( '4( '4( '5( '5( '5( '5( '5( '5('6('6( '5( '5( '5( '5( '5( '5( '5( '5( '5('6('6('6('6( '5( '5( '5( '5( '5( '5( '5('7('7('7('6( '2( '3( '4( '4( '3( '3( '4( '4( '4( '4( '5( '5( '5( '5( '5( '5( '4( '4( '4( '4( '4( '4( '4( '4( '3( '3( '3( '4( '3( ^_`a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_`a ^_` a^_` a^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_`a^_`a^_`a^_`a^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a^_` a^_` a^_`a^_`a ^ _` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^ _` a ^ _` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^ _` a                                                            ( )*+()*+()*+()*+(( )*+(( )*+(( )*+(( )*+(( )*+(( )*+((!)*+(( )*+(()*+(( )*+( ()*+( ()*+(()*+(()*+((!)*+((!)*+((!)*+((!)*+((!)*+(( )*+((!)*+((!)*+(()*+(()*+(()*+(()*+(()*+((!)*+( ( )*+( ( )*+(()*+(()*+(()*+(()*+(()* ()* ()*+( ()* ()* ()* ()* ()*+(()*+(()*+(()*+( ()*+( ()*+( ()*+( ()*+( ()* ()* ()* ()* ()* ()* ()* ( )* ( )* ( )* ()*abc defabc defa bc defabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efaabc d efa abc d efa abc d efaabc d efaabc d efaa bc d efaa bc d efaa bc d efaa bc d efaa bc d efaabc d efaabcd efaabcd efaabc d efaabc d efaabc d efaabc d efaabc defaabc defa abc defa abc defaabc defaabc defaabc d efaabc d efaabc d e abc d e abc defa abc d e abc d e abc d e abc d e abc defaabc defaabc defaabc defa abc defa abc defa abc defa abc defa abc d e abc d e abc d e abc d e abc d e abc d e abc d e abc d e abc d e abc d e abc d e                                                                                              +,-./+,-./+,-./+,-./+,-./+,-./+,-./+,-./+,-./+,-./+,-./+,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+,-./+,-./+,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+,-./+,-./+,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,- ./+ ,-./+ ,-./+ ,-./+ ,- ./+ ,- ./+ ,-./*++ ,-./fghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopeffghijklmnopƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴƴ /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!  /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-*&!   /0.*&"   /0.+'#    /0/,(#    /0/-(%    /0/-)%!   /0/-)%!   /0/-)%!  /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-*&!   /0.*&"   /0.+(#    /0/,(#    /0/-(%    /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!   /0/-)%!  pqrstpkcXNIFFEFFGHIpqrstspkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkbXNIFFEFFGHIpqrstpkcXNIFEEFFGHIpqrstpkbXNIFFEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFEE FGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEE FGHIpqrstpkcXNIFFEEF FGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFGHIpqrstpkbXNIFFEFGHIpqrstpkbXNIFFEFGHIpqrstpkbXNIFFEFGHIpqrstpkcXNIFFEFGHIpqrstspkcXNIFFEEFGHIpqrstplcYOIFEEFGHIpqrstpldZPJGFEEFGHIpqrstrne\RKGFEEFFGHIpqrstsog^TLHFFEFFGHIpqrstspi_UMIFFEFFGHIpqrstspkaXNIFFEFFGHIpqrstpkbXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEF FGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFFEFFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFFEEFFGHIpqrstpkcXNIFEEFGHIpqrstspkbXNIFEE FGHIpqrstpkcXNIFEE FGHIpqrstspkcXNIFFEFFGHIpqrstplcYOIGF FGHIpqrstpldZPJGF FGHIpqrstrne\RKGFFEFFGHIpqrstsog_TLHFEEFFGHIpqrstspi_UMHFEEFFGHIpqrstspkaXNIFEEFFGHIpqrstpkbXNIFEEFFGHIpqrstpkbXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIpqrstpkcXNIFEEFGHIƼ||z||}Ƽ||z||}Ƽ||z||}Ƽ||z||}Ƽ|zz||}Ƽ||z||}Ƽ||zz||}Ƽ|zz |}Ƽ|zz|}Ƽ|zz |}Ƽ||zz| |}Ƽ||zz||}Ƽ||z||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz|}Ƽ||z|}Ƽ||z|}Ƽ||z|}Ƽ||z|}Ƽ||zz|}ƾ|zz|}ƾ}|zz|}}|zz||}ö||z||}Ĺ||z||}Ƽ||z||}Ƽ||z||}Ƽ||z||}Ƽ||z||}Ƽ||z| |}Ƽ||z| |}Ƽ||z| |}Ƽ||z| |}Ƽ||z||}Ƽ||z||}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ||zz||}Ƽ|zz|}Ƽ|zz |}Ƽ|zz |}Ƽ||z||}ƾ}| |}ƾ}| |}}||z||}ö|zz||}Ĺ|zz||}Ƽ|zz||}Ƽ|zz||}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}Ƽ|zz|}                                                                                                                                     IJKL K LIJK L K LIJK L K LIJK L K LIJK L K LIJK L K LIJKLK LIJKKLK LIJKKLK LIJKLK LIJKLK LIJKLK LIJKLK LIJKL KLIJKL KLIJK L K LIJKL KLIJKL KLIJK L KLIJK LKLIJK LKLIJKLKLIJKL KLIJKLK LIJKLKLIJKLK LIJKLK LIJKLK LIJK LK LIJK L K LIJK LK LIJK LK LIJKK LK LIJKLK LIJKLK LIJKLK LIJK LK LIJKLKLKK LIJKKL KLIJKKLK LIJKLK LIJKLK LIJKLKLIJKKLKLIJKKLKLIJKKLK LIJKLKLK LIJKLKL K LIJKL K LIJKL KLIJKL KLIJKLKL KLIJKL K LIJKLK LIJK L KLIJK L KLIJK L KLIJKK L KLIJKK L KLIJKK LKLIJK L KLKLIJK LKLIJK LKLIJK LKL                                                                 L4ML7ML6M L5ML7ML7M L5M L5M L5M L3M L4M L4M L4M L3M L3M L2M L1M L3M L3M L2M L3M L2M L2M L2M L3M L3M L2M L2M L1M L1M L1M L2M L2M L2M L2M L2M L2M L1ML0M LML-M LML-M LML-ML8ML8M L3M L4M L1M L1M L1M L1M L1M L2M L2M L2M L2M L2M L2M L5M L5M L5MLML/MLML/ML6M L5M 476 577 5 5 5 3 4 4 4 3 3 2 1 3 3 2 3 2 2 2 3 3 2 2 1 1 1 2 2 2 2 2 2 10 - - -88 3 4 1 1 1 1 1 2 2 2 2 2 2 5 5 5//6 5< !< !< !< !9 !; !; !; !; !< !< != != != != != !: != !< !> ! < != !; != != !> ! < != !> ! = ! < != !< !: !; !; !; !< !< !; !; !; !; !< ! ! = ! = ! = ! = ! = !  M/NM+NM*NM-NM+NM+NM,NM*NM*NM,NM,NM-NM+NM-NM0NM-NM,NM+NM+NM+NM)NM)NM+NM+NM+NM+NM+NM/NMNMMN+NM.NM.NM.NM.NM.NM/NM+NM-NM-NM,NM,NM.NM.NM.NM/NM/NM0NM-NM-NM-NM-NMNM'NMNM'NMNM'NMNM'NMNM$NMNM%NMNM%NM,NM*NM*NM*NM*NM*NM-N,('*%'(&&))+)+.+')(*'''))*)-*-,,+)+')*)(***,/0-,,,&&&'$%%,*****- ! &'&=&'&&%&=&%<& \]^_ \] ^ _\]^ _\] ^ _[\ \] ^ _\]^_\]^_[\\]^_[ \]^_[ \]^_[ \]^_[ \]^_[\]^_[\]^_[\]^[\]^[ \] ^ [ \]^ [ \] ^[\] ^ [\] ^ [\] ^ [\]^ [\]^ [\]^ [\]^[\]^[\]^Z[[\]^Z[[\]^Z[[\]Z[\]Z[\]Z[\]Z[ \]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\] Z[\] Z[\] Z[\ ] Z[\ ] Z[\ ]Z[\ ]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]ZZ[\]ZZ[\Z[\Z[\Z[\Z[ \Z[ \Z[ \Z[ \Z[ \Z[ \                                  ('(=('<('<('<(';('9('8('6( '2('0('/('/('/('+('*('((''('&('#('(!'(#'(#'(%'(-'(.'(.'(1' (5' (9'('&<'&;'&:'&9'&8'&6'&6' &1'&0'&-'_ `a_"`a_#`a_#`a_%`a_%`a_'`a _%` a _&` a _,`a_+`a_-`a__,`_*`^__)`^_(`^_%`^_$`^_"`^_`^_`^_` ^_`^_`^_`^_`^_`_ `^ _ `^ _ `^ _`^%_`]^^&_]^#_]^_]^_]^_ ]^_ ]^_ ] ^_ ] ^_]^_] ^ _]#^ _]$^_]'^]$^]$^]#^]^!]^"]^%]^)]^*]^\,]^\,]^\/] ^\2]^\8]\6]\6] \1]\0]\-] "##%%' % & ,+-,*)(%$"     %&#     # $'$$#!"%)*,,/ 2866 10- @('<(';('('4( '(',('('!( '('(,'('('a`a=a`a`/a`-a`a`)a `a%`a `a`_<`_7` _3`_-`_`_`+_` _`_^<_^;_^_^4_ ^_^,_^_^!_ ^_^_,^_^_^]=^]=^]7^]7^]^]1^]&^=/-) % <7 3-+ <;4 ,! ,==771& }(':('9('7('3( '/('/(''('#('"('('("'(,' ('(,'(}'NMN=NMN8NM8NM:NM=NM8NM8NM6NM6NM6NM8NM9NM9NM8NM7NM   ##%%'&&&&&&&&'''&'*,+++/ + + 1 2 10 - 3 0 1 04555 5 5 5 .1372211023432 N/MN/MN/MN/MN0M N1M N1M N1MN0M N1M N1M N1M N1MN0MN0MN0M N1M N1M N1M N1MN6MNMN1MNMN1MN7MN7MN6MN6MN8MN8MN6MN6MN6MN ! = ! { != != != != != !> ! = !  ! M,NM,NM)NM,NMNM&NM&NM%NMNM(NM(NM(NM+NM+NM+NMNM'NMNM&NM&NM(NM)NM)NM)NM)NM+NM*NM+NM+NM(NM(NM$NM$NM%NMNM%NM$NM*NM(NM%NM$NM$NM$NM$NM$NM$NM'NM'NM'NM&NM&NM&NM&NM%NM$NM$NM$NM$NM"NM%NM%NM'NM(NM#NM#NM#NM$NM$NM"N++),&&%(((+++'&"&''''*)++(($$%%$*&%$$$$$$'''&&&&%$$$$"%%'(###$$"! =! =! !"!=!"!=!"!!"!=!"!!"!=!"!!&OPOPQ&OPOP Q&OPOP Q&O P Q&OP Q*O P Q+O PQ+O P Q,O PQ+O PQ,O PQ)O PQ*O PQ*O PQ+O PQ*O P Q.OP Q3O Q2OP Q.OPOPQ Q.OP Q-OPQ.OPQ.O PQ.O PQ.OPQO0O PQO1O PQO1O PQ2O PQ2O PQ6OPQ7OPQO6OPQO6OPQ7OPQ7OPQ7OPQ8OPQO6OPQO5OP6OP6OP6OP6OP8OP;OP;OP;OP>OPO=OPO=OPOOPOOPOO&& & & & * + + , + , ) * * + * . 3 2 . . -.. . .0 1 1 2 2 676677786566668;;;>==<=>0"#/"#0"#1" #1" #2" #3" #3" #3" #3" #3" #2" #4" #5" #5" #5" #5" #5" #6"#7"#7"#8"#8"#9"#:"#:"#:"#;"#<"#<"#="#="#>"#"="#"="#"?"!="!:"!:"!:"!:"!:"!9"!9"!9"!9"!;"!<"!;"!:"!:"!8"!6" !3" !1" !1" !1" !1" !2" !2" QR STQQRSTQQRS QR SQR S QR S!QR S"QR S$QR S#QR S#QR S#QR S#QR S$QR S%QR S%QR S%QR S&QR S&QRS'QRS'QRS'QRS(QRS(QRS(QRS)QRS)QRS)QRS*QRS+QRS,QRS-QRS-QRSQ.QRSQ.QRSQ.QR0QR1Q R2Q R2Q RP0Q RP.Q RP.Q RP.Q RP.Q RP.Q RP.Q RP-Q RP/Q RP0QRP2QRP4QROP3QROPP3QRP4QRP2QRP0QR P.QROP P/QRO P0QROOP P1QOP P1QOPPOOPP2QOPPOOP2Q      ! " $ # # # # $ % % % & &'''((()))*+,--...01 2 2 0 . . . . . . - / 02433420 . / 0 1 122%#$&#$'#$'#$(#$(#$)#$)#$)#$+#$+#$+#$,#$-#$-#$-#$-#$.#$0#$1# $1# $3# $3# $4# $4# $4# $5# $5# $5# $5# $8#$8#$9#$:#$:#$:#$:#$;#$;#$"#;#$"<#";#";#":#"9#"9#"9#"8#"6#"6#"6#"6#"6#"6# "3# "3# "4# "2#"0#"0#"/#"/#".#",#TUVWTUVWTUVWTUVWSTUVWSTUVWSTU VWSTUVWSTUVWSTUVWSTUVWSTUVWST UVSTUVSTUVSTUVSTUVSTUVSTUVSTU VSTU VSTU V STU V STU V STU V STU V STU V STU V STU VSTU VSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVRSSTUVRSTURSTURSTURSTURSTURSTURSTURST URST URST URST URST URSTURSTU RSTU RSTU RSTU RSTURSTURSTURSTURSTURRSTUQRRSTU                      $/%$/%$.%$-%$-%$,%$+%$+%$*%$)%$(%$'%$'%$'%$&%$&%$%%$#%$"%$"%$!%$!%$ % $% $%!$%!$%#$%$$%$$%($%($%($%($%($%+$%+$%,$%-$%.$%#$-$%#$.$%#$/$ %#$0$ %#0$ %#/$ %#3$%#0$%#1$%#2$%#3$% #3$% #4$%# #2$%# #4$ #4$ #3$ #3$ #2$ #1$#/$#-$#*$#*$WXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXYZWXYZWXYZWXYZWXYZWXYZWXYVWWXYVWWXYWXYVWWXYVWWXYVWXYVWX YVWX YVWX YVWX YVWX YVWX YVWX YVWX Y VWXY VWXY VWXY VWXY VWXY VWX VWXVWXVWXVWXVWXUVVWXUVVWXUVVW XUVVW XUVW XUVW XUV WXUV WXUVWXUVWXUVWX UV WX UVWXU UVWXU UVW UVW UVW UVW UVW UVWUVWUVWUVWUVW                                      %<&%<&%9&%8&%8&%6&%6& %4& %4& %1& %1& %1&%/&%-&%+&%+&%(&%'&%&&%&&%$&%#&%#&%!&% & %&"%&"%&"%&$%&)%&)%&,%&,%&,%&-%&.%&1% &3% &3% &5% &6%&=%&>%&%=%&%=%&%?%$=%$<%$;%$8%$8%$8% $5% $3% $2%!Z[\#Z[\#Z[\#Z[\&Z[\(Z[)Z[*Z[+Z[+Z[,Z[,Z[0Z[4Z [YZ2Z [YZ3Z [Y5Z[Y5Z[Y:Z[Y8Z[Y9Z[YY:ZY9ZY8ZY7ZY6Z Y5Z Y3Z Y2Z Y1ZY0ZY.ZY.ZY-ZY,ZXYY(ZXY'ZXY%ZXY$ZXY#ZXY"ZXY!ZXYZXYZ XYZ XYZ XYZ XYZXYZXYZXYZXYZXYZXYZXYZWXY ZWXYZWXYZWXYZWXYZWXYZ WXY WXY WXY        "  !  #####!                 &,'&)'&('&&'&$'&!'& '&&'(&'(&'*&'-&'.&'8&'9&':&'&%=&%9&%6&%7&%6&%0&%/&%.&%*&%(&%&&%"&!%&"%&&%&'%&-%&-%&\,]\)]\(]\&]\$]\!][\ ]["\][#\]["\][#\][$\] [$\] [,\][)\]['\][+\[(\[$\[$\[#\Z[ \Z[\Z [\Z"[\Z![\ Z$[\ Z$[\ Z)[\Z'[\Z([\Z([\Z'[Z'[Z$[Z[ Z[%Z['Z[)Z[*Z[-Z[3Z [5Z [7Z[9Z[ZY  9 : : : < = = ; ; 9 L,ML*ML,ML.ML-ML,ML,ML+ML,ML+ML+ML,ML-MLML%ML-ML+ML)ML,ML,ML*ML)ML&MLML%ML,ML(ML)ML+ML+ML+ML+ML,ML-ML,ML,ML(ML(ML+ML+ML+ML)ML)ML(ML(ML(ML&ML)MKL)MLKL)ML)ML&ML%ML%ML$ML$MKL$MKL%MKL%MKL$MKL$MKL$MKL#MKL$MKL"MKL"M,*,.-,,+,++,-%-+),,*)&%,()++++,-,,((+++))(((&))))&%%$$$%%$$$#$"" M%NM%NM%NM"NM!NM!NM!NM!NM!NM!NM!NM%NM%NM'NM$NM$NM$NM%NM#NM"NM!NMNM'NM'NM'NM$NM$NM%NM%NM%NM#NM"NM"NM"NM"NM!NM!N MN MN MN!MN!MNM#NM#NMNMNM!NM"NM NM N MN MNM NM NM"NM"NM"NMN!MN!MN!MN MN MN MN%%%"!!!!!!!%%'$$$%#"!'''$$%%%#""""!!   !!##!"     """!!!    3! 6! 6! 6! 6! 6! 8! 8! 9! NONNM"#""QRRSTQRRSTQRRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRST QRST QRS T QRS T QRS T QRS T QRS T QRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSQRSQRSQRSQRSQRSQRSQR SQR SQR SQRS QRS"QRS"QRS#QRS#QRS#QRS$QRS&QRSQ)QR*QR+QR-QR-QR-QR-QR/QR2Q R3Q R3Q R5Q R6QR7QR           ""###$&)*+----/2 3 3 5 67#)$#)$#'$#%$#$$#$$##$##$#!$# $#$ #$ #$!#$$#$%#$&#$(#$*#$*#$+#$-#$.#$/#$0#$2# $3# $3# $5# $5# $6#$9#$<#$<#$=#$@#"#=#"=#"=#"<#";#"7#"7#"7#"7# "5# "2#"0#TUVWTUVWTUVWTUVWTUVWTUVWTUV WTUV WTUV WTUV W TUVW TUVWTUVWTUVWTUVWTUVWTUVTUVTUVTUVTUVTUVTUVTUVTUVTU VTU VTU V TU V TU V TUV!TUVST TUVS!TUVSTUVS TUSTUS!TU S"TU S"TU S#TU S TU S TUS!TUS!TUS"T US#T US"T US#TUS#TUS'TUS#TURSS#TURS%TRS$TRS#TRS!TRS TRSTRSTRST RST RSTRST          ! ! ! " " #  !!" # " ##'##%$#!    $1% $1%$0%$,%$+%$+%$)%$)%$&%$$%$$%$#%$% $%"$%$$%$$%($%,$%-$%0$%0$%1$ %3$ %3$ %7$%9$%9$%>$%$$#=$#:$#:$#9$#9$#6$ #3$ #3$ #3$ #2$#-$#,$#*$#($#'$#%$#$$#"$#$##$$#$$#$'#$(#$,#$,#$.#$1# $ WXY WXYWXYWXYWXYWXYWX YWX YWXYWXYWXYW XYWX WX"WX$WX$WX(WXV)WXV)WXV*WXV*WXV*W XV,W X V)W X V+WX V,WXV*WXV/WXVV-WV+WV)WV)WV(WV(WVWV WUVWUVWUVWUVWUVWUVW UVW UVW UVW U#VWUV WUV WU!VWU#VWU"VWU$VWUU$VTUU"VTUVTUVTUV TUV TUV TUV TUV TUV T UVT"U V      "$$())*** , ) + ,*/-+))((     #  !#"$$"      " .%&4%&%&;%&%$<%$;%$7%$7%$6% $2%$.%$+%$)%$)%$"%$%$$%'$%+$%+$%,$%9$%;$%<$%$Y8ZY6Z Y5ZY+ZY*ZY+ZY+ZYZY!ZY ZYZ YZ&YZ'YZ,YZX,YZX*YZY Z X*Y Z X-YZX.YZX0YX)YX)YX)YX%YX"YX YX Y#XY0XYW-XYW/X YW0XYW3XYW4XY W2XW.XW+XW)XW)XW"XWX$WX'WX+WX+WX,WX9WX;WX&%&9&%:&%-&%&%+&%$&%&%$&%&%& %$7%$(%$%$!%$%$!%$ % $%$$%$uZ Y4Z Y.ZY"ZYZ$Y ZY Z$Y ZYZYX9:-+$$f 4 ."$  $ <9/%#+ b7(!! $%$<%$9%$9%$4% $1% $1% $/%$-%$*%$!%$!%$!%$%'$%)$%)$%+$ %1$%6$%;$%$~$.ZY-ZY+ZY+ZY'ZY%ZYZ YZ!YZ"YZ&YZ+YZ.YXZ Z)YXZ1YXZ1YXZ5YXZY0Y X/YX%YXYX%YX%YX"YXY XYXY"XY(XY(XY+XWY-XW Y+XWY3XW4X W1X W1X W/XW-XW*XW!XW!XW!XWX'WX)WX)WX+W X1WX6WX;WXWWVW6WVWV5W V4W V.WV+WV%WV%WV$WVWVWVW%V.-++'% !"&+. )1150 /%%%" "((+- +34 1 1 /-*!!!'))+ 16;65 4 .+%%$%5% $5% $3% $2% $.%$+%$*%$)%$'%$'%$'%$#%$%$%!$%"$%"$%'$%'$%'$%+$%/$%0$ %1$ %3$%7$%;$%:$#<$#<$#;$#:$#6$#4$ #3$ #1$ #1$ #.$#,$#*$#&$#%$#$$#"$# $#$%#$&#$(#$*#$-#$0# $3# $4#YX WY"X WY#X W Y%X W Y!XW YXWY!XWY!XWY%XWY%XWY%XW#XWXWX!WX"WX"WX'WX'WX'WX+WX/WX0W X0WVX X1WVX4WVX4WVWXX3WV5W V4W V2W V2W V-WV,WV&WVWV&WV%WV"WV!WV!WVUWVUWVUW"VUW!VUWVUW!V UW$V U W#V U W%V UW%VUW&VUWV(VU&VU%VU$VU"VU VUV$UTVV$UTV&UTV#UTV&UTV&U T V#UTU T V$UT " # % ! !!%%%#!""'''+/0 0 14435 4 2 2 -,&&%"!!"!! $ # % %&(&%$" $$&#&& # $7$#8$#6$#4$ #3$ #3$ #3$ #.$#+$#*$#)$#)$#($#%$#$$#$$##$#!$#!$# $#$##$##$%#$'#$'#$+#$*#$-#$.#$0# $2# $2# $2#$7#$7#$;#$<#$##WVUWVUWVUWV UWV UWV UWV UWVUWVUWVUWVUWVU WVU WVU WVUWVUTWWVUTWVUTWVUTWVUTWVUTWVUTVUTVUTVU TVU TVU TVUTVUTVUT VUT VUT VUTVUTVUTVUTVUTVUUT UTU$TU%TU%TU(TU*TU*TU)TSU*TSU+TS U+TS U*TSU/TSU*T SU+TSU,TSU+TSU+TS+TS)TS*TS*TS)TS'TS$TS!TS              $%%(**)*+ + */* +,+++)**)'$!}#"<#";#"9#"9#"7#"6#"6#"4# "4# "3# "1# "/#".#".#".#"-#",#"'#"&#"%#"%#"$#"##""#"!#"#"# "#!"#""#&"#("#("#*"#*"#*"#."#."#."#."#/" #2"#6"#6"#8"#<"#<"#<"#<"#="#="U!T SU"T SU"T SU"T S U#TS U"TS U#TSU#TSU#TSU$TSU$TSU#TSU!TSU"TSRUT#TSR#TSR"TSR TSRTSRTSRTSRTS RTS RTS RTS RTSRTSRTSRTSRTSRTSRTSRTSR TSR TSR TSRQ TSRQ TSRQTSRQTSRQTSRQTSR QTSR QTSSR QSR QSRQSRQSRQSRQSRQSRQSRQSRQSRQ SRQSRQSRQSRQSRQSRQSR!QSR#QSR%QSR%Q! " " " # " ###$$#!"##"               !#%% #4" #5" #5"#6"#8"#9"#9"#:"#;"#="#"="#"="#""!"="!"="!"="!";"!;"!:"!4"!"!4"!"!4" !5" !7"!7"!7"!3" !3"!"!3"!"!4"!"!0"!2" !1" !/"!."!'"!"!'"!'"!'"!&"!&"!&"!&"!$"!""!"!"! SRQ SR Q SR QSR#QSR#QSR#QSR#QSR%QSR%QSR'QSRR+QSRR+QSRR+QR,QR,QR.QR.QR0QR0Q R2Q R2Q R3Q R4QR6QR6QR6QR;QR;QR;QR;QR:QPRQO       % % % ' ' % % ' , . -000010 0 / /555 4 56z> ?! !=! !:! ;! ;! 9! 8! 5! 5! 6! 5! 3! 2! 1! 2! 2! 0! -! -! ,! >ONOONO=ONO=ONO:ON<=>==:<:65 73 //1 3 1 2 2 /,,2 0//*&&%%%)'''''"!            !# !# !$ !$ !# !# !$ !& !& !& !' !' !) !) !( !( !( !( !) ! !* ! !* !/ !1 !1 !/ !0 !0 !1 !1 !0 ! !1 ! !1 !8 !8 !8 !8 !9 !: !: !; !< !; !; != NMN=NMN=NMNNMN=NMN:NM;NM:NM5N M6NM7NM6NM6NM5N M5N M5N M3N M5N M4N M4N M/NM.NM.NM.NM.NM.NM*NMNM*NMNM*NM)NM*NM'NM##$$##$&&&''))(((()**/ 1 1/00 1 1010776786660 23365 5 5 3 5 4 4 /.....***)*' N/MN/MN/MN/MN/MN0M N2M N3M NMN+M N3M N1MN0M N1M N2M N2MNMN2MN8MN8MN8M N5M N5M N5M N5MN6MN7MN9MN!"!=!"!>!"!=!"!=!"!}!"!=!"!!"!=!"!=!"=!"=!"=!"!1OP Q/OP Q/OPQ2OPQ1OPQ0OPQ1OPQ3OPQ0OPQPPQ/O PQ0OPQ2OPQ2OPOQ2OPQ3OPQ3OPOPQ4OPQ4OPQ4OPQ4OPQ7OPQ7OPQ5OPQ5OPQ5OPQ7OPQO6OPQO4O P5O P6OP6OP7OPQO6OPQO6OPQO8OP9OPQO9OPQO9OPQ:OPQ:OPQ;OPQO9OPQO9OPOPO>OPO}OP1 / /210130/ 022233444477555764 5 667668999::;99<:::;;;:;::;;>>};"#;"#;"#<"#<"#="#="#="#="#="#="#="#="#="#>"#"="#"="#""#""!">"!"!9"!"!9"!>"!"="!"="!"="!"="!;"!;"!;"!;"!;"!8"!7"!7" !5" !5",QRS-Q RS-Q RS-QRS,QRS,QRS+QRS+QRS+QRS+QRS,QRS-QRS.QRS.QRS.QRSQ.QRSQ.QRSQ-QR.QR1Q RSQ0Q R0QR0QR0QR0QR1Q R1Q R1Q R1Q R0QRPQ/Q R1Q R1Q R1Q R1Q R3Q R4Q R4Q R4Q R4Q R3Q R3Q R5Q RPQP/Q RPQP/Q RP3Q R5Q R6QR5Q R4Q RPQ2Q RPQ3Q RPQ3Q RPQ4QRP3QRP3QRP3QRP4QRP4QRP1QRP/QRP0QR P/QR P/QR,- - -,,++++,-.....-.1 0 00001 1 1 1 0/ 1 1 1 1 3 4 4 4 4 3 3 5 / / 3 5 65 4 2 3 3 4333441/0 / /4# $4# $4# $4# $4# $4# $4# $4# $5# $5# $6#$6#$6#$7#$7#$7#$7#$7#$7#$7#$7#$"6#$"#6#$"#7#$"7#$"6#$"#6#$"#9#$"8#$"7#$"9#$":#$"9#$"8#$"8#$":#$"9#$":#$""9#$"9#$"9#$":#$";#$""9#$"":#"9#";#":#"9#"9#"9#"7#"6#"7#"6#"6#"6#"6#"6#"6#"6# "5# "5# "4# STU V STU V STU V STU V STU V STU V STU V STU VSTU VSTU VSTUVSTUVSTUVSTUVSTUV STUVST UVST UVST UVSTUVSTUVRST UVRS ST UVRS STUVR STUVRSTUVRSSTUVRSSTUVRSTUVR STUVRSTUVRSTUVRSTUVRSTUVRST UVRSTUVRSTUVRSTUVRRSTUVRSTUVRSTUVRSTUVRSTUVRRSTUVRRSTURSTURSTURSTURSTURSTURSTURSTURSTURSTURSTURSTURSTURST URST URST URST U RST U RST U RST U                             $!%$!%$!%$!%$ %$ %$ % $% $%$%$%$ %$ % $%!$%!$%"$%"$%"$%"$%"$%"$%#$%#$%#$%#$%$$%$$%#$%#$%#$%#$%$$%$$%%$%$$%%$%%$%'$%'$%'$%'$%'$%($%($%($%($%($%#$&$%#$&$%#$&$%#&$%#'$%#&$%#'$%#'$%#'$%#'$%#($%#*$%#*$%#*$%#*$%#'$%VW XYZVWXYZVWXYZVWXYZVVWXYZVVWXYZVVWXYVW XYVW XYVWXYVWXYVWXYVWXYVWXYVWXYVWXYVW XYVW XY VW XY VWX Y VWX Y VWX Y VWX YVWX Y VWX Y VWX YVWX YVWX Y VWX Y VWX Y VWX Y VWX Y VWXY VWXY VWXY VWXY VWXY VWXY VWXY VWXY VWXYVWXYVWXYVWXYVWXYVWXYVWXYVWXYUV VWXYUV VWXYUVVWXYUVWXYUVWXYU VWXYU VWXYU VWXYU VWXYUVWXYUVWXYUVW XYUVWXYUVWXYUVWXYUVWXY                                     %1& %1& %1& %1&%0&%/&%/&%.&%.&%.&%-&%-&%-&%-&%-&%-&%-&%,&%,&%+&%+&%+&%+&%+&%+&%+&%+&%*&%*&%)&%)&%*&%)&%(&%'&%'&%(&%(&%'&%'&%'&%&&%%&%%&%$&%$&%$&%$&%%&%%&%$&%$&%$&%#&%#&%#&%!&%&%&%&% &% &% &% &&Z[ \'Z [ \&Z[ \&Z[ \%Z[\%Z[\%Z[\&Z[\Y%Z[\Y%Z[\Y%Z[\Y&Z[\Y%Z[\Y'Z[\Y(Z[\Y)Z[\Y)Z[\Y'Z[\Y&Z[\Y'Z[\Y)Z [\Y)Z [\Y)Z [\Y)Z[\Y)Z[\Y*Z[\YY)Z[\YY(Z[\Y(Z[\Y)Z[\YY)Z[\YY(Z[\Y)Z[\YY*Z[\YY)Z[Y'Z[Y'Z[Y'Z[Y%Z[Y%Z[Y&Z[Y&Z[Y(Z [ Y(Z [ Y'Z [Y(Z [Y(Z [Y)Z [ Y*Z [ Y*Z [ Y*Z [ Y*Z [ Y*Z [ Y(Z [ Y)Z [ Y)Z [ Y)Z [ Y)Z [ Y)Z[ Y)Z[ Y(Z[ Y)Z[ Y)Z[Y'Z[                            &)'(&('(&''(&''(&''(&(' (&(' ( &'' (&)' ( &(' ( &(' (&*' (&+' (&+' (&+' ( &*' ( &*' ( &'' ( &'' ( &)' ( &*'( &(' ( &'' ( &(' ( &'' ( &'' ( &'' (&&' (&$'(&$'(&)'(&)'(&*'(&*'(&+'(&*'(&)'(&('(&''(&('(&('(&)'(&*'(&)'(&*'(&*'(&*'(&)'(&''(&)'(&&*'&)'&''(&''(&('(&&('(&&&'(&&&'(&&''&&'&&'&&'&$'&$'\]^_\]^_\]^_\]^_\]^_\]^ _\]^ _ \]^ _\]^ _ \]^ _ \]^ _\]^ _\]^ _\]^ _\]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^_ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _ \]^ _\]^ _\]^_\]^_\]^_\]^_\]^_\]^_\]^_\]^_\]^_[\\]^_[\]^_[\]^_[\]^_[\]^_[\\]^_[\\]^_[\]^_[\]^_[ \]^_[\]^_[\]^_[\]^_[[\]^[\]^[\]^_[\]^_[\]^_[[\]^_[[\]^_[[\]^_[[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^                              0()0()0()1( )1( )2( )3( )3( )2( )3( )3( )3( )3( )5( )5( )5( )6()7()7()7()7()8()8():():():()9()9():()9()9()9();();();();();();()=()=()=()=()>()(=()(=()(=()(?('=('(=('(=('<('<(_``abc_``abc_``abc_`abc_`abc_`abc_`abc_`abc_`abc_`abc_`abc_`abc_`abc_`abc_`abc__`abc_`abc__`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab _`ab _`ab _`ab _`ab _`ab _`ab _`ab_`ab_`ab_`ab _`ab _`ab _`ab _`ab _`ab _`ab _`ab_ _`ab_ _`ab_ _`ab_ _`a_`a_`a_`a_`a_`a_`a_`a_`a_`a_`a_`a_`a^_`a^__`a^__`a^_`a^_`a                  )*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,))*+,))*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)*+ )*+")*+( )*+( )*+( )*+( )*+(!)*+( )*+( )*+(#)*+(!)*+(")*+(")*+(")*+(")*+(!)*+(")*+(")*+((")*+c d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghicc d efghiccd efghc defghc d efghbcc d efghbcc d efghc d efghc d efghc d efghc defghbcc d efghbcc d efghbcc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbc d efghbbc d efghbbc d efgbc d efgbc d efgbc d efgbc d efgbc d efgbc d efgbbc d efgbbc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efabc d efa bc d efa bc defa bc d efa bc d efabc d efabc d efaabc d ef                                                                   ,-./0,-./0,- ./0,- ./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0 ,-./0 ,-./0 ,-./0+,,-./+,,-./+,,-./+ ,-./+ ,-./+,-./+ ,-./+ ,-./+ ,-./+ ,-./+,-./+,-./+ ,-./+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. / + ,-. / + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./ijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsijklmno pqrsiijklmno pqrsiijklmno pqrijklmno pqrijklmno pqrijklmno pqrijklmno pqrijklmno pqrijklmno pqrhiijklmno pqhiijklmno pqhiijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhijklmno pqhhijklmno pqhhijklmno pqhhijklmno pqhhijklmno pghhijklmno pghhijklmno pghhijklmno pghhijklmno pghijklmnopghijklmnopghijklmnopghijklmnopfgghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnop˹˹ɸȸȸȸȸƴƴƴƴ 0/-*&"  0.+'#   0/-)%!   0/-*&"   0.+'#    0/-)%!   0/-*&"    0.+($    0/-*&"  0.+(#   0/,(%!  0/-*&"  0.+'#   0/-)%! 0/-*&"  0.+($  0/-*&" 0.+(#  0/-)%! 0/-*&"  0.+($  0/-*&" 0.+(#  /00/-)%! /00/-*&"  /00.+($  /0/-*&" /0.+(#  /0/,(%! /0/-*&"  /0.+($! //0/-*&" //0.+(#  //0/-)%! //0/-*&"  //0.+($! /0/-*&" /0.+($  /0/-*&" /0.+(#  /0/-*&" /0.+'#  /0/-)%! /0/-*&"    /0.+($!   /0/-*&"    /0.+($    /0/-*&"   /0.+(#    /0/-*&"   /0.+(#    /0/-)%!   /0/-*&"    /0.+($!   /0/-*&"    /0.+($! /0/-*&"  /0.+($! /0/-*&"  /0.+($! /0/-*&"  /0.+($! /0/-*&"  /0.+($! stqme[RKGFEEF FGHIJ Kstsoh^UMHFEEF FGHIJ KstspkbXOIFFEF FGHIJ Kstqme[QKGFEEFGHIJ Kstsoh^UMHFEEFGHIJ KstspkbYOIFFEEFFGHIJ Kstqme\RLGFEE FGHIJKKstsoh_VNIFFEE FGHIJKstspldZQKGFFEEFFGHIJKstrnf_TMHFEE FGHIJKstspjaXOIFFEEFFGHIJKstqme\RKGFEEFFGHIJKstsoh^UMHFFEEFFGHIJKstspkbYOJGFEE FGHIJKrsstqme\RLHFFEEFFGHIJKrsstsoh_VNIFFEEFGHIJKrsstspldZQKGFFEEFFGHIJKrstrnf_TMHFFEEFFGHIJKrstspkbXOIFFEF FGHIJKrstqme\RLHFFEF FGHIJKrstsoh_VNIFFEEF FGHIJKrstspldZQKGFEEF FGHIJKrstsnf_TMHF FGHIJKqrrsstspkbYOIFFEEFFGHIJKqrrstqme\RLGFEEFGHIJKqrrstsoh_VNIFFEEF FGHIJKqrstspldZQKGFFEF FGHIJKqrstsnf_TMHFEEFGHIJKqqrstspjaXOIFFEE FGHIJKqqrstqme\RLHFEE FGHIJqrstsoh_VNIFFEFFGHIJqqrstspldZQKGFFEFFGHIJqqrstrnf_TMHFFEEFFGHIJqqrstspkbYOJGFEEF FGHIJqqrstqme\RLHFFEEFFGHIJqqrstsoh_VNIFFEEFGHIqrstspldZQKGFFEEFFGHIqrstsoh_VNIFFEEF FGHIqrstspldZQKGFEE FGHIqrstsoh_UNIFFEEFFGHIqrstspkdZQKGFEEFFGHIpqqrstrnf]TMHFFEEFFGHIpqqrstspkbYOJGFFEEFFGHIpqqrstqme\RLHFFEEF FGHIpqqrstsoh_VNIFFEEF FGHIpqrstspldZQLHFFEF FGHIpqrstsoh_VNIFFEF FGHIpqrstspldZQKGFEEFGHIpqrstrnh_UNIFFEEF FGHIpqrstspldZQKGFEEF FGHIppqrstsnf_TMHFFEEF FGHIppqrstspkbYOJGFEEF FGHIppqrstqme\RLHFFEF FGHpqrstsoh_VNIFFEEF FGHpqr stspldZQLGFEE FGHpqrstsoh_VNIFFEEF FGHpqrstspldZQLHFFEF FGHpqrstsoh_VNIFFEF FGHpqrstspldZQLHFFEF FGHpqrstsoh_VNIF FGHpqrstspldZQLHFFEEFFGHpqrstsoh_VNIFFEEFGHpqrstspldZRLHFFEEFFGHp qrstsoh_VNIFFEEFFGH}|zz| |} ø|zz| |} Ƽ||z| |} }|zz|} ø|zz|} Ƽ||zz||} }|zz |}ø||zz |}ƾ}||zz||}|zz |}Ļ||zz||}}|zz||}ø||zz||}Ƽ}|zz |}||zz||}ø||zz|}ƾ}||zz||}||zz||}Ƽ||z| |}||z| |}ø||zz| |}ƾ}|zz| |}| |}Ƽ||zz||}}|zz|}ø||zz| |}ƾ}||z| |}|zz|}Ļ||zz |}|zz |}ø||z||}ƾ}||z||}||zz||}ļ}|zz| |}||zz||}ø||zz|}ƾ}||zz||}ø||zz| |}ƾ}|zz |}ø||zz||}Ƽ}|zz||}||zz||}ļ}||zz||}||zz| |}ø||zz| |}ƾ||z| |}ø||z| |}ƾ}|zz|}||zz| |}ƾ}|zz| |}||zz| |}Ƽ}|zz| |}||z| |}ø||zz| |} ƾ}|zz |}ø||zz| |}ƾ||z| |}ø||z| |}ƾ||z| |}ø| |}ƾ||zz||}ø||zz|}ƾ||zz||} ø||zz||}                                                                                                                                           KL KL KL KLMKKL KLMK K LKLMK K LKLMKK LKLMKK LKLMK KLKLKLMKKLKLKLMKLKL K LKL KLKLK L KLK L KLK LKLK LKLK LKLKL KLKL KLK LKLK LKLK LKLK LKLK LKLK LKLK LKLKLKLKLKLKLK LKLK LKLK LJKKLK LJKKLK LKLJK LKLJK LKLKLJK LKL K LJKLKL K LJKLKL K LIJJKL K LIJJK LKLIJK LKLIJKL KLIJKL KLIJKL KLIJKKL KLIJK L KLIJK L KLKLIJK L KLKLIJK LKLIJK LKLIIJK LKLIIJKLKLIJKLKLHIIJKLKL KLHIIJKL KLHIIJKL KLHIIJKL KLHHIJKL KLHHIJKL KLHHIJKL KHIJKLKHIJKKLKHIJKLKHIJK LK                                                           =  =  =  = = @ML;ML=ML=ML=ML;ML:ML;ML;ML:ML:ML9ML9ML6ML:ML8ML6M L4M L3M L5M L4M L3M L3M L2M L1M L1ML0ML-ML-ML/ML.ML.ML.ML.ML/ML/ML-ML+ML+ML+ML*ML*ML)ML)ML&ML&ML&ML&ML%ML%ML%MKLL#MKLL#MKLL"MKLL"MKL"M@;===;:;;::996:86 4 3 5 4 3 3 2 1 10--/....//-+++**))&&&&%%%##"""= !~ ! = ! : !< !< !@ M5N M5N M4N M4N M3N MNM,N M3N M3N M3N M4N M2NMNM,NM-NM-NM-NM+NM+NM&NM*NM(NM(NM&NM&NM'NM(NM(NM&NM&NM'NM'NM%NM%NM#NMNMNMNMNMN MN"MNMNMN$MN%MN&MN&MN'MN'MN%MN%MN%MN&MNMN+MN+MN+MN,MN+MN+MN,MN2M N)MNMN(MNM N)MNM N1M N1M N 3 5 3 3 / ) 0 3 3 4 2,---++&*((&&'((&&''%%# "$%&&''%%%&+++,++,2 )( ) 1 1 ! ! !! NONN''$"    !           !""###$$$$')*8!"8!"5! "5! "OPO?ONO=ON?=<==<888677 4 4"!<" !5" !5"!9" !4" !3" !2" !3"!9"!"!1"!0"!/"!/"!."!."!"!$"!"!#"!"!#"!."!)"!&"!&"!%"!#"!%"!!"!!"!!"!!"!!" !""!"#!"%!")!")!",!",!".!"-!"/!"0!"0! "4! "5! "6! "1!"!"2!"!"7!"7!":!"!8QR8QR:QR:QRQRQQP< 5 59 4 3 2391 0 / / . .$## . ) & & % #% ! !!!!    %% '' ' ' ' --./01 2 "0#"/#"*#"*#"*#"*#"'#"&#"$#""#" #" #" # "# "# "#%"#&"#)"#)"#*"#-"#/"#/"#0"#0"#2" #6"#8"#<"#<"#>"#""!<"!<"!:"!:"RSTRSTRSTRSTRSTRSTRS TQRRS TQRS TQRSTQRSTQRSTQRSTQRSTQRS QRS QRS QRS QRSQRSQRSQRSQRSQRSQRSQRSQR SQRSQRSQRSQRSQRSQ QR#QR$QR'QR'QR'QR*QR+QR.QR0QR3Q R4Q R5Q R7QR7QR8QR=QR=QR=QR=QRQP$#=$#0$#0$##$#$#$+#$8#$ 1#WV/WV WV+WV"WV"WVWVW4VWV" TSRTSRTSRTSRTSRTS RTSTS RTS RTS RTSRTSRTSRTSRTSRTSRTSRTSR!SR!SRQSRQSRQSRQSRQSR QSR QSR QSRQ SRQ SRQ S RQ SRQ S RQSRQSRQSRQSRQ!RQR QR"QR"QR%QR)QR,QR,QR.QR/QR0Q R5QR7QR8QR9QRMLMMLM=MLM=MLM6ML7ML7ML7ML0MLML0ML0ML0ML1M L1M L1M L0ML/ML.ML.ML/ML0ML0ML-ML.ML,ML+ML)ML)ML)ML(ML(MLMLMLKLMMLMLKLMLMLMLMLKMMLKMLKMLKMLMLKMLMLKMLKMLKMLKMLKMLKMLKMLKMLKMLKMLKMLKML KML KM LKMLKLKMLKLKMLKMLK><====>==677700001 1 1 0/../00-.,+)))((                                                                                                                                            LKLKLK LKLK LKLK LKLK LKLK LKLKLKLKLKLK L KLKLKLK L KLKLKLKLKLKLKLK LKL KL KL KL KLKL KLK L KL KLKL KLKL KLKL KLKLKLK LK LK LK LKLK LK LK LKLK LKLK LKLK LK LK LKLK L K LKJL L K LKJLK LKJLK LKJLK LKJILLK LKJILLK LKJILK LKJILKLKJIL KLKJIL K LKJIKLLKLKJIKLKJIK LKJIK LKJILK K LKJIK LKJIKLKJIHKK LKJIHK KLKJIH KLKLKJIH KLKLKJ IH K LKLKJIHK LKJIHK LKJIHK LKJIHK LKJIHK LKJIHK LKJIHGKK LKJIHGKK LKJIHGKK LKJIHGKKLLKJ IHGKLLKJIHGKLLKJIHGFKLLKJIHGF                                                        } } } } }}}|}| !$(+.00 "&*-/00!%(,.00 #'+-/00 "&)-/00!#(+.00 "&*-/00 !$(+.00  "&*-/00  !$(+.00  #&*-/00 !%(,.00  #(+-/00 "&)-/0 0 !#(+.0 0 "&*-/0 0 !$(+.0 0  #&*-/0 0!%(,.0 0 #'+-/0 0 "&)-/0 0 !$(+.00 #&*-/00 !%(,.00 #(+./00 "&)-/00 !$(+.00 #&*-/00!%(,.00 #'+-/00 "&)-/00!$(+.00/ #&*-/00/!%(,.00/ #'+-/00/ "&*-/00/!$(+.00/ #&*-/00/!%(,.00/ #'+-/00/ "&)-/00/ !$(+.00/  #&*-/00/ "%(,.00/  !#'+-/00/  #&*-/00/ "%(,.00/!#'+./00/ "&*-/00 /!%(,.00 / #'+-/00 / "&)-/00 /!$(+.00 / #&*-/00 /!%(,.00 /!#'+-/00/ "&*-/00/!%(+.00/!#'+-/00/ "&*-/00/"%(+.00/!#'+-/00/ "&*-/00/!%(+.00/KJIHG FEFGINW_hosttKJ IHGFHLR\dlpstt KJ IHGFGKPZaiostt KJIHG FEFFINU^fmpstt KJIHG FEFFHLQZckpstt KJIHG FEFINU_gnrtt KJIHG FEFFHLQZdkpstt KJIHG FEFINV_hnrtt KJIIHG FEFFHLRZdkpstt KJIHG FEFFGINW_hortt KJIHG FEFHMS\dlpsttKJIHG FEFGKPZaiosttsKKJIHG FEFINU_fmpsttsKKJIHG FEFFGKQZckpsttsKJIHG FEFINU_gnrttsKJIHG FEFHLQZdkpsttsKJIHG FEFGINW_hosttsKJIHGFEFIMS\dlpsttsKJIHG FEFGKPZaiosttsKJIHG FEFINU^fmpsttsKJIHG FEFFHLQZckpsttsKJIHG FEFFGINW_hnrttsKJIHG FEFHMS\dlpsttsKJIHG FEFFGKPZaiosttsKJJIHG FEFINU_fnqttsKJJIHG FEFHLQZckpsttsKJJIIHG FEFGINW_hnrttsrJJIHG FEFHLS\dlpsttsrJJIIHG FEFGKPZaiosttsrJJIIHG FEFINU^fmpsttsrJIHG FEFHLQZckpsttsrJIHG FEFGINW_hnrttsrqIIHG FEFHLS\dlpsttsrqIIHG FEFGKPZaiostt srqI HG FEFFINU^fmpsttsrqIHG FEFHLQZdkpsttsrqIHG FEFFGINW_hnrttsrqIHG FEFHLS\dlpsttsrqIHG FEFGKPZaiosttsrqIHG FEFINU^fmpsttsrqIHG FEFHLQZckpstt srqIHG FEFFGINV_hnrttsrqIHG FEFIMS\dlpsttsrqIHHG FEFFHKQZaiosttsrqIHHG FEFGINU^fmpsttsrqHG FEFIMS\dkpstt srqpHHG FEFGKQZaiosttsrqpHHG FEFFGINU^fnqttsrqpHG FEFHLR\dkpsttsrqpHG FEFGKPZaiosttsrqpHG FEFINU^fmpsttsrqpHG FEFHLQZckpsttsrqpHG FEFGINV_hnrtt srqpHG FEFHLS\dlpsttsrqpHG FEFGKPZaiosttsrqpHGG FEFGINU^fmpsttsrqpG FEFHLR\dkpsttsrqpG FEFGKPZahorttsrqpG FEFGINU^fmpsttsrqpG FEFHLR\dkpstt sr qp FEFGKQZahorttsr qp FEFGINU^fmpsttsrq p FEFHLR\dkpsttsrq p FEFGKPZahortt sr q p} |z|} }|  }|} } |z|| } |z|| } |z| } |z|| } |z| } |z|| } |z||} } |z|} |z|}˄} |z|˄} |z||}} |z|} |z|} |z|}}|z|} |z|}} |z|} |z||} |z||}} |z|} |z||}} |z|} |z|} |z|}ɂ} |z|ɂ} |z|}ɂ} |z|} |z|} |z|}ȁ} |z|ȁ} |z|}  } |z||} |z|} |z||}} |z|} |z|}} |z|} |z| } |z||}} |z|} |z||} |z|}} |z| } |z|}} |z||}} |z|} |z|}} |z|} |z|} |z|} } |z|} |z|}}} |z|}} |z|} |z|}} |z|}} |z|  | |z|} | |z|}| |z| |z|}  ' ('( '( '( '( '( '( '(!'("'("'("'("'(#'(#'("'("'(#'("'("'("'("'("'("'(#'($'(%'(%'(#'($'($'(%'($'($'($'($'(%'(%'(%'(%'(&'(&'(&'(&'(''(''(''(''(''(''(''(('(&'&'(&'''(&'''(&'''(&'''()'()'()'(('(*'(+'(,'(] ^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^ _`]^ _`]^ _`]^ _`]^_ `]^ _ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`\]]^_`\]]^_`\]]^_`\]]^_`\]]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`                             ()()()()() ()!()!()!()!()!()!()!()"()"()"()"()"()"()"()"()"()#()#()#()#()#()#()#()#()#()$()%()%()&()&()&()&()&()&()&()&()%()'()(()(()(()(()(())())())())())())())()(()(()*()*()+()+(),()-()`abc`a bc`abc`a bc`a bc`a bc`a bc`a bc`a bc`a bc `a bc `a bc `a bc `abc `abc `abc `abc `abc `a bc `a bc `abc `abc `abc `abc `abc `a bc `a bc `a bc `a bc `a bc `a bc `a bc `a bc`a bc`abc`abc`abc`abc`abc`a bc`a bc`a bc`a bc`abc`abc`abc`abc`abc`ab c`abc`abc`abc`ab c`ab c`ab c`ab c`a b c`a b c`ab c`ab c`ab c`ab c`ab c`ab c                                                              )**+, -*+, -*+, -)*+, -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+, -)*+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+,-)*+,-)*+,-)*+,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,- )*+ ,- )*+,- )*+,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+ ,- )*+,- )*+ ,- )*+ ,- )*+ ,-) )*+ ,-) )*+ ,-cd d efghijkl d efghijkl d efghijklc d efghijklc d efghijklc d efghijklc d efghijklc d efghijklc defghijklc defghijklc d efghijklc d efghijklc d efghijklc d efghijklc d efghijklc defghijklc d efghijklc d efghijklc d efghijklc d efghijklc d efghijklc d efghijklc defghijklc defghijklc defghijklc defghijklc d efghijklc d efghijklcc d efghijklcc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk c d efghijk cd efghijkc cd efghijkc c de fghijk                                                                 -./0.*&"--./0.+(# --./0/,($ --./0/-)%!--./0/-*%!--./0.*&"--./0.+(# --./0/,($ --./0/-)%!--./0/-*%!--./0.*&"--./0.+(# --./0/,(# -- ./0/-(%!--./0/-)%!--./0/-*%!--./0.*&"--./0.+'# --./0/,($ --./0/-)%!--./0/.*&"--./0.+(#-- ./0/,($--./0/-)%--./0/-*%--./0.*&--./0.+'--./0/,(--./0/-)--./0/-*--./0.*--./0.+- - ./0/,- -./0/- -./0/- -./0.- -./0.- -./0/- -./0/- -./0/- -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0 -./0-./0-./0-./0-./0-./0-./0-./0-./0-./0-./ 0-./ 0lmnopqrstrne\RKGFEllmmnnopqrstsog_TLHFFllmmnno pqrstspi`VMHFEllmmnno pqrstspkbXNIGFllmmno pqrstpldZOJFFllmmnopqrstrne\RKGFllmmno pqrstsog_TLHFllmno pqrstspi`VMIFllmno pqrstspkbXNIFllmno pqrstqldZPJGllmno pqrstrne\RKGllmno pqrstsog_TLHllmno pqrstspi_UMHllmno pqrstspkaXNIllmno pqrstpkcYOIllmno pqrstqldZOJllmno pqrstrne\RKllmno pqrstsog^TLllmno pqrstspiaWNllmnopqrstsplcZOllmno pqrstqne\Rllmno pqrstsog_Tllmno pqrstspi`Vllmno pqrstspkbXllmno pqrstpldZllmno pqrstrne\llmno pqrstsog^llmno pqrstspi`llmno pqrstspkbllmno pqrstqldllmno pqrstrnellmno pqrstsogllmno pqrstspillmno pqrstspkllmno pqrstqlkllmno pqrstrnkllmno pqrstsokllmno pqrstspkllmno pqrstpkkllmno pqrstqkkllmno pqrstskkllmno pqrstskkllmno pqrstskkllmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmnopqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrst}|zö||Ĺ|zƼ}|ƾ||}|ö|Ĺ|Ƽ|Ⱦ}}öĹƼƼȾöĹƾöĹƼƾöĹƼȾöĹƼȾüļƼȼ˼˼˼           !                     !  !  "  #   $   %!  %!  &"  (#   ($   )%!  *%!  *&"  +'#   ,($   -)%!  .*&"  .+(#   /,($   /-)%!  /-*%!  0.*&"  0.+'#   0/,($   0/-)%!  0/.*&"  00.+(#   00/,($   00/-)%!  00/-*%!  0.*&"  0.+'#   0/,($  0/-)%! 0/.*&" 0.+'#  0/,($! 0/-)%!  0/.*&"  00.+(#   0/,($   EFGHIJK LEFGHIJK LEFGHIJK LFEFFGHIJK LFEFFGHIJK LFEFFGHIJK LFEEFFGHIJK LFEEFFGHIJK LFEEF FGHIJK LFEEF FGHIJK LFEEF FGHIJKFEEF FGHIJKLKKFEEF FGHIJKLFEE FGHIJKLFEFFGHIJKLFEFFGHIJKLKGFEEF FGHIJKLKHFEE FGHIJKLKIFFEEFFGHIJKLKJFFEEFFGHIJKLKGFFEF FGHIJK LHFFEF FGHIJKK LMHFFEEFFGHIJKK LNIFFEEFFGHIJKLOJFFEEFFGHIJKLRKGFEEFFGHIJKLTLHFEEF FGHIJKLVMHFEEF FGHIJKKLXNIFFEF FGHIJKKLZOJFFEF FGHIJKKL\RKGFFEFFGHIJKL_TLHFFEFFGHIJKL`VMIFFEEFFGHIJKLbXNIFFEFFGHIJKLdZOJFFEFFGHIJKLe\RKGFFEF FGHIJKLg^TLHFFEEFFGHIJKLiaWNIFFEEFFGHIJKLlcZOJFFEEF FGHIJKLne\RKGFEEF FGHIJKLog_TLHFFEF FGHHIJKLpi`VMIFFEEF FGHIJKLpkbXNIFFEE FGHIJKLpldZOJFFEE FGHIJKLrne\RKGFFEEFFGHIJKLsog^TLHFFEEFFGHIJKLspiaWNIFFEEFGHIJKLsplcZOJFEEFGHIJKLtqne\RKGFEEFGHIJKLtsog_TLHFEEFGHIJKLtspi`VMHFEEFGHIJKLttpkbXNIFEE FGHIJKLttqldZOJFFEFFGHIJKLtrne\RKGFFEEFFGHIJKLtsoh^TLHFEE FGHIJKKLtspiaWNIFEE FGHIJKtplcZOJFFEEFGHIJKtqne\RKGFEEFGHIJKtsog^TMHFEEFGHIJKtspiaWNIFFEEFFGHIJKtplcZOJGFEEFFGHIJKLtqne\RKGFEEFGHIJKLttsog_TLHFFEF FGHIJKLtspi`VMIFFEF FGHIJKLz|} z|} z|} |z||} |z||} |z||} |zz||} |zz||} |zz| |} |zz| |} |zz| |}|zz| |}|zz| |}|zz |}|z||}|z||}}|zz| |}|zz |}||zz||}||zz||}}||z| |} ||z| |} ||zz||} ||zz||}||zz||}}|zz||}|zz| |}|zz| |}||z| |}||z| |}}||z||}||z||}||zz||}||z||}||z||}}||z| |}||zz||}||zz||}||zz| |}}|zz| |}ö||z| |}Ĺ||zz| |}Ƽ||zz |}ƾ||zz |}}||zz||}ö||zz||}Ĺ||zz|}ƾ|zz|}}|zz|}ö|zz|}Ĺ|zz|}Ƽ|zz |}Ⱦ||z||}}||zz||}ø|zz |}Ĺ|zz |}ƾ||zz|}}|zz|}ö|zz|}Ĺ||zz||}ƾ}|zz||}}|zz|}ö||z| |}Ĺ||z| |}  4 3 5 3 5 6 8 8 : 5 2 2 1 3 2 0 - - - . . .  ,  ,  1 3 3 3 5 2 4 8 2 2 3 0 / 0 / / 0  2 5 3 0 1 4 3 2 4 4 2 0 , "  (  (  (  &  1 '   / #  " LK KLML KLML KLML KLM KLML KLMLKLMLKLMLKLMLKLM KLM KLM KLM KLM KLMKLMKLMKLMKLMKLMKLMKLMKL KLMKL KLMKL KLML KLML KLML KLML KLM LKLML KLML KLMLKLML KLML KLMLKLMLKLMLKLMLKLMLKLMLKLMLKLKLML KLML KLML KLMLKLML KLM L KLM L KLM L KLM L KL M L KLML M L KLMLKLM LKL MK L KL MK L KLMK L KLMK L KLMK L KLM L KLMLKKLL KLKLM LKLMLKK LKLM                                              ,MN,MN-MN-MN,MN,MN-MN-MN0MN-MN-MN3M N3M N0MN1M N1M N1M N2M N2M N3M N3M N9MN:MN8MN4M N4M N4M N2M N0MN0MN5M N6MN6MN5M N4M N4M N4M N7MN7MN8MN7MN9MN7MN7MN6MN6MN6MN7MN7MN8MN8MN;MN=MN=MN9MNNON|NO;NO9NO9NO:NO8NO8NO8NONONON?NM}N    ! !!# $ !#"$$$$"""""##$###$*&'&%+'&&&*+++,!>OPO=OPO=OPO==<==<======:687798898666 5 3 2 3 !5" !3"!6"!6"!8"!8"!8"!8"!6"!6"!6"!6" !5" !5" !4" !4" !4" !4" !5" !5" !5" !4" !4" !5" !3" !3" !3" !3" !3" !3" !3" !3" !2" !2" !3" !3" !2" !3" !3"!6"!6" !1"!."!."!."!."!."!."!,"!-"!'"!,"!*"!)"!)"!("!("!+"!,"!,"!,"!("!("!%" P0QR P/QRP2QRP2QRP4QRP4QROPP5QROP4QROP2QROP2QROP2QROP2QROP1QROP2QROP2QROP2QROP3QROOP3QROOP4QROOP5QOP5QOP4QOP4QOP5QOP3Q OP3Q OP3QOP3QOP3QOP3QOP3QOP3QOPOPQ1Q OPQ1Q O3Q O3Q OPQ1Q O3QOP3QOP6QOPQ5Q OP1Q OP.Q OP.Q OP.Q OP.Q OP.QOPQ-QOP,QOPQ,QOP'QOPQ+QOP*QOP)QOP)QOP(QOP(QOP+QOP,QOP,QOP,QOP(QOP(Q O P%Q 0 /22445422221222334554453 3 3333331 1 3 3 1 3365 1 . . . . .-,,'+*))((+,,,(( % "3# "3# "3# "3# "3# "4# "3# "2# "2# "2# "2# "2# "1#"/#"/#"/#"/#"0#"/#"/#".#"0#"/#"/#"/#"/#"/#"-#",#"+#"+#"+#"*#"*#"*#"*#"*#"*#"*#"*#")#")#")#")#")#"&#"&#"&#"&#"%#"%#"%#"%#"%#"##"$#"$#"##"##""#"##"!#""#""# RST U RST U RST U RST U RST U RST U RST U RST U RSTU RSTU RSTU RSTU RSTUR STURSTURSTURSTURSTURSTUR STURSTURSTURSTUQR RSTUQR RSTUQR RSTURSTUQRRSTUQRRSTUQRSTUQRSTUQRSTUQRSTUQRSTUQRSTUQRSTUQRSTUQRSTUQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRSTQRST QRST QRST QRST QRST QRST QRST QRST QRSTQRSTQRST QR ST QRST QRST QRST QRST QRST QRST                                  #&$%#&$%#'$%#'$%#'$%#($%#&$%#&$%#($%#($%#($%#($%#)$%#)$%#($ %#($ % #($ %#*$ % #)$ % #)$ % #*$ % #*$ % #*$ % #)$ % #*$ % #*$ % #*$ % #)$ % #)$ % #*$% #)$% #)$% #+$% #+$% #)$%#($%#($%#($%#)$%#*$%#*$%#*$%#*$%#*$%#*$%#)$%#*$%#*$%#+$%#)$%#($%#($%#+$#*$%##*$%##)$%##*$#+$#+$#)$#($%##($#($#'$UVWXYUVWXYU VWXU VWXU VWXUVWXUVWXUVWXUVWXUVWXUVWXUVWXUVWXUVWXUVW XUVW X UVW XUVW X UVW X UVW X UVW X UVW X UVW X UVW X UVW X UVW X UVW X UVW X UVW X UVWX UVWX UVWX UVWX UVWX UVWXUVWXUVWXUVWXUVWXUVWXTU UVWXTU UVWXTUUVWXTUVWXTUVWXTUVWXTUVWXTUVWXTUVWXTUVWXTUVWXTUVWXTUVWT UVWXTT UVWXTTUVWXTTUVWTUVWT UVWTUVWTUVWXTTUVWTUVWTUVW                            % &% &%&%& %& %&!%&!%&!%&!%&!%&!%&"%&"%&!%&"%&#%&#%&#%&#%&#%&#%&%%&(%&(%&(%&(%&&%&'%&'%&'%&)%&)%&)%&)%&)%&)%&)%&*%&*%&*%&*%&+%&,%&.%&.%&/%&/%&.%&.%&.%&/%&0%&0%&1% &3% &3% &2% &1% &2% &2% &3% &$%3% &$3% &Y(Z[Y(Z[Y)Z[XY Y(Z[XYY)Z[XYY(Z[XY&Z[XYY&Z[XYY(Z[XYY)Z[Y'Z[XYY)Z[XYY)Z[XYY*Z[XY*Z[XY+Z[XY*Z[XY'Z[XY&Z[XY&Z[XY'Z[XY&Z[XY&Z[XXY'ZXY)ZXY(ZXY(ZXY(ZXY(ZX Y(Z XY&Z XY%ZXY%ZXY%ZXY%Z XY&Z XY&Z XY%Z XY#Z XY#Z XY#Z XY#Z XY#Z XY"Z XY!Z XY ZXY ZXY ZXY ZXYZXYZXY ZXYZXYZXYZXYZXYZXYZXYZXYZXYZXYZWXXYZWXYZ                              &$'&$'&$'&$'&#'&"'&"'&"'&#'&#'&"'&"'&"'&"'& '&'&' &' &' &' &' &' &' &' &'&' &' &'!&'!&'"&'"&'"&'#&'$&'$&'%&'&&'(&'(&'(&'(&'(&''&''&')&')&')&')&'*&'+&'+&'+&'-&'-&'-&',&'/&'/&'/&'/&'/&'/&'/&'[\] ^[\] ^[\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\] ^ [\]^ [\]^[\]^[\]^ [\]^[\]^[\]^[\]^[\]^Z [\]^Z[ \]^Z[[ \]^Z[ \]^Z[ \]^Z[ \]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[ \] Z[ \] Z[\] Z[\] Z [\] Z [\] Z [\] Z[\] Z[\] Z[\]Z[\]Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\]                                           ';(';(';(':(':(':('8('6('6('7('7('7('7('6('6('6('6( '4( '3( '3( '3( '3( '3( '3( '3( '3( '3( '3( '3( '1( '1('0('0('0('/('.('.('-('-('-('.('.('-('-(',(',('*('*('*('*(')(')(')(''(''('%('%('$('$('$('%('#('#('#(^_`a^_`a^_`a^_`a^_`a^_`a^_`a^ _`a^_`a^_`a^_`a^_` a^_` a^_` a^_` a^_` a^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_` a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a^_`a^_`a^_`a^_`a^_`a^_`a]^_`a]^^_`a]^_`a]^_`_``a]^_`a]^_`a]^_`a]]^^_`a]]^^_`]^_`]^_`]^_`]^_`]^_`]^_`] ^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_` ]^_` ]^_` ]^_`                        (#)*+((#)*+((!)*(!)*(!)*(!)*(!)*( )* (#)* ($)* ($)* ()* ()* ()* ()* ()* ( )* ( )* (!)* (!)*(!)*(!)*(") *(!) *(!) *( ) *(!) *(") *(") *(!) *(#) *($)*(#)*($)*(")*(")*(")*(")*($)*(#)*(#)*(#)*(")*(!)*( )*(!)*(!)*(!)*(#)*(")*(#)(#)(")( )( )( )( )(!) () ()() () () ()a bc d efaa bc d efaabc d eabc d eabc d eabc d ea bc dea bc de abcde abcde abcde abc de abc de abc de abc de abc de abc de abc de abc de abc deabc deabc deabc deabc deabc deabc deaabc deaa bc da bc dabc da bc da bcda bcda bcdabcdabcdabcdabcda bcda bcda bcda bcdabcdabcdabcda bcda bcda bcda bcd`a bcd`a bc`a bc`abc`abc`abc`abc`abc`a bc`abc`abc`abc`abc`a bc`a bc                                                                  + ,-./++ ,-.+ ,-.+ ,-.+ ,-.*++ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-.* *+ ,-.* *+ ,-.* *+ ,-.* *+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ , -*+ , -*+ , -*+ , -)**+ , -)**+ , -)**+ , -*+ , -*+ , -*+ ,-*+ ,-)**+ ,-)**+ ,-)**+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-fghijklm nopffghijklmnofghijklmnofghijklmnofghijklmnoeffghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijk lmnoeefghijklmnoeefghijklmnoeefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmn efghijklmn efghijklmn efghijklmn efghijklmndeefghijklmnde efghijklmnde efghijklmnd efghijklmnd efghijklmndd efghijklmnddefghijklmndd efghijklmndd efghijklmd efghijklmd efghijklmdd efghijklmdd efghijkld efghijkld efghijkld efgh ijkld efghijkld efghijkld efghijkl d efghijkl d efghijklcdd efghijklcdd efghijklcdd efg hijkl d efghijkl d efghijkl d efghijkld d efghijkcd d efghijkcd d efghijkcd d efghijkc d efghijkc d efghijkc d efghijkc d efghijk Ĵ óóó               /0/-*&"  /0.+($! .//0/-*&" .//0.+(#  .//0/-*&"  ./0.+($! ./0/-*&" ../0.+($  ../0/-*&" ../0.+($  ../0/-*&"  ../0.+($! ./0/-*&"  ./0.+($! ./0/-*&" ./0.+(#  ./0/-*&" ./0.+(#  ./0/-*&"./0.+($ ./0/-*&" ./0.+($! ./0/-*&" ./0.+($! ./0/-*&"  ./0.+($! ./0/-*&"  ./0.+($! ./0/-*&"  ./0.,(%! ./0/.+(# ./0/-)&"./0.+(# ./0/-*&" ../0.+($!../0/-*&" ../0.+($!../0/-*&# -../0.,(%!--../0/.+(# --../0/-)&"--./0.+(#--./0/-*&--./0.+(--./0/-*--./0.,--./0/.--./0/--./0-./0-./0-./0-./0-./0 -./0 -./0 -./0 -./0 -./0 -./0 -./ 0 -./ 0 -./ 0 -./ 0 pqrstspldZQLHFFEEFFGH pqrstsoh_VNIFFEEF FGHoppqrstspldZQKHFEE FGHop pqrstrnh_UNIFFEEF FGop pqrstspldZQLHFEEF FGo pqrstsoh_VNIFFEEF FGo pqrstspldZQKGFFEEF FGoo pqrstsoh_VNIFFEEF FGoo pqrstspldZQKGFFEF FGoo pqrstsoh_VNIFFEEFGoo pqrstspldZQLHFEEFGoo pqrstsoh_VNIFFEEFFo pqrstspldZQLHFFEEFFo pqrstsoh_VNIFFEEFFo pqrstspldZQKGFFEEFFo pqrstsoh_UNIFFEEFFopqrstspldZQKGFEEFo pqrstrnh_UNIFFEEFFo pqrstspldZQKGFEEFo pqrstsoh_VNIFFEEFnoo pqrstspldZQLHFEEFnoo pqrstsoh_VNIFFEFFnoo pqrstspldZQKGFEEFno pqrstsoh_VNIFFEEFno pqrstspldZQLHFEEFno pqrstroh_VNIFFEEFno pqrstspldZQLHFEEFno pqrstsoh_WNIFFEEFFnno pqrstspld\RLHFFEFFnno pqrstsoiaZPKGFFEEnno pqrstsqnf_UNIFFEEnno pqrstspkcZQKGFEEnno pqrstrnh_UNIFFEnno pqrstspldZQLHFEnno pqr stroh_VNIFFnno pqrstspldZRLHFnno pqrstsoh_WNIGnno pqr stsple\SMImnno pqrstsoiaZPKmmnno pqrstsqnf_UNmmnno pqrstspkcZQmmno pqrstrnh_Ummno pqrstspldZlmmno pqrstsoh_llmmnno pqrstspldllmmnno pqrstsoillmno pqr stqnllmno pqrstspllmno pqrstrllmno pqrstsllmno pqrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstlmno pqrstkllmno pqrstkllmno pqrstkllmno pqrstklm no pqrstklmno pqrstklmno pqrstƾ||zz||}ø||zz| |}ƾ|zz |}||zz| |}ƾ|zz| |}ø||zz| |}ƾ}||zz| |}ø||zz| |}ƾ}||z| |}ø||zz|}ƾ|zz|}ø||zz||ƾ||zz||ø||zz||ƾ}||zz||ø||zz||ƾ}|zz|||zz||ƾ}|zz|ø||zz|ƾ|zz|ø||z||ƾ}|zz|ø||zz|ƾ|zz|ø||zz|ƾ|zz|ø||zz||ƾ||z||ù}||zz||zzƼ}|zz||zƾ|z ø||ƾ|ø} ƾùƼƾøƾù ƾɾ˾                                             " $! &#  (%! +'# -*&" .+($!/-*&# 0.,(%!0/.+(# 0/-)&" 0.+($! 0/-*&#  0.,(%! 0/-+'# 0/-*&"  0.+($!0/-*&# 0.,(%" 0/.+'#! 0/-*&"  0.+(%!  HIJKLKHIJK L KHIJK L KHIJK L KHIJKLKL KGHHIJKLKL KGHIJKLKLKGHIJK LKGHIJKL KGHIJK LKGHIJK LKFGGHIJKK LKFGHIJK LKFGHIJK LKFGHIJK LKFFGHIJK LKFFGHIJK LKFFGHIJK LKFFGHIJK LKFFGHIJK LFGHIJKLKFFGH IJKLKFFGH IJK LKFFGHIJK LKFFGHIJK LKFFGH IJK LFGHIJK LFGHIJK L FGHIJKL FGHIJKL FGHIJKLEFGHIJKLE FGHIJKLE FGHIJKLFEF FGHIJKLFE FGHIJKLFE FGHIJKFE FGHIJKGFEE FGHIJKIFFEE FGH IJKKGFEE FGH IJKNIFFE FGHIJKRLHFFEEF FGHIJKWNIGFEE FGHIJK\SLHFEE FGHIJKaZPKGFFEFFGH IJKf^UNIFFEE FGHIJKkdZQLHFFEEF FGHIJKnh_WNIGFFEF FGHIJKpld\SLHFFGHIJKKsoiaZPKGFEE FGHIJKsqnf_UNIFFEE FGHIJKtspkcZQLHFEE FGHIJKtrnh_WNIGFEEF FGHIJKtspld\SMIFFEEF FGHIJKtsoiaZPKGFEEFGHIJKtsqmf^UNIFFEE FGHIJKtspkdZQLHFEE FGHIJK Ktrnh_WNJGFEE FGHIJ Ktspld\SMIFFEEF FG HIJK KtsoiaZQKHFFEEF FGHIJ Ktqnf^UNIGFEEF FGHIJ Ktspkd\RLHFFE FGHIJ KtsohaZPKGFEE FGHIJ K    } }} } } } |}} |} |} |} ||} ||} ||} ||} ||} |}||} ||}  ||} ||} ||}  |} |} |} |} |}z|}z |}z |}|z| |}|z |}|z |}|z |}}|zz |}||zz |} }|zz |} ||z |}||zz| |}}|zz |}|zz |}}||z||} ||zz |}||zz| |}}||z| |}ƾ||}ù}|zz |}||zz |}Ƽ|zz |}}|zz| |}ƾ||zz| |}ù}|zz|}||zz |}Ƽ|zz |} }|zz |} ƾ||zz| |}  ù||zz| |} }|zz| |} Ƽ||z |} ø}|zz |} = ; 8 8 8 9 9 7 9 6 5 5 5 5 6 7 3 3 2  +  *  + + + + 1 4 , + + + , - / / &  %  &  '  '  %  %                                                  KL"MKLMKLMKLMKLMKLMKLMKLMKLMKLM KLM KLM KLM KLMKLMKLM KLMLM KLMLM K!LM KLKLM KLKLM KLKLMKLMKLMKLMKLMLK KLMLKLMLKLMLKLML MLKLML MLKLMLMLKLMLKLMLKL MLKL MKLKL MKLK LMKL K#LMK L K!LMK L KLMK L KLMK LKLMK LKLMK LKLMK LKLMKLKLMKLKLMKLKLKLMKLKLK LKLKLKLKL KLKL KLKL KLKL KL KLKL K LKL K LKLKLKLKLKLK LKLK LKLKLKLK LKLK LKL"       !           # !                   1M N5M N5M N3M N5MNMNN8MN9MN9MN9MN9MN9MN9MN:MN;MN;MN;MNML ! ; ! NM=NMN=NM=NM7NM6N M4N M4N M4NMN=NMNNM5N M3N M2NM0N M1N M1N M4NM/NM/NM.NM-NM-NM+NM-NM.NM-NM+NM(NM(NM&NM"NM"NM"NM"NM!NM NM N#MN#MN$MN$MN!MN#MNMN(MN)MN&MN&MNMN++... . 1 2 2 2 1 1 1 2 1:=<==;43 3 1 4=5 3 20 1 1 4//.--+-.-+((&""""!  ##$$!#()&&! !~! !=! ! 5! 6! 7! 7! 7! 6! 6! ! .! ! .! 5! 5! 5! 5! .! .! .! .! ,! *! ! !%! %! &! &! '! '! %! $! $! !! !" !! !" !( !( !( !' !+ !- ! N4O N2O N2ON0ON/ON/ON/ONON&ON.ON.ON)ON(ON(ON(ON'ON'ON&ONON O#NO#NO#NO#NO#NO#NO"NO"NONO(NO*NO*NO&NO&NO'NONO/NO1N O2N O2N O3N O3N O3NONO6NO8NO6NO7NO7NO7NO7NO=NONON=NONN 4 2 20///&..)(((''& !##### ""  ( ( ) ) "%'%$"$#&&%$$! "!"((('+-|!"!"!! QR$QR$QR&QR'QR)QR*QR0QR2Q R7QR8QR! QP+O Q P(O Q P(OQPPQ P(OQPPQ P(OQPPQ P)OQP,OQP P/O P6OP4O P4O P8OP8OP;OPON< ! ! = ! = ! < !~ ! = ! = !@NM=NM=NM=NM=NMN=NMN=NM;NM;NM;NMMNMMNML;ML=ML=ML=ML;ML;ML=M%&&--2 2 /77665 5 677>ɇ;===;;=5 !4 !2 !0 ! !0 ! !2 !2 !9 !: !: !: !6 ! ! !! 7 ! ! 7 ! ! = ! = !  @NM=NMN775 4 55--,))'"$"- + + 3868979};9! 8! 6! 4! 4! /! .! .! ,! ,! )! %! ! ! ! ! ! !! ! ! !! ! ! !$ !( !) !( !( ! !) !) !+ !- !5 !5 ! !5 ! !4 !; !; !; !< ! 4O N4O N4O N4O N3O N.ON/ON-ON(ON)ON*ONONONON ONO#NONOONONONO"NO#NO#NO#NO#NONOO&NO/NONO/N O5N O3NO;NO:NO;NO;NO|N4 4 4 4 3 ./-()* #"####&// 5 3;220 0 4 /..,,)% $()(( ))+- 5 554;;;<'! (! $! ! !! ! ! !" !" !" !& ! !& ! !& !- !* !1 ! !!1 !5 !6 !7 !7 !y ! = ! = ! = ! = ! = !  =NMNMNNM != ! M/NM.NM-NM-NM,NM,NM,NM+NM,NM,NM,NMNM$NMNM$NMNM$NMNM$NM&NM(NM(NM)NM+NM*NM*NM'NM'NM'NM(NM'NM%NM"NM#NM#NM"NM#NM#NM#NMNM NM NM NMNMNMNMNMNMNMNMN!MN!MN MN MN MN!MN MNM N MN#MN#MNMN#MN%MN&MN$MN%MN%MN%MN%MN%MN/.--,,,(**,$$$$&(()+**'''('%"##"###   !!   !  ###%&$%%%%% =! }! ;! !=! !=! !=! ;! :! :! !=! !"!=!"!=!"!?!&OPQ'OPQ*OPQ(OPQ)OPQ)OPQ)OPQ)O P Q*O P Q.OP Q/OP Q/OPQ/OPQ1OPQ1OP Q1OP Q1OPQ1OPQ0OPQ0O PQ/O PQ.O PQ0O PQ.O PQ.O PQ.O PQ0O PQ2O PQ2OPQ2OPQ0O PQ0O PQ:OPQO9OPQO:OPQO:OP;OP8OP#$"#<#$""#:#$"<#"#=#"#=#"=#"<#"<#";#";#"9#"9#"9#"9#"9#"7#"7#"7#"7#"7#"6# "4#"6# "4# "4# "3# "3# "3# "2# "1# "1#"0#"0#"0#"-#"-#STUVSTUVSTU VSTU VSTU VSTU VSTU VSTU VSTU V STU V STU V STU V STU V STU V STU V STU V STU V STUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVRSSTUVRRSSTUVRSTURSSTURSSTURSTURSTURSTURSTURSTURSTURSTURST URST URST URST URST URST URST URST URST U RST URST U RSTU RSTU RSTU RSTU RSTU RSTU RSTU RSTURSTURSTURSTURSTURSTU                                 $"%$"%$"%$"%$!%$!%$ %$ %$%$% $% $% $%!$%"$%$$%$$%$$%%$%&$%&$%&$%'$%'$%'$%&$%'$%'$%($%($%($%#'$%*$%*$%+$%+$%+$%#*$%#-$%#+$%#,$%#+$%#*$%#,$ %#,$ %#*$ %#*$ %#,$ %#-$ %#+$ %#+$ %#,$ %#,$ %#.$%#.$% #+$% #,$% #-$% #*$% #+$% #+$% #+$% #,$% #+$%VWXYZVVWXYZVVWXYVWXYVWXYVWXYVWXYVWXYVWX YVWX YVWX YVWX YVWX YVWX YVWX YVWX YVWXY VWX Y VWX Y VWXY VWXY VWXY VWXY VWXY VWXY VWXY VWXYVWXYVWXYVWXYVWXYUVWXYVWXYVWXYVWXYVVWXYVVWXUVWXUVWXUVWXUVWXUVWXUVWXUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVWXUVWX UVWX UVWX UVWX UVWX UVWX UVWX UVWX UVWX UVWX                                     %-&%,&%,&%,&%,&%+&%*&%*&%*&%*&%(&%'&%&&%&&%&&%%&%%&%%&%%&%%&%&&%%&%#&%"&%"&%#&%"&%!&% &% & %& %&!%&!%&!%&"%&"%&"%&%%&%%&%%&#%&%%&%%&%%&&%&'%&'%&(%&(%&(%&*%&+%&+%&,%&,%&,%&,%&1% &1% &1% &1% &1% &1% &+Z[\+Z[\+Z[\+Z[\Z*Z[\Z*Z[\YYZ+Z[\YY*Z[Y*Z[Y*Z[Y*Z[Y+Z[Y,Z [Y,Z [Y+Z [Y+Z [Y*Z [Y+Z [Y+Z [Y,Z [Y,Z [Y*Z [ Y*Z [ Y*Z [ Y*Z[ Y*Z [ Y*Z[ Y)Z[ Y)Z[ Y)Z[Y+Z[Y*Z[Y)Z[Y*Z[Y+Z[Y+Z[Y,Z[Y*Z[Y*Z[Y*Z[XYY+Z[XYY)Z[XY*ZXYY*ZXYY)ZXY(ZXY(ZXY(ZXY'ZXY'ZXY(ZXY&ZXY&ZXY%ZXY$ZXY$ZXY$Z XY$Z XY"Z XY!Z XY Z XY Z XY Z XYZ                         &.'(&,'(&-'(&,'(&+'(&+'(&+'(&+'&+'&*'&*'&*'&*'&*'&('&('&('&('&''&&'&&'&&'&%'&$'&"'&#'&"'&"'&"'& '& '& '& '& '& '& '& ' &' &'!&'#&'#&'$&'%&'&&'(&'(&')&')&'+&'+&'+&'+&'+&'+&',&'-&'.&'.&'.&'/&'/&'0&'0&' \]^_\]^_\]^_\]^_\]^_\]^_\]^_[\\]^\]^[\\]^[\]^[\]^[\]^[\] ^[\] ^[\]^[\]^[\]^[\]^[\] ^[\]^[\] ^[\]^ [\] ^ [\] ^[\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^[\]^[\]^[\]^[\]^[\]^[\]^[[\][\][\][\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\] Z[\] Z[\] Z[\]                  ('(=('(=('(('(=(':(':(':(':('<(';('9('9('9('7( '5( '5('6( '4( '2( '2( '2( '3( '3( '1( '1('0('.('.('.('.(',(',('-(',('-(')(')(')('((''(''(''('%('$('$('#('"('#('#('"('!('!('(!'( '( _`a_`a_`a_`a_`a_`a_`a^__`a^__`a^__`a_`a_`a^__`a^_`a^_`a^_`a^_` a^_` a^_` a^_` a^_` a^_` a^_`a ^_`a ^_`a^_` a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a^_`a^_`a^_`a^_`a^_`a^_`a]^^_`]^^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_` ]^_` ]^_` ]^_` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ `                          ($)*(#)*(#)*($)*(")*(!)*(#)*(%)*(&)*(&)* (') * (') * (') * (&) * (&) * (&) *(#) *(#) *(") *( ) *(!) *(#) *(%)*(&)*(&)*(%)*(%)*(&)*(&)*(%)*(%)*(%)*(%)*((&)(%)($)($)($)(#)(")( )(!)( ) () () ()"()"()"()$()%()&()&()&()'()'()'()'()(()*()+()+()+()-()a bc deabc deabcdea bc dea bcdeabcdea bcdea bc dea bc dea bc de a bc de a bc de a bc de abc dea abc d a bc da bc da bc dabc dabc dabc dabc da bcda bcda bcdabcdabcda bcda bcda bcda bcda bcdabcdaabcabcabca bca bca bca bca bc`a bc`a bc`abc`a bc`a bc`abc`abc`abc`abc`abc`abc`a bc `a b c `a b c `a b c `a b c `a b c `a b c `ab c`a bc`a bc`a bc`a bc                                                             *+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-. *+ ,-.**+ ,-.**+ ,-.**+ ,- *+ ,- *+ ,- *+ ,- *+ ,- *+ ,-*+ ,-*+ ,-*+ ,-*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-)**+ ,-)**+ ,-)*+ ,-)*+ ,-))*+ ,)*+ ,)*+ ,)*+ ,)*+,)*+,)*+,)*+,)*+,)*+, )*+, )*+, )*+, )*+, )*+, )*+,) )*+,) )*+)*+)*+)*+)*+)*+)*+)*+efgh ijk lmnefghij klmnefg hijklmnefghij klmnefghij klmne fgh ijklmne fghijklmnefghijklmnefgh ijk lmnefg hijklmn efg hijklmneefg hijklmneefghijklmnee fg hijk lme efg hij klme efg hij klme efghijklde e fghijkld efgh ijkld efghij kld efgh ijkld efghij kld efghijkld efg hijkld e fg hij kld efghijkld efg hij kldd efg h ij kd e fgh ijk d efg hijk d efghijk d e fghijk d e fghijk d efg hijk d efg hijkcd d efg hijkcd d e fghijkc d e fg hijkc d efgh ijkcc d efgh ijc d efgh ijc d efghijc d e fg h ijcc d efg hijcc d efg hicd e fg hicd e fghic d efg hicd e fg hi c d efg hi c d e fghi c d efghi c d efg hi c d efg hi c d e fg hic c d efg hic cd efg hc d e fghc d efghc d efghc d e fghc d efghc d efghc d efgh                                                                                                                    ./0/.+(%" . ./0/.+(%" . ./0/-+(%!. ./0/-*(#!. ./0/-*&# . ./0.,)&". ./0/.+(%../0/-+(../0/-*../0/-../0./0/../0-../0-./0-./0-./0-./0-./0-./0-./0-./0-./ 0-./ 0-./ 0 -./ 0 -./ 0 -./0 -./0 -./0-./0-./0-./0-./0-./0-./0-./0-./0--./0--./-./-./,-./,-./,-./,-./,-./,-./,-./,-. /,-. / ,-. / ,-. / ,-. / ,-. / ,-./ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./no o pqrstsqnhaZRMIFFnnoo p qrstspng`ZQLHFnnoo p qrs tspmf_XPKHnn o p qr stspme_UNJnno pqrs tspkd\TMnno pqrs tsoibZRnno pqrstsqnhaZnn o pqr stspmf_nn o pqrs tspmenno p qrstspknn o pqr stsonno p qr stqn no p qrstsmnno p qrs tmn o pqrstm n o pqr stm n o pqr stlm n o pqr stlmn o pqr stlm no pqrstlm no p qr stlm no pqrstlm no p qr stllm n o pqr stllm n o p qrslmn o p qrslmn o p qrskllmn o p qrskllm no p qrskllm n o pqrsklmno p qrsklm no p qrsklm no p qrsklm n o p qrsklm n o p qrk lm no p qrklm n o p qrklmn o p qrkklmn o pqrkk lm no p qk lm no pq k lm no pqjk lmn o pqj klm nopqjk lm n o pqijj k lmn o pqij klm n o pqij klm n o pqijk lmn o pqij k lm n o pqij klm n o pqiijklm n o pij k lm n o pijk lmn o pijk lm n o pijk lm n op ijklmn ophij klmn oph ij klm n oph ij klmn oph ij k lmn oph ij k lmn ophij k lmn ophij k lmn op || |       ļ  ù      ļ                              ;   ;                            ɼ  ɼ                                  ȹ                      Ƹ        " %!'#!*&# ,)&" .+(%" /.+(%" 0/-+(%!0/-*(#!0/-*&#  0.,)&"  0/.+(%"  0/.+(%"  0/-+(%"  0/-+(%" 0/-+(%!0/-*(#! 0/-*&#  0.,)&"  0/.+(%"  0/.+(%"  0/-+(%"  0/-+(%" 0 0/-+(%" 00/-+(%!0/-*(#!0/-*&# 0.,)&" 0/.+(%" 0/.+(%" 0/-+(%" 0/-+(%" 0/-+(%" 0/-+(%"  /00/-+(%"  /0/-+(%"  /0/-+(%"  /0/-+(%" /0/-+(%" /0/-+(%!/0/-*(#!/0/-*&# /0.,)&" /0/.+(%" /0/.+(%"  /0/-+(%"  /0/-+(%" / /0/-+(%"  /0/-+(%"  /0/-+(%" /0/-+(%"  /0/-+(%"  /0/-+(%"  /0/-+(%"  /0/-+(%"  /0/-+(%" /0/-+(%" /0/-+(%" E FGHIJKFEEF FGH IJKFE FGH IJKGFFEE FGH IJKIGFFEEF FGHIJKMIFFE FGH IJKQLHFFEF FGH IJKXPKGFFEF FGH IJK^UNJGFFEEF FGHIJKd\TMIGFFEF FGH IJKibZRMIGFFEEF FGH IJ KnhaZRLIFFE FGH IJ Kpng`ZQLHFFE FGH IJ Kspmf_XPKHFFEE FGH IJ Ktspme_UNJGFEE FG HIJ Ktspkd\TMIGFEE FGHIJ KtroibZRMIGFEE FGH IJKtsqnhaZRMIGFFEEF FGHIJKtspngaZRMIGFEE FGH IJKtspmg`ZRMIFFEE FGH IJKtspmg`ZQLHFFEE FGH IJKtspmf_XPKHFFEE FGHIJKtspme_UNJGFFEE FGHIJKtspkd\TMIGFEE FGHIJKsttsoibZRMIGFFEE FG HIJK tsqnhaZRMIGFFEF FG H IJKssttspngaZRMIGFFEEF FG HIJstspmgaZRMIGFEE FGH IJstspmgaZRMIFFEE FGH IJss tspmg`ZQLHFFEEF FGHIJss tspmf_XPKHFFEE FGHIstspme_UNJGFFEEF FGHIstspkd\TMIGFEE FGHIs tsoibZRMIGFEE FGHIstsqnhaZRMIGFFEE FGHI stspngaZRMIGFEE FGHIrsstspmg`ZRMIGFEE FGHIrs tspmgaZRMIGFEE FGHIr stspmgaZRMIGFEE FGHIrr stspmg`ZRMIGFEE FGHqrr s tspmgaZRMIGFEE FGHqrs tspmgaZRMIGFFEF FGHqr s tspmgaZRMIGFFEEF FGHqrs tspmg`ZRMIFFEE FGHqr s tspmg`ZQLHFFEEF FGHqr s tspmf_XPKGFEE FGHqr s tspme_UNJGFFE FGHqr s tspkd\TMIGFFEE FGHqqr s tsoibZRMIGFFE FGqr stsqnhaZRMIGFFEE FGqrs tspngaZRMIGFFEEF FG qr stspmg`ZRMIGFFEE FGp qr s tspmg`ZRMIGFFEEF FGpp qr stspmg`ZRMIGFFEE Fp qr stspmg`ZRMIGFEE Fp qr s tspmgaZRMIGFEE Fp qrs tspmg`ZRMIGFEE Fp qrs tspmgaZRMIGFFEEFFpqr stspmg`ZRMIGFFEEFp qr s tspmg`ZRMIGFFEEFp qr stspmg`ZRMIGFFEEF p qr s tspmg`ZRMIGFFEEF p qr stspmg`ZRMIGFFEEF p qr s tspmgaZRMJGFFEFz |}|zz| |} |z |} }||zz |} }||zz| |}||z |} ||z| |} }||z| |} }||zz| |}}||z| |} }||zz| |}  ||z |}  ||z |}  ||zz |}  }|zz |}  ļ}|zz |} ù}|zz |} }||zz| |}}|zz |} ||zz |} ||zz |} ||zz |}}||zz |}ļ}|zz |}ù}||zz |}  }||z| |}  }||zz| |} }|zz |} ||zz |}  ||zz| |} ||zz |}}||zz| |}ļ}|zz |} ù}|zz |}}||zz |} }|zz |}}|zz |} }|zz |} }|zz |} }|zz |} }|zz |} }||z| |} }||zz| |} ||zz |} ||zz| |} }|zz |} }||z |} ļ}||zz |} ù}||z |} }||zz |} }||zz| |}  }||zz |}  }||zz| |}  }||zz |  }|zz |  }|zz |  }|zz |  }||zz|| }||zz|  }||zz|  }||zz|  }||zz|  }||zz|  }||z|                                                                  + 3  *      #   " $ " "     #   ! " ! ! " !     ) #  ("      !  K L KLK L KLKL K L KLKL K LKLKL KLKL KLKL KLKL K LKL KLKLK LKLKLKL KLKLK L KLKLK L KLKLK L KLKL KLKL K LKL K LKL K LKLKLKL KLKLKL LKLKLKLKLKLKL KLKLKKL KLKLKKLKLKLKLKK LKL KJKK LKJK LKLKJK LKIJJKLKLKIJKLKLKIJKLKIJ KLKIJK LKLKIJK L KIJK L KIJK L KIJKL KHIIJKLKLHHIIJ K LKLHHI IJKKLH IJKLH IJKLH IJK LKH IJK LH IJK LKHH IJKLK LKGHHIJKLK LGHH IJ$KLGHH IJKLKLGGHH IJ%KGH IJKLFGG H IJKLFGH IJKLKFGH IJKLKFGH IJKLKFG H IJKFGH IJKFGH IJKFGH IJKFG H IJKFG H IJK FG H IJK                                             } } $} }} %} |}}  |} |} |} |}  |} |} |} |}  |}   |}   ; ; 9 3 6 6 4 4 - 1 3 2 0 2 * (  ' %  #  $  ( - 1 2  3                          L:ML:ML9M L5M L5M L5M L3M L2M L3M L3M L1M L1ML+ML)ML(ML(ML'ML%ML%ML%ML MLMM"LM#LM$LM$LM#LM$LM$LMK LMK(LMK&LM K"LMK&LMK$LMLM K"LMLM K"LMKLM K*LM K)LML K#LMLMLK!LMLML K#LMLMLKK$LMLK#LMLKLK"LMLKK LMKLKLMLKLK$LKLK(LK-LK1LK2LKLK3LKLKLK LKLKLK LKLKLKLK LKLKLK LKLKLKLKL KLKL KLKLKLKLKLK L::9 5 5 5 3 2 3 3 1 1+)(('%%% "#$$#$$ (& "&$ " " * ) #! #$#" $(-123        5MNMN>MNM=MNM=MNM=MNM ?ML=ML=MLM}MLM=ML=== ?==}=<<2:27 4 4 4 4 3 3 3&&&( NMNNMM8NM:NMNM.N M5N M1N M1N M1NM/N M5NM/NMNM!NM*NM*NM*NM*NM"NM!NM!N!MN$MN$MN&MNMN&MNMN/MN&MNMNMNN1M N,MN,MN,MN,MNM N3MNMN4MNMN>MNM<< ! "! ! !!! ! ! !" ! ! !" !$ !$ !* !* !. !0 !0 !4 !4 !6 !8 !> !  ?  NM9N M4N M3N M3NM0NM0NM-NM.NMNMNMNMNMNMN%MNMNMNMNMN MN,MN+MN0MN2M N6MN6MNMN6MNMN"! ""$$**.004 4 68>9 4 3 300-.% ,+02 666K! !6! ! !2! ! 2! !!  8! !! !8! ! $! ! ! !  #! ! "! !! ! !! ! !" !! ! ! !( ! !/ ! ! ! ! !/ ! ! !2 !3 ! ! 2 !8 !I NONONO NONONON ONON ONONONONONO(NONO,NONO4NO.NO NO=NO N   (,4. =O62288 $# "!"!(  /  / 2 328I ! 6! 6! ! 5! ! !.! .! ! ! ! ! !!# ! !% ! !% ! ! !% ! ! !@ @ON=ON=ONON7ONON ON*ONON7ON ,ON,ON&ON$ONO NON O"NO%NONONON ON ONONONONO(NONO(NO NO*NO N,,&$  "%  (( *={<;|8- ."$%,.0 16?9>4! !! *! !! *! !! *! !! ! !! ! ! ! ! !+ !+ !* !* !/ ! ! 7 !< !} != ! 9  NMN=NMNNMMNzMNM=MNM=MNM =MLMvML1M L1MLML3M LM+++/00//0>z== =v1 13  : 8 8 9    7    4 3 3 ,  , - '  ' ( ( ( (  %  ML=ML=ML>MLM}MLM;ML9ML7ML/MLML5M L3M L-ML*ML+ML+ML$ML$ML$ML MLMLML ML#ML"MLMLMLMLMLMLM(LM$LKM$LKM'LKM'LKM(LKM.LM0LM(LKLKM M*LKLLKMMLLM(L KMLM&L KM.L KM%LKL KM)LKM%LKMLKL K'LK(LK(LK(LK(LKLK%LKLK==>};97/5 3 -*++$$$  #"($$''(.0( *( & . % )% '((((%3 3 3 4 4 0 / / 1 . + ) & & #  # $ * * , - -   "  $  %                                                    + / / / + 2 1 1 1  )   ( . ( ' % * & % ( '  M%L KM$L KM$L KM%L K M&L K M#LKM'LKM'LKM)L KMLM&LKMLM#LKM#LKM!LKM$LK#LKLK#LK$LK*LK LMLLK,LK-LK-LK LKLK"LKLK$LKLK%LKLKLKLLKLKLKLKLKLKLKLK LKLKLK LKLKL KLK LKLKLKLKLK LKLK LK LKLKLK L K LKL K LKL K LKLK LKLKLKLKKLKLK L KLKLLKKLKLKL KLKL KL+KL/KL/KL/KL+K L2K L1K L1K L1KLKL KJKKLKKL LKLKJKL$KJKL%KJIKL#KJIKL!KJIK L%KJIKL!KJIKL KJIKL L#KJIKL L"KJ I % $ $ % & #'') &##!$##$* ,-- "$%              +///+ 2 1 1 1  $%#! %!  # "   "  #       $ & & $  $  #  !   ! ' % $  ) " '                 !#  !#&  "%'*  "%(*- "%(+-/ "%(+-/0 "%(+-/00 "%(+-/00 "%(+-/00!#&(+-/00 !#&)+./00 "%'*,./00 "%(*-./00 "%(+-/00 "%(+-/0 0 "%(+-/0 0!#&(+-/0 0 !#&)+./0 0 "%'*,./0 0 "%(*-./00 "%(+-/00 KLKJIKLKJIK LKLKJI K LKLKJI K LKJI KL!KJIKL"KJIKL"KJIK L!KJ IHKK L KJ IHKKL LKJIHLKJ IHLKLKJ IHL#KJ IHL!KJ IHL KJ IH LKJIHL#KJIHLKJ IHGL"KJ IHGLKLKJI HGLKKLKJ IHGFLKKLKJ IHGFLKJ I HGFLKJ IHGFKLKJ I HGFK IHGFKJ I HGFKJ I HGFKJ IHGFKJ IHG FKJ IHG FKJ IHG FKJIHG FKJI HG FKJ I HG FKJ I HGFKJ I HG FEKJI HGFEFFK KJ IHGFEF KJ I HG FEFGK KJ IHG FEFGIK KJ IHG FEFGIMKKJ I HGFEFHKNTKKJI HG FEFGILPU\KKJI HGFEFGILQX^dKKJI HGFEFGIMRZ_ekKKJ I HGFEFGIMRZ`fmpKKJ IHGFEFGIMRZ`gmpsKKJI HGFEFGIMRZ`gmpstKKJJ I HGFEFGIMRZ`gmpsttKJJ I HGFEFGJMRZ`gmpsttJ I HG FEFHKNTZagmpsttJ I HGFEFGILOU\bhnpsttJI I HG FEFGILQX^dinpstt I HGFEFGIMRZ_ekoqstt I HGFEFGIMRZ`fmpssttI HG FEFGIMRZ`gmpsttI HGFEFGJMRZ`gmpst tI HGFEFFHKNTZagmpst tI HGFEFGILPU\bhnpsttsI HGFEFGILQX^dinpst tsI HG FEFGIMRZ_ekoqsttsIH HG FEFGIMRZ`fmprstts     !"" !      # !    # }" } } }| }| }| }| }| }| }| }| }| } | } | } |} | } | } | }| } |z }|z||  }|z|  } |z|}  } |z|}  } |z|} }|z| } |z|} }|z|} }|z|} }|z|}Ą }|z|}˄ }|z|}̈́ }|z|}̈́ }|z|} } |z| }|z|} } |z|} }|z|} }|z|} } |z|} }|z|}  }|z||  }|z|} }|z|}  } |z|} } |z|} #&*-/00 "&),.00 "%(+./00 "%(+-/00 "%(+-/00 "%(+-/00 "%(+-/00 "%(+-/00  "%(+-/00  "%(+-/00  "%(+-/00/  "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00 / "%(+-/00 / "%(+-/00 / "%(+-/00 /  "%(+-/00/  "%(+-/00/  "%(+-/00/  "%(+-/00/ !#&(+-/00/ !#&)+./00/ "%'*,./00/ "%(*-./00/ "%(+-/00/ "%(+-/00/ "%(+-/00/ "%(+-/00/. "%(+-/00/. "%(+-/00/. "%(+-/00/. "%(+-/00/."%(+-/00/.&(+-/00/.)+./00/ .,./00/ ./00/ .0/ .0/ .0/ .0/ .0/.0/.0/.0/.0/.0/.0/.-0 0/.- 0/.- 0/.- 0/.- 0/.-0/.-IHG FEFGIMT\dkpst tsIHG FEFGIMRZbiorttsIHG FEFGIMRZahnqsttsI HG FEFGIMRZ`gmpsttsI HG FEFGIMRZ`gmpsttsI HGFEFFGIMRZ`gmpsttsI HG FEFGIMRZ`gmpstt srH HG FEFGIMRZ`gmpstt srHHG FEFGIMRZ`gmpsttsrHG FEFGIMRZ`gmpstt srHG FEFGIMRZ`gmpsttsrqHHG FEFGIMRZ`gmpstt srqHG FEFGIMRZ`gmpstt srqHGFEFGIMRZ`gmpstt srqHGFEFIMRZ`gmpst t srqHG FEFGIMRZ`gmpstt srqHGG FEFGIMRZ`gmpstt srqHGG FEFGIMRZagmpstt srqG FEFGIMRZ`gmpstt srqG FEFGIMRZ`gmpstt srqFEFGIMRZagmpstt srq FEFGIMRZ`gmpst t srq FEFGIMRZ`gmpstt sr qp FEFGIMRZ`gmpst tsr qp FEFGIMRZ`gmpstt sr qp FEFGIMRZ`gmpst t sr qpFEFGIMRZ`gmpstt sr qpFEFGIMRZ`gmpstt sr qpFEFGIMRZ`gmpstt sr qpFEFGJMRZagmpstt sr qpFEFFHKNTZagmpstt sr q pFEFFGILPU\bhnpstt sr q pFEFGILQX^dinpst t sr q pFEFGIMRZ_ekoqstt sr q pFEFFGIMRZ`fmpstt sr q pEFGIMRZ`gmpst t sr q pEFFGIMRZagmpst t sr qpFGIMRZ`gmpst t sr q poFGIMRZagmpstt sr q poGIMRZagmpst t sr q poIMRZagmpst t sr q poMRZagmpst t sr q poRZagmpstt sr q poZagmpst t sr q pochnpstt srq p oinpst t sr qp oqst t sr q p ost t sr q p ont t sr q p on t sr qp on t sr q pont sr qp ont sr q p ont sr qp ont srqp ont sr qp ont sr q p o nts sr q p o nms sr q p o nm sr q p o nmsr q p o nmlssr qp o nmlsr qp o nmlsr qp o nml} |z|} } |z|}} |z|} } |z|} } |z|} }|z||} } |z|}  } |z|} } |z|}} |z|} } |z|}} |z|} } |z|} }|z|} }|z| } |z|} }} |z|} }} |z|} } |z|} } |z|} |z|}  |z|}  |z|}   |z|}   |z|}   |z|}  |z|}  |z|}  |z|}  |z|}  |z||  |z||}  |z|}  |z|}  |z||}  z|}  z||}  |}  |}  }                                                           0/. -0/. -0/. -0/. -0/.-0/.-0/.-0/.-0/.-0//.-/.-/.-/.-/.-/.-,//.-,/.-,/.-,/.-,/.-,/.-, /.-, /.-, /.-, /.- , /.- ,/.- ,/.- ,/.- ,/.- ,+//.- ,+/.- ,+/.- ,+/.- ,+/..- ,+.- ,+.- ,+.- ,+.- , +.- , +.- , +.- , + .- , + .- , + .- , + .- ,+ .- ,+.- ,+.- ,+.- ,+.- ,+.- ,+.- ,+.- ,+.- ,+.-- ,+- ,+*-,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*sr q p o nmlsrq p onmlsr q p o nm lkssr q p o nm lkssrr q p o nm lksrr q p onmlkrq p onm lkr q p o nmlkr q p onm lkrqq p o nm lk q p onm lkq p o nm lkq po nm lkq p onml kq p o nm l kjqq p o nm l kjq p o nm l kjq p o nm l kjq p o nml kjqp po nm lkjiqp p o nm l kjiqp p o nm l kji p o nm lkji po nml kji p o nm l kji p o nml kjip o nm l kjipo nml kjip o nm l kjip o nml kj ihpp o nm l kjihp o nm l kj ihp o nm l kj ihp o nm l kj ihpoo nm l kjih onm lkj ih onm lkj iho nm l kjiho nml kji ho nm l kj i honm l kj i ho nm lkj i hgoo nm l kj i hgo nm l kj i hgon nm l kj i hgfn nm l kj i hgfnnm l kj i hgfnm lkj i hgfnm l kj i hgfnm l kj i hgfnm l kj i hgfnm l kji hgfnm l kji hgfnm l kj i hg fnm l kj i hg fnmm l kj i hg fm l kj i hg fem l kj i hg fem l kj i hg femll kj i hgfe l kj i hgfel kj i hg fel kj i hg fel kj i hg fe                                                                                                                                                                  - ,+* - ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+*- ,+* ,+* ,+*) ,+*) ,+*) ,+*) ,+*),+*),+*),+*),+*),+* ),+* ),+* ),+*),+* ),++* ),++* )+* )+*)+*)+*)+*)+*)+*)+*)+*)+*) +*) +*) +*) +*)+*)+*)+*)+*)+*)+*)+*)+*)+* )+** )*!)*")*")*$)*%)*&)*')*()**)*+)*))(lkkjihgf ed kj ihg f edkji hg f edkj i hgf edkjihgf edkj i hgf edkjihgf edkjihgf e dkji hg f e dkj ihg f e dkj ihg f e dkj i hg f e dj i hgf edji hgf e dcji hgf e dcjii hgf e dc i hgf e dc ihgf e dci hg f e dcihg f e dci hg f e dci hgf e dci hg f e d cihg f e d ci hg f e d ci hgf edci hg f e d cihhg f e d cihhg f e d chg f e d chg f e dchg f e dchg f e dchg f e dchgf e dchg f e dchg f e dchg f e dchgg f e dchgg f e dcgf edcg f edcgf f edcgffedcf edcf edcf edcf e dcf e dcf edcf edcf edcbfe edcbe ed cbe edcb edcb edcb edcb edcb e dcbedc be dc be d c be dc ba                                                                                                                  !&'"&'"&'"&'#&'#&'#&'#&'#&'"&'#&'$&'$&''&''&''&'&&'&&'&&'&&'&&''&''&''&''&''&'&&''&''&'(&'(&'*&'*&'+&'+&',&'+&',&',&',&',&',&'-&'-&'-&'-&'-&'.&'/&'/&'.&'0&'/&'1& '0&'1& '1& '2& '2& '2& '2& '2& '2& '2& '[\]^[\]^[\]^[\]^[\]^[\]^[\]^[\]^[\]^[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^Z[\]^ZZ[\]^ZZ[\]^ZZ [\]^ZZ[\]^ZZ[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[ \]Z[\]Z[\] Z[\]Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\]Z [\] Z[\] Z[\] Z[\] Z[\] Z[\]Z[\] Z[\]Z[\] Z[\]Z[\ ]Z[\]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]                               '5( '5( '3( '3( '3( '3( '1( '1( '1( '2( '2( '1( '1( '1('0('0('0('0('0('0('/('/('/('.('-('-('-(',('*('+('+('*('+(')(')(')(')(')('(('(('(('((''('(('((''(''('%('#('#('#('"('$('$('$('!('!('!(' (' (' (' (' (' ( ^_` a ^_` a ^_` a ^_`a ^_`a ^_` a ^_` a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a]^ ^_`a]^ ^_`a]^^_`a]^^_`a]^^_`a]^^_`a]^^_`a]^^ _`a]^^_`a]^_`a]^_`a]^_`a]^_`a]]^_`a]]^_`a]]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^ _`]^ _` ]^ _`]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_`]^_`                                ( )* ( )* (")* (")* (#)* (#)* (")*( )*( )*()*()*()*(") *( ) *( ) *() *() *() *( ) *( ) *( ) *( ) *( ) *( ) *(!)*( ) *( ) *( ) *( ) *(!) *(#)*(!)*( )*( )*(!)*( )*( )*()*()*(!)*(!)*( )*( )*( )*( )*(!)*( )*(!)*((!)*((!)*((!)*(")(")*((!)(")( )( )()()!()!()!()"()"() abc de abc de abc de a bc de a bc de a bc de a bc deabc deabc deabc deabc deabc deabc deabc deaabc deaabc deaabc dabc dabc dabc dabc dabc dabc dabc dabcdabc dabc dabc dabc dabc da bcdabcdabcdabcdabcdabcdabcd`aabcdabcdabcdabcdabcd`aabcd`abcd`abcd`abcd`abcd`abcd``abcd``abcd``abcd`abc`abcd``a bc`a bc`abc`abc`abc`abc`abc`abc`abc`abc`abc                                         *+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-.*+ ,-.*+ ,-.*+ ,-.**+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -)**+ , -*+ , -)**+ , -)**+ , -)**+ , -)*+ , -)*+ , -)*+ , -)*+ , -)*+ ,-)*+ ,-efghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoeefghijklmnefghijklmnefghijklmnefghijklmnefghijklmn efghijklmn efghijklmn efghijklmn efghijklmn efghijklmnde efghijklmnde efghijklmnde efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmnd efghijklmndd efghijklmd efghijklmd efghijklmd efghijklmd efghijklmd efghijklmdd efghijklmdd efghijklmdd efghijkld efghijkld efghijkld efghijkld efghijkl d efghijkl d efghijkl d efghijkl d efghijkl d efghijkl d efghijklcd d efghijkl d efghijklcd d efghijklcd d efghijklcd d efghijklc d efghijklc d efghijklc d efghijklc d efghijklc d efghijklcc d efghijkló                 ./0/-*&" ./0.+'#  ./0/-)%! ../0/-*&" ../0.+'#  ./0/-)%! ./0/-*&" ./0.+'#  ./0/-)%! ./0/-*&" ./0.+'#  ./0/-)%! ./0/-*&" ./0.+'#  ./0/-)%! ./0/-*&"  ./0.+($   ./0/-*&" ./0.+(#  ./0/,(%! ./0/-*&" ./0.+'#  ./0/-)%! ./0/-*&" ./0.+'#  ./0/-)%! ./0/-*&" ./0.+'#  ./0/-)%! ./0/-*&" ./0.+'# ./0/-)%! ./0/-*&" ./0.+($ ./0/-*&"./0.+(# -../0/,)%!-../0/-*&"-../0.+'# -../0/-)%!-../0/-*&"--../0.+'# --../0/-)%!--./0/-*&" --./0.+($ --./0/-*&"--./0.+(# --./0/,(%!--./0/-*&"--./0.+'# --./0/-)%!--./0/-*&"--./0.+($--./0/-*&--./0.+(--./0/-)--./0/-*--./0.+--./0/--./0/--./0.--./0/--./0 -./0o pqrstqme[QKGFEE FGo pqrstsoh^UMHFEE FGo pqrstspkbXOIFFEEF FGoo pqrstqme\RKGFEE FGoo pqrstsoh^UMHFEE Fo pqrstspkbXOIFFEEF Fo pqrstqme[QKGFEE Fo pqrstsoh^UMHFFEFo pqrstspkbXOIFFEFo pqrstqme\RKGFEEFFo pqrstsoh^UMHFFEEFFo pqrstspkbXOIFFEEFFo pqrstqme[QKGFFEEFFo pqrstsoh^UMHFFEEFFnoo pqrstspkbYOIFFEEFFnoo pqrstqme\RLGFEEFFnoo pqrstsoh_VNIFFEFFnoo pqrstspldZQKGFFno pqrstrnf_TMHFEEFno pqrstspiaXNIFFEEFFno pqrstqme[QKGFEEFno pqrstsoh^UMHFFEEFFno pqrstspkbXOIFFEEFno pqrstqme[QKGFFEEFFno pqrstsoh^UMHFEEFno pqrstspkbXOIFFEFFno pqrstqme[QKGFFEFFno pqrstsoh^UMHFFno pqrstspkbYOIGFFno pqrstqme\RKGFFno pqrstsoh^UMHFEEFno pqrstspkbYOIFFEEFnno pqrstqme\RLHFEEFFnno pqrstsoh_VNIFFEEFnno pqrstspldZQKGFEEno pqrstsnf_TMHFEEmnnopqrstspjbXNIFEEmnno pqrstqme[QKGFEEmnnopqrstsoh^UMHFEEmnno pqrstspkbXOIFFEmnno pqrstqme[QKGFEmmnno pqrstsoh^UMHFFmmnno pqrstspkbYOJFFmmno pqrstqme\RLHFlmmno pqrstsoh_VNIFlmmno pqrstspldZQKGlmmnopqrstrnf_TMHlmmno pqrstspjaXNIlmmno pqrstqme[QKllmno pqrstsoh^UMllmno pqrstspkbYOllmno pqrstqme\Rllmno pqrstsoh_Vllmno pqrstspldZllmno pqrstrnf_llmno pqrstspkbllmno pqrstqmellmno pqrstsohllmno pqrstspkllmno pqrstqmllmno pqrstsollmno pqrstspllmno pqrstsllmno pqrsts}|zz |}ø|zz |}Ƽ||zz| |}}|zz |}ø|zz |Ƽ||zz| |}|zz |ø||z|Ƽ||z|}|zz||ø||zz||Ƽ||zz||}||zz||ø||zz||Ƽ||zz||}|zz||ø||z||ƾ}|||zz|Ĺ||zz||}|zz|ø||zz||Ƽ||zz|}||zz||ø|zz|Ƽ||z||}||z||ø||Ƽ}||}||ø|zz|Ƽ||zz||zz||ø||zz|ƾ}|zz|zzƻ|zz}|zzø|zzƼ||z}|zø||Ƽ|||ø|ƾ}ƻøƼøƾƼøƼþƾ˾                                                                  "  #     %!  &"  '#  )%! *&"   +($   -*&"  .+'#   /-)%!  HIJK LKGHHIJK LKGHIJK L KGHIJK L KGHIJKKL KGHIJKKL KGHIJKL KFGGHHIJKL KFGGHHIJKL KFGGHIJKL KFGGHIJK LKFGHIJK LKFGHIJKLKLKFGHIJKLKLKFGHIJKLKLKFGHIJKLKFGHIJKLKFGHIJKLKFGHIJKLKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJKLKLKFGHIJKKLKFGHIJKLKLKFGHIJKLKLKFGHIJKLKFFGHIJK LKFFGHIJK L FGHIJK L FGHIJK L FGHIJK L FGHIJKL FGHIJKL FGHIJKLE FGHIJKLE FGHIJK LFEFFGHIJK LFEFFGHIJK LFEEFFGHIJK LE FGHIJKLKLFEEFFGHIJKLFEE FGHIJKLFE FGHIJKKLGFFEEFFGHIJKLHFFEEFFGHIJKKLJFFEE FGHIJKLGFFEEF FGHIJKLNIFFEEF FGHIJKLQKGFEEF FGHIJKLTMHFEEF FGHIJKLKLLXOIFFEEFGHIJKL\RKGFEE FGHIJKL^UMHFFEEF FGHIJKbYOIFFEEF FGHIJKLe\RLHFFEEF FGHIJKLh_VNIFFEEF FGHIJKLldZQKGFEE FGHIJKLng^TMHFEE FGHIJKLpkbYOJGFEEF FGHIJKL } } } } } } |}} |}} |}} |}} |} |}|}|}|}|}|}|}|} |} |} |} |} |} |} |}|}|}|}|}||} ||} |} |} |} |} |} |}z |}z |} |z||} |z||} |zz||} z |}|zz||}|zz |}|z |}}||zz||}||zz||}||zz |}}||zz| |}||zz| |}}|zz| |}|zz| |}||zz|}}|zz |}||zz| |}||zz| |}||zz| |}||zz| |}}|zz |}|zz |}Ƽ}|zz| |}; 9 7 8 8 8 ; ; ; ; ; ; 9 8 8  2  2 2 2 5 5 6 3 3 3 2 5 5 6 5 4 4 3 3 . 4 4 5 2 1 1 0 . 0 0 0 0 0 2 2 / / 1 2 4 . 2 1 1 0  6 6 5 $ KL!MKL!MKLMKL MKL MKL MKL MKL MKL MKL MKLMKLMKLMKLMKLMKLKLMKLKLM KLM KLM KLM KLMKLM KLM KLMLM KLM KLM KLM KLMKLM KLM KLM KLM KLMLK KLMLKKLM KLM KLMLM KLMLML KLMLK KLML KLMLKLMLKLMLKKLMLKLMLKLMLKLMLKLMLKLM L KLM L KLMLKLM L KLMLKLM L KLM L KLMLKL ML KL ML KL MLKL MLKLKL M LKLM LKL M L KL M!!                                            $MN$MN'MN*MN*MN*MN*MN,MN*MN+MN*MN(MN+MN+MN/MN0MN0MN)MNM N/MN/MN/MN/MN0MN0MN1M N2M N3M N4M N4M N4M N5M N6MN7MN:MN;MN:MN9MN6MN6MN7MN4M N4MNMN4MNMN5MNMN>MNM:MN;MN;MN>MN>MNM:MN:;;>>:<====< &! &! %! %! %! )! %! $! $! $! $! !! "! $! $! #! #! ! ! ! !! ! "! "! !! !# !% !% !$ !' !$ !% !$ !$ !$ !$ !$ !% !( !( !* !, !, !. !. !- !' !' ! !- !, !- !. !. !. !/ !- !- !- !. !1 !2 !2 !0 !2N O5N O5N O6NO6NO6NO7NO7NO7NO4N O4N O6NO6NO9NO;NO:NO:NO:NO8NONONNMN>NM=NM=NM&'&=&'&&%&=&%=&%=&%=&%=&%=&%=&%;&%;&%8&%7&%7&%7&%7&%7&%6&%6& %4& %4& %2& %2&%0&%0&%0&%0&%0&%0&%/&%+&%+&%+&%*&%)&%'&%(&%(&%(&%'&%%&%%&Z[\]Z[\ ]Z[\ ]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\ ]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]ZZ[\]ZZ[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\ Z[\ Z[ \ Z[ \Z[ \!Z[ \"Z[ \#Z[\#Z[\$Z[\$Z[\%Z[\'Z[\'Z[\(Z[\(Z[\)Z[\*Z[\*Z[\+Z[\+Z[-Z[+Z[/Z[/Z[0Z[/Z[YZ.Z[Y.Z[Y/Z [Y.Z [Y.Z [Y/Z [Y.Z [Y-Z [Y.Z [                   !'(!'(!'($'(%'(%'(%'(%'(%'(%'(&'(''(''(*'(*'(*'(+'(-'(.'(.'(.'(0'(0'(0'(&'/' (&'/' (&'0' (&0' (&0' (&.' (&.' (&.' (&/' (&0'(&1'(&3'( &0'( &/'( &.'( &.'( &/'( &1'(& &0'(& &/'(&&.'&-'&,'&*'&+'&,'&,'&+'&,'&)'&*'&('&&'&&'&&'&&'&$'&#'&"'& ']^_ `]^_ `]^_ `]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]]^_]^_]^_]^_]^_]^_]^_]^_\]]^ _\]]^ _\]]^ _\]^ _\]^ _\]^ _\]^ _\]^ _\]^ _\]^_\]^_\]^_ \]^_ \]^_ \]^_ \]^_ \]^_ \]^_\ \]^_\ \]^_\\]^\]^\]^\]^[\\]^[\\]^[\\]^[\\] ^[\]^[\] ^[\] ^[\] ^[\]^[\]^[\]^[\]^[\]^[\]^[\]^[\]^                        /()/()/()0()2( )2( )3( )3( )3( )5( )5( )7()7()8()8()8()9():():();();()=()=()=()=()('(=('=('<('<(';(';('<(';(';('6('6( '4( '3( '3( '3( '3( '3( '3( '3( '2(`abc`a bc`a bc`a bc`abc`abc`abc`abc`a bc`a b`a b`ab`ab`ab`ab`ab`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`a_`a_`a_`a_`a_`a _`a _`a _`a _`a _`a_`a_`a_`a_`a_`a_`a_`a_`a^__` a^_` a^_` a^_` a^_` a^_`a^_ `a^_ `a^_`a^_`a^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a^ ^_`a^ ^_` ^_`                           )*+)* +)* +)* +)* +)* +)* +)* +)*+)*+)*+)*+)*+)*+)*+")*+")*+")*%)*')*')*')*')*()*()*(')*()()*(')*(&)*(()*(()*(()*(()*(()* (() * (') * (') * (() * (() * (') *(()*(()*(')*())*())*(')*(')*(*)*())*(+)(,)())())(')(&)(#)(")(")(")(")(!)() ()!()c d efghc d efghcd e fghccd e fgc d e fgcd e fgc d e fgcc d e fcd efcd efcd efbcc d efbcc d efbccd efbcd efbc d efbc d efbcd eb c d eb c d eb c d ebc d ebcde bc de bc dea bcdeab bc dea bcdeabcdeabc deab c deab c dea bcdeaa bcd ab c d abc d abc d ab c d abc d a bc dabcda bcda bcda bcda bcdabcda bcda bcda bcda bca b!ca bca bca bca bca bca bca bca bca bca bca bc a bc`a bc                                                       !             +,-./++ ,-.+,-. + ,-. + ,-. + ,-. + ,-. + ,-. + ,- . + ,- .+ ,- .+ ,- .+ ,-.+ ,-.+ ,-.+ ,-.+ ,-.+ ,-.+ ,-.*++ ,-.*+ ,-.*+ ,-.**+ ,-.**+ ,-*+ ,-*+ ,-*+ ,-*+,-*+ ,-*+ ,- *+ ,- *+ ,- *+ ,- *+ , - *+ , -*+ , -*+, -*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-**+ ,-**+ ,*+ ,)**+ ,)*+ ,)**+ ,)*+,)*+,)*+,)*+,)*+,)*+, )*+, )*+,))*+ )*+ )*+h ijk lmn ophhij k lmn oh ijk lm no hij k lm noghh ijk lm nogh h ij k lm nogh ijk lm nogh ij k lm nofgg h ij k lm nofggh ij k lm nofg h ij k lm nofg hijk lm noffg h ijk lmnfg hij k lmnfg h ij k lmnfgh ijk lmnfg h ijk lmnfg hijk lmnfg h ij klmneffg h ijk lmne fgh ij k lmne fgh ij k lmnee fg hij k lmnee fgh ij k lme fg hijk lmee fg hij k lmee fg h ij k le fg h ijk le fg h ij klefg h ij kl efg h ij kl efg h ij kl e fg h ij kl e fg hij klde e fg h ij kldde e fg h ij kldd e fg h ij kd e fg h ijkd efg hijkd e fgh ijkd e fg h ijkd efg h ijkd e fg h ijkd e fg h ijk d efg hijk d e fg h ijk defg h ijkd d e fg h ijkd d efg h ij d e fg h ijcd d efg h ijccd d e fg h icdd e fg h icd e fg hicd efg hicd e fg hic de fg hicd e fg hic d e fg hi c de fg hi cd e fg hiccde fg h c d e fgh c d e fgh   ĸ                                ô                                                                                                                                 /0/-+(&#!/0/.+)&#! /0/.,*'%" ./0/.-*(%" ./0/-+(%" ../0/-+(%" ../0/-+(%" ../0/-+(%" ../0/-+(%" ../0/-+(%"../0/-+(%. ./0/-+(. ./0/-+. ./0/-. ./0/. ./0./0./0./0./0./0./0./0-../0-./0-./0-./0-./ 0-./ 0-./ 0-./ 0-./0-./0 -./0 -./0 -./0 -./0-./0-./0--./-./-./-./-./-./-./-./-./,--./,-./,-./,-. /,-. /,-. /,-. /,-./,-./ ,-./ ,-./ ,-./ ,-./,-.+ ,-.+,-. p qr stspmgaZTNKHFFEEF p qr stspnhc\UPLIGFEEFp p qr s tspnid^XQLIGFFEEoo p qrs tsqoke_ZRMIGFFEoo p qr s tspmf`ZRMIGFFoo p qr s tspmg`ZRMIGFoo p qr s tspmg`ZRMIGoo pqr s tspmg`ZRMIoo pqrs tspmg`ZRMoo p qr s tspmg`ZRoo p qr s tspmgaZo o p qr s tspmg`noo p qr s tspmgnnoo p qr s tspmnn o p qr s tspnn o p qr s tsnn o p qr s tn o p qr stn o p qr stno p qr stnop qr stn o p qr st n o p qr stmnn o p qr stm n op qr stm n o p qr sm n o p qr sm n o p qr slm n op qrslm n o p qrslm n op qrslm n o p qrslm n o p qrslm n op qrslm n op qrs lm n o p qrsl lm n op qrkl lm n op qrk lm n o p qrkk lm n o p qk lm n op qk lm n o pqk lm n opqk lm n opqk lm n o pqk lm n opq k lm n o pq k lm n opqjk k lm n opj k lm n opj k lm n opijj k lm n o pijj k lm n o pij k lm n o pij k lm n o pij klm n opij k lmn opij k lm n opij k lm n opij k lm n op ij k lm n op ij k lm n ohij k lm n oh ij k lm n o  ||zz|  }|zz|  }||zz  ü}||z  }||  }|  }                                                                       ˾         ɼ                           Ȼ                       ƹ                  " %" (%"  +(%"  -+(&#!/.+)&#! 0/.,*'%" 0/.-+(%" 0/-+(%" 0/-+(%" 0/-+(%" 0/-+(%" 0/-+(&#!0/.+)&#!  0/.,*(%"  0/.-*(%"  0/-+(%"  0/-+(%" 0/-+(%" 0/-+(&#!0/.+)&#! 0/.,*(%" 0/.-+(%"  0/-+(%"  0/-+(&#! 0/.+)&#!  0/.,*(%" 0/.-*(%" 0/-+(%" /00/-+(&#!/00/.+)&#! /0/.,*(%" /0/.-*(%" //0/-+(&#!/0/.+)&#! /0/.,*'%" /0/.-*(%" /0/-+(&#! /0/-+)&#!   /0/.,*(%"   /0/.-+(&#! /0/-+)&#!  /0/.,*(%" /0/.-*(%#!/0/-+)&#! /0/.,*(%" /0/.-*(%#!/0/-+)&#! /0/.,*'%" //0/.-*(%#!//0/-+)&#! //0/.,*'%" //0/.-+(&#.//0/-+)& FGH IJK FGH IJK FG HIJKE FG H IJKE FG H IJKFE FG HIJKFEEFG H IJKGFFEEF FGH IJKIGFFEFFG H IJ KMIGFFE FG H IJ KRMIGFFEEFG H IJ KZRMIGFFEE FG H IJK`ZRMIGFFE FG H IJKg`ZRMJHFFEEFGH IJKmgaZTNKHFFE FGH IJKpnhb\UPLIGFFEE FGH IJKspnid^XQLIGFFEE FG H IJKtsqokf_ZRMIGFEE FG H IJKtspmf`ZRMIGFEEFG H IJKtspmgaZRMIGFFEF FGH IJtspmg`ZRMIGFFEFGH IJtspmg`ZRMJHFFE FGH IJtspmgaZTNKHFFEFG H Itspnhb\UPLIGFEEFG H Itspnid_XQMIGFFEE FG HIsttsqoke_ZRMIGFEEFG HI tspmf`ZRMIGFFEF FG HIst tspmg`ZRMIGFFEFG HIs tspmg`ZRMJGFFEE FG HIs tspmgaZTNKHFFEEFG HIs tspnhb\UPLIGFFG HIss tspnid_XQLIGFFE FG Hs tsqokf_ZRMIGFFEEFG Hs tspmf`ZRMJGFFEFGHs tspmgaZTNKHFFEEFGH s tspnhb\UPLIGFEEFGHr s tspnid_XQMIGFFEEFGHr s tsqoke_ZRMIGFFEFGHr s tspmf`ZRMJGFFEEFGHqrr s tspmgaZTNKHFFEFFGHqrr s tspnhb\UPLIGFFEEFGqr s tspnid_XQMIGFFEEFGqr s tsqoke_ZRMJGFFEFGqqr s tspmfaZTNKHFFEEFqr s tspnhb\UPLIGFEE Fqr s tspnid^XQMIGFFEF Fqr s tsqoke_ZRMJHFFE Fqr s tspmfaZTNKHFFEE F qr s tspmhb\UPLIGFFEE F qr s tspnid_XRMIGFFEFpq qr s tsqokf`ZTNKHFFEEFp qr s tspmhb\UPLIGFFEEFp qr s tspnid_XRMJHFFEFp qr s tsqoke_ZSNKHFFEFp qr s tspmgb\UPLIGFFEFpp qr s tspnid_XRMJHFFEEFpp qr s tsqoke_ZSNKHFFEE p qr s tspmgb\UPLIGFFEp p qr s tspnid]XRMIGFFp p qr s tsqoke_ZTNKHFp p qr s tspmgb\UPLIp p qr s tspnid^XRMpp qr s tsqokf`ZTopp qr s tspmhb\ |}  |}  |} z |}  z |}  |z |} |zz|}  }||zz| |} }||z||}   }||z |}   }||zz|}   }||zz |}  }||z |}  ||zz|} ||z |} }||zz |} }||zz |}  ü}|zz |}  }|zz|}  }||z| |} }||z|} ||z |} ||z|}  }|zz|}  }||zz |} ü}|zz|}  }||z| |}  }||z|}  }||zz |}  ||zz|}  }||}  }||z |}  ü}||zz|}  }||z|} ||zz|} }|zz|} }||zz|} ü}||z|} }||zz|} ||z||} }||zz|} }||zz|} ü}||z|} ||zz| }|zz | }||z| | ü||z | ||zz |  }||zz |  }||z|  ü||zz|  }||zz|  ||z|  ü||z|  }||z|  ||zz|  ü||zz  }||z  }||  ü|      ü                                 4    , 0 0 0  )  ,   (   '    "  "  &    # $ " #  ' $ ! % % $ % " $"!!         !#! KLK LKLKLKLKLKLKLKLKLK LKLK LKLKLK LKLKLKLKLKLKLKLLKLKLKLLKLKL K L4K LKL KL KL,KL0KL0KL0KLKL)KLKLKJ!K LKLLKJKLKLLKJKLKIJKLKIJKLKIJKLK LKIJKLKLKIIJ!KLKIIJKLKIIJKL IJKLHIIJ!KLH IJKLH IJ KLKLH IJ#KLH IJ K LH IJK LH IJ!KLHIJ#KL H IJ"KL H IJ KLG H IJKLG H IJ KFGG H IJKFG H IJKFG H IJKFG H IJKFG H IJKFG H IJKFG H IJK FG H IJK FG H IJK FG H IJK FG H IJK FG H IJKFG H IJ KEFFG H IJ KEFG H IJ KFEEFG H IJ KFEFG H IJKGFFEEFG H IJKJGFFEFG H IJKNKHFFEEFG H IJKUPLIGFFEFG H IJK     4   ,000)!  ! !    #     !#  "   }  }   |}}  |}  |}  |}  |}  |}  |}   |}   |}   |}   |}   |}  |}   z||}   z|}   |zz|}   |z|}  }||zz|}  }||z|}  ||zz|}  }||z|}   ; 9 9 4 3  3 1 , 3 3 3 3 1  $  $  $  $  , , ( %  * (        ! #                          ! . +    +  - - -  '   #  " , - /  L(ML(ML'MLMLMM LM"LM#LM(LM"LMLM#LMLM#LMLMK&LML MK"LML MK.L M K)L M K'L MKLK%L M K"LMK(LM K/LM K/LM K2LMK K2LMK K1LKLK$LKLK$LKLK$LKLK$LKLK,LK,LK(LK%LKL K*LK(LKLKLKLKLKLKLKLK!LK#LKLKLK LKLKL K LKL K LKLKLK LKL KL K L KL KLKL KLKL KLKL KLKLKKLKL!KL.KL+KLKLK LKL+K LKL-KL-KL-KLKL'KLK LKL#KLKL"KL,KL-KL/KLKLK((' "#("##& " . ) ' % "( / / 2 2 1$$$$,,(% *(!#          !.+ + ---' #",-/ @  = ; 7 9 8 8 8 8 0 /  ' -  ! "  ML9MLML4ML:MLML5MLML5ML9ML7MLML0ML/ML/ML*ML'ML%ML"ML"ML"MLMLMLMLM LM(LML M)LML M*LM+L MLM+L MLM.LMLM8LMKL7LMK%LMLMLMK*LMLMK0LMK/LMK1LMK4LMLK8LK0LK/LKLK'LK-LKLK!LK"LKL94:55970//*'%""" ( ) *+ + .87%*0/1480/'-!" ! = !  M:NM;NM;NM:NM9NM8NM7NM6NM8NM8NM6NM6N M5N M4N M5N M4N M5N M5N M5N M3NMNM-NMNM.N MNM.N MNM.NM.NM-N M3N M4NM.NM,NM+NM+NM+NM-NM-NM.NM-NM-NM,NM+NM)NM(NM(NM(NM'NM'NM%NM%NM$NM%NM%NM&NM(NM$NM$NM"NM"NM#NM$N!MN!MN"MN"MN"MN+,,,+, , -0. + + * + , + , * / .(( ( ((' 2 3.,+++--.--,+)(((''%%$%%&($$""#$!!"""! !! =! 6! !=! !=! !! 6! !=! =! ;! ! !7! ;! ;! ;! ;! ;! 9! 9! 9! 6! 5! 5! 5! 5! 4! 4! 4! 2! ! +! ! +! ! +! ! +! +! +! ,! ,! .! .!N.ON+ON)ON)ON*ON(ON'ON'ON&ON&ON(ON)ON(ON*ON)ON(ON(ON(ON#ON"ON#ON"O!NO!NO!NO"NON"ONONON!O NON ON O NONO NONO!NO"NO!NO"NO"NO$NO'NO'NO'NO'NO'NO*NO+NO,NO-NO-NO,NO-NO+NO,NO,NO,NO+NO+NO/NO2N O0NO,NO2N O/NO.+))*(''&&()(*)(((#"#"!!!""!   ##!!!! ! " # # ! "       ! +!"(!"(!"(!"*!"*!"*!"*!"*! "!"*!"2! "2! "-!"! "3! "6!"6!"4! "4! "0!"0!"1!"!"8!"8!":!"9!";!";!":!"9!":!"9!":!":!"9!"9!"=!">!"!! O PQ!OPQ#OPQ#OPQ#OPQ#OPQ#OPQ#OPQ#OPOPQQPQ#OPQ'O P Q%O P Q&OPQP Q(O P Q)O PQ*O PQ*O P Q+OP Q+OPQ+OPQ+OPQPQ+O PQ+O PQ(OPQ*OPQ*OPQ-O PQ-O PQ-O PQ/O PQ/O PQ3OPQ4OPQ5OPQ5OPQ/O PQ4O PQO3O P4O P5O P5O P4O P5O P5O P7OP7OP8OP8OP8OP8OP:OP9OP>OPO;OPO !########' % & ( ) * * + ++++ + (**- - - / / 3455/ 4 3 4 5 5 4 5 5 778888:9>;3" #3" #3" #3" #4" #4" #4" #4" #3" #4" #5" #5" #7"#6"#7"#;"#;"#="#="#="#<"#>"#""!="!="!="!:"!="!="!="!9"!9"!9"!9"!8"!8"!:" !4" !2" !2" !2" !2"!0"!/" !"!/"!/"!/" !"!." !"!."!."QR SQR SQR S QR S!QR S!QR S!QR S#QR S$QR S&Q R S%QR S$QR S%QRS&QRS%QRS&QRS'QRS(QRS(QRS)QRS*QRS+QRSQ,QR,QR,QR,QR.QR.QR/QR0QR1Q R1Q R1Q R3Q R3Q R3Q R2Q RP1Q RP2Q RP3Q RP0Q RP5QRP4QRP4QRP2QRP2QRP3QRP4QRP4QRP4QRP7QR P1QR P1QRP P/QR P1QRP P1QROOP P0QO P/QOPQP/QO P/QO P/QOPQP.QOPQP.QO P.Q    ! ! ! # $ & % $ %&%&'(()*+,,,,../01 1 1 3 3 3 2 1 2 3 0 5442234447 1 1 / 1 1 0 // / /.. .2# $4# $4# $5# $4# $4# $5# $7#$7#$9#$:#$9#$9#$9#$;#$<#$<#$;#$<#$=#$=#$#"#=#"=#"=#"=#"=#"<#"<#"<#"<#";#";#";#"9#"9#"9#"9#"8#"7# "5# "5# "5# "2#"0#"0#"0#"0#"0#"0#"/#".#".#"-#",#",#",#")#"(#"(#"'#"'#"'#STU VSTU VSTU VSTU VSTU VSTU VSTU VSTUVSTUVSTUVSTUV STUV STUV STUV STUV STUVSTUVSTUVSTUVSTUVSTUVSTUSTURS STURSTURSTURSTURSTURSTURSTURST URST URST URST URST URST URST URST URST URSTURSTU RSTU RSTU RSTU RSTURSTURSTURSTURSTURSTURSTURRSTURRSTURRSTRSTRSTQRRSTQRRSTQRSTQRSTQRSTQRSTQRSTQRST                          $ %$%$% $%"$%"$%#$%#$%%$%&$%'$%&$%'$%($%*$%+$%,$%-$%-$%-$%.$%/$%/$%#-$%#.$%#/$ %#0$ %#0$ %#/$ %#.$ %#.$ %#/$ %#-$ %#-$ %#-$ %#.$ %#.$ %#.$ %#1$% #0$% #/$% #0$% #0$% #.$% #0$%##/$#/$#.$#.$#.$#-$#-$#+$#+$#+$#)$#)$#)$#($#($#'$#&$#&$#%$VWX YVWXYVWXYVWXYVWXYVWXYVWXY VWXY VWXY VWXY VWXY VWXY VWXY VWXY VWXY VWXY VWXYV VWXVWXVWXVWXVWXVWXUVWXUVWXUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVW XUVWX UVWX UVWX UVWX UVWX UVWX UVWXUUVWUVWUVWUVWUVWUVWUVWUVWTUUVWTUUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVW                               %$&%#&%$&%#&%#&%#&%!&%!&%!&% &%&% & %& %& %&"%&#%&$%&$%&$%&(%&'%&'%&'%&'%&+%&,%&,%&,%&.%&.%&0%&0%&0%&0%&/%&/%&0%&4% &5% &5% &5% &6%&7%&8%&9%&;%&$%9%&$;%&$:%&$<%$;%$:%$9%$9%$9%$8%$8%$6%$6%$6% $4% $4% $4%Y.Z [ Y,Z[ Y+Z[ Y.Z[ Y.Z[ Y.Z[ Y0Z[ Y/Z[ Y0Z[ Y/Z[ Y0Z[ Y0Z[Y/Z[Y Y.Z[Y/Z[YY/ZY/ZY.ZXYY.ZXYY-ZXYY,ZXYY*ZXY)ZXY)ZXY&ZXY&ZXY&ZXY&ZXY&ZXY%ZXY#ZXY#ZXY"ZXY"Z XY Z XYZ XYZ XYZ XYZXYZXYZXYZXYZXYZXYZXYZXYZWXXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXY ZWXY ZWXY ZWXY ZWXY Z WXY Z WXY Z WXY Z                             &'&'&' &' &'!&'"&'"&'$&'$&'%&'%&'&&'%&'&&'(&')&')&'*&',&'-&',&',&'.&'.&'.&'2& '3& '3& '3& '3& '4& '6&'6&'7&'7&'7&'7&'9&':&';&';&'<&'>&'&&%<&%<&%;&%:&%:&%:&%:&%6&%6&%6&[\]^[\]^[\]^[[\]^[[\]^[ [\]^[ [\]^[ [\][\][\][\][\][\][\][\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\] Z[\ ] Z[\ ] Z[\ ] Z[\ ] Z[\ ] Z[\ ] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]ZZ[\Z[\Z[\Z[\Z[\Z[\Z[\Z[ \Z[ \Z[ \Z[ \Z[ \ Z[ \#Z[ \#Z[ \%Z[\%Z[\&Z[\&Z[\&Z[\                         '0('0('/(',('+('+('+(')(''(''('%('&('#('%('#('"(' (' ('('('(!'(!'("'(#'(#'(#'(%'(%'(%'(''(''(('(+'(+'(+'(,'(,'(-'(2' (2' (3' (3' (2' (2' (&'0' (&5'(&4'(&4'(&3'(&2'(&5'(&6'(&&6'(&&6'(&&4'(&&4'(& &4' &1' &1'&0'&0'&0'&-'^_`^_`^_`^_`^_`^_`^_`]^^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_ ` ]^_`]^_`]^_`]^_`]^_`]^_`]^_`]]^_]^_]^_]^_]^_]^_]^_]^_]^ _]^ _]^ _]^ _]^ _]^ _\]]^ _\]^_\]^_\ ]^_\]^_\]^_\]^_\]^_\\]^_\\]^_\\]^_\\!]^_\ \ ]^ \]^ \]^\]^\ ]^\!]^\] ^                !    ! !()"()"()"()$()%()&()&())()*()*())()+(),()-()0()1( )2( )2( )3( )3( )6()7()7()9():():();();()=()('(=('(=('=('<(':(':(`a bc`a bc`a bc`a bc`a bc`a b c`a b c `a b c `a bc `a bc `a bc `a bc `a bc `a bc ` a bc `"a bc`"abc`!abc`a b`a b`a b` ab`!ab`!ab`"ab`"ab`!ab`!ab`ab` ab`"a`"a`"a`a_``a_`a_`a_`a_`a_`a_ `a_`a _`a _!`a _"`a _!`a _!`a _ `a _`a _ `a_!`a_ ` a_` a_` a_` a_` a_` a_ `a^__!`a^__ `a^_!`a^_"`a^_"`a^_#`a                     " "!    !!""!! """   ! " ! !   !       ! !""#)*+)*+)*+)*+)*+)*+)*+)* +)* +)* +)* +)* +)*+)*+)*+)*+)*+)*+!)*+!)*+!)*")*#)*#)*$)*%)*%)*')*))**)*()*)*()+)*()-)*(-)*(-)*(*)*(+)*(.) *(.) *(.) *(.)*(/)*(.)* (,)* (-)* (,)* (.)*(,)*(*)*((*)(*)(*)())())(()(')(&)(#)(")(")(")(")( )"()c de fghcd e fghcd e fghcd e fghcde fghcd e fghcd e fghccd e fgcd e fgcde fgcd e fcd e fcd efc defcdefcdefc defcd ef!c def!c d efbccdeb cd eb!cd eb cd eb cd ebcd eb cdeb!cdeb"cdeb#cdeabb$cdeabb"cdeab b#c dea b#cdeaab b!cdab!cda b!cda b"c da b"c da b"c da b#cda b#cda b"cd ab#cd a b"cd a b"cd a b#cda b cdab!cdaab!cab!ca bca bca bca bca bca bca bca bca bca bca bca bc"a bc                     !  !     !   !"#$" #  # !! ! "  "  "  # # " # " " # !!!            " +,-.+,-.+,-.+,-.+,-.+,- . + ,- . +,- . +,- . +,-.+ ,-. +,-.+,-.+,-.+,-.+,-.+,-.+,-.++,-+,-+ ,-+,-*+,-*+ ,-*+,-*+,-*+,-*+,-*+, -*+, - *+, - *+, - *+,- *+,-*+,-*+,-*+,-*+,-*+,-*+ ,-**+,*+ ,*+ ,*+ ,*+,*+,*+,*+,*+,*+,!*+,))**+,)) *+)*+)!*+) *+)!*+) *+ )*+ )*+ ) *+)*+)*+) * +h ij k lm noh ijk lm noh ij k lm noh ij k lm noh ij k lm noh ij k lm no h ij k lm noh h ij k lm ng h ij k lm ng h ij k lmng h ij k lmng h ij k lmnfg h ijk lmnfg h ij k lmnfg h ij k lmnfg h ij k lmnfg h ij k lmnfg h ij k lmnffg h ij k lm fg h ij k lm fg h ij k l fg h ij k le fg h ij k le fg h ij kle fg h ij kle fg h ij kle fg h ij kle fg h ij kle fg h ij kle fg h ij kle e fg h ij k e fg h ij k e fg h ijk e fg h ijke fg h ijke fg h ijkde fg h ijkde fg h ijkde fg h ijkde fg h ijkdde fg h ijde fg h ijdde fg h i de fg h i d e fg hi de fg hi de fg hi de fg hide fg hid e fg hide fg hiccdde fg hiccde fg hcde fg hcde fghcd e fghcde fghcde fgh cde fgh cde fgh cde fghcd e fghccde fgcde fg                     ø                                                                                                                         ./0/.,*../0/.-../0/../0./0./0 ./0 ./0 ./0 ./0./0./0./0./0./0./ 0./ 0./ 0-./0-./0-./0-./0-./0-./0-./0--./0--./ -./ -./-./-./-./-./-./-./-./-./-. /-. /-. /,--./,-./,-./,-./,-./,-./ ,-. ,-. ,-. ,-. ,-.,-.+,,-.+,-.+,- .+,- .+,- .+,- .+,- .+,-. +,-. +,-. +,-.+,-.op qr s tspnidoop qr s tsqokoop qr s tspoop qr s tsoop qr s top qr s t op qr st op qr stno op qr stn op qr stn op qr stn op qr stn op qr sn op qr sn op qr sn op qrs n op qrs n op qrsm n op qrsm n op qrsm n op qrslm n op qrsllm n op qrlm n op qrlm n op qrllm n op qrllm n op qlm n opq lm n opq lm n opq lm n opqkl lm n opqk lm n opqk lm n opqk lm n opk lm n opk lm n opk lm n o p k lm n o p k lm n o pjk k lm n opj k lm n opj k lm n opijj k lm n opij k lm n opij k lm n opij k lm n oij k lm n oij k lm noij k lm no ij k lm no ij k lm nohi ij k lm noh ij k lm noh ij k lm nohh ij k lm nh ij k lm nh ij k lm nh ij k lm nh ij k lmn h ij k lmn h ij k lmng h ij k lmng h ij k lmn    ü                                                ˾      ɾ  ɾ                                             ƹ                           ø                      (%" +(&#!-+)&#! /.,*'%"!0/.-+(&#! 0/.,*'%" 0/.-+(%#!0/-+)&#" 0/.,*'%"!0/.-+(&#"  0/.,*'%#! 0/.-+(&#"  0/.,*'%#! 0/.-+(&#! 0/.,*'%#! 0/.-+(&#"  0/.,*'%#! 0/.-+(&#"  0/.,*'%#!0/.-+(&#" 0/.,*'%"!0/.-+(&#" 0/.,*'%"!0/.-+(&#! 0/-+*'%"!0/.-+(&#! /00/.,*'%#! /0/.-+(&$" / 0/.,*(&#! /0/.-+*'%"! /0/.-+(&#"  / 0/.,*'%#!   / 0/.-+(&$"  / 0/.,*(&#!  / 0/.-+)(%#!  /!0/.-+(&$" / 0/.,*(&#! /!0/.-+)'%#! //"0/.-+(&$" // 0/.,*(&#" //!0/.-+*(&#//!0/.-+*(//!0/.-+//!0/.//!0 /0/0./0. /0./0. /0. /0. /0 ./0 . /0 . /0. /0./ 0.!/ 0.!/ 0./ 0.!/0. /0. /0_XRMIGFFEEFG H IJf`ZTNKHGFFEFG HIJmhb\UPLIGFFEFG H IJpnid^ZRNKHFFEFG H Isqokfa\UPLIGFFEEFFG H Itspnid]XRMIGFFEEFG H Itsqokf`ZTNKHGFFEEFG HItsrpmgb\UQLIGFFEEFG HItspnid^ZRNKHGFFEEFG HItsqokfa\UQMIGFFEFG HItspnid^ZSNKIGFFEEFG HI tsqokfa\UQMIGFFEFG H tspnid^ZSNKIGFFEEFG H tsqokfa\UPMIGFFEEFG Hst tspnid^ZSNKIGFFEEFGHs tsqokfa\UQMIHFFEFGHs tspnid^ZSNKIGFFEFGHs tsqokfa\UQMIGFFEFGHs tspnid^ZSNKIGFFEFGs tsqokfa\UQMIGFFEEFG s tspnid^ZRNKHGFFEEFG s tspokfa\UQLIGFFEFG s tspnid^ZRNKHGFFEFrs s tspokfa\UPLIGFFEFr s tspmhd^YRNKHGFFEFr s tsqokfa\UPMIHFFE Fqrr s tspnid^ZSNLIGFFE Fqr s tsqokfa\WQNKIGFFEE Fqr s tspnid_ZUPLIGFFEFqr s tsqolhd^ZRNKIGFFEFqr s tspokfa\UQMIHFFEFqr s tsqpnid^ZSNLIGFFEEF qrs tsqokfa\WQNKHGFFEF qr stspnid_ZUPMIHFFEFq qr s tsqolhc_ZSNLIGFFE qr stspokfa\WQNKHGFFEppq qr stsqpnie_ZUPLIHFFp qrs tsqolhc^ZSNLIHFpp qr stspnkfa\WRNKIpp qr s tsqpnie_ZUQNpp qr s tsqolhd_ZUpp qrs tspolhd_p pqrs tspnkfp p qr stsqpnp p qrs tsqppqr stp qr s top qr s top qrstop qrstop qrstop qrstop qrst op qr sto opqr sno op qr sn opqr sn opqrsn op qrsn opqrsnop qrsn opqrsn n op qr n opqr}||zz|}  }||z|} }||z|}  ||z|}  ü}||zz||}  }||zz|}  ü}||zz|} }||zz|} }||zz|} ü}||z|} }||zz|}  ü}||z|}  }||zz|}  ü}||zz|}  }||zz|} ü||z|} }||z|} ü}||z|} }||z|} ü}||zz|} }||zz|} ü}||z|} }||z| ü}||z| }||z| ü||z | }||z | ü}||zz | }||z| þ}||z| ü||z| }||zz|  ü}||z|  ||z|  þ}||z  ü}||z  ||  þ|      þ  þ                                        %  %  '  / / #  )  3 2 2 / - - & -))'$"!""    # $ !$ " #!"%##!! %#! (&$" ,*(&#" .-+*(&#! 0/.-+*'%#! 0/.-+(&$"! 0/.,*(&$" 0/.-+*(&#" 0/.-+*(&#!  0/.-+*(%#!   0/.-+(&$"   0/.,*(&#"  0/.-+*(&#" 0/.-+*(&#" 0/.-+*(&$" 0/.-+*(&#" 00/.-+*(&#" 0/.-+*(&#! 0/.-+)(%#! 0/.-+(&$"!0/.,*(&#" 0/.-+*(&#" !0/.-+*(&$" JK#KLK LJ#KLK LJ#KLK LIJJ-K LIJ*K LIJKLKLIJ%KLKLIJ-KLIJ,KL IJ-KL IJ+KL IJ(KLH IJ(KLH IJ"KLKH IJ'KHIJ&KH IJ#KHIJ!K HIJK HIJKG HIJKG HIJKG HIJKFG HIJKFG HIJKFGH IJKFG HIJKFG HIJK FG HIJK FG HIJ K FGH IJ KFG HIJKFGH IJKFGHIJKEFG HIJKEFG HIJFEEFFGHIJFEFG HIJGFFEFGHIKHGFFEEFGH IPMIHFFEFGH IZSNLIGFFEFG H Ia\WQNKIGFFEFGHIie_ZUQNKHGFFEFG HIolhd_ZUPMJHFFEFG HIspolhd^ZSNLIGFFEFGHItsspnkfa\WRNLIGFFEFGHIttsqpnie_ZVQNKIGFFEEFG Htsqolhd_ZUQNKHGFFEFG Htspolhd_ZUPLIHFFEFGHtspolhd_ZSNLIGFFEFGH tspnkfa\WRNKIGFFEFGH tsqpnie_ZUQNKIGFFEFGH tsqolhd_ZUQNKIGFFEFGtspolhd_ZUQNKIGFFEFGstspolhd_ZVQNKIGFFEFGstspolhd_ZUQNKIGFFEFGsstspolhd_ZUQMKHGFFEFstspolhd_ZUPLIHFFEF stspolhc_ZSNLIGFFEF stspnkfa\WRNKIGFFEF stsqpnid_ZUQNKIGGFFE Fstsqolhd_ZUQNKIGFFE Frstspolhd_ZVQNKIHFFEF# # # - * %-, - + ( ( " '& #!  } } } |} |} |} |} |}  |}  |}  |}  |} |} |}z|} z|} |zz||}|z|} }||z|}}||zz|} ||z|} }||z|}  }||z|}}||z|} þ||z|} þ}||z|}}||z|}}||zz|} þ}||z|} þ||z|}þ}||z|} }||z|} }||z|} þ}||z|}þ}||z|}þ}||z|}þ}||z|}þ}||z|þ||z| þ}||z| }||z| }}||z |þ}||z |þ||z| " !   !        ( (                    )  )         # ) * )  0  (  # #  (  (  "  %  / / . . ,   2  6  ; ;8 5 4 1 1-**&"!!!')(+) ,  , )+LK"LK!L KLKL!KLKLKLKLKLKLKLKLK(LK(LK LKLKLKLKLKLKLKLLKLKLKLLKLKLKLKLK LKL)K LKL)KLKLKLKL KLK LKLKLKL#KL)KL*KL)KLKL0KLKL(KLKL#KL#KLK L(KLK L(KLKL"KLKL%KLKL/KL/KL.KLJK,KLJ*KLKLKLLJJK0KLKLIJJ1KLKLIIJJ4KLIIJ5KIJ4K IJ1K IJ-K IJ+K IJ)KIJ'KHIJ$KHIJ"KHIJ KHIJK HIJK HIJK HIJKGHIJKGHIJKG HIJKFGHIJ KFGHIJ KFGHIJKFGHIJK FGHIJK FGHIJFGHIJ"! !((  ) )  #)*)0(## ( ("%//.,*01454 1 - + )'$"    }}} |} |} |}|} |} |}|} = 8  /   5  2  0 / + #  ! " " " $ ! $ % %   " (      #  #   "  $ " " * * *                1 0 1 0 6 9 ; ; "LM"LM)LM"LMLM-LM LM LM LM LM*LMLM*LML M*LML M:LM7LMMLMzML&ML ML5M L4M LMLM LMLMLMLM LMLM%LM&LM(L MLM)L M5L MLM.L MLM.L MLM3LMLM3LMLM;LMLK/LKLKL&LKLK'LK LK'L K LK(LKLK LKLKL#KLKL#KL+KL-KL,KLKL/KLKL,KLKL3KLKLK4KL7KL7KLKLKLKLKLKL K L&KLKL KL KLK%LKL K"LK'LK>z& 5 4   %&( ) 5 . . 33;/&' ' ( ##+-,/,3477 &  % "'   = .  / !    !             '  '    !  ' + +       $  & (  '  " ( & '                                 (  * 6 7   ; ; :(MLML0ML)MLML(ML"MLMLM(LM(LM(L MLM(LM LM'LM LM(LMLMrLMLLKLKL=LK.LKLK/LK!LK LKLK LK!LKLKLKLKLKLKLKLKLKLKLKLKL'KLKL'K LKLKKLKL!KLKL'KL+KL+KLKL LKLKLLK LKL$KLK L&KL(KLKL'KLKL"KL(KL&KL'KLKLK LK LKLK LKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKLKL KLKL K LKL(K LKL*KL6KL7KLKKLL;KL;KL:K(0)("((( ( ' (r=./!  !'' !'++  $ &('"(&'     ( *67;;:) ) ( ) %     # )  (  (  )            !      # $  % % $ ! "  !     % *     ) + - -  / <<95 3 0/,(&%#  $'(,- ,)LK)LK(LK)LK%LKLK LKLKL#KL)K LKL(K LKL(K LKL)K LKLKL KLKLKLK LKLKLK LKLLKKL!KLKLKLKLKLKL#KLK$LKL%KL%KL$KL!KL"KL KL!KLKLKLKLKL%KL*KL KLKL KLKL)KL+KL-KL-KLKL/KLK()(=()(=()(=()(<()=()>()(('(=('(=('=('=('=('=(';(':(':(':('8('8('8(':('9('8('6('6('6('6('6( '5( '5( '5( '3( '3( '3( '3( '3( '3( '2( '2( '1( '1(_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab _`ab _`ab _`ab_ _`ab_ _`ab_ _`ab_ _`ab _`ab _`ab_ _`a _`a _`a_`a_`a_`a_`a_`a_`a_`a_`a_`a^__`a^__`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_` a^_` a^_` a^_` a^_`a^_` a^_` a^_` a^_` a ^_` a ^_` a ^_` a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a                                )* +)* +)* +)* +)* +)* +)* +)* +)* +)* +)*+)*+ )*+ )*+ )*+!)*+!)*+#)*+$)*+()")*+()!)*+( )*+(!)*+(")*+(#)*+($)*+(#)*+(#)*+((!)*+(()*+((!)*+((!)*(")*(")*(!)*(#)*(#)* (")* (!)* (")* (#)*(%)*(&)* (#)* (")* (")* ($) * (!)* (")* (")* (#) * (#) *(#) *(") *(") *(#) *(") *(#) *(#) *(#) *(#) *(") *(!) *(#)*bc d efghbc d efghbc d efghbc d efghbbc d efgbc d efgbc d efgbc d efgbc d efgbc d efgbbc d efgbbc d efgbbc d efbc d efbc d efbc d efbc d efbc d efbc d efabbc d efabbc d efabc d efabc d efa bc d efa bc d efa bc d efa bc d efa bc d efaabc d efaabc d efaabc d efaabc d ea bc d ea bc d ea bc d eabc d eabc de abc de abc de abc de abc deabc deabc de abc de abc de abc de abc de abc de abc de abc de abc de abc deabc deabc deaabc dabc dabc da bc da bc da bc da bc da bc dabc dabcd                                                                                         + ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-./ +,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./+ ,-./+ ,-./+ ,-./++ ,-./++ ,-.+ ,-.+ ,-.+ ,-.+ ,-.+ ,-.+ ,-.*++ ,- .*++ ,- .*++ ,- .*++ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,- .*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-. *+ ,-.* *+ ,-.* *+ ,-.* *+ ,-hijklmno pqhhijklmno phijklmno phijklmno phijklmno phijklmno phijklmnop hijklmnopghhijklmnopghijklmnopghijklmnopghijklmnopghijklmnopfgghhijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopfghijklmnopffghijklmnopffghijklmnofghijklmnofghijklmnofghijklmnofghijklmnofghijklmnofg hijklmnoeffghijklmnoeffghijklmnoeffghijklmnoeffghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoefghijklmnoe fghijk lmnoeefghijklmnoeefghijklmnoeefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijk lmnefghijklmn efghijklmn efghijklmn efghijklmn efghijklmndeefghijklmnde efghijklmnde efghijklmndde efghijklmndd efghijklmndd efghijklmȸ ƴƴƴĴĴ   óóó /0.+($! /0/-*&" /0.+(#  /0/-*&"  /0.+'#    /0/-)%!   /0/-*&"    /0.+($!   /0/-*&"   /0.+($    /0/-*&"    /0.+($!   /0/-*&"   /0.+(#    /0/-*&"   /0.+'#    /0/-)%! /0/-*&"  /0.+($!/0/-*&"  /0.+($! /0/-*&" /0.+(#  /0/-*&" /0.+(#  /0/-*&"/0.+'# /0/-)%! /0/-*&"  .//0.+($! .//0/-*&"  .//0.+($  .//0/-*&" ./0.+(#  ../0/-*&" ../0.+($  ./0/-*&" ./0.+($! ./0/-*&" ./0.+(#  ./0/-*&" ./0.+($! ./0/-*&" ./0.+(#  ./0/-*&"./0.+'# ./0/-(%!./0/-*&"  ./0.+($! ./0/-*&" ./0.+(#  ./0/-*&" ./0.+(#  ./0/-*&"  ./0.+($  ./0/-*&" ./0.+($  ./0/-*&"./0.+($ ./0/-*&"./0.+(# ./0/-*&" ../0.+($!../0/-*&"qrstsoh_VNIFFEEF FGHIqrstspkdZQKGFEE FGHIqrstsoh_UNIFFEEFFGHIpqqrstspkdZQKGFEEF FGHIpqqrstrnf^TMHFEE FGHIpqqrstspkbXOIFFEEF FG HIpqqrstqme\RLHFFEF FGHIpqrstsoh_WNIFFEF FGHIpqrstspldZQKGFFEF FGHIpqrstsoh_VNIFFEEF FGHIpqrstspldZQLHFFEEFFGHIppqrstsoh_VNIFFEE FGHIppqrstspkdZQKHFEE FGHIppqrstrnh_UNIFFEEFFGHpqrstspkdZQKGFEEFGHpqrstsnf^TMHFFEEFGHpqrstspkbYOIFFEE FGHpqrstqme\RLHFEE FGHpqrstsoh_WNIFFEE FGHpqrstspldZRLHFEE FGHpqrstsoh_VNIFFEE FGHpqrstspldZQKGFFEEFFGHpqrstsoh_UNIFFEF FGH pqrstspldZQKGFFEE FGH pqrstsoh_UNIFFE FGH pqrstspkdZQKGFFEF FGHppqrstrnf^TMHFEEF FGHpp qrstspkbYOIFFEF FGHp pqrstqme\RLHFFEEFGHopp qrstsoh_VNIFFEE FGop pqrstspldZQLHFEE FGop pqrstsoh_VNIFFEE FGop pqrstspldZQKGFEE FGo pqrstrnh_UNIFFEEF FGoo pqrstspldZQKGFEE FGoo pqrstrnh_VNIFFEE Fo pqrstspkdZQKGFEEFo pqrstsoh_VNIFFEEFo pqrstspldZQKGFEEFo pqrstsoh_UNIFFEEFFo pqr stspldZQKGFFEFFo pqrstsoh_VNIF Fo pqrstspldZQKGF Fo pqrstsoh_UNIFFEEFFo pqrstspkdZQKGFFEFFo pqrstrnf^TMHFFEEFFnoo pqrstspkaXOIFFEEFnoo pqrstqme\RLHFFEEFFnoo pqrstsoh_VNIFFEEFno pqrstspldZQKGFEEFno pqrstsoh_UNIFFEEFFno pqrstspldZQKGFEEFFno pqrstsoh_UNIFFEEFFno pqrstspldZQLHFFEEFFnno pqrstsoh_VNIFEEFno pqrstspldZQKGFFEEFnno pqrstsoh_VNIFFEEno pqrstspldZQKGFFEEnn o pqrstsoh_VNIFFEEnno pqrstspldZQKGFEEnno pqrstsoh_UNIFFno pqrstspldZQLHFFnno pqrstsoh_VNIFFnno pqrstspldZQKGFø||zz| |}Ƽ}|zz |}ø||zz||}Ƽ}|zz| |}|zz |}Ƽ||zz| |} ||z| |}ø||z| |}ƾ}||z| |}ø||zz| |}ƾ||zz||}ø||zz |}Ƽ|zz |}||zz||}Ƽ}|zz|}||zz|}Ƽ||zz |}|zz |}ø||zz |}ƾ|zz |}ø||zz |}ƾ}||zz||}ø||z| |}ƾ}||zz |}ø||z |}Ƽ}||z| |}|zz| |} Ƽ||z| |}||zz|} ø||zz |}ƾ|zz |}ø||zz |}ƾ}|zz |}||zz| |}ƾ}|zz |}||zz |Ƽ}|zz|ø||zz|ƾ}|zz|ø||zz|| ƾ}||z||ø| |ƾ}| | ø||zz||Ƽ}||z||||zz||Ƽ||zz|||zz||ø||zz|ƾ}|zz|ø||zz||ƾ}|zz||ø||zz||ƾ||zz||ø|zz|ƾ}||zz|ø||zzƾ}||zz ø||zzƾ}|zz ø||ƾ||ø||ƾ}|                                                                                                IJJKLKLIJK LKLIJKLKLIJKLKLIJK L KLIJK L KLIJK L KLIJK LKLIJK LKL KLIJK L KLIJK L KLIJK L KLIJKL KLIJKL KLIJK LKLHIJKLK LKHIJK LKHIJK L KLHIJK L KLHIJK L KLHIJKL KLHIJKLKL KLHIJKLKL KLHIJKL KHIJK L KHIJK L KHIJKL KHIJKL KHIJK L KHIJK L KGHHIJKLKGHHIJKLKGHHIJKL KGHHIJK LKGHIJKLKGHIJKLKFGGHIJKLKFGGHIJK LKFGHIJK LKFGHIJK LKFGHIJKLKFGHIJKLKFGHIJKLKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJK LKFGHIJKLKFGHIJK LFGHIJKLFGHIJK LFGHIJK LFGHIJK L FGHHIJK L FGHHIJK L FGHIJK L FGHIJKLEFFGHIJKLEF FGHIJKLEF FGHIJKLE FGHIJKLFEE FGHIJKL                            }}} } }}|}}|}} |} |} |}|}|}|} |} |} |} |} |} |}|} |}|} |} |} |} |} |} |}z||}z| |}z| |}z |}|zz |}   8  8 = = = < < < : 8 8 6 5 5 5 6 7 7  1 / / 0 4 4 1 1 - / 0 / . . 0 0 1 2 1 . . / ( L2ML/ML0ML0ML,ML-ML-ML,ML&ML&ML'ML(ML(MLML&ML&ML&ML&ML#ML#ML!MLML!ML"ML!MKLLKL!MKLKL!MKL!MKL#MKL#MKL"MKLMKLMKLMKLMKLMKLM KLM KLMLM KLMKLMK LMKLMKLKLMKLMKLMKLM KLM KLM KLMLM KLMLMKLMLMKLMLKKLMLKLMLKLMLKKLML MLKKLML MLKLML MLKLML ML KLML KLMLKL MLKL MLKL MLKL M 2/00,--,&&'((&&&&##!!"!!!!##"                   "MN"MN#MN$MN%MN%MN%MN$MN$MN'MN'MN$MN&MN(MN(MN+MN+MN+MN+MN+MN)MN.MN,MN-MN1M N0MN1M N1M N1M N2M N2M N3M N2M N0MN3M N3M N3M N.MN0MN1M N7MN5M N6MNMN8MN;MN;MN;MN;MN>MNM7MNMNM7MNMNM?M""#$%%%$$''$&((+++++).,-1 01 1 1 2 2 3 2 03 3 3 .01 75 68;;;;>77? .! .! -! -! -! -! -! +! +! &! '! )! (! (! '! ! ! ! !! !! ! ! ! ! !! !! !# !# !' !' !' !$ !' !( !* !* !* !+ !, !- !0 !1 !1 !, !4 !4 !3 !1 !2 !1 !2 !3 !3 !3 !5 !5 !6 !6 !7 !8 !; !< != !2N O3N O3N O5N O2NONO8NO8NO8NO6NO6NO7NO8NO4N O6NO8NO8NO8NO8NO9NONON?NMN=NM&'&&%&=&\] ^\] ^\ ] ^\] ^\] ^[\ ] ^[\!]^[\!]^[\ ]^[\ ]^[\!]^[\]^[\ ]^[\ ]^[\ ]^[[\!][\ ] [\] [\] [\] [\] [\][\][\][\][\][\][\][\]Z[[\]Z[\]Z[\]Z[\]Z[\]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ] Z[\ ] Z[\ ] Z[\] Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]ZZ[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[ \Z[ \Z[ \Z[ \ Z[\!Z[\      !!  !   !                 '9('8('7( '5( '4( '4( '1( '1( '1('0('0('0('+('+('*('*('%('%('$('$('%('"('!('('('( '("'(#'(#'(%'(%'(&'(''(('(+'(+'(+'(,'(-'(0'(0'(1' (2' (3' (5' (6'(6'(8'(9'(9'(&9'(&:'(&8'(&9'(&&8'&6'&6'&7'&7' &3' &1' &1' &1'^_"`^_!`^_!` ^_` ^_` ^_` ^_` ^_` ^_`^_`^_`^_`^_`^_`^_`]^^_`]^^_`]^^_`]^_`]^_`]^_`]^_`]^_ `]^_ `]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_`]^_`]^_`]^_`]]^_`]]^_]^_]^_]^_]^_]^_]^_]^ _]^ _]^ _]^ _]^_]^_ ]^_!]^_"]^_\"]^_\#]^_\#]^_\#]^_\\!]^\ ]^\"]^\#]^\#]^ \ ]^ \ ]^ \!]^ \#] ^"!!                   !""###! "##   ! # "()#()$()$()%()'()(())()+()+()+()-().().()2( )2( )2( )5( )5( )5( )5( )9();()=()@('=('<(';('9('7('6('6("a bc` a bc`!a bc`!a bc`"a b c`!a b c`!a b c`!a b c `!a b c `!a bc `!abc `#a bc `#a bc `!a bc `$a bc`"a bc``a b`"a b`"a b` a b`"a b`"ab`#ab`#ab`$a`!a`!a`!a`!a`"a`a!`a"`a$`a%`a_`a_"`a_$`a_$`a_$`a_"`a _`a _"`a _"`a _"`a _%` a_#` a_#` a_#` a_$`a_$`a_#`a_$`a_%`a_$`a_$`a__%`^_%`^_%`^_ `^_ `^_`^_`^_`"  ! ! " ! ! ! ! !  ! #  #  !  $ "  " "  " "##$!!!!"!"$%"$$$"  " " " % # # # $$#$%$$%%%  )!* +)* +)* +) *+)!*+)!*+)"*+)!*+)#*+))*)*!)*!)*#)*#)*$)*()*()*))*+)*,)*-)*-)*.)*3) *3) *4) *(4)*(4)*(4)*(6)*(1)*(1)*(4)*(4)* (2)* (1)*( (2) (1)(-)(,)(+)(*)(*)())(()(%)($)(")(")(!) ()#()$()$()%()%()'()'()*(),(),()/()1( )cde fgcc de fcde fcdefcdefcdefcdefcdefcdefccdecde!cde!cd e#cd e#cd e$cd ebc&cdeb%cdeb#cdeb%cdeb%cdeb%cdb%cdb&cdb+c db*c db%c da b'cda b(cda b&cda b(cdab(cda b'cda b)cda b(cd ab"cd a b#cda a b$c ab"ca b"ca b!ca bca bca bca bca bca bca bca bca bca bc a bc#abc$a bc$a bc%a b c`#ab c`%a b c`#abc`%a bc`'a bc`'a bc`'abc``)a b            ! !##$&%#%%%%&+ * %  ' ( & (( ' ) ( " # $ " " !           #$ $ % # % #% ' ' ') +,-+,-+,-+,-+,-+,-+,-+,-+,-+,-*+,-*+, -*+, -*+, -*+, -*+,-*+,- *+,- *+,- *+,- *+,-*+,*+,*+,*+ ,*+ ,*+ ,*+,*+,*+,* +,*+,*+!*+#*+#*+%*+)#*+)%*+)&*+)"*+)%*+)%*+ )'* + )%* + )$* + )'* +)&*+)&*+)$*+)&*+)$*+)&*)&*)&*)*)*!)*!)*")*$)*&)*()*))*g h ij k lmfgg h ij k lmfg h ij k lmffg h ij k lfg h ij k lfg h ijk lfg h ij klfg h ij kl fg h ij kl fg h ijkle fg h ij kle fg h ij kle fg h ij ke fg h ij ke fg h ij ke fg h ijke fg h ijk e fg h ijk e fg h ijk e fg hijk e fg h ijke fg h ijdee fg h ijdee fg h ijdde fg h ide fg h ide fg h ide fg hide fg hi de fg hi de fg hi de fg hi de fg hde fg hde fg hde fghde fghcde fghcde fghcde fghcdefghccde fgcdefg cde fgc cde f cde f cde fcdefcdefcdefcdefcdefcdecdecdecdecd e!cd e!cd e"cde$cde&cde(cdebc'cde                                                                                                   !!"$&''.#/0-..!/-. /-./-./-./ -./ -./ -./ -./-./-./-./-./-. /-. /-./-./-./-./-./!-.,"-., -.,"-., -., -. , -. ,-., -.,!-.,"- .+,,!- .+,,"-.+,"-.+,#-.+,#-.+,$-.++,"- +,!- +,- +,-+,-+,-+,-+,-+,-+,-+,-+,-+, -+, -!+, -"+,-*"+,-*"+,-*#+,-*!+,*!+, *$+, *$+,*!+,*#+ ,*#+ , n opqrmn n opqmn op qm nop qlmm n op qlm n opqlm n opqlm nopqlmn opqlmn op lm n op lm nopkl lm nopkl lmn opk lmn o pklmn o pk lmnopk lm nop k lmn op k lmnop k lmnop klmn ojk lm n oj klmn oijjk lmnoij k lmnoij klmnoijklmnoijk lmnoij k lmnoiij klmn ijklm nhi ij klm nhi ij klmnh ijklmnh ijklmnh ijklmnhijklmnhhijk lm h ijk lm h ij klmh hijk lgh hijk lg hijk lgh ijklfgghijklfg hijklfghijklfg hijklfg hijk fghij k fgh ij k fgh ij kfghijkefghijkefghijkefghijkefghijefg hij efghije efghiefghiefgh iefgh i                              Ƽ  Ƽ             ù                                   #0/.-+*(&#"  %0/.-+*(&$"!  /$0/.-+*(&%#" /%0/.-+*)(&#" /&0/.--+*(&#" /'0/.-+*(&$" /'0/.-+*(&#" / /'0/.-+*(&#" / /'0/.-+*(&$"! //&0/.-+*(&$"//'0/.-+*(&//'0/.-+*//'0/.-//(0/(0/%0/#0/"0 /0!/0"/0&/0./&/0.'/0.%/0.'/0 .%/0 .&/ 0 .'/ 0.&/0.'/0.*/0.(/0..'/.%/.#/.!/./-. ./-./- ./-"./-!./ -"./ -"./-!./-!. /-". /-!./-"./-#./-$./--#.- . -."-.%-.%-.,&-.,(-.,(-.,'-.,)- . ,'- .rstspolhd_ZUQNLIHGFFEFrstspolhd_ZVROMKIGFFEFqrs tspolhd_\XTQNKIGFFEFqrs tsrpolheb_ZUQNKIGFFEqrs tspomkfd_ZUQNKIGFFEqrstsqpnkhd_ZVQNKIGFFqrstsrpolhd_ZUQNKIGFFq qrstspolhd_ZUQNKIHq qrstspolhd_ZVQNLqqrstspolhd_ZVRqqrstsrpolhd_\ppqrstspolheppqrstspomppqrstsqpp qrst pqrst pqrs t pqrs tpqrstpqrstpqrstpqrstoppqrstoopqrsopqr sopqr s opqr s opqrs opqrsopqrsnoopqrsnn opqrnopqrnnopqnopqnop q nop qnopqmnnopqmnopqmnopqlmmnoplmnoplmnoplmnoplmnop lmno p lmno plmnopkllmnopklmnopklmnopkklmnoklmnoklmn o klmn o klmnoklmnojklmnojklmnoijjklmnijklmnijklm nijklm nþ}||z|þ}||z| þ}||z| þ}||z }||z}||þ}|| þ þþþþ                Ƽļ    ,+*'%# !!! !%#" !)(&#"  -+*(&#"! "/.-+*(&$"! !0//.-+*(&%#" ! 0/.-+*)(&#"! " 0/.--+*(&$"! "0/.-+*(&%#" # 0/.-+*('&#"! % 0/.--+*(&$"! "0/.-+*(&%#"  0/.-+*)'&$"! 0/.--+*(&%#" 0/.-+*)(&$"! 0/.--+*(&%#" 0/.-+*)'&$"! 0/.--+*(&%#" 0/.-+*)'&$"! "0/.--+*(&%#"!  $0/.-+*)'&%#"  '0/.--+*)(&$"! )0/.-,+*(&%#"! ,0/.-+*)'&%#" /0/.--+*('&$"! //-0/.-,+*(&%#"! //.0/.-+*)'&%#///0/.--+*)'///0/.--+//20/./ /10//0/.0/)0/(0/#0/!0/0/0#/0&/0)/0+/0//0../ 0.0/ 0../0 .0/0 .2/0..//../.*/.(/.'/.%/FGHIJFGHIF GHIFGH IEFGH IFEEF GH IFEFGHIFEFGHIHGFFEFGHOMKIGFFEFGHYTQNKIGFFEFGHb_ZUQNKIGFFEF G Hkfd_ZUQNLIHGFFEFG Hpnlhd_ZVROMKIGFFEFGHsqpolhd_\YTQNKIHFFEFGHtsrpolheb_ZUQNLIHGFFEF Gtspomkfd_ZVROMKIGFFEFGtsqpnlhd_\XTQNKIGFFEFGtsqpolhea]ZUQNLIHGFFEF tspomkfd_ZVROMKIGFFEF tsqpnkhd_\XTQNLIHGFFEFtsrpolheb^ZVROMKIHFFEFtspomkfd_\YTQNLIHGFFEFstsqpnlheb_ZVROMKIHFFEFstsrpomkgd_\YTQNLIHGFFE Fstsqpnlheb^ZVROMKIHFFE F stsrpomkfd_\XTQNLIHGFFEF stsqpnlheb^ZVROMKIHGFFEF stsrpomkgd_\YUROMKIHFFEFstsqpnlheb^\XTQNLIHGFFEstsrpomkheb_ZVROMKIHGFFErsstsqpomjfd_\YUQOMKIGFFErstsqpnlheb^[XTQNLIHGFFrrstsrpomkgea^ZVROMKIHqqrstsqpomifd_\YUQOMqqrstsqpnlheb^\XUqqrstsqpomkgeb^qqrstsqpomkhqqrstsqpoq qrstsqrstpqqrstpqrstpqrs tpqrs tpqrst pqrst pqrstppqrspqrspqr spqr spqrsopqrsopqrsopqr opqr opqroopqopqnoopqnop qnopqnopq|}|}| }|} z|} |zz| } |z|}|z|}}||z|}}||z|}}||z|}}||z| } 󼴯}||z|} }||z|}þ||z|}þ}||z| }}||z|}}||z|}þ}||z| }||z| }||z|þ||z|}||z|||z|}||z |||z | }||z| }||z| ||z|}||z}||z}||z}||          ?=<97 3 2/+'$! !)+.03 2 896 20-)'$""%*-*"! . &%#"! + *)'&%#"! --+*)'&%#"! .//.--+*)'&%#"! ,0/.--+*)'&%#"! )0/.--+*)'&%#"! &0/.--+*)'&%#"! " 0/.--+*)'&%#"! 0/.--+*)'&%$#"! 0/.--+*)('&%#"! 0/.-,+*)'&%#"! 0/.--+*)'&%$#"! 0/.--+*)('&%#"! 0/.-,+*)'&%$#"!  !0/.--+*)('&%#"! %0/.-,+*)'&%$#"! (0/.--+*)((&%#"! ,0/.-,+*)'&%$#"! 0.0/.--+*)((&%$#"020/.--,+*)('&050/.-,+*090/./0<0/;0/70/60 /20//0J8KIJ6KIJ3KIJ2KIJ.K IJ,K I J(KIJ&KIJ#KHIJKHIJKHIJK HIJK HI JKHIJKGHHIJ KGHIJKGHI JKGHI JFGHI JF GHIJF GHIF GHI F GHIF GHIF GHIFGHIF GHIF GHIF GHE F GHE F G HFE!FG HGFFEF GHKIHGFFEF GHRNMKIHGFFE#F G[XUROMKIHGFFEF Geb^\YUQNMKIHGFFE"FGmkheb^[XTQOMKIHGFFE"FGqpomkheb^[XUQOMKIHGFFE Ftssqpomkheb^\YURNMKIHGFFEFtsqpomkheb^[XUQNMKIHGFF EFtsqpomkheb^[XTQOMKIIHGFFEF tsqpomkheb^[XURONLKIHGFFEF tsqpomkheb^\ZWTQOMKIHGFFEFtsqpomkhec`^[XUQOMKJIHGFFE Ftsqponligeb^\YURONLKIHGFFEFtsqppomkheb^\ZWTQOMKJIHGFFEFsttsqpomkhec`^[XURONLKIHGFFEFsstsqponligeb^\ZWTQOMKJIHGFFEstsqppomkhec`^[XURONLKIHGFFE stsqponligeb^\ZWTQOMKJIHGFFstsqppomkhec`_[YURONLKJIHGsstsqponligeb^\ZWTRONLKsstsqppomkhec`_\ZWTRrsstsqpomligec`^\rrstsqpponligerrstsqpponqrrstsqrstqrstqrst qrstqrs t8632. , (&#   } }} } |} | }| }| } | }| }| }|}| }| }| }z | }z | } |z!|} }||z| }}||z| }}||z#| }}||z| }򱬦}||z"|}}||z"|}}||z |}||z|}|| z|}||z| }||z| }||z|}||z |}||z|}||z|}||z|}||z}||z }||}   $   &   &       / / $  . 6 6 : C;6 10*(!(+03 9=<7 4.-&$%'/2 8>;! 7%$#"! 3)((&%$#"! .-,+*)((&%$#"!! */.-,+*)((&%%$#"! &0/.-,+**)((&%$#"! !0/.-,+*)('&%$#"!!  0/.-,+*)((&%%$#"!! 0/.-,+**)('&%%$#"!! 0/.-,+**)((&%%$#"!!  KLK$LKLKL K&LKLKLK&LKLKLKLKLKLKL/KL/KL$KL K L.KL6KL6KL:KLKJK=KJ:K J4KI J0KIJ-K IJ*KI J%KI J KI JKI JKHI JKH!IJ K H!I JKH!I JKH#I JH"IJGH!IJGHIGHI GHIFGHIF GH I F G!HIF GHIFGHF GHFGHF GH%FG H'FGHE-F GH E(F GFE.FGFE1FGJIHGFFE+FONLKJIHGFFE)FZWTRONLKJIHGFF E!Fc`_\ZWTRONLKJIIHGFF EFliheca_\ZWTRONMLKJIHGFF EFponligec`_\ZXVTRONLKJIHGFF EFtssqpponligedb`_\ZWTRONLKJIHHGFFEFtsqpponlkigec`^\ZWTRONMLKJIIHGFFE Ftsqpponligec`_\ZXVTRONMLKJIIHGFFEF tsqpponligedb`^\ZXVTRONMLKJIIHGGFF Etsqpponlkigedb`_\ZXVTRPNMLKJIIHGFFEFE$ &&//$ .66:=: 4 0- * %    ! ! ! # "}!}} }|}| } | }!| }|}| }|}| }%|} '|}z-| } z(| }|z.|}|z1|}}||z+|}||z)|󞙔}|| z!|}|| z|꾹}|| z|}|| z|}||z|}||z |}||z| }}|| z}||z|z ; : ;          "  2    "  (    /     %          (  '  = > /  < < 2/#)4 <@;6,%"'6;KL;KL:KL;KLKLKLKLK LKLKLKLK LK LK"LK L K2L KLKL KLK"LKL K(LKLKKLLK/LKLKKLLK LK%LKLLKLKLKL KLKLKL KL(KLKL'KL K L=KL>KLK/KLKL/<<6 3( ")4 5 4-+!#*}3 }1}+|}&|}}|}|} "|}|&|}6|};|}@|z;|z7|1 3  2  R %   #    "    (  )  )   =                     $ K 2 %, @;6#71KL3KLKLK2KLKLKRKL%KL KLKKL#KLKLKLK L"KLKL KLKLK(LKL K)LKLK)LKLKLK=LKLKL LKLK LK LKLKLKLLKLKLKLKLLKLKLLKLKLKL$KLKKLKJ=KJ-KJ KJKJJKIJI'JKJ IJIJI%J,IJI JIH7IH.I)HIHG;HG%HF0GHGF6GF#G7FG132R% # " ( ))=   $KDŽ=- ' %, 7.)};}%|0}}|6}|#}7|}     4  < % *  )              ! G =                    #  &$=K LKLKLKLKL4KLKL(d'c bad%cbad$cbad$cba'cba'c b a'c b a%c b a"cb a"c bac bac bac bac bac bac bac bac bac bac bac bac bac b ac b"ac b#a cb#a cb$a c b'a c b'a` c b&a`c b&a`cb%a`c b&a`cb#a `c b&a ` b&a ` b(a ` b$a`b&a`b&a`b'a`b(a`ba(a`ba(a`(a`'a`$a`#a`#a`"a` a`a#`a#`a#`a$`a&`a%`_aa(`_aa)`_aa)`_a)`_a(`_a*`_a&`_' %$$'' ' % " "               " # # $ ' ' & &% &#  & & ( $&&'(((('$##" ###$&%()))(*&('(<('=('=(':(':(':('7('6('4( '4( '3( '1( '0('0(',(',('+('*('(('((''('$('!('!(' ('('('('( '($'($'(%'(''()'()'()'(,'(/'a `a `a"`a#`a$`a&`a$`_a$`_a$`_a"`_a"`_a!` _a#` _a#` _ a'` _ a!`_ a$`_a&`_a(`_a'`_a&`_a&`_a(`_a&`_a#`_a`#`_^`#`_^$`_^#`_^"`_^`_^`_^`_^`_^`_ ^`_ ^`_ ^`_ ^`_^`_^`_^`_^`_^`_^`_^ `_^ `_^]` `_^] `_^] `_^]`_^]`_^]`_^]`_^]`_^]`_^]_^ ]_^]_^]_^]_^]_^]_^]_^]  "#$&$$$""! # # ' ! $&('&&(&###$#"          ($'(%'(''(''(('(*'(+'(,'(+'(,'(-' (1' (2' (4' (4' (4' (4'(6'(7'(:'(9'(:'(='('9'&:'&9'&8'&7'&5' &4' &3' &3' &3' &1' &0'&.'&-'&,'&,'&)'&)'&)'&('&''&%'&%'&$'&"'&!'&' &' &'!&'#&'#&'%&'&&'&&''&'+&',&',&'-&'-&'-&`_^ ]`_^]`_^]`__^]`__^]_^]_^]_^]_^]_^]_^] _^] _^] _^] _^] _^] _^]_^]_^]_^ ]_^#]_^$]_^%]_^^!]\^"]\^ ]\^ ]\^"]\^!] \^!] \^ ] \^ ] \^$] \ ^$] \ ^$]\ ^#]\ ^"]\^$]\^$]\^!]\^"]\^&]\^&]\[^^]$]\[^^]"]\[^]#]\[]#]\["]\[!]\[]\[]\[]\[]\ []\ []\ []\[]\[]\[]\[]\[]\[]\[Z]]\[Z]]\[Z        #$%!"  "! !   $ $ $ # "$$!"&&$"##"!   %%&&%&(%&(%&)%&)%&)%&(%&(%&(%&+%&+%&+%&,%&-%&-%&-%&-%&.%&.%&/%&/%&/%&/%&/%&/%&/%&/%&2% &2% &$%0% &$%0% &$1% &$1% &$3% &5% &7%&$5%&$5%&$4%&$4%&$5%&$5%&$6%&$5%&$3%&$2%&$3%&$4%&$4%&$3%&$2%&$3%&$2%& $2%& $3%& $4% $3% $2% $2% $2% $2% $1% $1%XY)ZXY)ZXY'ZXY'ZXY&ZXY%ZXY%ZXY&ZXY&ZXY&ZXY%ZXY$ZXY$Z XY$Z XY$Z XY$Z XY$Z XY"Z XY!Z XY!Z XY!Z XY!Z XY Z XY Z XYZXYZXYZXYZXYZXYZWXXYZWXXYZWXYZWXYZWXYZXYZXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZ WX YZ WXYZ WXYZ WXYZ WXYZ WXYZ WXYZ WXYZ WXYZ WXYZ                                "&'"&'"&'#&'$&'%&'&&'&&'&&''&''&'(&')&')&')&'*&'*&'+&',&'+&'+&'+&',&'-&'-&'.&'/&'.&'.&'.&'/&'/&'/&'0&'1& '1& '2& '2& '2& '3& '3& '3& '4& '4& '5& '5& '6&'6&'7&'7&'8&'9&':&':&':&':&';&';&'<&'<&'>&'&=&'&=&'&=&'Z[\]^Z[\]^Z[\]^Z[\]^ZZ[\]Z[\]Z[\]Z[\]Z [\]Z [\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\] Z[\]Z [\]Z [\]Z[\]Z[\]Z[\]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[\ ]Z[ \ ]Z[ \ ]Z[\ ]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]Z[\]ZZ[\]ZZ[\]ZZ[\]                            '1( '1('/('/('/('.('.('.('+('+('+('-('-('*('(('(('((')(')('(('&('&('&('%('%('$('#('#('#('#('"('"(' (' ('!(' ('('('('('('('('( '("'(#'($'(%'($'($'($'($'($'($'(%'(''(('(('(('(+'(*'(*'(+'( ^_`a ^_`a^_`a^_`a^_`a^_`a^_`a^_`a^_`a]^^_`a]^^_`]^^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_` ]^_ ` ]^_ ` ]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_ `]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^_`]^ _`]^_`]^_`]^ _`                           (#)*(")*(")*(#)*(#)*(!)*(!)*(!)*(#)*($)*($)*(%)*(#)*(")*(")*( )*( )*(#)(#)(#)(#)(#)( )( ) () () () () ()!()$()$()#()#()$()$()$()$()%()%()%()&()&()&()(()(()(()*()*()*()*()+(),(),(),(),()-().().()0()1( )1( )2( )4( )abcdabcdabcdabcdabcdabcdabcdabcda bcda bcda bcda bcd`aabcd`aabcd`aa bcd`abcd`abcd`abc`abc`a bc`a bc`a bc`a bc`a bc`abc`abc`abc`abc`abc`abc`abc`abc`abc`a bc`abc`abc `abc `abc `abc `abc `a bc `abc `a bc `a b c`abc`abc`ab c`ab c`ab c`ab c`ab c`ab c`ab c`ab c`a bc`a bc`a bc`abc`abc`abc`abc`abc`abc`abc                                 *+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -)**+ , -)**+ , -*+ ,-*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-)*+ ,-))*+ ,-))*+ , )*+ , )*+ , )*+ , )*+ , )*+, )*+, )*+, )*+, )*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+,)*+)*+)*+)*+d efghijklmd efghijklmd efghijklmdd efghijkld efghijkld efghijkld efghij kld efghijkld efghijkld efg hijkld efghijkld efghijkl d efghijkl d efghijkl d efgh ijkl d efghijkl d efghijkl d efghijklcd d efghijklcd d efghijkld d efghijkld d efghijkc d e fghijkc d efghijkc d efghijkc d efgh ijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkc d efghijkcc d efghijkcc d efghij c d efghij c d efghij c d efghij c d efghijc c d efghi c d efghi c d efghi c d efghi c d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghic d efghc d efghc d efghc d efgh                                                         ./0.+($ -../0/-*&"--../0.+(# --../0/-*&"--../0.+($!--./0/-*&"--./0.+($--./0/-*&--./0.+(--./0/-*--./0.+--./0/--./0.--./0/--./0-./0-./0-./0-./0-./0 -./0 -./0 -./0 -./0 -./0 -./0 -./ 0 -./ 0 -./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./ 0-./0-./0-./0,--./0,--./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,-./0,,-./0,,-./,-./,-./,-./,-./,-./ ,-./ ,-./ ,-./ ,-./+, ,-./+, ,-. /no pqrstsoh_VNIFmnno pqrstspldZQKGmmnno pqrstrnh_UNImmnno pqrstspldZQKmmnno pqrstsoh_VNmmno pqrstspldZQlmmnno pqrstrnh_Vlmmno pqrstspldZllmmnno pqrstsoh_llmmno pqr stspldllmmno pqrstsohllmno pqrstspllmno pqrstrnllmno pqrstspllmno pqrstsllm no pqrstsllmno pqrstlmno pqr stlmno pqrstlmno pqrstlmno pqr stlmno pqr stlmno pqrstlmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstklmno pqrstkklmno pqrstkklmno pqrstkklmno pqrstkklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsklmno pqrsjkklmno pqrsjkklmno pqrsjklmno pqrsjklmno pqrsjklmno pqrsijjkklmno pqrsijjkklmno pqrsiijjkklmno p qrijklmno pqrijklmno pqrijklmno pqriijklmno pqriijklmno pqijklmno pqijklmno pqijklmno pqijklmno pqijklmno pqijklmno pqijklmno pqijklmno pqijklmno pqhiijklmno pqhiijklmn o pqø|ƾ}ƾ øƾƾø ƾøƾƾ˾ ˾   ͼͼͼͼ  ˹˹ ɹɹ          ! " $!&" (#  *&" +($!-*&" .+(#  /-*&"  0.+(# 0/-*&" 0.+($!0/-*&" 0.+($! 0/-*&#  0.,(%! 0/-+(#  0/-)&"  0.+($! 0/-*&" 0.+(#  0/-*&" 0.+(# 0/-*&" 0.+($  0/-*&"   0.+($!   0/-*&"   0.+(#   0/-*&"   0.+(#   0/-*&"    0.+($!   0/-*&#    0.,(%!  0/-+'# 0/-)&" 0.+(#  0/-*&"  0.+($! 0/-*&" 0.+(#! 0/-*&"  0.+($! 0/-*&# 0.,(%! 0/.+(#  /00/-)&" /00.+(#! /00/-*&" /0.+($  /0/-*&" //0.+(# /0/-*&" /0.+($! /0/-*&#  /0.,(%! FEE FGHIJKLFEEFGHIJKLFEFGHIJKLGFFEEFFGHIJKLIFFEEF FGHIJKLKGFEE FGHIJKLNIFFEE FGHIJKLQKGFFEEF FGHIJKVNIFFEE FGHIJKZQKGFEE FGHIJKK_UNIFFEEFGHIJKdZQLHFFEE FGHIJKh_VNIFFE FGHIJKldZQKGFFEE FGHIJKoh_UNIFFEEFGHIJKpldZQLHFEE FG HIJKsoh_UNIFFEF FGHIJKspldZQLHFFEF FGHIJKtsoh_VNIFFE FGHIJKtspldZRLHFFEEF FGHIJKtsoh_WNIGFEEF FGHIJKtspld\SMIFFEEF FGHIJKtsoiaZPKGFEEF FGHIJKtspmf_UNIFFEEF FGHIJKtspkcZQLHFFEF FGHIJKtrnh_VNIFFEEF FGHIJKtspldZQKGFEE FGHIJ Ktsoh_UNIFFEE FGHIJ KtspldZQKGFFEEF FGHIJ Ktsoh_UNIFFEEF FGHIJ KtspldZQKGFFEE FGHIJ Ktsoh_VNIFFEE FGHIJ KtspldZQLHFFEF FG HIJ Ksttsoh_VNIFFEEF FGHIJ KsttspkdZQKGFFEE FGHIJ Ksttsoh_UNIFFE FGHIJ KstspldZQKGFFEEF FGHIJKKstsoh_UNIFFEE FGHIJKstspldZQLHFFEF FGHIJKstroh_WNIGFEE FGHIJKstspld\SLHFFEF FGHIJKstsoiaYPKGFEEF FGHIJKstsqmf^UNIFFEEF FGHHIJKstspkcZQKGFEEF FGHIJKstrng_UNIFFEE FGHIJKstspkdZQLHFEE FGHIJKstrnh_VNIFFEE FGHIJKstspldZQKGFEE FGHIJKstsoh_UNIFFEEF FGHIJKrsstspldZRLHFFEF FGHIJKrstsoh_WNIGFFEEF FGHIJKrrsstspld\SMHFFEE FGHIJrstsoiaZPKGFEE FGHIJrstsqnf_UNIFFEEF FGHIJqrrsstspkcZQKGFEE FGHIJqrrsstrng_UNIFFEE FGHIJqrrsstspkdZQKGFFEEF FGHIJqrstrnh_VNIFFEF FGHIJqrstspldZQKGFFE FGHIJqqrstrnh_UNIFFE FGHIqrstspldZRLHFFEE FG HIqrstsoh_WNJGFEE FG HIqrstspld\SLHFFEE FG HIqrstsoiaZPKGFFEE FGHI|zz |}|zz|}|z|}}||zz||}||zz| |}}|zz |}||zz |}}||zz| |}||zz |}}|zz |}||zz|}||zz |}||z |}}||zz |}ø||zz|}ƾ|zz |} ø||z| |}ƾ||z| |}ø||z |}ƾ||zz| |}ø}|zz| |}ƾ||zz| |}ù}|zz| |}||zz| |}ļ||z| |}||zz| |}ƾ}|zz |} ø||zz |} ƾ}||zz| |} ø||zz| |} ƾ}||zz |} ø||zz |} ƾ||z| |}  ø||zz| |} Ƽ}||zz |} ø||z |} ƾ}||zz| |}ø||zz |}ƾ||z| |}ø}|zz |}ƾ||z| |}ù}|zz| |}||zz| |}Ƽ}|zz| |}||zz |}Ƽ|zz |}||zz |}ƾ}|zz |}ø||zz| |}ƾ||z| |}ø}||zz| |}ƾ||zz |}ù}|zz |}||zz| |}Ƽ}|zz |}||zz |}Ƽ}||zz| |}||z| |}ƾ}||z |}||z |}ƾ||zz |} ø}|zz |} ƾ||zz |} ù}||zz |} , , '  3 3 ,  . . %  $  $  $  !   +                                                                                                        LKL MLKL MLKLMLKKL KL M L KLM L KLMLKL KLMLKLMLKLMKLKLMKLKLMKLKLMKLKLMKLLKLM LKLMKL LKLMK LKLMKLKLMK L KLMKL KLML KL KL KL KLML K LK L K LKL K LKL K LKL K LKL KLKL K LKL KLKL KL KL K LKL KL KL KL KL KL KL KL KL KLKL K LKL K LKL K LKL KLKL KLKL KLKL KLKL KLKLKLKL KLKL KLK L KLK LK LKLK LKLK LK LKLK LKLK LKLJKK LK LJK LK LJKLK LJKLK LJK LK LJK LKLIJJK LKLIJJK LKLIJKLKLIJKLKLKLIJKLKL                                                                 MLM=MLM=MLM=MLM=MLM=MLM=ML=ML ! x !; !: ! M8NM9NM9NM7NM6N M5N M5N M4N M5N M5NMNM5NMNM3NMNM2N M3N M5NM/NM/NM/NM/N MNM+N MNM+NM0NM0NM0NM+NM+NM,NM(NM(NM(NM(NM(NM(NM(NM'NM(NM$NM"NM"NM"NM NM N MN MNMNM N MN MN MN MN MN!MN(MN"MNMN(MN)MN)MN)MN*MN*MN*MN*MN'MNMN'MNMN456455 / , - 5532 3 5//// + +000++,((((((('($"""        !("()))****''! !! =! OPO=OPO?ONO=ON=ONON:ON;ON;ON;ON:O, , , 4- / 22 2 5 2 3 3 56669975 8<<<<>=?==:;;;:"!="!<"!:"!""!!"9"!:"!"!2"!""!3" !6"!5"!;"!8"!8"!8" !"!/" !5" !5" !5" !5" !5" !5"!"!"," !"!"," !2" !1"!/"!0"!0"!,"!)"!("!'"!("!("!("!("!$"!!"!"!"!"!"!!"!!"!!"!!"!!"!"!"#!"$!"%!"%!"(!"(!"1Q R3Q R3Q R3Q R3Q R5Q R4Q RP3Q RP5QRP3QRPQQPPQ2QRP5QRP6QR;QR#$#?# UVW UVWUVWUVWUVWUVWUVWUVWUVWUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUV WTUV WTUV WTUV WTUV W TUV W TUV W TUV W TUVW TUVW TUVW TUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTTUVTUVTUVTUVTUVTUVTU VTU VTU VTU VSTTU VSTTU VSTU VSTUVSTUVSTUVS TUVS TUVSTUVS!TUV STUV STUVS STU STU STU S TU STU                      !       ?%$=%$=%$<%$;%$:%$9%$9%$9%$8%$6% $4% $4% $3% $3% $2% $2% $1%$-%$-%$-%$,%$,%$*%$)%$(%$'%$$%$$%$#%$#%$"%$"%$"%$ %$%$%$%$%!$%#$%$$%%$%&$%'$%)$%+$%,$%,$%,$%,$%0$%2$ %2$ %3$ %3$ %4$ %4$ %6$%7$%#4$%#5$%#6$%#5$%XYZWXYZWXYZWXYZWXYZWXYZWXYZWXY ZWXY ZWXY ZWXY Z WXY Z WXY Z WXYZ WXYZ WXYZ WXYZ WXYZWXYZWXYZWXYWXYWXYWXYWXYWXYWXYWXYWXYWXYWXYWX YWX YWX YWX YWX YWXYVWWXYVWXYVWXYVWXYVWXYVWXYVWXYVVWXYVV WXV"WX VWX VWX VWX VWXV!WXV#W XV#W XV!W XV W XV!W XV!W XV"WXV!WXUV!WXUV"WXUVWXUVWX                "    !# # !  ! ! "!!"%=&%=&%=&%<&%9&%8&%8&%7&%7&%7& %3& %2& %2& %2& %2&%0&%.&%-&%-&%-&%*&%*&%'&%'&%&&%&&%%&%$&%"&%!&% & %& %&!%&#%&#%&%%&&%&'%&'%&(%&)%&)%&*%&*%&*%&-%&.%&/%&2% &2% &4% &4% &6%&7%&7%&:%&;%&<%&=%&=%&%!Z[\!Z[\"Z[\#Z[\%Z[\&Z[\Z%Z[\Z&Z[)Z[*Z[,Z[-Z[-Z[.Z[.Z[0Z[0Z[4Z [4Z [5Z [6Z[6Z[6Z[8Z[8Z[Y8Z[Y7Z[Y6Z[Y4Z[Y8ZY7Z Y5Z Y4Z Y4Z Y2Z Y1Z Y1Z Y1ZY0ZY0ZY,ZY,ZY*ZY+ZY*ZY(ZY$ZXY#ZXY"ZXY"ZXY#ZXY#ZXYZXYZXYZXYZ XYZ XYZXYZXYZXYZXYZXYZXYZ  !"    ! !!" " # !! "! !             &0'&.'&+'&+'&+'&+'&('&('&&'&&'&%'&#'& '&"'&!'& '!&'!&'!&'$&'%&'(&'(&')&'*&',&',&'.&'-&'/&'0&'0&'4& '4& '5& '6&'6&'7&'9&';&'&\$] ^\"] ^\ ] ^\"]^\#]^\#]^\!]^\#]^[\#]^[\%]^[[\\$]^[[\"]^[[\ ][\"][\!][\ ][\] [\] [\][\][\][\][\][\][\][\][\][\][\][\]Z[\]Z[\]Z[\ ]Z[\ ]Z[\ ]Z[\]Z[\] Z[\] Z[\] Z[\] Z[\ Z[\ Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[ \Z[ \Z[ \Z[\Z[\Z[\ Z[\#Z[\#Z[\#Z[\%Z[\$ "  "##!##%$" "!                ###% '5( '3( '2( '1('0('.(',('+('*(')(''(''('&('"('"('"('!('('('(!'("'($'(&'(&'(''(*'(*'(,'(.'(.'(.'(.'(4' (6'(6'(9'(9'(;'(;'(='(='(&'='&'='&'='&'='&<'&;'&:'&7'&6' &5' &2' &1'&.'&.'&,'&,'&+'&*'&*'&('&''&&' ^_` ^_` ^_` ^_`^_`^_`^_`^_`^_`^_`^_`^_ `^_ `]^_ `]^_ `]^_`]^_`]^_`]^_`]^_`]^_` ]^_ ]^_ ]^_ ]^_]^_]^_]^_]^_]^_]^_]^_]^_]^ _]^_]^_]^_]^_]^_"]^_#]^_$]^_\]"]^\]#]^\]']^\])]^\(]^\(]^\']^\$]^\']^ \&]^ \#]^ \&] ^\%]^\&]^\$]^\%]^\']^\']^\(]^\']^\\&]^\\&]             "#$"#')(('$' & # & %&$%''('&&1( )1( )3( )6()6()6()9()9()<()<()('<('<('<('8('7( '5( '4( '2( '1('/('.('.('.('+('&('&(''(''('$(' (`)a b `&a b `%a b`'ab`&ab`&ab`)ab`(ab`&ab`%ab`'a`&a`%a`!a`!a`!a` a` a!`a%`a&`a&`a'`a_%`a_'`a_(`a_&`a_)`a_)`a_(` a_)` a _+` a _)` a_'`a_(`a_&`a_'`a_(`a_'`a_'`_&`_&`_$`_#`^_"`^_ `^_ `^_`^_` ^_` ^_` ^_` ^_`^_`^_`^_`^_`^_`^_ `^_ `^_`^_`^_`]^^_`) & % '&&)(&%'&%!!!  !%&&'%'(&))( ) + ) '(&'(''&&$#"        ))*,)*,)*0)*0)*0)*0)*7)*8)*8)*()7)*(:)*(<)*((;)(:)(8)(6) (2) (2) (1)(0)(0)(.)(-)(,)(*)(()(#)(#)(#)( )( )$()$()$()'()(())()*(),()-()0()3( )4( )6()6():()<()>()(=()((bc'cdec+cdbc*cdb-cdb)cdb)cdb)cd b,cd b,cd b,cdab b+cdab+cdab+cdaab,cab(cab(ca b(c a b&c a b&c a b$ca b"cabcabcabcabcabcabca bca bcabcabcab c$a b c$a b c$a b c'abc(abc)abc*abc`a*abc``)ab`+ab`,a b`,a b`.ab `)ab `,ab `.ab`/ab``.ab``*a`)a`'a`%a`%a`#a`"a`!a`!a `a!`a"`a&`a'`a'+*-))) , , , +++,(( ( & & $ "   $ $ $ '()**)+, , . ) , ./.*)'%%#"!! !"&'*#+,*#+,*#+,*$+,*$+*#+*!+*+"*+#*+%*+&*+)*+)*(*+)**+),*+)-* +)-* +)-* + ),*+ ),*+ )/*+ )0*+).*+))+*)**))*)&*)$*)#*)!*#)*#)*#)*&)**)*,)*.)*.)*/)*/)*1)*)*7)*:)*:)*<)*<)*)(;)(;)(7) (4) (3)(-)(-)(-)(-)(*)())(()($)efghidefghidefghidefghide fghdefg hdefg h defg h de fghdefghdefghdefghdefghcddefgcdefgcdefgccde fcde fcde f cdef cdef cdef cdefcdefccdecdecdecdecd ecd ecd e#cde#cde#cde&cdec)cd,cd.cd.cd/cd/cdb/cdcdb3cdb6cdb5cd b1cd b1cd b4cb/cb/cb,cab+cab*ca b)c a b&c ab#ca b#ca b#ca b!cabcabcabcabcabc                #"#&),..///365 1 1 4//,+* ) & # # # ! ,*-.,*-.,*-.,)-.+,,)-+,'-+,%-+,#-+,!-+,- +,- +,-+,-+,-+,-+,-+, -+, -+, -+, -+,-"+,-$+,-+&+,*+%+,*&+,*(+,**+,**+ , **+ , *(+ , *,+,*(+,*,+*)+*'+*&+*#+*!+*+!*+#*+'*+(*++*+-*+0*+)*0* +)/* +)3*+)2*+ )0*+ )3* )2*)0*).*),*)'*)'*)$*)$*)"*)*)*%)*ijklmn ijklmn ijklmn ijklmnhiijklmhijklmhijklmhhijklhijklhijk l hijk l hijklhijklghhijklghijklgghijkfghij kfghij kfghij kfghij k fghijk fghijk fghijkffghijeffghijefghijefghiefghiefgh i efgh i efgh i efghiefghiefghefghefg hdefg hdefg hdefghdefgh defgh defghd defgdefgdefgddefdefcdde fcde fcdefcdef cdef cde cdecdecdecdecd ecd ecd ecdecdecdcde%cd                            %.!/./"./%./-.$./-.)./-(./-(./ -). / -*./ -*./-,./-+./--).-&.-".-!. -."-.&-.)-.,-./-.1- .,/- .,1-.,3-. ,0-. ,2-,/-,--,)-,'-,&-,!-+, -+,- +,- +,- +,-+,-+,-+, -+,-+,-+,- +,-+"+,%+,)+,-+,/+,1+ ,*0+ ,*4+,*3+, *2+, *2+*0+*.+*++*(+*$+*"+nopq nopnopnopmnnopmnnopmnoplmmnoplmno plmnoplmnop lmnop lmnopllmnolmnolmn oklmn oklmnoklmnoklmno klmnklmnklmnklm njklm njklmnjklmnijklmnijklmijklm ijklmi ijklijklijklijk lhijklhijkl hijkl hijklh hijkhijkhijkhij kghi jkghijkfghijkfghijkffghij fghij fghifghifghifgh iefgh iefghiefghi efghi efghef ghefghefg hefg hefghefgh    ƾ  ľ                      /-0/'0/$0/"0!/0#/0&/0*/0-/0//05/ 0:/0-.->-,<-,9- ,5- ,1-,.-,--,'-,%-, -#,-%,-+$,-+%,- +#,-+%, -+',-+',-q rs tpqqrstpqrstpqrspqrs pq rs pq rspqr spq rspq rspqrspqr"pqro pqo!pq o"pq o$pqo"p qo$pqo$pqo%pqno"pnop nop nopnopnopno pmnnopmnopmnoplmmnolmnolmno lmnolmn olmnol mnol mnklmnklmnklmn klmnkl m nklmnkl mnkklmjklmjklmjjklijkli jkl ijklijk lijkli jkli jklii jkhi jkhi jk hi jkhi j khi jkhi jk                     ľ                    0/.-,+**)((&%%$#"!! 0/.-,+**)('&%%$#"!! !0/.-,+**)((&&%%##"!! 0%0/.-,+**)((&%%$#"!! 0*0/.-,+**)((&%%00/.-,+**)(050/.-;0/@0/=0/90 /50 /10/-0/(0/#0!/0$/0)/0//05/ 0./..-;.-7.-..--.-#.-!.!-.&-.+-.1- .9-.-tsqpponlkigedb`_\ZXVTRPNMLKJIIHHGFFtsqponlkigedb`^\ZXVTROONMLKJIIHGFFtsqponlkigedb`_\ZYXUTRONMLKJIIsst tsqponlkigedca`_\ZXVTRPNNss"tsqponlkkigedc`_\ZYXs s!tsqponlkigedcass#tsqponlkkss&tsqpps'ts t str"str"stqr's tq r'st q r#st q r%sq r sq rsq rs!q rsp q r sp!qrs p#qrsp p&q rp'qrp&qpq#pq&pq+pqo0p qo2pq o4po.po*po%po"p#opn"opn$op n$o pn(opn(opnn$ono&nom$nom*n ol m%nol m(no lm#nl m!nl mnl mnl mn%l m nk%lmn k"lm k'l mk)lmk&lk#lk l}||}|| " !#&' ""'  ' # %   !  ! # & '&### #  & ( $   # " $  $ (($&$*  % ( # !   % % " ' )&# < 5#"!! /(&%#"!! (,+**))(('&&%%##"!!  /..--,+**)(('&&%%#"!! 0/.-,+**))(('&%%#"!! 0/.-,+**))(&%#"!! 0/.-,+**))('&%%#"!! 0/.-,+**))('&%%#"!!0/.-,+**))(&%%0/.-,+**)).0/.-80/0/00//090/80/+0/&0 /0+/01/ 0:/0/.9/ .1/.)/.#/$./,./8./.-=.-:. -2.--.-%.$-.FE E7F E,FHGF F E&FMLKJIIHGF F EFUTRPNNMLKJIIHHGF FEF`_\ZYXXUTRPONMLKJIIHGFFEFFEFigedcba_^\ZYXUTRPONNMLKJIIHGFFEFEponllkkigedca`^\ZYXXUTRPONNMLKJIIHGF F Esqponlkkigedcba_^\ZYXXUTRPNNMLKJIIHGF FEttsqpponmlkkigedccba`_\ZYXXUTRPONNMLKJIIHGFF tsqponmlkkigedccba_^\ZYXXUTRPONNMLKJIItsqpponmlkkigedccbba_^\ZYXXUTRPNNtsqponllkkigedccba`_\ZYXX"tsqpponmlkkigedccbbct*tsqponmlkk5tsqpp?t s3ts/ts%ts t&st0st:str8s r1sqrrqqrr*sqr&sqrsqrs qr s+qr1q rp8qrp8q p1qp.qp"q"pq+pq4p qpo9p o1po)po#p$op,op8opno=on6on0on%on o'no5n om5nom:n m2nlm-nlm%nlmn|z z7| z,|}| | z&|}| | z|}| |z|}||z||z|繶}||z|z}| | z}| |z}|| 򹶳񹶳"*5? 3/% &0:8 1*&  +1 88 1.""+4 = 40)  $,8=60% '5 5: 2-%9!  *%#"! ! )(&% %#"!! -,+**))('&%%#"!!/. -,+**))('&%%0 /.-,+**))0/.-+0/0/60/'00/0/0/.;/.+/*./.FE=F EFE/F"E&FEFF,EIHGFFEFEFENMLKJI IHGFFEFXUTRPN NMLKJIIHGFFcba`_\ZYXXUTRPONNMLKJIIkigedccbccba_^\ZYXXUTRPNNponllkkigedc cbccba_]\ZYXXtsqp ponllkkigedc cbtsttsqponlkktststsqpp-ts tst s5tsts#t@sr=s r5s0rsq6rq'r0qrqrqp;qp,q$pqpqpo;po+p*op@o n2onon on|z=| z|z/|"z&|z||,z}||z|z|z }||z|}||   -  5#@= 506'0;,$@ 1$;+*@ 2 -  !"# !"##% %&'!!"##%%&( )*+%%&()*+,- -.)*+,--./0--./0/&0/&0/0/0/.0/. /./.FEF0F EFEE FE FEF$EFE FEFEFEF EFGHF,FGHHI IJKLFFGFGHIIJKLMN NPRTIIJKLMNNOPRTUX XYZ\^NNOPRTUXXZ\_`abccbcdegXXYZ\_`abccdegik klnobbcbcbcdegikklmnop pqskklnoppqs tpqss/tstssjtst'ts t sts rsrs[rq&rqrqrq pqpqpo0po popo n o!non|z|0| z|zz |z |z|$z|z |z|z|z| z|}|,|} ||}|}   ì ˼ /j'  [&  &50  !3 !+ !"##%%$ !"##%%&'(() !"##%%&'(())**+,-- !"##%%&'(())**+,--./  !"##%%&()*+,--./0 !"##%%&()*+,--./ 0 !"##%%&'(())*+,--./0#%%&'(())*+,--./0()*+,--./!0,--./*0 /10/40 /*0/%0/0&/0./0/./5/.0/.)/./ ./'./o.-.7.-0.-*.-!.-5F E-FEFE-FE(F E FGHHIIFFE FGHHIIJKLMNNF FEFEFGHIIJKLMNNPRTUXXEEFGHHIIJKLMNNOPRTUXXYZ\]_abEE FGHHIIJKLMNNOORTUXXZZ\^_abcdegikkFFEE FGHIIJKLMNNOPRTUXXZZ\^`accdegikklmnopp FGHHIIJKLMNNOPRTUXXYZ\_`accdegikklmnoppqstHIIJKLMNNORTUXXZ\_`abccdegikklmnoppqstMNNOPRTUXXYZ\^_abbccdegikklmnoppqstUXXYZ\^`abccdegikklmnoppqsst_abbcbbccdegikklnoppqstikklmnoppqs't pqss1tsyts5t s,ts#tst#st)stvsr8sr1s r(srq sr qsrq srqsrr&qr.qrxqp7qp1q p)qp!qpq'p q5pop5po0po)pop op'opon5o n,on#ono&no-noxnmn7nm0nm*nml!nm l5| z-|z|z-|z(| z |}||z |}| |z|z|}򂄆zz|}낄zz |}₄||zz |}㌎||}윟񜞣򧫬'1y5 ,##)v81 (   &.x71 )!' 5 +! '5 ,#&-x70*!  !"#$%%&(()**+,--..//0 !"##%%&'()**+,--..//0 !"#$%%&(()**+,--..//0 !!"##%%&&'()**+,--./ 0!"##%%&&(()**+,--..//%0%&&'(()**+,--./+0)**+,--./00-./60/0/0:0/70/10 /-0/)0/"0/0!/0%/0,/0./ 05/0/.6/.2/ .*/.&/.#/./!./'./-. /3./x.-8.-2. --.-).-".-.-.&-.,- .2-.z-E FGHHIJKLMNNORTVXZ\_`bdegiklnoppqssttFGHIIJKLMNORTUXYZ\^`bdegiklnoppqssttFGGHHIIJKLMNOPRTVXZ\_`acdegiklnoppqsstIJKLMNNORTUXYZ\^`bdegikklnoppqsstNPRTUXYZ\_`acdegiklnoppqs"tYZ\^`acdegikklnoppqss#tscdegiklmnoppqs"t slmnoppqs#tspqqss&ts&ts!tst st%srt'sr t&s rqtt%s rq+s rq%s r q s rqs rqs rqs r!q sr#qps r&qpr#q p r%qpr$qp%qp!qpq%pq)pq-p q1pq6po6po2p o*po&po#pop!op%onp&on p&o np+on*on&onono'no'nmo(nmo+n ml-n ml)n ml"n mln mln mln ml n m$lnm&lkm(lk m%l km(lk(lk%lkz |}|}ႄ|}}劎"뜟#𮯳" #&&! %' & % + %    ! # &# %$%!%$% (, ( %    !%& & +*&''(+ - ) "     $&( % ((%40 /10 /.0/)0/&0/#0/ 0/0!/0&/0,/0-/ 02/06/0/.8/.3/ .1/ .//.*/.&/."/./!./"./&./+./0. /2./7./8.-/8.-6.-3. -/.-,.-(.-%.- .-."-.$-.*-..- .2-.6-.9-.--,:-,7-,2- ,.-,+-,)-,$-,-,-",-!,+-#,+-',+ -', +-',+ts r q ts r qts rqtsrqsrqs rqps rqps rq ps rq p srqps rqps rqprqprqpq!pq$pq$poq%poq#p o q&p oq'poqp(po&po"ponpponponpo nponpon ponponponmponmonmonmlon mlonm l onmlon mlon mln mlnmlknn mlkn mlk n ml kn ml kn mlknm mlkm!lkmlkjlkjlkjlk jillk ji lkj i lkj ilkjilkk jik jikjihk jihk jih k ji hkjih                                   !           +/.(/.%/.!/. /./ ./#./'./*./,.-/,.- /-.- /+. -/,. -/..-..-+.-).-$.-!.-. -.#-.&-.(-.*-.-- .2- .4-.6-,.5-,.-4-,6-,2- ,/-,+-,(-,&-,#-,"-,+-,+-,+-,+-, +-,+ -,+ -,+-,+- ,+- ,+, +,"+,&+,)+,-+,0+ ,1+ ,3+,6+*,8+*7+*4+ *1+ *.+*,+* qpo qponqponqponqponpo nponponponponmponm ponmlpponmlponmlponmlonm lonm lonml onml onmlkoonmlkonmlkonnmlknml knml knmlk nmlk n mlknmlkjnmlkjnmmlkjimmlkjimlkjimllkjilkj ilkj ilkji lkji lkjihlk jihlkjihk jihkji hkjih k jih kjihkjihgkjihgkjihgfjjihgfjihgfjihgfihg fihg fihgf ihgf ihgfihgfeih gfehgfehgf ehgf ehgfe hgfe                               .+-.*-,..)-, .*-, .+-,.+- ,.+- ,.--,.-+-,+-,)-,'-,$-,+-!-,+-,+-,+-, +-, +-,+-,+-,+-,+ -,+-,+-,+-,+-,"+-,,$+,'+,*+,*+*,,,+*,,+* ,,+*,,+ *,.+ *,.+ *,,+*-+**+*)+*&+*#+*"+*+ *+#*+$*+'*+**++*+0* +2* +5*+7*+5*)+7*)+7*)7*)3* )2* )0*)(*)'*)$*)nmlknmlkjnnmlkj nmlkj nmlkjinmlkjinmlkjinmlkj inmmlkj imlkj imlkjilkjilkjihl lkjih lkjihlkjihlkji hlkji hlkjihkjihkjihgkjihg kjihgkjihgfkjihgfkjihgfkjihgfkjjihg fjihg fjiihgfihgfeiihgfeihgfe ihgfeihgf eihgf eihgf eihgfehgfehgfehgfe hgfehgfedhgfedhgfedhgfedgfe dgfe dfedfedfed fed fedfedfedcfedcfedcedced ced cedcedc edc edc                        -,,%+*,$+*,$+*,$+ * ,&+ * ,%+ * ,&+*,'+*,'+*,&+*,(+*'+*&+*#+* +*+ *+"*+#*+&*+&*+)*+,*+/*+,*) +-*) +.*) ++* )+.* )+-* )+.* )/*).*),*)**)#*)#*)"*)* )* )* )* )*!)*%)*+)*,)*,)*.)*0) *2) *4)*8)*8)*=)*)})();)(;)(;)(9)(6)(kjjihgfejihgfejihgfeihgf e ihgf e ihgf e ihgfeihgfeihgfeihgfeihgfedhhgfedhgfed hgfed hgfedhgfe dhgfe dhgfe dhgfedgfedgfedgfedfedfedc fedc fedc fed cfed cfed cfed cedcedcedcedcedc edc edced ced ced ced cd!cd%cd+cd,cd,cd.cd0c d2c d3cbdd3cbd3cbd7cbdc4cb6cb3c b0cb-cb,cbac*cba)cba%cba%cba#cba                      !%+,,.0 2 3337463 0-,*)%%#%*)%*)%*)!*) *)* )*$)*$)*$)*&)*,)*,)*-)*-)*0) *1) *2) *4)*7)*7)*<)*;)(*)<)()=)();)(9)(8)(8)(6)(6)(3) (1) (/)(.)())(')(')(%)(#)(")(!)() ()!()!()"()&()(()+(),()-()0( )2( )3()7():():():()(edcedc edc edc edced ced$ced$ced$cedd&cd,cd,cd-cd-cd0c d0cbd d.cb d/cbd,c bd,c bd0c bd.c badc-cbac-cbac,cba*cba)cba'cba$cba!cba cb acb acbacbacbacbacbacbacbacbacbac b a cb!a cb!acb"acb&acb(acb+acb,ab-ab0a b.a` b/a`b2a`b3a`b1a`b.a `b-a `1a `0a`.a`+a`)a`'a`   $$$&,,--0 0 . /, , 0 . --,*)'$!    ! !"&(+,-0 . /231. - 1 0.+)'")()()() ()$()&()&()&())()+()-()-()/()/()0( )3( )5()7()7()()7() }('(;(';(';('9('9('5( 'cbac bac bacb ac b$a c b&acb&acb&acb)ac b+ac b-acb)a`c b+a`cb b*a`b)a` b,a` b,a`b.a`b*a `bab)a `b,a`-a`,a`*a`)a`(a`'a`'a`$a`!a`a!`a!`a!`a!`a'`a'`a&`a'`a+`_aa+`_aa)`_a*`_ a*`_ a*`_ a(` _ a)` _a*` _a-` _a-`_a`,`_a`+`_,`_)`_(`_$`_$`_#`_#`_^` `_^`_^`_^`_^`_^`_ ^    $ &&&) + -) + *) , ,.* ) ,-,*)(''$!!!!!''&'++)* * * ( ) * - -,+,)($$##  ('<(':(':('8('6('5( '5( '4( '2( '1( '.('.('.('.('-('(('(('&('$('"(' (' ('("'($'($'(%'(('(('()'(*'(,'(-'(.'(0' (4' (4' (5'(6'(6'(;'('&'<'&a'`_ a(` _a*` _a'`_a)`_a'`_a'`_a%`_a`(`_(`_(`_'`_'`_%`_#`_^_#`_^`_^`_^`_^`_^`_ ^`_ ^`_ ^`_ ^`_ ^`_^`_^`_^`_^`_^ `_^ `_^`_^`_^`_^]`_^]`_^]`__^]_^]_^]_^]_^ ]_^ ]_^ ]_^]_^]_^]_^]_^] _^] _^] _^]_^]_^]_^]_^]^ ]^#]^$]^&]^&]^']^&]\^^(]\' ( * ')''%(((''%##              #$&&'&((0'(0' (2' (4' (5'(6'(8'(9'(9'(<'(<'(<'('='('<'&(';'&;'&;'&9'&8'&8'&6'&6'&2' &1' &0'&.'&-'&,'&+'&)'&)'&('&''&%'&%'&$'&"'&"'&"'&'&'!&'"&'&&''&')&')&'*&'+&',&',&'-&'.& '2& '2& '4& '4&'7&'8&'9&';&'<&'&_^]_^] _^] _^] _^]_^]_^]_^]_^ ]_^ ]_^#]_^%]_^^']_^^']\_^^&]\^$]\^$]\^#]\^#]\^(]\^&]\^']\^#] \ ^$] \ ^%]\ ^$]\^$]\^#]\^%]\^$]\^%]\^]&]\^]%]\%]\%]\$]\[]!]\["]\["]\[]\[]\[]\[]\ []\ []\ []\ []\ []\[]\[]\[]\[]\[ ]\[ ]\[Z ]\[Z ]\[Z]\[Z]\[Z]\[Z]\[Z]\[Z]\[ Z\[ Z\[ Z     #%''&$$##(&'# $ % $$#%$%&%%%$!""            '/& '1& '1& '3& '4& '5&'7&'8&'9&'9&':&';&'y&%;&%:&%:&%9&%9&%9&%6&%3& %3& %2& %2& %1& %1& %.&%,&%+&%*&%*&%%&%$&%!&%!&%!&% &%&%& %&!%&!%&#%&&%]\[Z ]\[Z ]\[Z ]\[Z ]\[Z ]\[Z]\[Z]\[ Z]\[ Z]\[ Z]\[Z]\[Z]\[Z\[Z\[Z\[Z\[Z\[Z\[Z\[Z\[Z \[Z \[Z \[Z \[Z \[Z \[Z \[Z\[ Z\[$Z\[$Z\[$Z\[[&Z\[[&Z[(Z[(Z[(Z[)Z[*Z[+Z[/Z[/Z[/Z [2Z [5Z [5Z[8Z[8Z[9Z[:Z[=Z[&'%&<&'%&=&%<&%;&%;&%;&%:&%8&%8&%8&%8&%7&%6&%6&%6&%6& %5& %5& %5& %3& %3& %3& %2& %2&%0&%0&%0&%0&%0&%0&%/&%.&%-&%-&%-&%,&%,&%,&%*&%+&%+&%)&%(&%(&%(&%(&%(&%(&%%&%$&%$&%#&%#&%#&%#&%"&%"&%"&%"&%"&% &%&%&Z[\]ZZ[\]ZZ[\Z[\Z[\Z[ \Z[ \Z[ \Z[ \Z[ \ Z[ \ Z[ \ Z[ \ Z[ \ Z[ \ Z[ \"Z[ \"Z[ \"Z[ \"Z[ \$Z[ \&Z[\&Z[\&Z[\&Z[\&Z[\(Z[\)Z[\)Z[\*Z[\*Z[\+Z[\+Z[\+Z[\+Z[\+Z[\Z,Z[-Z[.Z[Y,Z[Y+Z[Y+Z[Y+Z[Y*Z[Y,Z [Y,Z [Y*Z[Y*Z[Y*Z [Y*Z [Y+Z [Y+Z [Y,Z [Y-Z [Y,Z [Y,Z [Y,Z [ Y,Z[ Y-Z[ Y-Z[ Y+Z[ Y+Z[ Y+Z[ Y+Z[                                    +'(+'(&'*'(&','(&+'(&,'(&,'(&,'(&,'(&+'(&,'(&-' (&,' (&+'(&,' (&,' (&-' (&-' (&,' (&-' (&-' (&-' ( &)' ( &(' ( &+'( &,'( &+'( &,'( &,'( &*'(&)'(&*'( &+'( &,'(&+'(&+'(&+'(&+'(&*'(&*'(&)'(&*'(&+'(&&,'&,'&+'&+'&+'&)'&('&('&('&&'&%'&%'&#'&#'&#'&"'&"'&!'&!'&"'& ']^_`]^_`\]]^_`\]]^_`\\]^_`\\]^_`\\]^_`\\]^_`\\]^_\]^_\]^_\]^ _\]^ _\]^_\]^ _\]^ _\]^ _\]^ _\]^ _\]^ _\]^ _\]^ _ \]^ _ \]^ _ \]^_ \]^_ \]^_ \]^_ \]^_ \]^_\]^_\]^_ \]^_ \]^_\]^_\]^_\]^_[\\]^_[\\]^_[\\]^_[\\]^_[\\]^_[\]^_[[\\]^[\]^[\]^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\] ^[\]^[\]^ [\]^ [\]^ [\]^                                   4( )3( )3( )4( )4( )4( )5( )5( )6()6()6()8()8()8()8()8()8():():();();();()<()>()(=()(('(=('=('=('<(';(';(';(';(';(';(':(':('9('9( '5( '5('6('6('6( '5( '3(`abc`abc`a bc`abc`a bc``a b`a b`a b_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab _`ab _`ab _`ab__`ab__`a_`a _`a _`a _`a _`a _`a _`a _`a _`a _`a_`a_`a_`a_`a_`a_`a_`a^__`a^_`a^_`a^_`a^_`a^_`a^_`a^_` a^_` a^_`a^_` a^_` a^_` a^_` a ^_` a ^_` a^_` a^_`a^_`a ^_`a ^_`a                            )*+)*+)*+)*+)*+)*+)*+)*+)*+)* +)* +)* +)* +)* +)* +)* +)* +)* +)*+)*+ )*+!)*+")*+")*+")*+")*+")*+#)*+#)*+$)*+(!)*+(")*+(")*(#)*(")*(")*($)*(#)*(")*(#)*(#)*($)*(%)*(#)*($)* (")* (#)* (!)* (!)* (!)* (")* (#)* (")* (#) * (#) * ($) * ($) *(#) *(#) *(#) *(#) *(") *(#) *($)*c d efghc d efghc d efghc d efghc d efghc d efghc d efghc d efghc d e fghc d efghbcc d efghbc d efghbbc d e fgbc d efgbc d efgbc d efgbc d efgbc d efgbbc d efgbbc d efbc d efbc d efbc d efbc d efbc d efbc d efbc d ef bc d ef bc d ef bc d efabc d efabc d efabc d eabc d eabc d eabc d eabc d eabc d eabc deabc deabc deabc deabc deabc deabc de abc de abc de abcde abc de abc de abc de abc de abc dea abc d abc d abc d a bc dabc dabc dabc dabc dabc da bc da bcd                                                                              +, ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-. /+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./+ ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./ + ,-./+ + ,-./+ + ,-./+ + ,-.+ ,-.+ ,-.+ ,-.+ ,-.+ ,- .+ ,- .+ ,- .+ ,- .*++ ,- .*++ ,- .*++ ,- .*+ ,- .*+ ,- .*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-. *+ ,-. *+ ,-. *+ ,-.* *+ ,-.* *+ ,- *+ ,- *+ ,- *+ ,-*+ ,-*+ ,-*+ ,-*+ ,-hiijklmno pqhijklmno pqhijklmno pqhijklmno pqhhijklmno pqhhijklmno phijklmno phijklmno phijklmno phijklmnophij klmn ophijklmnoph ijklmnoph ijk lmn opghhijk lmn opghhijklmn opghijklmnopghijklmnopghijklmnopghijklmnopghijklmnopfgghijklmnopfghijklmnopfghijklmnopffghijklmnopffghijk lmnopffghijklmnofghijklmnofghijklmnofghijklmnofghijk lmnofg hijklmnofghijklmnofg hijklmnofg hijklmnoeffghijklmnoeffghijklmnoeffg hijk lmnoefghijklm noeeffgh ij klm nefghijklmnefghijklmnefgh ijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijklmnefghijk lmn efghijklmn efghij klmn efgh ijklmne efghijklmne efghijklmd efghij klmd efgh ijklmd e fgh ijklmdd efghij kld efghijkld efgh ijkld efghijklȸȸ         ƴĴĴ Ĵ       ó              /0/.+(#  /0/-*&" /0.+($! /0/-*&"   /0.+($!  /0/-*&#    /0.,(%!   /0/.+(#   /0/-)&"   /0.+($! /0/-*&"  /0.+($!  /0/-*&#  /0.,(%!  /0/.+(#   /0/-)&"/0.+($!/0/-*&"  /0.+($! /0/-*&#  /0.,(%!/0/-+(# /0/-*&"  /0.+($! /0/-*&# //0.,(%!/0/.+(# .//0/-)&" ./0.+($! ./0/-*&"  ./0.+($! ./0/-*&#  ./0.,(%! ./0/-+(#  ./0/-*&"  ./0.+($!./0/-*&# ./0.,(%!./0/.+(# ./0/-*&" ./0.+($!./0/-*&# ./0.,(%!./0/-+'#  ./0/-)&"  ./0.+($! ./0/-*&#  ./0.,(%! ./0/.+(#  ./0/-)&" . ./0.+($!. ./0/-*&# ../0.,(%"../0/.+'$!../0/-*&" ../0.+(%!../0/-+'#-../0/-*&-../0.+(-../0/-*--../0.,--./0/.--./0/--./0qrstsqnf_UNIFFEE FGHIqrstspkdZQKGFFEEF FGHIqrstrnh_VNIFFEEF FGHIqrstspldZRLHFFEEF FGHIqrstsoh_WNIGFFEF FGHIqrstspld\SLHFFEEF FGHIpqqrstsoiaZPKGFEE FGHIppqqrstqnf_UNIFFEE FGHpqrstspkcZQKGFEE FGHpqrstrng_VNIFFEE FGHHpqrstspldZRLHFFEE FGHpqrstsoh_WNIGFEE FGHp qrstspld\SLHFEE FGHpqrstsoiaZPKGFEEF FGHpqrstsqnf_UNIFFEEF FGHpqrstspkcZQKGFEE FGHpqrstrng_VNIFFEE FGHpqrstspldZRLHFEE FGHpqrstroh_WNIGFEE FGHpqrstspld\SMIFFEEF FGHppqrstsoiaZPKGFFEF FGHppqrstspmf_UNIFFEF FGpqr stspkdZQLHFFEEF FG pqrstrnh_WNIGFEEF FG pqrstspld\SMIFFEF FGp pqrstsoiaZPKGFF pqr stsqnf_UNIFFop pqrstspkcZQKHFFEE Fo pqrstrnh_VNIFFEE Fo pqrstspldZRLHFEE Fo pqrstroh_WNJGFFEFFo pqrstspld\SMIFEEFo pqrstsoiaZPKGFEEFo pqrstspmf_UNIFFEEFFo pqrstspkdZQLHFFEEFo pqrstrnh_WNJGFFEEFFo p qrstspld\SMIFFEEFFo pqrstsoiaZPKGFFEEFFo pqrstqnf_UNIFFEEFo pqrstspkdZQLHFEEFo pqrstrnh_WNIGFFEEFFo pqrstspld\SMIFFEEFFo p qrstsoiaZPKGFEEFnoo p qrstsqmf^UNIFFEFnnoo pqrstspkcZQLHFFEEno p qrstrnh_VNIGFEEno pqr stspld\SLHFFEEnno pqrstsoiaZPKGFEEnno pqr stsqnf_UNIFFno p qrstspkcZQLHFFnno p qrstrnh_WNJGFnno pqrstspld\SMIFnn o pqrstsoiaZQKGnn o pqrstspnf^VNInno pqrstspkd\RLnno pqrstrohaZPnno pqr stspmf^Umnn o pqrstspkdZmnno p qr strnh_mnn o p qrstspldmmnno pqrstsoilmmnno p qrstspnlmmno pqrstsplmmno p qrsts||zz |}Ƽ}||zz| |}||zz| |}ƾ||zz| |}ø}||z| |}ƾ||zz| |}ù}|zz |}||zz |}Ƽ}|zz |}||zz |}ƾ||zz |}ø}|zz |} ƾ|zz |}ù}|zz| |}||zz| |}ļ}|zz |}||zz |}ƾ|zz |}ø}|zz |}ƾ||zz| |}ù}||z| |}||z| |} Ƽ||zz| |}}|zz| |}ƾ||z| |}ù}|| ||ļ||zz |||zz |ƾ|zz |ø}||z||ƾ|zz|ù}|zz|||zz||Ƽ||zz|}||zz|| ƾ||zz||ù}||zz||||zz|Ƽ|zz|}||zz||ƾ||zz|| ù}|zz| ||z|Ƽ||zz }|zz ƾ||zz ù}|zz || Ƽ|| }| ƾ| ù} Ƽø  Ƽ    ƾù ƾ                                                                       " $!&# (%" +(#!-*&" .,(%!IJK LKLIJK LKLIJK LKLIJK LKLIJKLKLIJKLKLIJK L KLIJK L KHIIJK L KHIJK L KHIJK L KHIJK L KHIJK L KHIJK L KHIJK L KHIJKLKHIJK L KHIJKL KHIJK LKH IJK LKHIJK LKH IJK LKGHHIJK LKGHHIJKLKGHIJKLKGHIJKLKGHIJKLKGHIJKLKFGGHIJKLKFGHIJK LKFGHIJK LKFGHHIJK LKFGHHIJK LKFGHHIJK LKFGH HIJK LKFG HIJKLFG HIJKLFGHIJK LFGHIJK LFGHIJKLFGHIJKLFGHIJKL FGHIJKL FGHIJKL FG HIJKLEFFG HIJKLEF FGHIJKLEF FGHIJKLE FGHIJKLE FGHIJKLFEEF FGHIJKLFFEEF FG HIJKFE FG HIJKGFEEF FGHIJKHFFEEF FGHIJKGFEE FGHHIJKNIFFEE FGHIJKQLHFFEF FGHIJKWNJGFFEEF FGHIJK\SMIFFEE FGHIJKaZQKGFFE FGHIJKf_UNIGFEE FGHIJKkd\RLHFFEF FGHIJKoiaZPKGFFEEF FGHIJK                     } }}}}}|}}|} |} |} |} |} |}  |} |} |} |} |}|}|} |} |} |} z||} z| |}z| |}z |}z |}|zz| |}||zz| |} |z |} }|zz| |}||zz| |}}|zz |}||zz |}||z| |}}||zz| |}||zz |}}||z |}}|zz |}||z| |}ù}||zz| |} ; ;  = = =  =   8 8 8 7 6 5  /  3  5  4  4  4 4 4 4 0 / /  *  * 1 1 , . - / 2 . + + * + - / / 7 5 2 1 . ,   !  $  "               L'ML&ML&ML%ML%ML"ML"MKL"MKL$MKLL"MKL!MKL"MKLL!MKLLKL!MKL!MKLMKLMKLM KLMKLKLMLMKLKLMLMKLKLMLMKLKLMKLKLMKLKLM KLM K!LM K LMKLMKLMKLMKLKLM KLKLM K LMKLMLKKLMKLMLKLMLKKLMLKLMLKLMLKL MLKL MLKL MLKL MLKL MLKL MLKL ML KL M L KL M L KLM L K LM LKLM LKLM LKLMK LKLMK L K$LK L K"LK LKLMK LKLMKK LKL KLKLKLKL KL KLKLKL'&&%%"""$"!"!!!   !                   $ "       'MNMN.MN*MN*MN*MN*MNMN N0MN1M N6MN5M N4M N4M N3M N3M N7MN1MNMN1MNMN1MNMN1MNMN:MN:MN9MN9MN8MN8MN?MNM=MNM=MNM?ML=ML ! = ! ? |NONM=NM=NM"#"="#"="#"?"!<"!"!="!="!}"!"="!;"!9"!9"!"!0"!"!0"!"!2"!"!2"!/"!-"!-"!."!."!."!"!&"!"!!&"!"!!&"!&"!&"!"!&"!"!%"!-"!-"!'"!("!'"%QRS%QRS%QRS%QRS%QRS(QRSQ)QRSQ)QRSQ)QR-QR.QR.QR.QR0QR0QR0QR0QR1Q R5Q R5Q R6QR6QR7QR8QR:QR;QR;QR=QR=QRP:QRP;QRQ=QRQ=QRQ>QP=QP=QP}QPQ=QOP;QOPP9QOPP9QOPPQP0QOPPQP0QOPPQP2QPQP2QOP/QO P-QO P-QO P.QO P.QO P.QO PQP&QO PQPP&QO PQPP&Q O P&Q O P&Q OPQP&Q OPQP%Q OP-Q OP-Q O P'QOP(QOP'Q%%%%%()))-...00001 5 5 6678:;;==:;==>==}=;990022/ - - . . . & & & & & & % - - '('#"#=#"=#"=#";#";#":#"9#"9#"8#"7#"6# "4# "2# "1# "1#".#".#".#".#"-#",#"+#"*#"*#")#")#"(#"&#"$#""#""#""#"!#"!# "#!"# "#!"##"#%"#&"#*"#*"#*"#+"#+"#,"#,"#."#."#."#/"#2" #3" #2" #3" # STUSTUS!TUS!TUS!T UST US T US T URSST URSTURSTURSTURSTURSTURS!TURS!TURS!TURS"TURRST RST RST RST RSTRSTRSTRSTRSTRSTRSTRSTRSTRSTRSTQRRSTQRSTQRSTQRSTQRS TQRS TQRS T QRS T QRS T QRS T QRST QRST QRST QRST QRSTQRSTQRSTQRSQRSQRSQRSQRSQRSQRSQRSQRSQRSQR SQR SQR SQR S !!!     !!!"                  #8$%#9$%##9$%##7$%##8$#7$ #4$ #2$ #1$ #1$ #1$#/$#/$#,$#+$#+$#+$#)$#($#($#($#&$#$$##$#"$#!$ #$!#$!#$!#$!#$"#$"#$##$%#$&#$*#$*#$*#$+#$+#$/#$,#$.#$/#$1# $1# $3# $6#$6#$8#$9#$:#$:#$;#$<#$=#$>#$#=#$#?#UV WXUV"WXUUV WXUUV WXUUV!WUVW UVW UVW UVW UVW UVWUVWUVWUVWUVWUVWUVWUVWUVWTUVWTUVWTUVWTUVWTUV WTUV WTUV WTUV WTUV WTUV WTUVW TUVW TUVW TUVWTUVWTUVWTUVWTUVTUVTUVTUVTUVTUVTUVTUVTUVTU VTU VTU VTUVTUVTUVSTTUVSTTUVSTUVSTUVS"TUVS$TUVS%TUVSS"TUVSS$TUS"TUS#TUS$TU S"TU "  !                 "$%"$"#$ "@%$<%$;%$:%$9%$9%$9%$8%$7% $5% $4% $4% $1%$0%$0%$.%$,%$-%$,%$%$&%$&%$&%$&%$%%$#%$#%$ %$ %$ %$%!$%"$%#$%$$%$$%%$%&$%($%*$%*$%+$%+$%0$%0$%3$ %3$ %3$ %4$ %5$ %5$ %8$%;$%<$%<$%>$%#$<$%##$<$#;$#;$#:$XYZXYZXYZXYZXYZWXYZWXY ZWXY ZWXY ZWXY ZWXYZWXYZWXYZ WXYZ WXYZ WXYZ WXYZW WXYWXYWXYWXYWXYWXYWXWXYWXYWXYWXYWXYWXYWXYWXYWXYWXYWXY!WXY"WXYVW!WXYV!WXYV!WXYVV!WXV!WXV"WXV"WXV!WX V!WX V!WX V&WX V"WX V%W X V%W XV"W XV#W XV!W XV W XV#WXV%WXV%WXV$WXV$WXUVV#WXUUVV#WUV#WUV"WUV!W         !"!!!!!""! ! ! & " % % " # !  #%%$$###"!%=&%9&%9&%7& %4& %4& %4& %4&%/&%/&%/&%/&%.&%-&%-&%+&%'&%%&%%&%%&%#&%"&%!&%!&% &!%&#%&$%&&%&&%&(%&(%&(%&(%&+%&.%&,%&.%&/%&0%&3% &4% &6%&6%&6%&:%&=%&=%&=%&%$;%$;%$;%&Z[)Z[*Z[*Z[,Z[-Z[/Z[0Z[2Z [2Z [3Z [5Z [6Z[7Z[8Z[8Z[;Z[&'&&%=&%<&%9&%9&%9& %4& %4& %3& %1&%/&%.&%,&%+&\%][\\"][\!][\!][\!][\][\][\] [\] [\][\][\][\][\][\][\][\][\][\][\ ][\ ]Z[[\]Z[\]Z[\]Z[\] Z[\] Z[\]Z Z[\ Z[\ Z[\ Z[\Z[\Z[\Z[\Z[\Z[\Z[\Z[ \Z[ \Z[\Z[ \Z[ \Z[\Z[\Z!Z[\Z!Z[\Z"Z[%Z[%Z[&Z['Z['Z[,Z[.Z[/Z[1Z [2Z [2Z [3Z [5Z [6Z[8Z[:Z[;Z[%"!!!              !!"%%&'%)()+ ' ' ' ' &'''!'(!'(!'(#'($'(''(+'(+'(+'(+'(+'(-'(/'(2' (2' (2' (4' (8'(:'(;'(='(>'('='(''&'='&'='&'='&:'&:'&:'&8'&6' &5' &4' &3'&/'&,'&+'&+'&*'&''&&'&$'&#'&'&'!&'!&'%&'&&''&'*&'*&',&'.&'/&'1& '1& '7&'7&'7&']^_`]^_`]^_]^_]^_]^_ ]!^_ ]^_]^_]^_]^_]^_]^_]^ _]^ _]^ _]^ _]^_]^_]^_ ]^_!]^_]#]^_]#]^&]^&]^(]^\])]^\](]^\]+]^\+]^\.] ^\.] ^\+] ^\*] ^ \,]^]^ \/]^ \/]^\,]^\)]^\+]\+]\*]\']\&]\$][\\#][\][\][\][\][\][\] [\] [\] [\][\][\][\][\ ][\ ]["\][ \][\] !      !##&&()(++. . + * , / /,)++*'&$#     " (':('9('8('6( '5( '3( '2( '1('.('-('-('-('*('*('$('#('('( '(%'(&'(('(('(+'(/'(/'(/'(1' (1' (3' (8'(8'(:'(:'('*`a+`a_`*`a_+`a_,`a_.` a_.` a_-` a_1`a _)`a _-`a _,`a_/`_,`_*`_*`_`_$`_)`_%`_#`_"`_"`_"`^_`^_`^_`^_` ^_` ^_` ^_` ^ _`^_`^_`^!_ `^&_`^#_`^$_`^ _`^!_`^_^_]^_]"^_]!^_]^_ ]^_ ] ^_ ]#^_ ]#^_] ^_] ^ _]^ _]^ _]#^_] ^_]"^_]^_]#^]!^] ^%]^']^']^)]^*+*+,. . - 1 ) - ,/,**$)%#"""    ! &#$ !"!   # #    # "#! %'')(")(")(!)( ) ()#()%()(()*()-().().()2( )3( )6():()<()=()>()( ('(=(';('9('8('6( '3(a bcab cab cab c abc#abc%abc(abc*abc-abc.ab.ab`a0a b`/a b`2ab`6ab`5ab `3ab `3ab` `2a`0a`.a`-a`,a`+a`(a`(a`!a`!a!`a!`a!`a'`a(`a)`a*`a-`a/`a2` a_`0` a_1`a`a_.`a`a_5`a_6`a _3` _2` _2` _2`_0`_.`_(`_&`_&`_&`_ `!_`!_`!_`^_#_`^#_`^#_`^$_`^&_` ^#_`    #%(*-..0 / 265 3 3 20.-,+((!!!!!'()*-/2 0 1.56 3 2 2 20.(&&& !!!###$& #&)*')*))*))*-)*.)*6)*8)*;)*<)*@)(=)(<)(;)()(5) (3) (3)(.)(/)(.)(+)(()(')( )( )()#()#()*()+().().()1( )2( ):()<()(&cd'cd)cd)cd-cd.cd6cd8cd;cd+,++*9+ *4+*.+*(+$*+-*+1*+*+*)8* )4*)*))*lmnlm n'lm1l m?lk;l k2lk*lk&l"kl,klhigg< 3* %)4 ?9 4.($-1? 5/*  #.<8 4).-<.-,."- .- .-,.-$,-, +3,+,+,+*9+ *+3*+*nm"#""!;"!"="!;"!"!5" !4" !4" !4" !5"!7"!7"!7" !3" !2"!/"!/"!0" !1" !2"!+"!%"!%"!$"!&"!&"!$"!$" QR S QRS!QRS!QRS"QRS#QRS$QRS&QRS(QRS(QRSQ(QR*QR*QR,QR.QR.QR/QR0QR1Q R2Q R3Q R3Q R4Q R7QR9QR9QR:QR:QR=QR=QR>QRQ=QRQQP;QPQ=QP;QPQP5Q P4Q P4Q P4QPOOP5QP7QP7QP7Q P3QPOP2QPOP/QPOOP/Q OP0Q OP1QOP2QO P+QOP%QOP%QOPO P$QOPOP&QOPOP&QOPO P$QO P$Q  !!"#$&(((**,../01 2 3 3 4 799::==>=;=;5 4 4 45777 32// 0 12 +%% $&& $ $#"#=#"=#"=#"<#";#";#";#"8#"6#"6# "5# "4#"0#"/#"/#"-#"-#"+#"*#"*#")#"(#"'#"'#"%#"$#"!#"!#"!# "# "#""#$"#$"#&"#&"#$"#"#)"#)"#*"#,"#,"#."#/"#0"#2" #3" #4" #5" #6"#7"#7"#:"#<"# S$TU S#T US"T US!T US!T US#T US"T US!TUS TUS"TURSS"TURS#TURS"TURS$TRS#TRS"TRS"TRS TRSTRST RST RSTRSTRSTRSTRSTRSTRSTRSTRSTRSTRSTRSTQRRS TQRRS TQRS TQRS TQRS TQRSTQRSTQRSTQRST QRST QRST QRST QRST QRSRSQRSQRSQRSQRSQRSQRSQRSQRSQR SQR SQR SQR SQRSQRS QRS QRS QRS $ # " ! ! # " ! ""#"$#""                    #9$#8$ #3$ #1$ #1$ #1$ #2$#0$#/$#-$#,$#+$#*$#&$#&$#&$#%$#%$#$$# $# $ #$ #$ #$"#$##$%#$%#$&#$(#$+#$+#$-#$.#$0#$1# $1# $4# $4# $5# $7#$8#$9#$<#$=#$>#$##UV WUVW UVW UVW UVW UVW UVWUVWUVWUVWUVWUVWUVWUVWUVWUV WTUUV WTUVWTUVWTUVWTUVW TUVW TUVW TUVW TUVW TUVWT TUVTUVTUVTUVTUVTUVTUVTUVTUVTU VTU VTU VTU VTU VTUVTUV TUV!TUV&TUV&TUVT%TUST%TUS'TUS&TUS$TUS$TUS'TUS%TU S&TU S(T U S(T U S)T U S(TUS&TUS#TUS"TUS$TUS%TU                    !&&%%'&$$'% & ( ( ) (&#"$%$;%$8%$6%$6% $4% $3% $3% $2%$0%$0%$.%$+%$+%$*%$*%$&%$#%$#%$"%$"%$% $%!$%"$%$$%'$%($%'$%($%*$%,$%-$%-$%.$%.$%1$ %4$ %4$ %7$%8$%9$%:$%;$%;$%$#=$#;$#9$#8$#8$#7$#6$#6$#6$#6$ #5$ #1$ #1$ #1$#/$#/$#-$#($WXYZWXYZWXYZWXYZ WXYZW WXYZW WXY WXYWXYWXYWXYWXYWXYWXYWXYWXYWX YWX YWXYWXYWXY WXY!WXY"WXY$WXY'WX(WXVW%WXV%WXV'WXV'WXV'WXV&WX V$WX V"WX V%W X V&W X V&W X V)WXV(WXV'WXV'WXV'WXV%WXV'WV&WUV&WUV$WUV"WUV"WUV"WUVWUVWUVWUVWUVW UVW UVW UVW UVWUVWUVWUVWUVW       !"$'(%%'''& $ " % & & )('''%'&&$"""    %+&%+&%)&%(&%%&%#&%!&%!&%!&%!&"%&#%&#%&&%&(%&+%&-%&-%&/%&/%&1% &3% &3% &3% &5% &8%&:%&;%&<%&>%&%=%&%%$=%$<%$;%$9%$9%$8% $4% $4% $2% $1%$0%$/%$+%$)%$(%$(%$$%$$%$#%ZY&'&=&'&=&'&&%&=&%<&%;&%:&%8& %4& %4& %1& %1&%/&%-&%,&%+&%+&%(&%&&%#&%#&%&%& %& %&$%&%%&&%&'%&+%&.%&/%&/%&1% &2% &3% &9%&Z[[\]Z[[\]ZZ[[\]ZZ[\]ZZ[\Z[Z[\Z[\Z[\Z[\Z [\ Z[\Z[\Z [\Z[\Z[\Z[ \Z[ \Z[ \Z[\Z [\Z[\Z[\ZZ[#Z[#Z[$Z['Z['Z[)Z[,Z[.Z[0Z[1Z [2Z [4Z [5Z [7Z[;Z[=Z[>Z[Z?ZYZ=ZY;ZY;ZY:ZY:Z Y3Z Y2Z Y2Z Y1Z Y1ZY,ZY+ZY+ZY)ZY'Z       ##$''),... . / . , 0 / 0/-,++(&##      !   !'&='&<'&:'&9'&8'&6' &3' &2'&0'&/'&+'&*'&)'&&'&&'&#'&"'&'&'!&'&&'&&'&&'&&')&'+&'-&'.&'5& '8&';&'<&'=&'&+]^+]^,]^1] ^\1] ^\2] ^\1]^\2]^\2]^\1]^ \0]^ \0]^\0]\/]\+]\*]\)]\&]\&]\#]\"]\]\]!\][\$\]["\][ \][\] [\] [\][\][\][!\ ][$\]['\][#\][$\][!\[!\[\ [\Z[\Z[\Z"[\Z [\Z"[\ Z"[\ Z"[\ Z#[\Z#[ \Z%[ \Z![\Z [\Z[\Z#[\Z#[\Z"[\ZZ [Z["Z[#Z[#Z[(Z[)Z[++,1 1 2 1221 0 00/+*)&&#"!$"   ! $'#$!! " " " " ## % ! ##" "##() '2('0('0('+(')(''('$('%('#('!(' ("'()'()'(*'(+'(/'(0'(1' (6'(:'(;'(='(>'('='('?'&'='&<'&<'&8'&8' &4'&0'&0'&/'&-'&&'&&'&%'& '&'&'"&'$&'%&'*&'-&'.&'/&'1& '2& '5& ' ^#_`^%_ `^%_ `^#_`^#_`_^'_^$_^%_^#_^!_^ _"^_]^'^_]&^_]#^_ ]!^_ ]%^_ ]#^_ ]$^ _ ])^_]%^_]&^_](^_](^_]]^] ^_]] ^] ^!]^!]^$]^(]^*]^*]^+]^/]^3] ^6]^7]^\]8]^\9]^\:]^\8]\8] \4]\0]\0]\/]\-]\&]\&]\%]\ ]\]\]"\]$\]%\][(\][(\][)\] [#\] [$\ ] [%\ ]["\ ] #% % ##'$%#! "'&# ! % # $ )%&((   !!$(**+/3 6789:88 400/-&&% "$%(() # $ % " @('=(':('8('6( '4(',(',('*(''('%('%(' ( '(#'(&'(&'('(.'(/'(/'(2' (6'(;'(='('3` a3` a5` a8`a9`a:`a_8`a`_=`_<`_9`_6` _3` _2`_0`_/`_`_$`_$`_#`!_`_`_`&_`(_`*_`-_`^,_`^+_`^-_ `^1_` ^/_`^(_`^,_^*_^'_^%_^%_^ _ ^_#^_&^_&^_^_],^_],^_]+^_ ]'^ _ ]+^_ ]0^_],^_]+^]+^]*^]&^]$^] ^ ]^#]^(]^(]^+]^-]^3] ^9]^<]^<]^3 3 5 89:8=<96 3 20/$$#!&(*-,+- 1 /(,*'%% #&&,,+ ' + 0,++*&$ #((+-3 9<<;() ('=('<( '4('6( '3( '1('+('+('*('%(%'(%'(*'(,'(,'(0'(;ab@a`=a`;a`;a `2a`.a`,a`,a`+a`'a`&a`"a#`a#`a*`a.`a0`a3` a6`a9`a;`a;`aB` _5` _5` _5` _4` _3`_+`_)`_`_$`_$`_ `%_`%_`%_`(_`_`1_ `3_ `^5_`^8_` ^4_^6_ ^3_ ^1_^+_^+_^*_^%_%^_%^_*^_,^_,^_0^_;@=;; 2.,,+'&"##*.03 69;;B 5 5 5 4 3+)$$ %%%(1 3 58 46 3 1++*%%%*,,0)(=)(8)(6)(6)(0)(*)(()(%)(#)()())()+()+()3( )3( ):() (b"cb"cabcbcabca bca!bcabca"bca bcabca#babab)ab+ab+ab3a b3a b:aba`9a`9a`a`2a`a`2a`0a`0a`+a`$a`$a"`a"`a`a)`a`a1` a2` a4` a7`a=`a`_`=`_`=`_<`_7` _5` _2`_/`_%`_` _`!_`*_`*_`,_`_ `"" !" #)++3 3 :992200+$$"")1 2 4 7===<7 5 2/% !**, @)(=)(<)(7)(7) ()(-)( )()()()$())()*()-()>()((cbcb6cbcb5cb0cb+cb(cb%c$bca$bca#bcbca-b ca6bca aba-ba bababab$ab)ab*ab-ab>abaa`7a`7a`)a`)a`"a`!a`a`a,`a3`a`a9`a;`a`650+(%$$#- 6 - $)*->77))"!,39;)#*)*)*) *1) *7)*F)()(5) (4)(.)(')( )()/()@(c#dcdcdc d1c d7cdFcb cb/c bcb.c bcb,cbc#bc,bcb c3bcEbaba5b a4ba.ba'ba bab/aba `4a`0a` a` a `a"`a`a` a8`a;`a`# 1 7F / . ,#, 3E5 4.' / 40  " 8;*)*=*)**)7* )5*)*)*)*)* ) *@) (%)( )()()()()(dcd=dcddc7d c5dcdcdcdcd c dcb=cb9cbcb)cbc bcbc b cbcbc bc bc@b a%ba bababababa`-a`a ` a5`a`a@`=7 5 =9)    @ % - 5@5*) *)*)*) ) *)*U)(4)()()())(()() ()()s(5dc dcdcdc c dcdcbcbcbcbcbcbwba4babababbaabab abab}a`a`a`a`a` a`a`a `a`a`a&`a:`5  w4 }  &:**)* )*")*$) *)**)*)})()1)()()3) (&)() ()( )()() ( )()=()(*dcd cd"cd$c dcd*cdc|cb;cb#cb c b"cbcbcb cbcbcbcb cbab1babab3b a&bab aba babab a bab=aba`7a `'a`a` a`a,`a`a:`a`* "$ *|;# "  13 &   =7 ' ,:?)()5)()(,)(+)($)()"()$()-()3()(=cb.cbcb+cb)cb#cbc!bcbc%bcbc-bc7babcc0baba,ba+ba$bab"ab$ab-ab3aba`-a`,a`$a`a`$a`a`a`a`a&`a`a)`a8`a;`a}`=.+)#!%-70,+$"$-3-,$$&)8;}})(8)(3) (.)(,)(#)(!)()!()#())(),()/()7()( ~(*cb*cb%cb#cb"cbcbcbacbc bac$b acba c!bacbacbab!ab#ab)ab,ab/ab7abaa`a9a`2a`a`2a`a`.a`(a`%a`a!`a"`a)`a)`a`a,`a8`a;`a`_7`_4` _3` _)`_(`_$`_`"_`#_`+_**%#" $  !!#),/7922.(%!")),8;74 3 )($"#+)0( )4( ) r('<(';('8('0('-('-('+('$('('( '( '("'(+'b0a b4a boa`a`6a`5a `4a `-a`)a`&a`$a`#a`a `a!`a(` a`a+` a1` a2`a6`a7`a`_8`_7`_0`_+`_+`_*`_*`_#`_ `_`"_`&_`)_`-_`._ `4_`_`3_^`:_^;_^8_^0_^-_^-_^+_^$_^_^_ ^_ ^_"^_+^0 4 o65 4 -)&$# !( + 1 267870++**# "&)-. 43:;80--+$  "+('7('6('3( '1( '/('.('(('#('"('('(!'(#'($'(''(-'(.' (5' (5'(9'(~'a'`a'`a)`a+`a/` a2` a5`a;`a|`a``_7`_5` _3` _/`_/`_,`_&`_&`_ `_`!_`$_`'_`'_`(_`+_`-_`_`+_^`/_^`0_^`-_ ^`._ ^/_^._^(_^#_^"_^_^_!^_#^_$^_'^_-^_,^] _0^] _,^]_0^]_0^ ]/^]-^](^]$^]$^]$^]"^]^!]^!]^%]^*]^.] ^1]'')+/ 2 5;|75 3 //,&& !$''(+-+/0- . /.(#"!#$'-, 0 ,00 /-($$$"!!%*. 1}('=('=('7('7('4( '/('/('+(',('$('$('$('"(' ('( '($'($'(('(*'(-' (2' (3' (3' (3'(<'(<'(<'(='&'<'&8'&4' &3' &2' &-'&-'&,'&)'&&'&$'&"'&'&'&'#&'$&'%&'(&'(&`$_`&_^`'_^`(_^`$_^`$_^ `'_ ^ `%_^`&_^`%_^`(_^` _^$_^$_^"_^ _^_ ^_#^]__ ^]_$^]_&^]_(^] _'^ ] _(^ ] _(^ ] _"^]^ ]_)^]_)^]_%^]_%^]#^] ^] ^]^ ]^']^']^']^)]^0] ^3] ^3] ^4] ^5]^8]^:]^<]\]<]\8]\4] \3] \2] \-]\-]\,]\)]\&]\$]\"]\]\]\]#\]$\]%\]'\[]]%\[$&'($$ ' %&%( $$"  # $&( ' ( ( " ))%%#   ''')0 3 3 4 58:<<84 3 2 --,)&$"#$%'%('|'&<'&<'&9'&6'&5' &5' &1' &0'&/'&+'&+'&*'&('&#'&'&'!&' &'"&'$&'%&'&&'+&',&'-&'.&'/& '4&'7&';&'<&'&&_^#^] ^]^]^ ]^"]^#]^&]^&]^+]^.]^.]^/]^0]^4]\^4]\^6]\^3]\6]\5] \5] \1] \0]\/]\+]\+]\*]\(]\#]\]\]!\]\[]] \[] \[] \[]!\[]&\[]"\ []!\ [] \ []\[ ]$\[]!\[]"\[]#\[]\"\[ \[ \[ \[\[\$[\%[Z\\[Z\[Z\[Z \[\"[Z \[\[Z[ Z \"[Z \$[Z \#[Z\%[Z\$[Z\[&[Z'[Z#[Z#  "#&&+../0446365 5 1 0/++*(#!   !&" !   $!"#"   $% "  " $ #%$&'#')&'*&'*&'/&'/& '4& '4& '5& '5& '5&'7&'&%=&%:&%:&%:&%5& %3& %1& %/&%*&%*&%)&%(&%#&%#&%#&%!&%&!%&!%&&%&&%&'%]\ [] \ []\ []#\ []!\ [ ]#\[ ]#\[ ]$\[ ]#\[ ]\[]\[]!\[#\["\[\![\![\[Z\ [Z\[Z\[ Z\[ Z\[Z\[Z\[Z\[Z\[Z\![Z\![Z\%[Z\[$[Z[Z[Z[Z[Z[(Z[(Z[(Z[)Z[)Z[+Z[,Z[0Z [1Z [2Z [4Z[7Z[7Z[9Z[ZzZY;ZY6ZY   # ! # # $ # !#"!!   !!%$((())+,0 / 0 /22/ 1 1 /**)(###!!!""&%&<&%=&%;&%8&%7&%4& %3& %1& %1& %-&%,&%*&%)&%)&%&&%$&%#&%#&%&%& %& %&!%&"%&$%&'%&(%&*%&+%&,%&-% &2% &2% &3%&8%&8%&9%&9%&%$=%$;%$:%$:%$9%$['Z[*Z[,Z[/Z[/Z[0Z [2Z [4Z[6Z[7Z[7Z[# TUVW TUVW TUVW TUV W TUV WTUV W TUV WTUV WTUV WTUV WTUV WTUV WTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTUVWTTUVWTTUVTUVTUVTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTUVSTU VSTU VSTU VSTU VSTU VSTU VSTU V STU V STUV STUV STUV STUV STUV STUV STUV STUV STUV STUVSTUVSTUVSTUVSTUVRSSTUVSSTUTU                               $4% $4% $3% $3% $2% $1% $1%$0%$0%$0%$/%$-%$-%$-%$-%$-%$-%$.%$+%$+%$*%$*%$)%$'%$'%$'%$&%$&%$&%$&%$&%$&%$$%$#%$#%$#%$ %$ %$!%$ %!$%!$%!$%"$%#$%#$%#$%#$%$$%$$%$$%%$%%$%%$%&$%'$%'$%)$%)$%)$%*$%+$%+$%,$% WXYZ WXYZ WXYZ WXYZ WXYZ WXYZ WXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXY ZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWXYZWWXYZWWXYZWWXYVWWXYZVWWXYZVVWWXYZVVWWXYVWXYVWXYVWXYVWXYVWXYVWXYVWX YVWX YVWX YVWX YVWX YVWX Y VWX Y VWX Y VWX Y VWX Y VWX Y VWX Y VWXY VWXY VWXY VWXY VWXY VWXYVWXYVWXYVWXYVVWXYVVWXYVVWX                                  ?&%<&%<&%<&%<&%<&%<&%<&%<&%9&%9&%9&%8&%7&%7&%7&%6&%6& %5& %5& %4& %3& %3& %2& %1&%0&%0&%.&%.&%.&%.&%-&%+&%+&%+&%+&%+&%*&%*&%)&%(&%(&%(&%'&%&&%$&%#&%#&%#&%"&%"&%"&%"&% &% & %&!%&!%&!%&!%&#%&#%&#%&"%&Z[\Z[\Z[\Z[ \Z[ \Z[ \Z[ \ Z[ \ Z[ \ Z[ \ Z[ \!Z[ \!Z[ \"Z[ \#Z[\%Z[\%Z[\%Z[\&Z[\&Z[\%Z[\&Z[\(Z[\*Z[\*Z[\*Z[\*Z[\*Z[\+Z[\+Z[\,Z[\Z+Z[,Z[YZ+Z[YZ,Z[/Z[/Z[YZ.Z[Y-Z [Y.Z [Y/Z [Y.Z [Y.Z [Y/Z [Y/Z [Y0Z[Y/Z[ Y+Z[ Y+Z[ Y,Z[ Y-Z[ Y.Z[ Y.Z[ Y.Z[ Y-Z[ Y-Z[ Y-Z[ Y-Z[Y,Z[Y,Z[Y+Z[Y+Z[Y,Z[Y,Z[                                    &'+'(&,'(&,'(&-'(&/' (&0' (&/' (&-' (&.' (&-' (&/'(&/'(&.'(&-' (&-' (&-' (&+' ( &-'( &/'( &-'( &-'( &-'( &/'( &/'(&.'(&-'(&-'(&&,'(&,'(&&-'&,'&,'&+'&+'&+'&*'&*'&)'&('&''&''&''&&'&$'&$'&%'&%'&$'&#'&"'&"'&!'&!' &' &' &'!&'!&'#&'#&'$&'$&'%&'$&'\]]^_\]^_\]^_\]^_\]^ _\]^ _\]^ _\]^ _\]^ _\]^ _\]^_\]^_\]^_\]^ _\]^ _\]^ _\]^ _ \]^_ \]^_ \]^_ \]^_ \]^_ \]^_ \]^_\]^_\]^_\]^_\\]^_\]^_\\]^\]^[\\]^[\\]^[\\]^[\]^[\]^[\]^[\]^[\] ^[\] ^[\] ^[\] ^[\] ^[\]^[\]^[\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^ [\]^[\]^[\]^ [\]^[\]^[\][\][\][\][\][\]                              8()8():():();();():():();()<()>()(=()(=()(('(=('(=('<('<(':(':(':(':(':('9('9('7('7('7('7('6('6( '4( '3( '3( '2( '2( '1('0('0('/('.('.('-('-('-('-('-('+('+(`ab`ab_``ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab_`ab__`ab__`ab__`a_`a _`a _`a _`a _`a _`a _`a _`a _`a _`a _`a_`a_`a_`a_`a^__`a^__`a^_`a^_`a^_`a^_` a^_` a^_` a^_` a^_` a^_` a^_` a^_`a^_`a^_`a^_`a^_`a ^_`a ^_`a ^_`a ^_`a ^_`a ^_`a^_`a^_`a^_`a^_`a^^_`a^^_`^_`^_`^_`^_`^_`^_`                       )*+)*+)*+ )*+ )*+ )*+")*+")*+")*+")*+#)*+$)*+$)*+)%)*()&)*(%)*($)*(%)*(&)*(&)*(')*(%)*($)*(%)*(')*(&)* ($)* ($)* (%)* (&) * (%) * (%) * (&) * (&) *($) *(") *($) *(%)*(&)*(&)*(')*(&)*(')*(')*(&)*(&)*(&)*(')*(&)*(&)*($)*((#)*(($)(#)($)(")(")(")(")(!)(!)( )( )()bc d efbc d efbc d efbc d efbc d efbc d efbc d efbc d efbc d ef bcd ef bc d ef bc d ef bc d efb bc d eab bc d eabc d eabc d ea bc dea bc dea bc dea bc dea bc deabc deabc dea bc dea bc de abc de abc de abc de a bc de a bc dea a bc d a bc d a bc da bc da bc da bc da bcda bcda bcda bcda bcda bcdabcdabcdabcda bcda bcda bcda bcdabcdaabcdaabcabca bcabca bc`aa bc`aa bc`aa bc`aa bc`a bc`a bc`a bc                                                                              + ,-./+ + ,-. + ,-.+ ,-.+ ,-.+ ,-.+ ,-.+ ,- .+ ,- .+ ,- .+ ,- .+ ,- .+ ,- .+ ,- .+ ,- .*+ ,- .*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.*+ ,-.**+ ,-.**+ ,- *+ ,- *+ ,- *+ ,- *+ ,- *+ ,- *+ ,- *+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ , -*+ , -*+ , -*+ , -*+ , -*+ , -*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-*+ ,-)*+ ,-*+ ,-)*+ ,-)*+ ,-)*+ ,-))*+ ,)*+ ,)*+ ,)*+ ,)*+ ,)*+ ,)*+,ghijklmnopfgghijklmnofgghijk lmnofg hijklmnofghijklm nofghij klmnofghijklmnofgh ijk lmnofghijk lmnofghijklmnofg hijklmnofg hijk lmnofghijk lm noffghijk lmnoffghijklmnoeeffghij klm nefghijklmne fgh ijklmnefgh ijklmnefg hijklmne fghijklmnefg hijklmnefghijk lmnefg hij klmne fghij klmne fg hij k lmneefgh ijklmneefghij klm efg hij klm efghijklm efghijklm efgh ijk l efghij kl efg hij kld efghij kld efg hijkld efghijkld efghijkld efghij kld efgh ij kld efgh ijkld efghijkld efg hijkld efg hijkldd efghij kd e fg hijk d e fgh ijk d e fgh ijk d efgh ijk d efghijk d e fghijk d e fghijkc d efgh ijkd efgh ijkc d efg hijkc d efghijkc d efghijkcc d e fghijc d efgh ijcd efghijcd e fgh ijcc d efg hijcc d efghijccd efghiĴ            ô ôó                                                                         /0.+(%! /0/-+'#! .//0/-*&"  ./0.+(%" ./0/-+(#! ./0/-*&#  ./0.,)&" ./0/.+(%!./0/-+(#!./0/-*&# ./0.,(%"./0/.+(#!./0/-*&# ./0.,)&" ./0/.+(%! ./0/-+(#! ./0/-*&"  ./0.+(%!. ./0/.+'#!. ./0/-*&# . ./0.,)&" . ./0/.+(%!. ./0/-+(#!../0/-*&#../0.,(%../0/.+(../0/-*../0.,-../0/.-../0/--../0-./0-./0-./0-./0-./0-./0-./0-./0-./0-./0 -./0 -./ 0 -./ 0 -./ 0 -./ 0 -./ 0 -./ 0-./ 0-./0-./0-./0-./0-./0-./0-./0-./0-./0-./0--./0,--./0,,--./,-./,-./ pqrs trohaZPKGFEE F p qrstspmf^UNIGFEEFop p qrstspkd\RMIFFEFo p qr stsohaZQKHFFEFo p qrstspmf_UNJGFFEEFFo p qrstspkd\TMIFFEEFo pqrstsoibZRLHFFEEFFo pqrstsqng`XPKGFFEEFo pqrstspmf_UNIGFEEFo pqrstspkd\SMIFFEFFo pqrs tsoiaZQKHFFEFFo p qr stspnf_UNJGFFEFFo pqrstspkd\TMIFFo p qr stsoibZRLHFFEEFoo pqrs tqng`XPKGFEE o pqr stspmf_UNIGFEEnoo p qr stspkd\RMIFFEnnoo p qrs trohaZPKGFFnnoo p qr stspnf^UNJGFnno pqr stspkd\TMIFnno p qrstsoibZRLHnn o pqr stqng`XPKnno pqrstspmf_UNnn o p qrstspkd\Snno pqrstsoiaZnno p qrstspnf_nn o p qrs tspkdnn o pqrs tsoimnn o pqrstsqnmnn o pqr stspmmnn o p qr stsmmnn o pqrs tm no pqrstlmmno pqr stlmno pqr stlmn o pqrstlm no pqrstlmn o pqrstlmn o pqrstlm n o p qr stlm no p qr stlmno pqr stllmno pqr stllmno pqrstllmn o pqrslmn o pqrskllmn o pqrsklmno pqrsklmn o pqrsklmn o p qrsklmn o p qrsklmn o pqrsk lm no pqrsklm no pqrsklm no p qrskk lm no p qrskklm no p qrk lmn o pqr klm no p qrkklm no pqrjkklmn o pqrjjkklmno pqjklmn o pqjklmn o pq  ø}|zz | }|zz| Ƽ||z|  ø||z| }||zz|| Ƽ||zz| ù||zz|| }||zz| }|zz| Ƽ||z|| ù||z||  }||z||Ƽ||  ù||zz| }|zz   }|zz  ļ||z  ø}||  }|  Ƽ| ù     Ƽ ù    Ƽ   ù                           ; ;;                    ˼   ˼       ɼ  ɻ ɻ                     "#!&# )&" +(%!-+(#!/-*&# 0.,)&" 0/.+(%!0/-+(#!0/-*&# 0.,)&" 0/.+(%! 0/-+(#! 0/-*&#  0.,)&"  0/.+(%! 0/-*'#! 0/-*&#   0.,)&"   0/.+(%!  0/-*'#! 0/-*&#  0.,)&"  0/.+(%! 0/-+(#!0/-*&# 0.,)&" 0/.+(%!0/-*'#!0/-*&# 0.,)&" 0/.+(%" 0/.+(%!0/-*(#!0/-*&# 0.,)%" /00/.+(%!/00/-*&" /00.+(#  FG HIJKLKFGHIJKLKFGHIJKLKFGHIJK LFGH IJK LFGHIJK LFGHIJK LFGHIJKLFGH IJKLFG HIJKLFGHIJKL FGHIJKL FGHIJKL FGH IJKL FG HIJKLEF FGHIJKLEF FGHIJKE FGHIJKE FGHIJKFEE FG HIJKFEF FG HIJKHFFEE FG HIJKIGFFEEF FGHIJKMIFFEE FGHIJKQKHFFEEF FG HIJKUNJGFFEEF FGHIJK\TMIGFEEF FGHIJKbZRLHFFEF FGHIJKg`XPKGFEE FGHIJKmf_UNJGFFEEF FG HIJKpkd\TMIFFEE FGH HIJKsoibZRLHFFEF FGH HIJKsqng`XPKHFFEF FG HIJKtspmf_UNJGFFEEF FG HIJ Ktspkd\TMIFFEF FG HIJ KtsoibZRLHFFE FGH HIJ Ktsqng`XPKHFFEF FGHIJ Ktspmf_UNJGFFEEF FGHIJKtspkd\TMIGFEE FGHIJKtsoibZRLHFFEE FGHIJKtsqnh`XPKGFFEEF FGHIJKtspme^UNJGFEEF FGHIJKtspkd\TMIFFEE FG HIJKtsoibZRLHFFEEF FGHHIJKtsqng`XPKGFFE FGHIJKsttspme^UNJGFFEEF FGHIJKsttspkd\TMIFFEE FGHIJKs tsoibZRLHFFEE FGHIJKstsqng`XPKHFFEE FG HIJKstspmf_UNJGFFEE FG HIJKss tspkd\TMIFFEE FG HIJstsoibZRLHFFEE FG HIJstsqng`XPKHFFEEF FGH IJstspme^UNJGFFEEF FG HIJs tspkd\TMIGFFEEF FG HIs tsoibZRMIFFE FGHI stqnhaZQLHFFE FG HIrsstspnf_XPKHFFEE FGHIrsstspme_UNJGFEE FGHIrss tspkd\TMIFFEE FGHIrs tsoibZQLHFFEF FGHIqrrsstsqng_XOJGFFEE FG HIqrrss tsple\RLGFFE FGHIqrr s tsoh_UMHFFE FGHI|} |}|}|} |}  |} |} |}|} |} |} |} |} |}  |} z| |}z| |}z |}z |}|zz |} |z| |} ||zz |} }||zz| |}||zz |}||zz| |} }||zz| |}}|zz| |}||z| |}}|zz |}}||zz| |} ļ||zz |} ù||z| |} ||z| |} }||zz| |}  Ƽ||z| |}  ù||z |}  ||z| |} }||zz| |}Ƽ}|zz |}ù||zz |}}||zz| |}}|zz| |}ļ||zz |} ù||zz| |}}||z |}}||zz| |}ļ||zz |} ù||zz |}||zz |} }||zz |}  ļ||zz |} ù||zz |} ||zz| |} }||zz| |}  ļ}||zz| |}  ù||z |} ||z |} ||zz |}}|zz |} ļ||zz |} ù||z| |}}||zz |}  ƾ}||z |} ø||z |} (  '  (  ( * * ) ( - - / 1 2  ,  (                                                                                      ;         !    KLKL MKLKL MKLKL MLK KLKLMLKKL MLKL MLKLMLKLMLKL M LKL M LKL M L K LM L K"LM L KLKLML KLKLM LKLKLKLLKLMKKL LKLMKKLLKLKLKLKLKLKLKLKLKLKL KLKLKL K LKLKLK LKLKL KLKL KLKLKL K LKL K LKL K LKL KL KL KL KLK LKL KLK LK L KLKL KLK L KLK LKLK LKLK L KLK LKLK LKLK LKLK LKLK LKLK LKLK LKLK LKLK LKLKLKLK LKLJKK LKLJK LKLJK LKJKLKIJJKLKIJK LKIJKLKIJK LKIJK LKIJKLKIJKLKL KIJKL KL K         "                                             < = = = < ; 8   7  =  = MLM=MLM=MLM=ML8ML8ML8ML:ML7ML7ML7M L4M L3M L3M L3M L4M L1M L1M L2ML.ML-ML-ML-ML,ML*ML%ML%ML&ML$ML#ML#ML ML ML!ML!MKL MKLMLMKLMLMKLMKLMKLMKLMKLLKLMKLLMLMKLLMLM===888:777 4 3 3 3 4 1 1 2.---,*%%&$##  !!  M4N MNM.NM-NM+NM,NM,NM+NM*NM'NM'NM(NM(NM&NM$NM$NM%NM&NM&NM"NM"N"MN"MN"MN"MN"MN#MN"MN#MN%MN$MN"MN"MN#MNMN-MN-MN-MN+MN)MNMN)MN*MN.MN.MNMN.MNMN0MN0MN1M N6MN7MN7MN7MN7MN9MN:MN:MNMNM=MNMM 4 .-+,,+*''((&$$%&&"""""""#"#%$""#---+))*...001 677779::= 2! 2! 1! 1! 1! 1! 0! .! .! *! -! +! +! +! ! !! ! !! !! ! !! ! ! ! ! ! ! !$ !$ !$ !# !% !( !( !( !( !( !* !* !+ !+ !- !. !0 !2 !4 !5 !5 !4 !8 !9 !; !; !; ! +NO+NO0NO0NO4N O2N O2N O4N O4N O8NO6NO6NO7NO7NO8NO8NO~NON=NON=NON NM=NM=NMQRQ=QRQQP=<<:9::766 1 1 1 20 .$$$( ( * (          @#"#=#"=#"=#"<#":#"6# "4# "2# "1# "1# "1#"0#".#"*#")#"(#"(#"(#"%#"%#"$#"##""#" #!"#""#""#&"#("#("#)"#*"#*"#*"#0"#1" #1" #2" #2" #6"#6"#7"#7"#;"#="#="#>"#""S'TUS%TUS%TUSS&TS$TRSS"TRS"TRS TRS!TRSTRST RST RST RST RST RSTRSTRSTRSTRSTRS TRS TRS TRS TQRS TQRS TQRSTQRSTQRSTQRST QRST QRST QRS QRS QRSQRSQRSQRSQRSQRSQR SQR SQR SQR SQRSQRSQRSQRSQRSQRS!QRS%QRSQ%QR'QR'QR(QR(QR+QR+QR+QR.QR0QR1Q R0QR'%%&$"" !                    !%%''((+++.01 0#'$#'$#'$#$$##$##$#!$!#$"#$$#$$#$$#$'#$)#$,#$-#$/#$0#$0#$1# $5# $5# $5# $5# $8#$;#$<#$=#$#"#=#"=#"=#":#"8#"7#"6# "5# "4# "2# "2#"/#UV WUV WUVWUVWTUUVWTUVWTUVWTUVWTUVWTTUV TUV TUV TUV TUVTUVTUVTUVTUVTUVTU VTU VTU VTU VTU VTUVTUVTUVTUV#TU#TU#TU(TU)TUST%TUST*TUS*TUS)TUS(TU S&TU S*T U S*TU S)TU S(TU S*TUS*TUS)TUS*TUSS+TS*TS)TS)TS#TRSS"TRS!TRS TRSTRSTRSTRST RST RST RST RSTRST           ###()%**)( & * * ) ( **)*+*))#"!     $"%$"% $%!$%"$%%$%&$%&$%&$%,$%,$%-$%.$%0$%1$ %1$ %5$ %6$%=$%=$%>$%$=$%$$#=$#=$#<$#:$#9$ #5$ #3$ #4$ #3$ #2$#0$#-$#-$#+$#+$#)$#&$##$##$#!$ #$!#$!#$##$$#$'#$*#$-#$-#$-#$0#$1# $1# $4# $5# $WXYW XY WX!WX"WX%WX&WX&WX&WX,WXV*WXV(WXV(WXV*WXV)W XV)W XV,W X V,WXV.WXV.WXV-WXVV-WXVV*WV)WV)WV(WV'WV'WV"WUV WUV WUVWUVWUVW UVW UVW UVW UVW UVWUVWUV WU V WU V WU V WUV WUVWUVWUVWTUUVWTUUVTUVTUVTUV TUVTUV T UVTUVTUVTUVTUTUVTU VTU VTU VTU V  !"%&&&,*((*) ) , ,..--*))(''"                  9%&<%&<%&<%&%$%=%$<%$:%$8%$7% $3% $2% $2% $2%$-%$)%$&%$&%$&%$&%$%%$%$%$%!$%#$%&$%'$%,$%,$%-$%0$%2$ %3$ %4$ %6$%7$%<$%>$%$=$%$$Y"ZYZYZYZXYZX!YZX!YZ XYZ XYZ XYZ XYZ XYZ X YZXYZXYXYZY ZXYZXYZXYZXYZXYZX YZX!YZXXYWX XYWXYWXYWXYW"XY WXY W XY W XY W"XYWX YWX YWX YWXYWXYW!XYW XYWXWXWX!WX#WX&WX'WX,WX,WX-WXV.WXV/W XV/W XV0W XV2WXV2WX V1WX V0WXV V0WXVV/WV.WV-WV,WV)WVWVV&W!!        ! "    "   ! !#&',,-./ / 0 22 1 0 0/.-,)&&%=&%=&%8&%6&%6& %5& %4& %2&%/&%/&%-&%)&%(&%%&%!&%& %&%%&%%&&%&'%&'%&.%&0%&0%&2% &3% &8%&8%&>%&%?%$<%$<%$9%$9%$9%*Z[+Z[2Z [2Z [3Z [5Z [8Z[8Z[ZY%&%~%['\][&\][%\][&\["\[ \[ \"[\Z[ [\Z[)[\Z)[\Z)[\Z[Z$[\Z#[\[ \ Z.[\ Z.[\ Z*[\Z'[\Z)[\Z*[\Z+[Z"[Z"[Z [ Z[$Z[&Z[(Z[)Z[/Z[0Z[0Z[0Z[7Z[7Z[ZY=ZY=ZY=ZY9Z Y3Z Y2ZY/ZY.ZY,ZY,ZY,Z'&%&"  " )))$# . . *')*+"" $&()/00077?==<7 3 2 1,*)&&"!"$&&,,- ' ( &,+,,'&='&8'&0'&0'&0'&/'&+'&*'&)'&'&!'&!' &'#&''&''&'(&',&'& '3& '4& '5& ';&'<&' &]\=]\8]\0]\0]\0]\/]\+]\*]\)]\]\!]\!] \]#\]'\]'\](\][\*\]\ ][-\ ] [*\ ] [)\ ] [/\] [/\][/\[/\[(\[(\[%\"[\"[\"[\'[\)[\,[\Z[.[\Z.[ \Z+[ \Z.[\ Z0[\ Z0[\ZZ-[Z,[Z*[Z'[Z%[Z$[!Z[#Z[%Z[(Z[-Z[/Z[0Z[1Z [8Z[9Z[;Z[Z=8000/+*)!! #''(* - * ) / ///((%"""'),.. + . 0 0-,*'%$!#%(-/01 89;0'(8'(:'(<'('&<'&9' &3' &3'&0'&0'&.'&-'&('&"'&"'!&''&',&',&'3& '6&'9&'9&'&0^_8^_]6^_]4^_ ]3^ ]2^]0^],^]*^]#^]"^!]^"]^&]^*]^,]^3] ^7]^]^;]^<]^<]^@]\<]\9] \3] \3]\0]\0]\.]\-]\(]\"]\"]!\]'\],\],\]3\ ]6\][4\][4\] [2\ [2\[/\[+\[*\[&\[&\[\[\$[\%[\%[\.[\/[\6[\8[\Z9[\Z5[\Z6[Z8[0864 3 20,*#"!"&*,3 7;<<@<9 3 300.-(""!',,3 644 2 2/+*&&$%%./689568('=(';(':('.(',('*('#('("'(%'('(-'(2' (5' (;'('&='&7'&6' &5'&)'&('&('&'&'$&'%&'3& '5& '8&':&'=&'&6_`8_`_^=_^;_^:_^._^,_^*_^#_^_"^_%^_^_-^_2^ _5^ _;^_^]8^]8^]8^]^]2^ ]1^]0^]^]%^]%^"]^#]^&]^]^.]^]^ ^3] ^6]^:]^=]^@]\=]\7]\6] \5]\)]\(]\(]\]\]$\]%\]3\ ]5\ ]8\]:\]=\]\[=\[\=\68=;:.,*#"%-2 5 ;8882 10%%"#&. 3 6:=@=76 5)(($%3 5 8:===('<('('4('('3('('2( '(''('"('!('('(-'(3' (7'(>'('='(''&'='&'='&'&6' &2'&'&)'&'&&('`_=`_7`_0`_0`_+`_`_!`_!`%_`%_`_`_`0_`_`9_`:_`_^<_^_^4_^_^3_^_^2_ ^_^'_^"_^!_^_^_-^_3^ _7^_>^_^=^_^E^]2^]-^])^])^#]^%]^]^-]^0]^5]^]^@]\]=]\]=]\]\6] \2]\]\)]\]\\(]=700+!!%%09:<432 '"!-3 7>=E2-))#%-05@==6 2)(D(';('('(')( '('&('"('('(-'( '(@'@`_``_4`_/`_`_`!_`!_`_ `_`+_`_`:_`D_^;_^_^_^)_ ^_^&_^"_^_^_-^_ ^_^]9^]6^]^]^)]^-]^-]^] ^@]@4/!! +:D;) &"- 96)-- @('7( '4('-(&'('('('`_)`_` _`_``_`_^7_ ^4_^-_&^_^_^_ ^]=^]3^ ]+^]^]+]^ ]^]]) 7 4-& =3 ++ ('(' ('('( '($'(u'`_` _`_`_` _ `_`_`_^_^ _^_^_ ^_$^_^]^]^ ^]^]^] ^]^]^]^]    $  (' ('$('('(' (!' (5'(6'}`_<`_0`_`_`_`!_`_`%_ ` _^ _^$_^_^_^ _!^ _5^_^]7^]4^ ]'^]^ ]^ ]^]^]^%]^]^0]^]]}<0!%   $ ! 574 '  %0x('7('&('"('(' ('(,'('(,'('(/'(8'&)'&' &3' &9`_8`_0`_%`_`_$`_`_`_`%_`/_`_`3_`1_^7_^&_^"_^_^ _^_,^_^_,^_^_/^_^]/^]/^])^]'^]&^]^(]^']^;]^6]\)]\] \3] \980%$%/317&" ,,///)'&(';6) 3 ('6('+('( '*('( ')('( ')('!('('(&'(+'(.'(0' (3'(6'(''((6'(''&'='&'9'&:'&/'&+'&#'&"'&'!&'"&'(&'0&'&'0&'&'8&'&& `2_ `4_`9_`_^6_^+_^_ ^*_^_ ^)_^_ ^)_^!_^_^_&^_+^_.^_0^ _3^_6^_^^__6^_^^]9^]9^]0^]0^]*^]%^]"^]^#]^(]^,]^]^0]^6]^]]\]=]\]9]\:]\/]\+]\#]\"]\]!\]"\](\]0\]\]0\]\]8\]\\[;\[ 2 496+ * ) )!&+.0 3669900*%"#(,06=9:/+#"!"(008;(,' ('(.' (5' (5'('&7'&5' &0'&0'&&'&&'&&'&'&'$&'%&'%&'(& '&',& '5&'&_,^ _^_.^ _5^ _5^_:^]^:^]9^]6^]0^]-^]+^]&^]%^]^]^]^$]^)]^)]^/] ^2] ^3]^6]^u]\7]\5] \0]\0]\&]\&]\&]\]\]$\]%\]%\](\ ]\],\ ]5\]p\[7\[5\ [3\ [0\[+\[*\[$\[ \[\%[\'[\)[\-[\/[ \3[\6[Z\\7[Z[>[, . 5 5::960-+&%$))/ 2 36u75 00&&&$%%( , 5p75 3 0+*$ %')-/ 367>:'&7'&3' &3' &3' &0'&+'&*'&*'&%'&'&'%&''&'&&',&'/& '1& '2&'8&':&'=&'& ^2] ^5]^9]^v]\7]\3] \3] \3] \0]\+]\*]\*]\%]\]\]%\]'\]&\],\]/\ ]/\[ ]/\[]3\[]0\ []0\ []/\ [0\[&\[\[&\[$\["\[!\[\$[\&[\)[\,[\/[\,[Z \1[Z\1[Z\2[Z\.[ Z1[ Z+[Z+[Z*[Z&[Z"[Z[!Z[#Z[&Z[(Z[,Z[,Z [1Z[8Z[Z 2 59v73 3 3 0+**%%'&,/ / /30 0 / 0&&$"!$&),/, 112. 1 ++*&"!#&(,, 18',&'/& '2& '3&':&'&=&'&&%&;&%<&%<&%5& %5& %0&%/&%-&%%&%%&%%&%&"%&"%&$%&$%&)%&)%&-%&-% &3% &4%&8%](\[](\[ ])\[ ]*\[].\ []\/\ []\+\[,\[%\[%\[$\[ \[\ [\$[\'[\[\&[Z\ \[\([Z\.[Z \-[Z \*[Z \)[ Z\)[Z\+[Z\+[Z+[Z'[Z#[Z"[Z"[Z["Z[$Z[&Z[)Z[.Z [3Z [3Z [3Z [4Z[8Z[=Z[ZZY8ZY7ZY7ZY8ZY(( ) *. / +,%%$  $'& (. - * ) )+++'#"""$&). 3 3 3 48=|;<<5 5 0/-%%%""$$))*& + ,1}&%8&%7&%6&%0&%/&%/&%.&%.&%)&%(&%&&%&&%& %& %&!%&#%&#%&(%&(%&-%&/%&0% &3% &5% &5%&8%&%[Z[ Z[#Z[%Z[&Z[(Z[*Z[+Z [1Z [4Z [4Z[8Z[8Z[zZY,?g_?]_5Rc;  Ys! )#0;}@4ED5U}r'.:3\RZ|^U{oṞeC-;k8{JWrm`dkH/ne2`r?^4/ ;ߦvg)*a,/h| #ൗKͫQo d᛼8~DT ; !lϋƾ{E>j(v>ϟo ~ ow" 6yC~n1` #0oU'Q7㾖}^ۮ!I+tТߏU;~wnI!T^oZq|fc?e.: a>|>S*.b/U)|)f2E|+hҌ32+.i09L2e &ڮQ XXV"nC ~(BJSbu{z.m6GèdbwvxK#zNNLs9\25,ϮBg9'܋=BYSa_ތd;Y+];m֢p8֠_F3zX!խ;yB FŅ֐+T*=+VF&iy3j`l,I珑_CR9%b,P3t|XL~OWae9h+ Xk#[cG~46SMG.L +%; m{  \obM&}?sj6gJ=SXnCq=>1_t'e$C*xDa aOV7^ y>p_MρQ=JGNfe%yStKTw54öK1`V;8kM; ͖\诋`me)?DZKlI#J ˟~kT\1ù,sԷ-v}tf7ӵ9Aj߮'*NA{B})q[+{.&ASZK1_ pH WB'w)r-HHIcEh In<Ģ~vajm܋̡diJ3[ XX z uu3yXP;Q =O{/ ,wX8 SØϪL6 \Ke竟˓?볷ߞ_2ׇ?HI܍Խg;&7wLhN{W8P0s8l?eyyVN1 f4]~uwyXA 2]Vd!La􏟮| T@&e`Hd +# s]' 7,Rii1ok-p/ZJ (qoa/*Y¼t^N%h){*V9$&Z̉~̀b:=fo[|/B{(?Hrp0!8Sl4VmtZu-L<%E٩1&֤)ꭶ<dzڮu>Zi6K7j*g'0K8%OW't:yޮA7@]{̜W74KoT/ߪy.VrScL6l@fbJL>eEY'O-m^|c||s11 6'[P3QEQif/2Q7'we9V8X}vߞ~]yWpL=:oCA=^a.hhh=5HzD;Є(`R}qYliՈXoWZ=[0_(%yUuYȁ@t%80Ǚèg:dQwe ~y_*X1дA{,# =ȵ5>_YF#U:?"1W{`Xb9X*Yk%Fcr)V{,qIg>l)>"ok\;1WMu<4jXrphh^PҨgdI@_-sVv %cgpV@kV TKnL͔Va0ɟk/h%nRXGr+Ī#13X&]eWܷ˰ߝYH]phYN؏+NPA֋2bNeΰo۬_+lgh0NDEIŎ#-zUD><`*0O3JR|j4lUEzͼ]0v*?'s$2P?W局Pќ2YVOܫezw7ѻSQ—yZ6'E;Bv?Z0  DW- {hf}qZx,/a6QX aNіN=0g$2R3>~/O~~sǃ+:ڞ99k\}1B/z[mMZ B[3bsefZTpL*p "6u-5`*g7_%i%s3o]䳆x E$ $Q δɟ|5ƈY8@nQ|m]f FlDd q bH,=_֋C+P@]_aNKa A5Ad[vqx'aO&yf(+x{}Ki=̑h o\?qO;IF}^ 2eCKI,d[hQcDx4 q"u>k;Xf<0 NSN`[0ML 7wJ_0|Kc]3j~$$F>~ u{%J܍k5^ pc9qƑE{go ė٠*EAT,YgE L;*Zk|sp֐COT5K"aR7ڶT@-H#W}IGk2$'ڒIKSڳ.bǛW4k: !+CN/Ğ?=¥ 51kXG(|~ [2ECbIVjVg^FlET3~iL w C=\S+ S6SǵUXW|YZ k,Ae4/5-@g|a.Z82Ee%3Y~|61fV(vZ :,P}Mj2T*y\Xi396r%vO_w.smRyOqw;Io=˻A!H4q:5sYB]Z&+Lbr ^HhsֽQ\;Z}+pt&A6zr&.i μK5Je:-ʜm"8ʭWt `p;7q[`1וq [_?LVW0FCCx`@8[=Z+Q*]hT~{c&ƶ5+EGiK?@e(#E_rU,x"5X n)#0DjRS]Kֺa0-r58riKmܯqT &:>zBV7,Ӄ˟i-Y;խ&*ąfZ$*++boH4,>Ů3n1~ E2'%T Վٙ+6HcFoZʋЪi$?54( mh0Lŀ2  R0 dtpݛ{䰵Hqh$rKK]87DIDbpw6,[2@ "v Mo|>1̯NtJ}۬O24ac>ZJѬ#\"f،$HX鐘ZA3w0p܋)H5᡻l]Z> 3)ۿW=M_Yߪe ~1&W\<@v'n[Ea}"Z4f&mۤSJsVT>e]MZF4^t֓'ek +H]VpK0+z'WzFP#m!t[kF.eB&3^n5PCwQ[SݵHO'G(f]2j*Rq6 C2'UKQ1\ّ6/Y>ڶV/7/ތ0`4v!q)f`{r*UG0[>h1 /FS.* ,W.Tqݓ?OeLt})(gsXK۩nРԗvUuo+hb|  bՐ% *4XNC]rW6bHSsuHզDT`MGhIiy3;U}=La􏟮| Nj!  WCgNoF&A"-8:Td ҦNM $eϵ )LĻeqRZQ}Hfѕc8Q$ ƞf_R8B0V(i!,~zǀ_6x 3 xO=@"~=FZں+=3Z Uڷ7 hh ],G[x7/n*+@Jcú&Q lp5.fS?Fń5\r?Y٦>wE#m3&ɘ?\o ?V o4AQYXF},z~|]h4tl83Z3-Whh䮆hHNv)1FAAjKd 3u*<ӏ[&f6ͳwh/i=2R2Ona2cAnRƙcI3QxToL/$ v~#(BS IDATڴmoeki9E`omnm<5!RHC[|3M 7\T2P@ dQt[Z]+I?4ZDj=1`r yɜ /7痋v" L97LPe*VxI j'YARޠϝ\8hh3U! X^6T8 p dŋM0`+Zq ѦZ}ߐc^p &SWoEӝLr{I,0]`}YpS J^̓k5bR(j[" ; Fhmfy-R%5?UAf6fTUY`ke6;]\V>o=sžKlвТ`%d"$s qBI|/Oo2J/+w|ooXJ]⼸68}&LgA&i31XchLN,jH<0^OIR LŌ\`[wBûo0$؟P ~NƟxUG50 gP'WO:|~Y'E F JbFCi,4TA%R@׏%~o}Yo7Odʚe`Qe w=u~)FWupЄX 5D'4yK-T/*Kw#eՃr*\Ќv)M^C=lVÕB V=[4*RMvݟtXf`\ Jt׍%YA8V2 3,6w}l[DK5+<)B ʳ&iAQjܷ\yјҗ&:G_[F+Y|v}UI^q3UwG\CE,}m,TD2B˒V5t [!8@}ѢmR|,IB,G.ZsL[@Pm䥯bFM󘊤D7t6n1ijbX[BߵXnf+1Gsٽp[VH^g?mSahlI4>Rg֧P*WW%lmg61i(lD0FьЪe^e/*3e|pCM -424%]f̒ \$ܪ?0knT|{)$5c33e.ofo[uggE,g {߈њZABB{4rKxi˦+hZe֘ju\7%;G&kRBnP~lA;Ogq/^T)mTŜ2Zv٤42'OU<6Jo7q%NCAtfr)PCDT+4o1 .hɆJݦ}Ik~=$I[䆛bQ܇ f:_n~bs.xniݧ>B䫏BfZC ^W]jֵ~MwQ7ZuC;斏1syE0pᨲm$ 1$S\ETT%Jt 9g)(eo7D*:~\rãq{5 "QȟmTRVPf֜Uo߻3j,SX'tqLaAs i&VyCݰ%rX.M[WT8͘ɖ:_*j#6뢷ģzƩ0XGU'-Ĺt$p\7Boja䜁a1tk1FF"P3ONECϋO$s ے!>>f.cA]~Jk'wUE}UL|^|ZrBkF`*Ik6fJzWn^joJ. pE k!arOXnjȯs9VzAE U6x*[n!t#d3GX2\Ұ#0`N@dCAh,+1+ԶU58675Bc>a0_r,F/;[q ʽnu7fݩ2b*V*rʕ(z*]+ϲ= B!kV_ZX>A j_Fl 9/6T ^ 嫀Dpb/WkP݊v4v4:\ E;i0/it7?}_._CSٞ_@>׃-E0 h0ngLG@7&Eƃ#b[dI3IRgAVa(N͔*_4t]*XR@#[ِzC~3g|9[?|B-2|q# ߥmR+-Tc+Z-'mx2= Q,Vۛf pw3KJ;p|9MO.R@op'4,5,KL^l,[ܮ\r(PkFćȮ!9s(M us\ ƀA(؆ DӔ{5:VͦyzW16&uJo&^xϭWLzr>n)!LRb%`$ww* Neۂ-rM\P v?KO|ӝL_-Q_k9kPqҿmrU@j='Vq%=ȓC,H_, 4pmc0JX6DPU`y[ǘjaŃƦ1";y4(9s3D(o,%? ?;7ߩ_,B>U'*w\渿|3$6_faQF͒ iB7#$<@3N ]Fh9[xYeTFaaH"brA&+ vYdaȚה &>5T< {[WpoWY4ٸ: -& [kprwb]+=]ܽk@c~T]&~?H3 st뫚hhF vv5ҍq@4e靁6iaO g^, XV0` nC lmz?y]- Z ܷV=Ypkr֪vuMbޤoN\L=5K>3TG 7,]`i^:AT玼 4=sƀOln|=Uk$~5,O)kFaC"装6lԊ+é:NltU=2/vdyq)q`nc,+ v,SX05axuGgK|.(]x6+Y5h "^E(5s.:~ARZ8 0'6̌5(ιt0$ 喏V7)9_@fYQڴK$o0üz K?z =}7h(J<I>7?]8E8(/#L S RzftÜE93~cɚF{ .7nfk U?ŐEFE|Ӛ뗛_1Zw;_v$mZr$mXWܰy+9kg!Jm>(xYnYK\ Gk10,6A;(NY!V LlnqƹQ OPcƋ{=Di-\D}g=fg3/'Si}eezT5G xH%,lN!n1RHTʠ0Ek ])9吶ɰld?# 3;gRȚx4}wr3pZŀsȸܲQ[{H/3l?jƾ7fpA>󮔀C Uel3l*FPd4T];J{NvFbhc^ȵZ6Y"ݺ ,5hNUTUl4~JgɰL `*RoV_͙  PۭrTp(ŵ-Ntb=:>?R=QN]6RL#ˊ++v?RNqm)"5/7b/@9q v~P_ Yh W6S}k=՘nȾ1Zk8[rBܻ1)e SO9nfHV)֧NR`H]$n^7te(!dZS9K7/~*GPepog oh6BOE]>, p-cKxK:8Z,MηLiy0¬"#4HSL1`&PiSV7Zʺ P Mk_lݓ[48y[*K>G *pL)*zPzGJIwTklfd湿9ʀ2M\.jlYy"A0T6) \W>f@ 4jr5{J8Zp0p%k:bZ>\sx+Y!@c{֒ p!n%,x/Zu (VZ$3l}hvA^ebG0 ەF`R`R0i=rtI{Y/y,b:zbwKj9+JhC& VlKקtnB.^l2җdso52E*WRVUI:o167..XhKhZuga6 D۩ibWh;WorӼ;=1E\p#۝|:?8Ib̽M;mLp ^XTϽB T871ь=˪WOEmtBzzJI +:p-: dŽvsCCm} iT$:os!3gV~}j((4Zh:%%,_f?߂r+Z bhlWe~{x!fjm|;,߮Qo3 y#d i!Z#$ CB jdMm:*AxfG@nCSp;BlThhiʷ?XOҙB aKO‹fKۏB 0 )嘢 cd Ê IDATzKsy ,Gl.FT=+]aSZdGdhkܶ)§UI#54).r `S î) <6pKwE3M^Ϸৗʝã:te@|ը/N%g6`\iоO:F_M6hԤEZ ls4:' ,o;J``R*pm(FyffjSΛNԍb /_ZH-иMdPQ}9W?F#2ݫn\_j{k+v}ȀU/E\ vGp_Fc~&νlqކ9S; UoT<>'!,){?[ 8efk;KP XduW Kp_U~"nmΟxR@%-K5~FPJm2n 80d)$L)LW}~~;,s1md$Chmx.bzvx@eXJ6;٪晾OvT$LD_e$~(m?h4ڝ"lJ=ল{Tl]I*IB/OEA7bu%عտ" 0 U-.h_?_vl_Z3UG7rL:ȪW r*$Tܑ~yZF@u~ e`|Z%/>:"w[f}8Z]2==}ф@.My`G4a`SOi:Z ME0,"Wl &U؆\vqqyL/ n7$W_$(ut ~z7I6O1! /fKTyrB3ju!XW8MrR6f%G6p]*i'6blUi"0$|V/L , hP%?仂 إЄ۶_נF, .'6*CٗO>ZK'~b/lK&M"T[62FD8y|m4x!61GŊRV(} CK] ٻ*ቌ&DVhYAytPaE&!s9XbQdmbqav$F+ǒJo+VҫۥZfN+jט),$ a2-%U,b,;ې}GB`K5iOm-slM91%!b _Яguq_K\+ I>ᖒ&{O#B4 )nXh4fV4虈<M>wSվ9V6V00a/0XDD5;pJl |XLak29?sbZ dxL7N 8'3je1`R1coǬ| n#RHȕqf,=NI*pLʩA pAySƭsGV9bb*c.|H. =eo~ZD HQKO|,wv 9^gPnٗPnh:Vv-)/C 6!Ts_qp[d8ԥsHgE]S}W:zĈD-aiщE0ⷣsۗ 01kayb|BJYrf6syev[ wN-\wpa& >zA¥I\Pk&륪M!FvJ^%?`j٥El/Kn䚨+!:|)yjӔ%10&-.OD5.uZ'o` S&20 9E:֘DZi3MsM )M(F$Ǧ ٲ5vv6=Dfo;ڜ~e$}TJT!.:)ֵ1_^JϼмS~0!N1? QUAkM!U([fnpagT *|2ګ2f Z~0#&-2 ~ ~ ϷA]k2L4unC4Im)ZL)A0ںK } \:j|c鋧ZQ+L8<M gNz.Ly΍D֐=oYF; JBer 8& #. ɰ*B峓ԀѽL04A d9 xoC{T e]!qc-X6aꜛ7"4S#wk 3 g{|Uڑ3(lt [G. fʬT!m6ܤleX2 g|vWdpLH seV hQ47)xk/Cؑ0}i!,~ D\yAGZFHknЯqU۳R;jx;(5n[YuߗT{J׋]nF]oGq&v N=:f@-Mg= <Ӭ@(oI_(ak$߆UtEYӐZQp_z|m3^wW}=Cq?=lC}o'x1y" ?5XՎuO@5̸>.թ5r8GK.f(BPLH,,Or9EjSU -@p Z],*9ҕEA!4[]a8@D2;6>_7d0jgcxdh,s^OV_U~Y)Rdj\S-+AiGUj]"TώRNnŀUL ;Nc#!4[B3%BQ,?%ou6a@S&5'[ֻrox%6 Ge[sHL<Z{beRq1t+13i+6BK~iݣƒIG9Dx۬aL]\3 N BӳmXO [uE]B!FMfWϯd"fEp#rA=VĸZe j/`tNskHgNb r7aۥ[n!+V̠0mٰH42s aOW??? AO=6p)'Õݏ)]Pvy4+&=\Kq_' Kh~Hpc|`k2MPTpy{<\z?|"䊕i ?~5a?]a@h1kUIA~JXv `ʐ9vT WQp޶Q{`~?9 )-f73EOV=*Р|o=՟G)EiWMG*Yi1' _(rMT=A(N ;bɺX)#?[ٵCqaͨWlS&%[^>lDH]=ֻϖ6[r*,{ sX&?_7,_oӎa-5M8<`Wd뺰T/>WW8lvXF<qIˀ5s+9%a.VqcUEkz>|?|!Re)p1_DkZ\/~Q7fZl(w7O\r`ǀ;){qc{_tMdڸ2AV*ֹ9KME%Y(J[|+%`"0xTpLN]R^HLR h7& JpG7rAQ6迭jE(^Rlqc_9Qy+_Nc2?1Bji՗uxc]IoSֳFI8Ӗ0Nhu4H6ֹ_RVTuoP~mGgK !H@6S~ҀZbJneZ=ZK_k'׳=S.ERtzvGIi,q%T)Oe[KƍJ<-}<TntKb6hcZ Yc3wz]MQ!#UbVZ}3h ɪ2VO-< p6Pl@7K嵁] ҒBGv2R5bN̫23sXy`؀u܆a<ƀ/ V(!.?,2I-#̋g)t30:%3$Fe9莽ҽL$ dh0YΪ|֡Iڤ&s֯HFx6ѸPìIQ0uЉ݆ H Yqf&_[Cm \ѩZ)1%5atY|۾#v^VHA[Q9)ᜧ7?]|=-1+%`'辱3p&#RLuѶliԹBKۼf2j5F0-Wь`p۴ IDATfaȬ0pP(aRw%maBϘW0: Y%?]|-]]fjDΏ)PMRꂹ;X_EɒOJ 654PuTaۤ>WTF fmhrL6I#;)웅"'cS_A"+"OzZdd} XFZ|> 嵽R-D^*fmY얆LR$8k Љ]ηbi)`g@#ɪS&@+Yh5qnfD{ J[+JCaD0sKX&~7o(D!xnF{ G?6GqITĎM厗S;Fّ0nUD86o&*MzW>QlD-ovm`_xCa``t M@b؃Eó5~64n5w8kGS7ɡt[|K"]a߰Lx#qt/FLI)a{#/4C~5ˀKDB19 cttCS_3 K :L^ǔ&`ng)ȮV!h=wT1܌[FF5IM|6Md-7S>72mJ횴D8~5,oOF=:p$)+/fea#մ@2Z~uʯ(i!:[ \_'s+1lꊿe2-[sTd@߷=ÎF6nC,vBd\δX wB03 :X8`ΧKf;&C !,b7 5!yu b pF`ʚ|!9K56w#'oĩ>j Oe[KΩ(! e}>_yX-Xh2s/_9cRYw߷f{YhYMF`v*wuL?Bf*AyxN G|.>]=m"n Xu#G@RZWrFyv1f0fnD]Et#g>_?]9~EC>=[] VBp(-?+z5puS_kRUj*K*L'[S MrgEe0w9 z=.":\;&b<YK MVnb&چP tXb^w/i)v76LvF?t#_pTveTz-VxҘJFa>ꄡ vB_9o'0A^ԁn90KDyqL@A}< vhcǀbk̕L.wPcig[ %W>Pǐ v4/C 6@m576N^WMB쎂__2e-9s+E=Sbo>.Kl l۷ɬ"n OKi Gye_W3wy*6Nw4{303CH+ g%)}+#/ 52*p~I)u>P9X )cpؓL24!&Ƚύ_>CwQdDe8difJН:]awX_8O[F}HijƘc&ƞB`]"J~hJߦ}δDy-di?'JP1Szo{4U>$|bnZW3#Kө.[wAFS%T`htMFF8 h7Kgzv$ٻ:35>08ioo$v(CAT@w >[>*=.yfnqi砩L9/G͋5lP ݲ 58J'Gg?N]~UgpǭQ+8iنՊ+[wA>2?pߑK)2)dJI_Tq_|!/f|Ä܂?0b0@&і' \2P<N(BW9<3jR2l'u{K C 8,FZLU$}`<#>rۃqBlSb$7 .\6 c;`K6_X#l[,,QX $뗘sXP&6)Tн3c)z4xm28ɤ/NMcS;6pu?jC" arN\i'TZf_xE3b\`-$Ƽrv,(w2߃l`ҵҼ~Ѭ>M ~8K.[jV#!vWl*/ ϏKY@6 ޑ I08I}6`Y֔O\FN2X6)I\V[X8_.u=P O`S? 0 )xO'ccV֮Ɣfn*(9ق,_lT,b&4"0:fRAQR-ɍ})ﺷ_BJ#4 $X B .gŠU#<2^ V$Y6LPQe.ae:i$P: c][<ݣE'7kk#,:V^FxD$yYӹ ~Ϸ'/SOuQc> a7sB ]CHSno3΄<И ʐ4ŀΦ9y_B/-ЯF/UD}Az`dZI>}URfV=.\PF1ܑZ4r[2ʿaxza_: VB]ò[KF?dX Wsoe ~c;5ܫsROwu&e~ IܜϢҨ=R_r/C&n>p\@HYiR9yĩǺ!Vx$g8M|<KX;B~9^HMk D!^RMl9"uL j?3=Bp{Ï(w;2 `JK9oGN\ CKKX&~7/$./;MsRucZ MB7Ba ^qza+ڨgD>d? XnЗϛk|?D7_z=klU/֛YB ҄w60Ca.bgMOsAK@˪]`z ڽk: |ODu"hEQ0Sށӊ1RE0 )."vVwghFme=v)mgO CldXejG@L&6LݺE >ӕ pa82$ 8gT;K晨!8g4&L 8$5h+/mU1#7ʊh™H.j:g(Ht߮GCD?fJ;U盟oOtiXP?=WH{Q \pMv}#;k <$/ꙟ[Y2xt - '|12ueWՁ`+dwHG3fG{D|pƯ':0m|?vL㗂Ǽ^n #IR8cjq @@c,Q̖y~ܤDN&o0SÀKL"m_p'9xޱ ieyS82QXYCof/Oawov]:WxLxzp)а-\sHCg+ל q_W-|.J,T_R[@.炯a3~]{p_mcg h_˄`?6!u$cHD2S{GnQCf}%`Qنǚ6ƥ^w keX;,>?y)]Q]?˶Vh$A槫~5"%6 uNPZ Ħ5x:?ܶMIꨄJ\ymkuBoٞ7ıe|+|nι]ga|`8~]0~ 'Ɔ7<Ҏ&"-'edw*pH3L6:tVӇ.  MIR؀J'м $ǀ/EƤb_r$su迹N#>!9k#L~|s1y1G1`&muH,^] L;㨀 >*ITi.[^eգ"Q*VMOq|F(Y}u& ߱AvwBV? a0,øep/w`x+f ^ ʤ{4~A)9&ia෴gUJxաB@N G:90.I#x (~*Yn*Q)&E&Jl|Y1w*M+bqr״ hQLzM$xf|oX&OmKKg wG~'{v:V;bf6x+F T\`ǀiڛXQ+dD˾,J%[nu^͗мYWJ>>=7ٽC X0c'Æ_qq0ShBd B6Kj&6po+XI0`ZcWЃ=(æϗذ%NؗlarcG ̯j2wo4 _Vvў~7?EݫdĕB܏zBe% ,>Ac]UlL_Ln!Z_e]#k 7wS7o'(ot[q_ wƻplx 0|=BoY-fV|bNjW`byZI`ZuB;Ch}E&pSi)5,eHzͣPFBF,e0D^C?>Eߟ}^ 4*mr}JFO.U)*M/3Zy_.DVKa߯X9{򞂵w<"cd?K} {'Cqø|0p7s [j?9?4 vpP_zMB1k]fQm >L9 s./Un_~+pSV8Q\u|Ÿeꪷ^nxBX|;rKJPp_:ƷO h|})>j"uumo}Ɇ'_}tyoAgk#Y_enB|`p֛\#{O}X1MMOevwkHx>N9`0>n}$,ڥv{_ZGY8€Vbpx1CI0`DK|吀3 1RtǛ_}MSQ;0HaH}^ unp{T :霮wѣ1 Sƃ4\2e-p@:̵k}[o'Ҽ*9QfnuټJ?mH,;LDU_ɘ5wa)yη?onseh_awdž?HGx?0ܩ5LT(7'p0p2̐D n|MBb")7T.6#ző \GcVp)bXth9Kd]bV2Wuav~52{ h~\+1ݐ{B-)cn~14]&#Ϛ$l-$}Ҏ?/!s]:1w;e !e:A|{F5FW40G^z/ Ҵ`Wym&8/42I]J' 1{LNیVRﶤ--wYl{׆I7O{ qX*0 08NGUFu-(Tr#&PGt-o&|ذ85pt_!,~_n/g.QInGoV>hm/Iub+ A9.](GSpH{gB~q~ݸ1!Z_}Tx~O0x#M/3 Z IDAT>IB''N4®KJ3BpTɆG )`&aE/aO\%(jb{QT͉HۜpKuZR2Z(Û xi8nvGІ_f?o+)\Yh3@ `RkIQʆ&,ئ>F4;w2%ϵj潛|ᾟُ2yTj_M7m]x 3~]sD  I^d/ jm>=BJ/Rw@Τ2ٶ=j,kc{.R*14ShQYHgMox/ID'_'xsXS@s:9 0OU9gLUe6&-n:F>}K t$Fen֯[^ɾɾN}>NwK% q+98 Ư_fo2ZpyW9)/`Ɏ8 .?r{~yRbZP9 |2A͌wuFd(a5ivh)d 0ҡ baĎtGJHl!7?߂Pqb=(0!- 7\ M&j6O)Z)CcPQEQyQfiLA}J!mo+OXb?e *B 0K'"F.ާM-{:::5@‹W0Гے$nBK z)2?l2Zo+^]8(JL+äɧiϪ{>?e wxΫQ/܆l$ h{WLY~P h iA,(~.նdlUSH~@ý-4yr‰|vmʧI?Ⱦ']wO@ݛ58+{>X$NWZY|:Y{ҧC =[ V=#m1yAhZ%{Ye˹Gzg%^ " X+zq΢\Dua>4 p!&/eVH{Jt+-Mw1γU.aSPЄcjn#/+f7e MhPWn,;WuOv11! ]=c.[(rA}%:?ߓ/95~mZsqϏ3|ƯmZz$8{joi oNa4'Ʃ #kdZOܢ5@ `]Ye֭h3I#~miDUezH’TR/jWxo,hЩFElYΪɌۺ]f_|[3Xw >y@_;jZ*`-Gd۴˿_?׿ <,Վz @8Υ8;$p$H)v>%j;Fx}I'bTmЦ}W涢7wԚmXc hJso7:J\}3OO~"?"~wR_W7j/ڋ=}Z> 5Ҋ6ver67Z82AْU6X֯)0w~ߟ%>3<\iK(jgYޑCѮ6.-x>D?=/*BrTM( |o>fJ'mkqO%~``=P54D`*[8 4f4-Uŀ .3Ѐ >;Yo~Kg ՁC\ [O wh0u](⢳Ϋ#d(븈z _*~K&}v&J"dEKV\?l=ZmOH? abu {DC˿rf|<$TfU8dKnwvP4ByeZYb}Ӱaݷ RkЬm?q/~|s~5!Nײ5TF@g8dճvy nB-K屎Y1p]G.2Vy䬪y Eo_<: _nd ȟ&Zc5AGu9Wq0p<~~!UaҼX,eg?Ԉ=ړ sZ mjFeQ*x"0..yNm >{s$08سR xENQ<-b-=qQ+$pk͠"w+X<Ш{e8nx"䧫~?ҝɽPeg*W7W -q5XVu17 چwVyАkؑH(C 6%#!ap^ar{ 3^5Nă?Џ|0O )*F<`G0'4#xk }re#0IcqxCi<2/.+.S'c&#~")m)_ߥF q;C[RzƷ#_^7ꥦf8 w_&[-GW1~a{ _<JÀc0Ugv돟azK = ŵӐ $&+tryp|*B/T*B$Gn$1˜>!ps@}*R Z$>eH5# %V)m^8 3ϾBX|W܂_O \a K_ ݙAaCݒMdj"apex0;Z_)~ ~MYGe_맡HY )ʓs١W`g7^2 㗟 L =_BןLG׿O?:z~VXBsn O,K{cXԁ.ܨ#e#Bht_-4I>\7s5R48 3KM6%%,_f?ܓ긅Ľ,g>0ҿ.z jLB!٨woG_B9]TSB fXMlLB0?,s,_1~V-:w@7N2= L =|a;^Ao!ݱ$MG"3 k /9 tKQ"jm#џhu7L_K3N,Va ^rDL*8G ~~g4*϶dr̖RaߎX״  . vn;ɪoЪZ+ ?' Qc>U `22תj To>i;:;(gr{aOr b_,W-. }1_f|]tuSQQ|C(* T曆Ђ^:,[()Nt-/r€ǛCi/0;<,F9 :e={^lBX<5)=Z,ХWȀ SNS>\P$Q&#rKPy_Jff$obc~R~NjGMq__ &ʱ%܅e"oHBڜ`EO_zM& +zFSC)BA?1`o{w_^+Z9ns. $wycEmoMWt>+nJRlt>\:ќSܰn{HnKCG ,}-ϴ L?0]AF= M%_[Ur,SJp׼XR:7 IM_ނ8w vt/ 2ܐ(Blɬ,uMeuen`pJ_IRC O: y$@-0,ȷ)^7> [1lɂ{H#ڬKVL6`_=*-zWzm߆7t;i+hlV@EH)|0 8%eQJOBMO`<&wI=k ;ᶲ2Hk!M]gz bGQqAj~ W8 8?en(؉_g`F& - AK!.r*E וaKE.] .",?Ǣѳ X@{(`E!' ks(!664Gio]w˘GϑlʍX[n_ >;-nצ򼠭@G!xg{2v`]]XQ8x 8+:p3V_ uh+J6A0VIII r2hclz?tfX7 ;?w3TLv[zf{ s[JS_ǒn&Gqi2B*ɶvH֋_,AҚWqՁ!9f@8YU[Ud4Ju|i]@-L!p2A Ҫ=g]~}͈5 .Ic~K@ &hݧ$'!xօa˜ezYfg=:@pISԜ|t 6*xM;YrHe LR)]jJA0>bZ:C=;ze%¤ #, GGgsP!"TAZ budUȯ?# |N2P{=7tߑYR*Z _!/1qio{<+%ڂ '}LaP*pt&z *K2;.tң6 BOZ&w6Dnb,Aþ% D'et鳈j)?2EXXn}o$6w-\Uɗm;(+~s!k&\8 j|_Yi$07wr#=}>S8ay]h묶:tʽL L~1QcwC guujceJo+bǡ -G(gL#I K s਩YOO_[L9t<ɣ.yL#›5I?lLU.I+ i"~I9Jk"FK~O,dG7^ i Fᥬ[;7틱; |z;遝6_;aiedyR@ϗ. $ޥ*/TAjJ1L2eu U=pvϐOȁdK?dG93Ʀ"'asf#ZQvvOExA͟ am?Zhr'S<~\ E,\|=!ZJͦ/DϺ6RAH藜a*,{Cd. uV{^~WGr\lЯ۪ˊF;;?Da`_/M:|aQ ]*ZA DRUK*w=PkX>`V9$$,R*ץ#qҁx,Y!Ào.BXsUНC?+ hT:0%i*:B;I26wq}{r YvF_C6r\tsO]U'ZP'Va͆/pC-b/LH5g^VDW}y^$61F6IЯJ G fDOwV{Inz_NH-XW~uX{8{& vtdG>})V~%ެFc Ԡ&121ݯ=\!Hդ5ǛQ6/[6=R&o1o(ND Z-[3_RT{b`vS{9mj7%7%'(X!+ɡsr6bFMW,̕p5i>ZW+o ՌV77WXD`Gp"&7H@)ٷ^7t `Gcߛ">E( 87?%@gƑ_x R+c)|蔏Q/D I*њIשLdVɰBJO=M9 0=Si*:); 6tX7 ;?"u=h܄N'01 P:T1eIiFoBi{c}LC?J9A/m}!w}O  x/J5$x;C0A}RցSz79;O`[K!ӭuT]0fPL%j0sfmǗwJHu1s"(,yKG KL|MrV _?T W=qxŎ#3_ϾEޕhL9*., IDAT4ޓIUkiHô_~d}~U>oP_)~8[zaP"hi]h2XYa0d" iS'wӁ]@tW@nDS =Q࢙awі41"g9`> 5^%g4pM```GgE4! ^씷쿅ogv5V"' \FEY{$5%?sh)?YUr,%0[} (c4(&vvxgmNT`zB8S^4ӅiG,>x-,3-mT-!TSVHkqS|MܷP]y WfF/6NL< _7 ƛ"SWzs/ݮ:#v/ ֏ CcRRʔ -o_4ЗN֑~} xB`,^YQ~\Ύo)3(S@@JP]TaI#1fNNK 0P 8#(%0AJ`_e=ƾ7ѝnС)_RS߾bn:450ã~ ?H,tpaΩ›sM(C=Hqr8t|ܵqhfeT&rxzgDG/^C5JH]U,ҷ+)mhG{tѹ~ e+{\ߗ!X%:w:k+ UVgt <`Gdo~4=QDgƻqzG-֬зܨ|pSSG`ql|iA>CKoi,?xo0GVWY/KF'Uj@A&u#KfjsRiT y]D=IR)Mݸ'!f؊6J6Q=C[$ : n~L5(zV)f4; W `` _:LɤK\R*H(SypFaiR> ~pgdmQ`ㆲZJ*.[U& ]%Z$0>rYjN|KMt3wq&`op&RfF2s45?/1`e:?D=mvܮst[u"ꝘDZɋg[bVm9\:ػNsC3LS,㘴12|[繕N?? ?nRkH"cB`n^r*b2|єn{snra3J7 $8tT0#1Z;N{jS rS *Vx?nQ8!b=+SV;? VTD8R)gW1D)F{L`7ƣ$LzT9a2Y]H7|\ğ6G͍>3PFUxrqI&^s$|C \dFAŁHRjc>0].5Cl݇vBT7bUI s| cW 5|5w٬=)=_L{WhV`µPGf3~yOՄ.7d'NXQ - Uy̐{ԁs- 4/)T$Tc3[6N|vPeԞ:ҚG•ge˶/8+7͏>H.yGsM7?kOW!7{?}-,2鋘8 Dg~O(4so(d5ngW!YU f'c4v&?5A`9'u/54>A@(KYA}<^4JEy¡ovs#yuFƣMÍ `wgҬ>|uZJ} <*Q +o7HP@'ֆ[i{OclR.8oldl7]/+_>*U;`1;-nT}n?M I3cXQh RrrzV`@Wo!G}b8B(rxG璑ck"iU@a A":HweV9ɝ E7}w+ZF4ӳӉh;:$\R6?ζNxY7o=8A9܄jspy._b"}Voe\*՜~ᱪ"{!C+Ԥ]vސEM =7> eSYf~4P?Z%ڮn7h-\r~N9T` κC&?~[C͸[胥; "RտE=^ }0\(Y$JD{4v&!*GKژ7i_DG XكG!8rjwVn{{ӀVJ_nxϳ#t Q =G :pUʡE ˮ,迊r125ۛIxE@NN!EՍHAo(Q[,L١sfԞRC"ؽY_xaѵ-|]o?β&W5H_#MnR଱&8~@VP?%W=;k= | +@Vtp/aMԹpsF^buH~Uպi1X\R{9Oe]辇Vo24彩̬4;X"f[H)I-FW K,v'MԼa5?MpcKV?jL/AzdǀHm@ۥ&6!:2 ]`rOb͑׫~7"ͻ}p ͅ'ےsaԛUf/wz\h)ԌB roۣ/mNIʒS?7 */e OX҆t5/WXz ڶ8rFﮜy,Ӝ~n {C+}B|;t▻OCh|}a<_$.^JV5G4l-b=MBG:x[c.*frdZw_^4k>kC :Hߨ-I]7$H`jޔjg4~5?CT=``gv*0P+ aa>fmh&<1gsdP*os5!!~Ш(E w}v<ΩV_'-5D[i8կ:֛zqDg N-^[%QTF/O)-#ir CFkbh }h_ghsq)"4)wToHo[yR\Jkۮ1g񊆶 MD51+؀Uf*Y0_`f9hnОpb$pq޷1=ȇCXu Q& B m;7nt]2tqDا b{<nJK:LzFІ3ap %ߧRo,OLsRh7PӸ)ZB_ d4&""r g|W5e#(ݠŒki/Wa|=`m_r&R4.eoTbWBrWm*rrO\&<)Rޓ`/Iq}G$VG*[Y+ZJJ O)n՝KO}2oh rf(L;w*Q[p\`Wr9i?m{^NPι'UҝU Ki>ON0]#4k*o͇DC"#x$܆[_Zh D"IT`7ݲf'nr!T`B9hAʣ>JO )oV2ȈMKRգpJ@&k?ƃS)R*z6{Ӽ)g+۴]9-(⻁< 0'g~xH !/ޟ+p/!s()a25Gwfj2./otDi>Ggg77^V4saW }ҌS"V! hBO<)v<$=$7AnrR଱;hf*&@ͫb bőUY)w-2!)$oKW93#!2wsPtCOEOƪmk$<_R 2oJ=A[[!evH9T0f[EH4StwtUy2'k>^-,rS} riC7u֏kgq遽 GX)PFсӷ;;x×_zI] |>pZB4+o١\ܨgRsFm6}µ67dD,L[WDzV&0&uÂB PROYqncT/_V?ZeWHF(`d"׺ Ϥ|e  /q]pM~N#3Q׊'ͪ=xQtB"YY:kΚٓ_6_Jt$t?a'UrށvkDzяKaRZJm DJSԼd?vqţ\U}~cw(uWAYo$^ݺ&|^Xnଭ9p8^|яfy oz_QZKӐ*S$om&O#\&o3u\uT>Sd7!1o<>\K1v|6[J+n*s!Vzt}.vQJʏp P{ҭJ6)2H%e&pl"{.m6[LPĶ"v"(J8ѻфHlC+;gNY0_` €atUSU~!,I=s6f0bB·:)AV 2=p ߔtO3A(?eSȺ1?Msߨa9|ar6Qg̡-pф9)Ē؍@xHtMc×$k/a:;T-~n=H"2oT7̍<ޏc_~7|`O9 d&󿠔a |8_dƝ?~!h-*aR AQJ8͟URJhcEf48!WAl2i we%ƀKB jfJ ʟt*uSoV" "MRsO_c{T7n?_!ТMh]&Ǖ߁6ѹ̞ɘnrΞܼ^kB( 1ڙt@ QdM(6ZwA+?qnfl.!pLkkSkpόY-*Hie](X}=j}=~~;ohD8zzr gzC( Q_s R}mK^ i)wgmSz{7)L)=^z>`A˃0=,̋zkz\Յs~(R=]qTZ;3d LEX2w>z]|aG9OC 6!0p[D}v%P@B]D@cgϝioB ¼~A"(K5)60]tq~PWJ&WטYbxG+ot7evz MnR )OS=cʟ8u*%vd;r\@/ D ,%!EJf0\̂ڽ)]L ZٴZ3q犴z(;w>k]hF<3#@1κ&}y=tPSJ,Fx mM禎8{fp~+gTߖYPi0V\1>[ ;7=o\ }թeE-& IDATi,~7픥p=աXLo2 >R ?3?v$Fr Fw) 0@C:NS=اb0[籝vNoo(s, K?ﷱH'VQj3~<4aI5[a.]P`P:/lp4/~0f+ޱC'ߊY?MNz›L.%z*׮}K x%%_|iŀ$pIߓS`݁qǀm9 a.])<".Sjg!8s\K)n{*bݙLH9SyaJE Hi !{d9KxZ6L=X)L|Bpz0+!d%"WLmU"wgg7|:W%+&xc: qBHɟ*.j84I3'[rP?Ok'ZГq|#v?D.ةA6O{74=G{(W)Kjϖ}hSw׹݆cQ@Fgqo0?3iٻg1യl60 qD B `M3a2,1Yk"jr] )bBj3N>Ҋ}8"/z^x;/f9[5֯iY vo٬.Š>ZET>;;?vr~Oe^b e4$ʲ$¢>qǀ@>6_ڨt Xᵠ9 ?Cqbe~ڭ֛Ũ@w#_$%ʀBWH@q) HOn^U/Pm[#xT׌fd*4P2 VaʯѴ_G]BLsɄTVs@z.[DGMR~}>dnΦ>^50K_A]nQh'BsNeS cHyo0 &Wמȃn.78i brQuYqK.B̬!3ҞQ_fE#1:TDc>]qؔ0[QO0iBC3/+ h⏛k8Y~%s g֮g9% [Q^Bz3d~};S}K jYygL[RC/`xs/q}>o#,F rSwد |kvv-R9 'ǩҒ(т/S{kH`[Wulg"@TBH$)CRF]n{CL;'divB2[)WSYP(ABdZy~ι酸:RJ%g$V'h0RړZYSoA;>/Dի\[J C]!h W&ǀ؁n) _p 1ַgSwooJFI7f% 6X1oB3要-@<)p%)2pr^@?l/-+͇k?%v e򵩁xeeuGՊ$FlS.!ilBY#L[e~}vg߷ GK%*VڛC@VP),XpOTͨ 3[ۧL' gJ-ń5lk[%p}*)i.1skM9ϙF5.pa|`p&лwaoƧMnio>wM/ͧHˡ/H'm ڙ=fNn_{ Ս?_w~kOƔ}b͔UhOyU/rC&VKG jQlQGc 8zPbL"aL*FW, c=JR2#o7 OoBԚO*@`!S ͡ULpߣ*A KpopQl`)P)xǀa=y{G7$? 8ࣂbJ,pGwq9ץЭbm(P- c=puSԀϷx_لvb̈/<0msHKnMßkJXؽVmsLNp'd[{*lGQ3k/0]6eUJvQHh+ne0>Hj,9{H9ORj<|$ k^b<JB5SP E/hr"SWKZ}\ioL\ev?ʏ)v&?VnB_oNy 6SJ`xCІJfbl$nD7o 迁YxSfAG&g]ovY%`|fH;AQѕZk_GSAgт?0UIުIȱ{ns M BŌyкt-ϕ9{X/@"dF]ݧg6NZJӦ#o?g6~ R">M$y6 y-7Qo*jmW"\/q((^~&7$9|5 ?QJ,ݧq-蹄`JT'ݮww7A$aRvDŒRlIn]RJ \8x}4oj+KHYOa:4M{pwU:{c!,=K#{G-^Lֵv;DY+lS#;[%~֗׿N0Q'N2xI2)DZ`\{ma2 z~jU z.^ Xs[3;\VS %W+8Ti hJVM6.L0`(G!PN@)YMٍFGhvz<a-ol$/X<ݰCMB4-7.o wchHU@2P 4޴6orVT޳Ī杕#TWBA\<a^*v7{/\0%GfA {m%+I\ߔkc&tFj'0T)jׂSjA%F#}"٩{MA^ X^`##*m&Ŋ?UaԼX8h;@UФ9ߪ~8]PA_6AuKڋ% *ף}4jX x u) \X5DǷ ı4$vd9 ɲ?qJ-fx 0f_ekڤ al*7C9x/UVm4A2`I-Eoo +Y`)3̀uE%)Rek|F&u^$u/Og)ؽ!M&"I xN0Ǎprj-4U"g^J<-$aŒUPsz1g7xD^)\ٺn!SW>ڀi.멙6δ2¤i"&Ch&} = ?[7 `GG[G9mKԌ&$PgRzW)!M{n|9ţt0Ӆ5_୤$"[g>W\\,UNkZmv>]tQ!p\ <ځ>rMcĦ`k وGD 'U^⦌Xa"[R}tlU<\Dϕjë(<#)7'xy%KvglT[&?9V"M p|O|^C6ViA~i!h6%`?a` q!<^d +>+$ z zR#;~ A_/0WB|\D'ٯ0`qC8^y띘S~|\`SilΪ2=7X+g⃌Ù|Ӏ?U8:;ipv7>d԰ %! [.sqIhNk Sy7Hl.$D\v.7LӮx#&D ?#Bv_#*/*BQ/-wd><=RrX@+i  c[{{g$x 8b.j x-F)NJ.b?JWOiazØ{{\[.g#68L !w++<ƅ6RuM ##cTm߇ՊFȆ߹LVt7I?/I~MI"}Nn40 ["^I|HI)/imegct5D{oGgwE;Aue긩mTjXBت,e~%Ab(u9 2C>Tŭc~ToF]7]9lem$fbLzBiWA6q{HdF_ZJ7-%Kؤ1]noN 0Kq74m˟fBdukME<0p e6?Z€`aiŐ;S*ub(~7$`% މgAOH9,ѵ=\I9RP<%%pYu_Պv`?Tm޳J@AIcvFV NH7Ǎw%/3Ibk)BGr=l#pl{nH}**p 4(زZ2?æɅIZ Y`_67rH)8{` Οζja}_k;Z<>R%%란T'fi?[/LjH&Q&^)+d6 &6w{Duvp÷zf}VL_xj֟_:Xӓ1kIWynhTbCRrҫG"o\} 8Qm h>!*?խ)$JUmA[6/ )XOuevW[,gv_ 6WT9RiY?_aQR[w> @K| [Px456m%RojS(HG G@TpJ)WgߕedU$[c-g_?ü[GX afeZV}v>IJ( xAVڬ`J)mJmF zc&b-*tfLOAg 3 G(K$JW 0`kNʜڜ@k}'c'qˏ`F70O'†\Y4Ylhc߂iT9'tJ.I=رB%U2*E0?`70%ב#[z Xr%6r e迭}& >m_S7#7\lRpiH7,/?ۍ.Ύ/oz3 wٕ ' Lt ڿ pd v÷(Iڢ,Bϡyuė xD y_ 9mD"{Ѭ&=ƫT[Șϙc2})I.\nKRɪ =8m)<6nh=FkndoHi j[a㔟VOwNog#8g3[s$/6 doיʼnBArAwZgĀ3+&6׶5Jwu1њC%`*]Jr/quN~<|$I- IDAT^2gFRH xDIlV#}[0AȤt<`XVI\LF>F75xf֐|ABR҃9:e28pn;*p7A9;9BrpM\UK4|'I\kk&9a7]9I81=K4`h -~{' %Kdć*Y0/ۧ^rZI#qS4P'nuG}Aʣzy\*p=[{479|ZiÀE.R,I @>y$NJk[OǛsۇRPDuMZ+JxϐtŖCL8vT8/Қ< p2nRn倁ҭl _)PF'>}WݶT9 yO)_w˙vq;s#1oٴT C^ꚧ޿rP$Q2h`D |g;sBdgCMi1ֵX$_k,$Ax.(zǵ2rֳ!#X\+!3rw,X3Ks \.lg,7 `GuTf)R¦?z~s2-4fhn[Fp$0B!d"axq/^FjT/LU;~n΀Vffs)ϫS]'AG2 ؚ2gmNڜ@k='ޭ-q+B ÀЈ!P6t(ѹbǑ^5h|)c:sfA1to鷣|8 xYQf3 ҂.&|>s. (F8ˠ7*y3LW^]SEJGdʹE쀯#˦8=g u}50h. X4V`Ij7'Gx~4} oaC7◁Io;S6qχlRlW3VzSJ >\b?Z#"Qx'rAw3 AgÀ Oݕ} ݏ50n෼RVQ:kTq)ݶ3n[ &Au Clu/aY#+|&fJ*}x L@Xѹu&̢EsYߘ n=,mc*S r<ޠߐ33_{='ETI)jIgʥJ;V6E1r˟ h&I |F/9Y`!x2.m? hRTy`odB-s7!r5&4A*SXYiӾ@s?_v,7t',V<\;Sw[2D .&f$l)0gK]EQ8Q_KxL&K:vItXzO\9H'>7cvtJ{a`\5ɀq =pMݎlLFɀU=ûɜ<9U`jkVk΢ܱLurN@|dgK=.plmi]|݀:d#+em[͈W8GOM~ mZ7Y**%|Է2B黸 L摊j0oH9"PET 7I*&?</jergp8,}cnʂ&Y6'ZϢP/9㹼F)&گ꒷Ex&]``« *rH|r& x-9J@B1o#`E+-bwcS|-@nH#7}( wOWzkN7 ҕ ?+OOs_bKP{1IYd/U>h/l2c{8䦦~(x~44 n+]$noJKwL7| XļQʛ)RnW,s <}M`6tV( hm`@ޮ$L8trn[K|mVǒ>>=Y-w9tVٮ{o˄t_IOFI"/)_Oן8򏺭j^+ կp5፴V~nSh2/i6&I$@I EC*E$m(.2,7c{M)* [r{rǀ*hAŠzA+(;:mxJ)mNdj|2h|,A?gKՍοǰRAnOPMttc\").a{ڸ/Ҏh . {"#u9U9Un;O|=% we0SyIÈ?h# ~`b: d(V|E3 k̦aR"Hrg'@r}%[Z!hv}I/}dW6'}3NlHz~qRqhp{8!hU,1J*2=+  cgnpRw2g)s}׼iX(uvT{2?ɀ0n:n WCFQL%y7..og9Z$pg:={\@ ;geUݹ갣 nෳ-=iwtZ.r;]2crYlPe%53o 6mF7 $DX{FЗDtÏg $ w?K"ϕF*fȳ/yMWz2`e}0VT\&n*Y0`Od* 7eT9~"{P(P,K>E~v,dٴnt߼M"϶ystJ׽l!Ig'?pP2BuG~'3oۈ(?ȿaJ_GNz94v7|gF!աyf2N  g6n X{O+dJ[/|)$`嬳-6JO2 -7AT$Wn&jc'1lߓi!YՊ:Sk(F[=ՏE(zBW>r@e-A%#"]g }Pՙ}R3n4Pmm2`=; `G.WϮH$uGXeKg+՜7$AlpH >LN02ۤlc/n4dJ&uvp÷ΩpҒҚӍIe7PVp_)R=|$&L\3~&I{'l&&<6u7 pY?!RJNm)-<3%4${]T @)unh܍l/,T)EFZ%sʛ̑0~9RtomeɈXY} L1:?qBADwN v;$EpUmK3,$rP\WI ͕ͷ{_Mh>Ǧc Xkٓ 8}r3uc}VM'su6ӐzW SgN*.Df<|Bs削>s$0p@17*7C92OI'LQGHVtN_õbчt.N64fVx诛gE}告LZx J ]+CRJ@?\7z#eG/t##{Uw1`dm B>hxܾ#דnM y w+PQN_ ShuRLT@ 'to|?i;BྲJⷥI"o2.aC‹hOsMyT~.J* Rqq;!0Rx節S X>}ݒ~ &qmD'!X~X|=g6>JDݮ8ťczMOݥRgp98h`ު+VLp?87s^o`0@`v,xo7#@j-yN{!"Vp$|,X΁D0O+ܙHN%m8*2U߅&|H#u -$'1Hi4B{>TuஅS}$Z[uO|XpBб~6(j +Odhp)<*8Tf>%bot!fSjocF]C&Xg'7 NFJoq  ʪ/m悤 XG8?c:ϡ`7D;: 5n3}GcrT RHɽ:f"/?;d0b x([6_ZǀS@,᭪>mOSA*B<#Bqa3ꤟ('CR+&vW\t[fL1 t8;7+}DnGqҏ?JwZ/wb;0a>s![>GN[w-"o48%oA+)7Lȗ \)+E+V[>?d mO笳LW7]c[p/v:^*~ $e}Rj8wKzq 3kMH n;*pθ[aOG(uՑFo M-*FOCv15D`f9=q1{Gmu!7.K{V.09 ;qF/s:'KB)b%L,%<ΌE};ahs(7H!/j_)u[RR:>KXnsѦ Ԃ m|&IJi2?"NM%KM/__7jH"޹!̡02f^<YQ@u{g3HR# W\OW+gO'"(79tכ2g%U=oԒ͈ȝShNh!P 8?PHS ^YLӴbJTUv ]YH  C>FmT7KAB<(oB_Wt0\^jWMf?vF[v[# 0ȫpҺű/(;> -8@ Ol𛣨ňj- X{]kHWncp/3j1VNKa[9q| zBVҝ'rh+zT*XJ"ǦrN)V_C>]&ɩ $b֣~^nA$Iɸ<,)RjÕU-@AGc4q}*и仄*a> ,pKCu*l~Hr]/Y^)@JXg'7 Nwkj-7rZ$@$&)}ű6ik)P1bxq㷻I=j,7F3s^ƱD;T\i4 n)Yh郴Ž̥q3n`ǒ c-9Ёs o`R\Cdw³'_y;ļm>>d˗k 'EJ>-v "Exc+LץEmt7g^^a^/%U\1YJWJ"bdK$81B{bNi*mBtySz:B݀RtxuJ|faIf|/Gћ\SF5#x8$)lÎ8"%Ն'RyTcI%U;EvT^øcPdJeC޼Q]K~X%HMS*Fi5ᠺ>frӷ ¿D"$A [_g';b v|Ac̻U}Jxśe]zbiw5ᨄRpiU J2$8=?>tnrJ-gWLܧQBДfYAѶjSbhp UظBH&-Fó+Wd7D0OY bm)Ps Ѵ[fO<:8.NUpJ-`[g6?tۍn ծvĜ=;X;U_aLLs7 /,%WgW)RHQJk9l>tW&g A ,ck 6rCiԌ{ڝrW2Z[fǭP`ne [{Jgb* 81% Bb@)˼, n$/eG*6r}(t>+`*vB÷^t>I yo*Y+U?H!E-Kݪsmd@9릋r6M!h!o~zF)'^;L("]U҂b2m6s"^~Og-,$'wv^yw5ar#,z%Rv#+z)wо凙F,b75b,,޴W2_#D3o7]0A){|-vxoKUv΍)M鍊 )ݦ-KaΉ0'Gpv3T2mC|A1'+kq/a[e ş7}Ύ FCkWw5. IDATYE7rwvЌsRg/&# f GtURDĩ}ktC^jL"%ʼnKюMz;*;~iPnz,]n#!g UUHNS͘!-aXYgL5ݩD>* n0M[e%J8wA71;DUϧ^gs@GRR ڼo48;=:f HΆRz^%`KL .P/ SCq\QK&iGq|Oa4l/./†{/)ECJzE^dEMvͿp=śqJ!מ4n6\:)~u"wpy/ 2 *,nYW{)i|4޲[ShxæZWA(g\8hL`u%L_z[];t7nxkdY"As;24OW)Dsk T懶ctэ7~I _4Λ_y>59(]bYcͣ7TdspǭE8/o=VG8z)!^9j4͛%0 PN GiZɞxeԀ N BsǓodT^JQ"Rv_!x)R-9,2gMna`#S27V]e_ߊ8VMn]vV;[~n9ER# ÂeS O j|aSoxs{$Oqw8ޠY(71~?N|C+?G2Am[V:Bt7"E>)Ԝ_cYJΎs`7^f@`ڈLrO`فLa`=mwVC;Iʅg7W[/%p/9OOM6YN)Yqt5o^P=s'&fSUo3?+N{Kn2n*?+L yF*j`coM6H!7Fph0*mǟQDP0^[/1hֲ sJYHA Qgm؋z~8c8O9r]ݭw ʹ+W84ٳڻO6A7S""*F _r=ˋlOԤؘz\ЎNp6tv^n&vgq7Zk>ol\׋ɚ"E6&xcIʎ`G/w:>}v7c>RLKN(?zQ_3BS`QĄh+671KJȗbP~z))+mzjK+;_JFV%Rڵ0U4O ar}u7?g%#DmK._9K"E)n3 },h[MÜ؍7 BzRc`8GHC$&Zv7i"1D~ e68$ϨH:1Wz+X$sC߹% eV}=p9v Ս3x=﯊WH)o/Ŀ']AttHrv5Ze! y> K 椣nE~45 D$ q2Na]B0; B-%c_]wlG==D39*9׋z?"Q)1гъeywno'Q]7+/Û'iW=)yw(FZ2zsƌzI˂*J PRp`Gg';b v|rOGf?يlpؖ"EʪgsB&IBJ AuvTd}ǝ~)s6 At_}X)杘zf@+XVkԶ6J~7-A4*zXtKr.ۍ1m8SmԻK΁L{MxaK;Ұ;"-m(ʹU#t<`:vs0 m]%tf4EM\LMpEC7wp?ncxqvgqg3(Kη+EZ@`1`b4fmg(7xqo{ҧ/0'vDr$D_!;T*bft{}As3S.e̩w:gjZ[g+O:CNM7G`70 @ًМW pN^mTxxP\b \xQvDmd\ѐ֥÷^t{Lk  Sя-,RRH*a<*r.C3@eG{=?t֧/Чu0%,L~&uܗ <$y-Š\X?ntaK+W=ς,%Wxk,v:uvrn$foL GTErVopz$V#F")3ZKZwS~_{'GA$[K)Rpt>q tIk % rʃS9=NALw>6K -$\_u8qxh7aOy 8\OO$`;EgFR&;^%k [C;٪Zkxo4e9pFY?zl)*VPVOgyApeP1@[Vhv7ǂUR2V>"@A2_p`Gg';b v)F,)]M,$s- rhI0)6x!}hݐǞ ̗޺r$FLsP "{yw$)W(PQ+ Rr٣ghuľmKpg)ӊ%.8:ݞd1xx嵥|d!N?*rUV_cD_ Wj~%h S]ᏽv=IL4܍͞He %檱;YMtgCξ86Q GM\3.O$`3ѧQStb( ٪fVk 8w֪aq/7k!\0ྊZ qy.W0fM0f)a\:e^'ng5B8$\,=<-"? E-!@&nĦSAo;㏽rKL\şfSHN=W+}#8ZLeL u/<0^#"XR…Te `$L/;yڑc< S_\ےks%1)J|uY#CpBǼ5zKTU]Yp֊g8Uz:wͧ3؍nlؐ ~E+%#{/ ݂\8'KlD&䕦Yp 2<1s[8sN*}cz_l|y%dݏA&Hx!.B<BӉԨ 60r\A{2G'w_ _ +x( ~/YFl1*$pKkvAe4u!8eDR:[ن oکhNbğ]ᏽv8 Os Ydž?m!Q5\&s)9zs {)bT@ l52@/wOm9+j0|])I]wDm&Mvr>[Et[N>:T%Yx/ɗmZ/%_g m^]7*@ X.} oo;㏽!zޥd}XG0w-ȹR2,Ձ?{_床k\?ޕ x`@tYHS>$66'_C+`i$"Y=Uþ쇽W ېk1oJ yÄD~h.|!ġRѓܴ^*qK 볱a1^Ry @b< (s.qG Jه ?nvK!3 ЃǶbd#.!(&?$}UA l8 \E=9I)^a&q0cz!4r=alU Nnw#+(XOve|_B+Qj“tˏգײ7ާUpRc0{t"87_Mnۿ_{M7,| Tc/ PE7A 404/46i2j[ׅ?E፠]ٴ1ۑhP:X|HdJ2iAo)0fZH7%B0YY,³^=US%܃2^֮T.Ɍ&|X1#qITߑ,/>iC.nf" 5^Zė B &#*rx(ʑ:+(;@ˎE{6!תBԵ NL(j_혟IWMNKsZ"oLJ!g rs]xo~sL&)M0Y㦫7rK)lw=$6d/Lb &B5Z^̜殞]7&1ßЕD4Uü1+Jg0)PRI㰊w tP ̫Ji_We0mvopu7"TIPx;!@8s rգiiG51e6L\}7{Q>]'%qp@SGp~U [I>x ) \q[ifjGɬhיRA;ն _(TA%.V9QE˼A",pZ^ 4zに=RZ=6ўw3@dAUcJi#GF,o1αh13,O꘹_wj&@)Ъ|v^F|u7"+l0-I}EL*/i80 zA"Ac"kR9=WNx &rџtJ@h4B6n,G}mG/C8F_%ϕx-&e#( K!˚{xDJf?m/~h'X_|/ã曳ϜIkhɨ qlV-30CwY(@~^$gV/pu[Xbr}?REw| gN(1@)~x[fԋΉEH5e5-:NϿkBGz1q#1=lzp,=/ k=>F:;; _dF?i~tT`bp1P?V,FMf.w0̏vCMp_`SFoÀlٵP;v?nEaLBf9mHg\kCzoP?})!%n7_-%ykM%_53WG. Wܖ쯛N41|ְ[FiIF)lH3Rb.@m HrLbIm;B|5-v0b%rdndD#SF 'oPBƉX'0a]~ 3N%&a[Jg;L޾n'e0fM(rʸA gݧ m[j MWggJC[/g+Ӳ1T AgH@p;'s4ؓ."ZR8҃t3n4omư>N*6be mk쬣RLZzRQ)u#忹Te0/0BJ~=jSFl9ŏCyI;]t?_旽QȝYp@77Ekӱ V俿~T.rR.!]YrcHa~Nݰ^>O{~9E} IDAT^ Vި{|lQ{g AFʄxȫ~8Ug?:o%J(t쯦e\D2 i`"Lէo8ta|E`,cٕWz%j2\P>pd%>o<^G?n:{#Wn3Q KR> He8 Β|u\c?aTElx%/:<9`Í%2Rh vT"e zNag&OK=@VzϮ OM@c ..dʾoZ/ǫugG4w6B^$7J1鯽޾iz/ޜξG/`PV-SL}B~.]n9;߫ nNd`%ρUY_-(h`jYjV®mZ4/R}X ~> ZI)c^Qk`{'N"kwj=va2c2ȉ"3:fQw_"]>yrҲTMsu_ggL?pH""#ж d&Bt)9r mEYZA?/^7awv*x]_# 0 61+KW3ґ@Ug0npopE/WI{3򯂬ݨī ?}7V+$};כW9ef]X?V@j2v?zNϽroKذ.+Sr*,8a=>t/Eu'{vFe3"ZƇ E.+8n۝`inU(oy#+ Z`,f>j-*432}q %p5@o*ybb'xϏ뉻y畴i?`+Sw{KVx:>@wedz]A9.\DkG8o`$$S OZX+8G =d 542 WfFil/$'uf=9Y/Oyz_}kߔWm3]bs"BUF@qB~?$h ay:JXg~0@+LY09vs}O/OτLS@`%mWna8-ͷ~,+b$n5{:hz?$xZnET8v$׵z0a 0cDa RHl-n'zfPeR\U>ގKGt㎆'KX9'ʢPpYW7<DNrV)7]~Y(=g䭯+"-jM622A H _PiZ''㩲Y7h ϣ#YF! (cp҂+1~l*ljMrLzVDgVMeCC䫨 ܤɦţYAY+MK0TA[zQf^뼖4^5z")ڨR(z3n>yJOd;ىDnU{ୋM<(QQjXy);SAYEe&]>d )lDwe;loiY >vU[dZI-?"iW %9ѿEnZp`XiCtPPX kV0rO1Q y8,olKf^͠yGKTKD]`)HOx,6.UM#?F2 Aw0O(k2E._Æm8ZJ'RZo.CG6\:!lWѿѭ OWNn{bnyv=W[MN#TE1;!^^>5MS#;{O0?x κ<>f/#Ywv~6KנcM&3p-T&hBXtX G@{ 6QЕdUw~uK- YPЂכkz~UUhB$V;ؖ \b{9~$qMD$k_o{˻ ݤ CӀuč{Ja=cLv"CgpsDσu !mD SSWd9I}T˦& faă(2V7!0)a0\H8 C1umׂ䚵n6Ն[CoI-+%dHQ !^K Nz=d["릫|97ieJ)yO $YMvO˧4W1Rq Ѿ8_*\xl.`*;w+g"DZy3p*?,vZjC^+3a ϼzxD("'AoX( Ag%JeٜOM(q&GnZ?~uu _7`p73a8B(WZZEuf[%鈸OF G%<߈+.6XߡS-ݎPw6Xg4Dcɝ ޾ǃeB [oЌ`[сgw!+/6"=?_Vɑtu㦫oKPЉ 3٥9uip&Oc}ȉFkpRhu޲O]Ȥ3daL&+_a E뾔^H0P NdpˁrMHљgAtU׾:?7UCЙԻfBN ȔqKIf{}go?쯽 n&"4,[` <9 D`0RAK@?mvgD&+\w6;]ZvtVWgp/ Z=kL3c@ul \:6?1$ 6 U#YQoGdVj8J\U1& _baW<ȕT>q.ӌ~7v?A2DύOųQ4 VorƘ9r'{=lNҲV^7T OMN1& <\L:yr" ̣v7ٴL$7<ľߖ-j|QZ$o{eFg63K.xh ydz69ΓTLs}Av?6o/.̩r?-aJF&9rob'$BS#?xEq]Yf%ڢ9ΊRaK0w=v]Gsv/0*+hLD\͈>t!7SlJEug]ge >Bep|T/)E??/=Mƞ=np-$#c2.<ic@C#[T&M!95Kn9{*3]nΚm6jEp -џ k޺-`KS:X,eND,7'1E'ނeD4 1#h)SwMc<͟#y&g\3ڃ*ê5%%kFf-[ʄ`F"2&rӽCēv 'N1TƇ VhsMVMЏ냱Q @34{ ؾ1#*{3 W[]wjخː8D×]s/~A1Od Q]_#fe_ȡp N3C.Mr0՞ړ1V oU|a8&LL l夊DiԨ|,C͡c^ɱ =+7SF -xrE=Xfn]QK-б[(̎۔qi`kW5F4f7:WYѱuE5j`o~;5}Jsos|li۠BN,A/@izhm⻂׫X=4` 4˧j>cU`U]i4v63LRH'5<9S*tWlz`|c]H% L$&5%AɑNn릫>%|diOfBz}]1H;!|ş-j}٫*.!+\pH`KK jӗ- iXі)@Β= WaCL RfսՒql;v\P;SS"M+?vvt/<ܼW])41&E*޳\8nE¹QsWgی-csdfUNM\`<'q@:֥%;=f>BlF6F6k @ \!2FT-޽\S "mN8hB9ha;mԯt%;ݛ?3R1ɴfoQ]fzQk^7G63OiF.2:v[3ؑP -"ʵbnU9y1Y&.g {r0NzD8@dtqãw&7-tCL{ϐsf>}]fP11UlzWwut)3|_!67ѩeQLF$_Nvvӕtofg7S #o5+`H¨UvgmMcEʈ,J~k "-i[MI1 utT Ġ$E6A;^=9;I6zM.?\(.v$ZĘ*]QPr_MBF$R7G)"{?pgDvr_7]Ͽd ?_v f'BBaEu'kiX۔ :UǑ~PL$pNnXM.#"պ-݄!6PIY ᲺSg! t'B {ޣ$A%`hG@$@zpx/Iu-&j׺vgSton.9:g Rnԛx=`Yq=&KI.KuOǗaaGz*n.tEVD nikʙ%ՇxI14JڢبSg̫O"\&?߰-bA|}~ٳnAl݌pQh:^ 1s_v$tK&S PeWcpʇ롇xYcWY y|3#--s4s lt;H0+K6eVX⵿0%1>L"C} _R$*X2dn]6k%r 5S(*J⃀9XבpxBoD-JSx!pu1ﶨ{{(ϳkL13zc,LgJx/tӕ;};{9!͟Dј3VhB!,^R_\Hϒz~s #_n&g-5t!Gx uX@r5Wg:Hf+|:q-W[T9GajX˄Y"nEx]YRI#D uYF4%v9(?fGl!q0 KNvvӕ\+ѳЦ1F80t݇׆qo$JP)H2 xbMX Ir+en m+e1(ZWc$!_L8M7lc˝{5N V$ 鍘k9묑): o'+9.)}%j~qr_?I`^DŽ$YeLp|z~V%%#F}[q/a!uM_ GSxPVOS404A/B].Ӻ~A4։a/]P-TC؊zs.9މ RƤ:"曛K8rqh ozzm«u:?+Z.?#`74v0 l%P2W,e6Z#7++ZXDjNww\g]aĽ_X,{)Fc QDJ}<ƻѱkp- 2!Wd`JjIU'1֠K h{o c#q *:}D?rn4`$D h1e D ct0?[Ἔ(#kD^4|4XZ`|uHdUo06H7}hJInWٗIoS3" ' ivVEt~y}\Xph0N\䥐 Z  +]`Ì鬂si";h^#IƋR,BxE=b Pǵl',ؤX5HȓW8;u_?LBr2 0D5[° ܓ0&Ifȡg2l$!(`K0 h^D%ʼ,_,d$ GGf W V;ĭةtO~fSS3+B#usѼ53RBhmo_wJKo50$`å1OF{Tht}5f#;xdx rqD4_[a|1ݽ ,"KATJë3+@ӷd|x/I%>P1K$da+d_H#["!a9;#g8 AeaDNm;v4EDGtKA>$$J [Z謹QT]=`=쨉:8& [*- \JxTnLD1s .CiVo&r.jEdI Ch/ymk֬dlBd|sMW/rJ" e-FϑlWwiCZ`IuR_yY#{&,*9w^tcokFL>{X$6(L/0<%Dآ x(HpX؅cʳug؂cڇY{&q\0>Cf2_6V - 2oͦk.N3Ϸp$"曻u_oNf͌*ܞ>(H<,TgJȑobiSki|TMncdf?i)ӷ_9R; W:`@W8\œX\$!=/B'gJXΥ H :yZtȏqLUlB0 U%I׏>!3twN03qbD%]#7|uӕӯ+,~4NoE!*cnFH$0Uq]%lT"4ZVvҺR|#]!xza:rvpR(P܌J*7ԨCQ 3]QWr:T~$pSkO&Gvrv^RK/9K>Hǘ]je=PSӧ7($E_m6 MڸQI `.h@Œ` ~2QLd۔^::`ͻlU)ϤMUt0KCaz9Ō!]RvvUۜS>p( 4 %'>@$u\auJK-t"|5k],, p@KTlNJsKpZC -%,=@Q&N:vФ(w݇(S9,}QŅ`l[ٖى䦿n*MRvKI9b*)A䬺Lmp."8'yLK4p焵dE!V>?O+%GÈ9 Y(F1Wإ>^q_g͟ Z}Eu\(Z}*D]v B"ZFQp_O SS/[@:'3{q'$0o-k&~pLHQVq.vX??/ s(aNAPC繁`к޳{*9jpvbt-#WDdMK-8zMe˸ 8/a4|hcgФ8-Tg_ VCrt:Vg;&&,Ne}KHPD E+&~Ϭ 7 Xy0.'9^lN_*| g,*YPibW'&Aah@qou/pَh1fNsR-[9,-]2}GPV[7i:}fkI<^U͆9Ԍ=E_`QƐ/sꢤ/z~jt1X\@* :JhفKhKO*ks ^ AfN{0uusޥ`h5+Hm6~Dv{G/Oyj3[Dh61Eӌ_ϒ΢c;vB(ueֲ\;Y' fVKE1*sH \83]VY2%y4wGVt]Ao쀚V(C鿫_#IԞ^ yBnuI*j[u`e`4s27'#q=xK7K4uAջ<* kt{%o@Q{I95B q .@A9(XǻM:1DޭRΉL0}0K[;0jE;7j7e忒zmO&F;U5ҽkz+F/@FZ-&+<<ڠ^4a/a,RGSPb'b% pe"4n3:e,ō|8 0ԓ*h-t3l';gp $Ŧ Nn0c/J3D=^4%N3w!ʟ~YQo&o.-k ?Ƣ *haep^f!R_6]IDkh&7Ay`ئyRނ-7MfwEl׌\UJf2SK*sXz!' Tà5G ^vޘolo~t&Weՙ?tMeTΈ)n:_0kK豞Toyn]=R- p#j`#*ѨP XE>>!(Hm̍ YDc\^sC/z7`y?U ёݨCξ5,Ma .Z Ԥg˹*;'d/}Wd1rJc܉f\6Y.gc/{<_8ApI__3@Ȕ}ƵL~OJ=Mo$A Q~ y! }.H ]q)qsΌ2;bbP0S-DQHqzPC-2/"e>3_y+m"3Ll*Wmw1a ȱg(zk̳¸iQi򨠘 L[GODmV}؈$5oE2ӕXSTX;ߊFd t~F[wf~Ѹ2w_7_NAdfpwlRpE]JB-0\Ajr>[ ٢; ֔cq '!DG̴1{؎&0XF\Hniն,kxyc*o_cR2 djF! J˅][o'={i?ӝ y̿hSJZ0/9͍PlF ЈO hVqO[~1ΞG+7u^j{ZD#S/CCG63J74#m/z|eE -h~X@S1~m-SD?σx ͟sRZ,L[m1Cȑѿnɘ@i{7O{#r쯳R,Eu zkf]c0C Z=V˚3/Ko>G3l@E)ٷ&27shX{|>w"*rpeDp쬳39K!cX>&gB Ƚv ,k4\\ Z.E5"G{+MWnCv6x89%WS@}=GSͻ]:eU CK]򏽀V\ڱ~"'/0`Qz?:[j}""&5ŵG⤪C`ʜBODUCѼLpC1_!s1b<;#"曛n.sݮ9(.FVjQE:XwO+z< zG= hv 40/mF]0WnW Tn*[1_v+2z)!ͥEωG"bjV%<yyd!6:v3-5Dڻwsr>tXsD%\=`tuW0GOSUzZ@x0TH#9-QV ϻEU3raZ 80I 鍄k] %bۆ-Ci`[GΒa;}M򚎲i㮌I֏viBHQ Rj:=_3?f3ʳ#o9nn&<aL3(*(^e6 GNvVhPB-yLaq/ݹ!Xru q. D*%:IfK'A-+0Žca˺5NK#ɔ>ia]o*hٙny)t ONE FΗRy< Ǐ7e^[lf}L%7ϐ뽟_bc#j2bN|=OM6r?>|+9Vh1<sIرF5e긳6kY61fW/ AYrvDvȉ2p~ȧnP^6-EQ(%T^^ԕ6(4yc6J1PۣU%-bzJ6")T6p@a Nc`{V6*3f.x1WLij h!G3Wch DDI 3L\xK^d]uBiLH/I_ZH0`"Kk Pk4O3m{@)wLݧyk'gg7~ ;ilR-$Iu0GhgADgWEre Gmy$},)~!JɨPha*͎6jg\@Hqc8W B2f9k~ &Bx9@iVCM#nVrE,./9 2W_sb"ٟHHwy.0uׁܲ-]i=LJ?`Jz,1 2p:/_ch}IrW<ThݱXiΗdȳwvӕL0e8OfT6Q ]T YXw>0"€zd1f01_ ;ә+ %9]4+aaq Pbki c/D߻b [XQ㾠GfygaixkXeKUU1qG4on9.!/1#}N(Hւ5i]aX_p191{P2Gb+Kx9g<gǯa b/3~u䩉~?Zce?'l(`-qFB{ p^0u~xGЦYnzg\M. 34PSYd)A(c6 t̤BΒd'gg7ws岠$;ۊ>fߵ$iknEW/*Ţk1ê~: :115׫4 ؎Ȁ#%d) Yc [!>Z/m .63Q/C*Aͱ](ӖA -_gXԈ{T|Do퓠1`aGQKmR*^`gX-W8F>$ Eyv!;i.NL/l"wj쯢@ 24|:FUD/*_ށWRzx+Ԣ(xK8<|BTڒVUpȔm̈́`AD큋<uPCVņMT]#Ӓʹp$RvyX}8{va=G7">8 m7|suUnw"u]KMsmY_႙yX-3csh\vQhlHS2|e{vuϹX&ZAl^G?N !yY?vѰ*hMtARҾSmgD{\`ZVж(vWP pHm?ur!;t6# Zqk]dz2tk δx ̦ܫ$\`HGJnz/EZna]KN-Iؔ 7QsCXUocF3~-f(ۥm6ス+@ HTYw1ŵn|/Fo]]ZĸVV%xg/PY[. #|d~'>rtx9&EM`KE?,a: A}sgGi_"t4W@&goTZA+r R *IG^Wϫ̅6mNiIvJD9&kN1QVEM 8u.D 8(G_ ΍.BWG&uMW7_\ԘhF:!vi)գPNB@p="CeҘј23~mGՐE(Le80 0]&c@_ S|  v}@:;6TznDֹ5^PY5c-EnhhUd䗰W#Z aw6l8@!gYoI3!_-f$ Pј m'F IDAT$T՝o8h|)}}3 ~:qGt! Xߑ3QS|[[Bpm&Nu4hVlnyj/е&g7/u1Z~oM-[| \9$Wm.yZNnqq0:˺37!CvrvA-B&x0 P2w u3:MVŭ6unT[d "cFs1؊#j&"Fk+ u@j3ܽ L'1=1ƞt%7ݝ fЀ0KΖhO]=nb@3f;$ euXG9–2dꀝNrq)jirE n0Xx1HhF;C¥sRވOx"| `"MHKtQfuf!VT|l 6`9#?J &l#;P0vr.-̹׿4k;+E1Ƭ_r~hDK\9yR!=9Z_IhBfm2Xhm0pi r>WFtHvKPy)}Brw.CHMr l"{Ѵ W jD܁&8~)uMW7_2g"&",L@J [bbfLrLttNOy& @8<>.wž_˰/tIi W{C\ [ 5U=:&,\(Rgc.;[^5 A({^wr%;9;68;Y\n#Wd`07&oFS4,[*% EW~+imH" h3HZH"dʹ5r{bϚK/!Kϻ]U2Yggr]ӿk+%SH< Y@J-ܸjv_:-G{q3ưK'*PHQy?)ρv$9YZy_;9;68;- 絭Nlh [j$eRvNgollB=Jn0w2_͟h"p܌Z>?Mc"N'ȬM,DXRc-"~cydGnvvȽXT_N? [tԙ7^ 忂].pvdMjca@WLW0ſygI05=՝7tVCp;&2J."_0^|[@~BW0aFeԘk0!TOG!$\ ]-]7dm.e?-X߁2\0w;lDOCki#4S&uf6Uk\CH>h#_b_7MoAUA$sv'KˆuhJXVE x8_M??h!g$}f>}]d` }U H@$gCJK1}ԛk>xCIP9ݔLkKfWq=<9(^g_'s_ ̐]8\(dWǬP&*LWjֹ%HK~s\?&r+Î7kׯ!J(?lk.ށsS%]/̝ _, ,G@h~B:y0fL9k_zYU^'T,"a3@@P~Q[PL;h6f"8MXDTM^KnJ\pýG[gQw0BXL-Z_0YFw-<7!W* UTMoAW玆\Zekx'?5~pԫMbXtgpܨW.C^%:Sdh/X_dD1Q]#rH+Jp-2ٙ1ы?3SaѫCbu%!+;0W\IrE8F"~ȧK5^}9FnzBxߜcAo{ 6‘As.?{Lӷv,Or]?{f}EɤCyc`LʜS:QsH1bJ!]Lh #W8N_avZZtܿ^K 7[.OC{XHUD5X3JH N18睄 gN?d'~A"0B6gjwuvyCer\.LwvƒBA!?%^ 8L^;//.| veFV:Gry8oP<#%Ml-MW{jȄnr?\8s#$x+te:Z #܂$CvQvƭC%Ӷtr#y"sOKڄxkGyep0D@PoTEw,Ƴ\ `OUhl+s#Djmןa\LQ@WfoC] |#3;Bfd*HBtj/d  ^⥆ DN)o]8O6Ǽ74Zyb%m(M? T~85-F|vl5I.O-l3s,q%qj`-)*ܚ/&Wg;޻D#|8nmCLq M&q7M-"wqh{mdsY*"ߧKT%ӳ}oeo_8c&"]v|^J !v"0r]!?(.虫/G07sKǽc-@H6t j;W˦Dk4te#0^j,vy+Qzc_\yc ?q\-efF ύöԳJb3E`SrS9=6f99q\3ngCws'~Ó}[^S^Fb-se"_MʜR-QelHW%ΗgbZj6 GG# xg3 6=!|(kJe˲^R[k$Gu`5籗1]ZV~{|eI2',.|Ox# -.<{,[̴`NRøY3Oaggi1"¾3P?OO0h/%j7s"i\eh$m.(Rl677xXrI9V:6D-RLҳK"Ѡ 06@5\Uޚ Eec%Ò %:uvE c)@*?0>^V:%@-~+QDLiࡕݵ)2" O+^gxn}?2+Ko.}X <;] ʳO)#kF|DOˊL9;r(]׿K'ꀣ'K3{7A-87c+I9ЌEu]dDgR,[!f`gXЧ ݡ?g!C$x>?v?1Y?.6EAOKۜQc Rس;8_dgoFataԷD o"v7!߂.x@PSJ:GnqJqHI٢q)H`BvĎ|im~!jI縕}X6Ke4 $u$`(v<]w=wf̌n>CVT/c\,yCb@&6(}g%H:-2v e= K #TcG,##eK'+W7h (C 7 PZlnqƯ l9=8/qm!bkN/&b(r2G+ț Wa7i(& 8;-gnGʱ]AYGnvvy >&!Z& E.Dac{&y>̯Cv?x?X—ԠwT՝9r^c=~e>qOuWi. u}νRugW;n7knʼn[ȑEUJ1͌N1H;%Bd?ϬUީY%]pGTN 9j|Ds;kGf3?NcD98`>༉'ǧcoC$bEz%^J6b*(:!,]DmWc?(^=DrNl 'zIr+V.Tg,,)*~ntƹui ࢐^e%Q)\hrjn$6uinќWiٿ6.~NҕINOc}\pfS*yhTsP$tT)$L~ĮQ"w% j3F`K;2^-i $KG2+: qSb5L/|v׭xX=&ስ*L^$=[yݾe ^Nbz$o(}La )i2C\d&8Ǝ{4%,\ OQDZ`}[L-o3}B!-w.mu溥d1tکb82] |Q pr6OvnH F~'6ekXO%\2 Ao'ѐ\˲(,g.&zeہ$E]*EiHȍ &_lZnn/7vxFgϩp++(^y9 VvQ}J,CN04MO~? ֖ƔvFTSY;]%I~l8?4:8nc7G%I::/YLrl8K/#MƠA %qkE47f_nvo7~Y;$M)!w>*6*O9M9bfǭl+NM V0ElAo|9~i h $a(k ngQjzD! 'W/~\2,lB<׍ ؍ooLkfz+<˙L}ƀ Htj.#䇗۷f[l᱙dp}E61#CNv?U cvXǵ'gj|y1BLՔb0u` U'IxJV'}ZI f xXXHA\1 S.M.@Z =7%} Z7#w[s|p㓊K3NȤRT.k2SCXb7nҜN%??2$ЦKt8iڒHsTgK(Njf023?q5~fn9n~ b9 ͽk' qvxc%+둯EnLƮ~2$*՞uh0"g-򔐞pE)x3D#!n g`pƭd9Lj'x-1LmX_?+2K@% ͌IQ5ֺ|r^h۫pO; T{ î鮑#Z+&#]m9gN2[jײAC\WPff7$`0kOƁ2kz(ÏI | S-9u;0^:^īVM@2l<3|9 UrE ] ދL~==ǀկl"ȹM+j7ZY'Vy( %1Ҧty_d ӱm!=U13=Bo㼹دc:'uɳ.Et~ CrũL2fԥHXG\zޫĶI&דK[k0[ʺx/:.[8=Mo U] 7XB6a9ujRw }(i*_6LmMcP>(G[V/ynntuK1Ms!tq1"SFGuڋ1[0ԥyٔZ1KoBx6&HMjv! ^λ$륫_:uyd5 $G2Sh19MQκэ_-=шhߛvAGd#&?Ek6BD̋c(w31p W|wƊ=}28BDz)!O+hE,kr~"5j]]V%njsM/ I#,rV`璐eFȪņ0?ӏY׀)GhrWPfӞ[s8\9e\ ؔF aavH}Kj1=n?oW%S(grE5Ez/U;[{Kd!߼6OhYp{L/JҗuZC)JF NE-*pr9Gg/L?aqɢ68%̦WW9FΊ;p_^^NVI܋{HTm4.knn|unSrYli&L}!܅Fb"v)VyyVʞZ M~_acxv D> I&Bt_ttGɵ$]f5NZ 1S߈!Y. 1>̍d6 Ӥl`X]K$KʴKVR|edK243f+y!2iⴢŘ 9Jl$XT}_Y2S$ K^29R:5\(`W1şc[K=~a_X\NhNeXAJI6l/ HAǢG.ѹ%ЎEI<> x 2tY֎|ZFQcB/W FX詢fI]bz5\*߲/TZ$WCֵHCZ4 o(yc nXc(xPÂJQq'/şoۍ_o>XfȠp4VMm}SƜLjN&(yG-?Rk{..{BE~eUT7$zRLPX vAB +=?P|04T9W?/:7|jM!wx*ƀdiEF.$QKC%|t 7C_4| s:\L~c^[t 20GE)L/+ee]Zb952^TձMg%E_R(fO4|X2bw_MOkc; g=LƜ^?F։ Lk,U 3 _7<@Hi^0 T@#!Ie_ïm]J{ Й$9nb੮ < <8%}ԌI Y03B?9:R(8x BSl jD[[-dZ3[/*{V!Ws9;&Q9敻2~d{i.:z0]թCg_z&u2ec8VJ^a|"3GsUsqY˕t0GxC_MLI߃﵇Ivv,win}XwImwŒ"p,fէC0CxF!|$ՉZ+>@`a,vo=eR:쒞,nl2XߪnR2dZ'I.}p[`M8 򤪤.B[|:rvT.E aET=, ;@_2VBm-@Ż;3g cZd9Fm|=*UHf%{YU;PcCjT r _zN U-7KO^F!4:W VX]UINDWo6~ίu=yS:$x`ReHE&ys].K:yAp;yvv Rg9rsusU_l>C~+KBUN+l/M)Ք߲ufRoKQ#h,EV>S*jo R73@5#w9 0t]3OB\&| #S@čkgz9ҳf# ؚe 0I3(N*Cf`T_nZ?ly^l\6"VP::Rݏ ݱg40T;xLSrY KTbVWX0 6X\ 03*[uGErv< P4zJuL,7|Ev(`182!3>'vfww9lk. /&~23we=D¡Qڔw=>I CrLz96Y0I%vM!ƥ>Ad]G2$jVS$=I.jߞ!N-k 7kJyş7HOs4P B r6G&`^:׽iTԈ3/8,窡يpQ]:31YL~@L;^N+ ;BE6095,c:ѨQiV_Ƙ06 u-޹PN $^ءl?n]Kg}>Vp4Z[  t46֝_7~0N&3OEh!1=6* C2buixvs1u 5 `Pձ$bxJ@W SN%Z>~T <ʱ:o]ȇU a ! 3:7Ղw$YfˬoL,Ȑ IDATxK0qb} tD!Nr"Bqv_'N>ϻoynߚ̏"FG'.(u잱Kɫ lvi! j*sx2Z`@b}~a8)ղQ^늎L_=P?,GX{,#|a ieVm2i'a x.l1r4Ea*/W{1F7=|3|5gMzkTx>9f\3Q t`%e%㫰**sV2F9!| g[FTJO$NKxo,%| kK@O9\I_k  wpj4h#vg ^ G<#n͌.Qş``_c-o꒠"4"iB8 =G2z`:tp;ϓh[G.ZVB7hEٲ5e){&M٤p7̯p4ϜV(UKG-fcI"CLc/0>j1 j>}kfpO61 B -W!O}d/w~vv>{:2YQ]<~I`V2ZP,/|aW -4izth+E [4';: _ZyaYc W$3!7nw~a.@q?ʘM 6Ea w7׍nr?s_wc_%9u_@w}9/a\KxlAQYVc>\'P^_ٷ?ߨУ*Ļ/^Qf4M zU4I:: daV:;4I!;+Pج\fNLJLYL|f21`Ui;y&MeI%I /9ZlgkXg`wycle trF11ZQ^}=o,c/?ownSl̓d]0yG{|l%[6O#6KcOؽޖ3C]!;F\‘J98œ s[IKrSI/ 8uɣ2IAK|TBh> +Wo8Ch`Q&EM~_kq7c3{~B:J(%l Mo{^?su7ֿ?^ޥ`W~QiejZ`bgU ~X.}OgQ"& I5vfȔT( 4UĪmfb f@a3*ж/.{ZR Ę|/X[* 2с~j-Zk֚ &x|x{a{WAoJ-cm/KcxfT^k Q!Nwv3JQ C JȨNZ4U8)fpY`١TM!&(MD E=VD@~i3(\IUXw`X؛;f¨,Q?BŃ~ 1& nnp0~ a2aZ *Hf\]J_o^Bm u>-f硿Ӿ=_ KMK 2syio1&H"@yܶF_$1Qx~X6JKF7zuԢּ8g0sB~2O>[?^G7UPd-70ccl/f\;p/7)XX \+"҂/-=CZ^_%oLp(c2@zZO[w ٖSH+@s1`{~r.᫴OtlHGRyy̓Pa* al.v g~}g2P2O޻319lg0y(df׹mkd3.͚lM>VK6;Z3w6@ZV,g +]Ü;r>[o{ 30ϯUTH z5T}xLr)Ӑ[0^}tq3CEC+]a( #b/*0##d>JtҕFjfB,Q),|]0h3U* GML\rya5_{)_ ;/ٝGG2c bg4Ps]>=6 %i ho1ƟFy~^&'?2? xOrko_4,͛Heq mc` #WhL@>%]xW'O%(^.2GYK  77BWn[yÍߟMs.Qةa+9>e3eF*mH f9[U/ՐB~$o}סrތy^ԐҸ(po"fɨeΥ-(4 !g^nwXqTt\/\Rv?/=3} `4.\*h$!8^⵵Ήvlo܇߃攋[3vn?a/=m8s]7YģnnoδӿUIvUl3z%[Ϳ+r0YZ6ȊXFkv15"Ru*yA-KT n7&ګ4D(8(ʙ>UiU>Lt"i/x́O&܃/Gn oޝg_],yUF}Oe>{3Oa _fZ  ,~ecrgk/g5E.)21[Mww6UF{,uz4*~fƈK\YEC;Ӡɻ ~IP1+~acqbNShԇx΂ >G$fnQCrЈtI^c/M_g}gYԣ7s>j v̒vuHD VJ? j [ ӵsL: !mXwGx gy]W; VK8 s Y1E~N z|/8'$4uo7|%92ak%[B]}/w֔iZ.g>)u X\B[ #ci:s#|*'T_]=~^O)R"}2e\~f>_~2`Y WF'F}{/n e &35C@]ʇ!I"/76,:qU3|vqO/*(Zb|0:wj-YKGgǹ$St$pR6Aͭ\U؋g 9 u "_jVU^Mro+*eIDh x/ !km50{;Ϸ?E_%<_h{ lgAb'DV#S4 G RXuU, CyV2;"V1-C,C|1ZH<ZFQ6+cV_* i't~ yjsE?mU龴v2a]78Eb|fu3` l[;mEYJk_]f}6%͌fj8nyolL7uL[KO7& @[hdC٠|ܪ0DV~UqcAust݈ιE@򕎅LjgLߋ΃N-#T}h^}o6{y=Z &k٤ÀNDž??YXCN~j.B֯))l\|껹Yy鿌lK$!B7T_ E>Rg/T+}W4X }B}58*+sZynlۨ=@3C|o.nVIu3ѫ Ady:OعB[f|ĞşxD<`7?cm~˻>`` 㼻:k=0wJ~$Hݾ>Gw N/F+NXHx]9Ty{K9-z*6gD3^oeȕo&A=0 ) Dv|ό8r^zAy=$NlGԌH[hډqmMTXg hdBjnͺ3H^ם'f-ڸ Hi;K-xZk0Ǝf[okON1Jv`n&;|?3;~?>!od"[s O^<09ח:[UwzW8<1+a 15VK@a KpAQMiCG8*џ<_q2οSZc[o5*D]~=),m _}<}ZPMG]:)* %NUuoX~GIΫvh{2m l% <r=ֲl_3%_3>L 3۽fpF ]]'B2ROœm[cjoIk/p`Nm{ˣʎـ`*z $`D9{]6W~6#É-}BDȾiyC!l`4ެ_ֿ}kD?ycuS=[-3AES* ,rknǍ_ve&S$79f E;ۥq['%c`&bG,o `,h{j&4t'WGC1\ S-*@_H3,?-'C^>JU{]BJPfa_^Q-h ?:э p_fdG_'3 k_w<.#_U5şGu4=扎'5*$@v) }4qys9/rƫ N+hJ:C.=eA&qXj5S~CL$lf]³:%l  +"ޘއ}8YbYR[HZ'? A?-O`F78kmFnͺTwײw R~';nMg7c 1 ,T%ow["glA zt&ḙ«@+ 6ȓpS >2WVo``-ȀUfċ&U [YےagIQ~K؄9tO 7eQmځrIȢ7hx9kH~+`nT?紪ul,-ɟ=XlZkݸug 38[4F/ ER$ :kXNo{ B<gwcLs3`LO``~ƛUz۰S,k`0o#r룿0ϕI Ͷ+{ IDAT0l]o?뢘gfyi&,y!;x(?굄~5WE:7,XE ?+B+'.*Wg#%͇"S AzŪGxkl,o_0ًVBz+wͽ~ ckX.$5ֿ Ohur7BsRIYN]*U1śA[d1p#ߕ4]t1 %7ʮf1K:5myM_dZ3ULX~k,^6x]B/" 5S9|@2h  ;I~6Sp ӗ~> }*y8xH5>R~on/;='?K_C-)]K9ԙ˒زKGW R# g5H;dg8,=IVW>*t?UlRKO.M?}N{4Vcב169<A@eי>]u. ="(^ި=Fx:# DH e耲S >LHB&Yudp`€o4MMeXbTHрbZ(gCIr;@Oۮ&3׭̜fܞ&:5J'fn P<~5S{^ W+Y_3iڦ92gab<k1  ~:IA]R~gP z\-(_s<-%>'Vu{![C(h9͜ \쇾 YK͔l#xnҾ]h3Of8EdP//z ,-(LPhqvFŎ:TB =10c8D E.@%!:FW fϻ_fovC0c 煹ߪn<_cXk@vٽm.'eog&]J +DzÀos~#&B\ogciŀ;wOp\/u`0ĄBI4X `d/c#BNWW3W^) P5zq]6o̫L%¶ -I&k-<6 Nf !gOOE=v }7Zw{ެ(l__1O(,iƿ# .+Aů| FпDT 5$\Rmo~(lbԄXQ^p?eAWuŀBNP=$hU-ҮHVKr> y-h HҪ"L KdaP$ ImK Ml/Hw?BOn ~2>cSC1wa.lQ7>yt}G|Z7;n<㾑 㯉~ "kpVi~/9Yꄑ&P:OEF P,{=Tt"ԼaR=8( >KD q* <]+ns yrs+؎%"1s[#M]_E]f^sHi%#g{1žaIk6W1'3v Ow{o诿9 ^1>!p5vkտ㿰6F 6sL<7E={lN481c^1yP9Gϑ&gcסxje!x0XkaX##kEØ !mܧ_ɝpANHX<S}N3| 3%\Zƛ翸*3c0q>T"\Gx\C`fN6gHlv2׬|Cx`ox0 !LQG<4}ek}?> QD=A-r^, .ҫo[‰>Vu3{E׃D0ޑM<( r9uE5uԹMd!H4t@.Cb_; @YX'JYRRk&+}Y/.R lVա}Uzy`[N_J~ V~n$5o::gDVO&NZaS d:pD71W-D9ol$׍ L:Q$Ր⬊=Y M8y;! 0sEV3Oৰ-ϒ|v-Eg{1@)C@an*;nkD998>[C6R9 }/N, '{S:Mofdy26䒀7)km@RN2`"$lPMHŀ!=+mq씣"Y`c8I `|I4$~z,@rFCi4e>s?Bnг;'ϮaсU4A +m؁/j$R, x~/1adk6LU>o %O0MrԈH rg@B/lUs&z_!Psf[T.{a4.BT`:hhY1B]b7xDнv|an+B)p+gOt98 ai2 7e*chp4$ͳc Q#-~M4. ~ IosIuu_d:zu0f,sJL0 v(*=(pR`Z5UE0&$,&Я  $Џ 牋O&"AV ԚVUvpǂY&Yϖ E/z4ږf6;N 3k+OJ©VVo6`lpl? [koجu;4uAߏ'.IlD<%[5F/\܈3KȦ6 <OGV߽'W:~ hS(Br ss+}B)x%8 g0 vE3[BV +@H:qo5T 7*/SָKESP_33ۂI_m⃟>' ڡ;BTկKZ ACI,Mk-EϯTu5CR):q vml{!34x8Rp-p_˿$C u[n0+Um$MBogzq$Q==je;iFyIXu^95-AqAoS@Q`Xz@pYjr-!Z^i"%!Vf_<^|.2ESIexzV0xx}hzea!h-kӎi,* MSI³%Ow}w6EoquRωaA>y⨰5ċ<2s4ݨ :' 8i + ,ۧxsJi?Hէ6һz斘Buф#p4f;޶fLzB+E3`2r ^  I v> T2 w uǹvK:x;WwZRCD !$o\3 ͈wB'٪0r!һUy ᳹㞟xp]z1dr%jPc[󖃖]bWԂ;WGx-4+X< %zː+$N '7ϗ@ƹk3 vG997h-P4:{;$ n^CDcvɆL䶪vª>xD|/`NzSr`{~ۑwD0', jZbO[GMW Zkf\va{s 씃6d믛M=B%} P6svlQ(p,\B,j!^ܦ*]1;(:51HubQ<#/(8p/y>lZ Rhp0j w1VbrQ_zF;E"f*72Dv:: \S qfc"d, s&P}$|K@*`"3gvcQ$;P#`*`eBIm@ }-c%M`<!up UULh.W%CpLz4vZt˙ #lb(C +v$/MV1{018{zA%Ϫ_D u$snU+~~3{Hw:t/qb[`ooum}g]v/af Tƍtl"Q<*%'8 & }'̴#&`;UʓTn#T` |,wi_ Pٗ+gM'^sԑ bS=Y:ws?caZkxT- [ND(z <`$5kĐX$d*Ԓm5T&~gӆ-#{i-_/n&! 2+Lv e{}5/EY ZGHSظ'p7+*O2c,I&>J601ڵr>eeK}Mb9G qUmj5{ktT9+93mSŠ9@_#Sk|{w0ƫFׅ52E;"TiU+*mZa-h@ y-EU/4{8jiי`[łŠy1%LoV<ߞ_?݃:52;lI: !C{wϿ\d,Zgh0@:lRec4N'VܳR7~cOjd_N;Aq`7;nγ@iHz<3\&kxI kkS&!s7^L{G&U^x0kE3_P7AI/M!؍TʤJb33Z/MrrGBD8o߻Gp+@@x2Lq2.B)<Ȇ yPoS=Un-]\n'0|L~0sKQefF|>=~MrR */~Z㾭u2GaS >nv5[w9 XZ$Z~B0P(K'q+z$]HHeꂜTӹ %$Uv]6 WL0oCpTte6ȅ!BB0W<3Q:L+(Q: ^'>N緦}7,I.M5CK:3RM;@%d5 B KkqSX49ځrDD5=E]#-&<0rhײ9D&]>h6xŮĀP߁#z~ay\#,[ZμI6̀1oy l.0MZVAзc",Gc K5M%W5Vt4V*4XRyd; # xUoo|-TRZmLEthl9 3+pha4lQׯwyzzbB:R6(fy8`Kו, l2)}f`;mb[-D㓬R̩J?e7FoWQ曆-B`k)ḡT Nedv`eKlz(8h)}6zkoSqp$RYk;*h,4Lϲhz]VYׯƌlB~i˲KӲ":؃R=o%?L*n.0k]z VP?5"$)Yy܍.yEW>}9tTyw_f!9ws쳉D bÞЬ3A!ΩֱTux‘zFbD&GwS:Ȟp@vRd<&=jxč:V] QCLd? bl©|c9fL 1bűF::?`tXz_6OMFGJ r3d1$` BeK]` К.]Gy)G!;]ZX {jpClfi_]HfTif{6jxz$He=VڢS!Qo9]c T8z+z'[9n{$]W /?Ґ9 Һ5#R+פba !"+\B. |liM 2K1eyI"ok|NqQr?uqO!0yxRqK%Vi@ WdTa8A.7f?^E+xK*ӻ~uf%iIA]ϭmԨxy(+?6'x d|%\GCF,[>e,ȉ8@_4 Ml7ȕvbzi~C/a"i&1ILgr/zh'>OqW.Vފ pl 9̊K@--(a>2- I|MXQd U6 `C%#rz#6HӎQ$Z-<?rIo)RIFpEbtf }@d=<ح1<:{^N9hQ44#9o~gxuH>e_ZiW s*kV[Vliƿ"WrFCa~"5=ڃp(['-șw [+ѡ>:gXgnk*CdK:ک,Q==b>vp0="NEA*4 \=qx륾Va&3c]c$xbC#0A^G;>IJ~+6Uyk.B@%u-&[[|_2'Fm `L0dc\[YzKfun,Aͯm9nuR -OZ2D 0S8PJ/~JIx rG7]< ^npM 8t9P{I|1u7>řMB߹$Пe Ay0;MoHlrqݺ½2-"KƀDb\QSēw(J(,_/ 0<+/`ښuၥj*"zP{XƄX _e%n}Gk?^H2iguU0"]so sYy.[e4#}Tv6Я;h @uuPK/d!ܪ>FT h^m5>:* lV:;/ |N\ϵ,!<*6t!n(#([Z pbjU:OIc *LWGɹ;0W8%4Ӳs惘k`k>쐛g_<* aE 1h 辄Ij<*&[gڢM'T (%,wPU$e!T(pFӪT;`vS+,ۆPsOjp=ֲ0FXNez E1Tԫ"؃8k AD xhk@2t(W6Ct$BJ!hUi|okKK@-fY0\\lߺ%nVut*2e<ݩY:ѡ={g*# 1k4WqN*H I>:H ]iJ/+bl``Cu // 8[-tmP 9emp64JJg7F‹̍޷K(7jI)?tQsunb Q:t(<(#T"B0+ +9̰.ZЅv[g)A]v,B&%Rld٨Ȋ>n/X5`h5y5hU#9# Ǩj{2 By#ʦPZƜDd {(i(*0z:XeY:t3Ϭu+@$[ !l P=곎g[%a3LMgtw(s!{j\(D&Z3e!X#;o_gisB*i5lpEU<&xCV$Һ g$`U( 9 x Lcg!RqS#dTYc3-J@5Է*^r˪r1yk#F g{uR WKbN_Ђ;#fmkn/T )/?;eD&+3ЫܠpNj:t͒ʌ6!LnI6Ix ,F]VpX[ )S*uYj:EyIc`sDca_[ ttx# =T*w[JeF^^<Hp>j̹mx9FPt,4"$sVhgaЇO,LQ޾Z u/ڵV޸(qEHUyN8/ @4Nŀ3y\-)I#F@ X/W g/˫aU+@gw:tpg;ʚ\txY ֺ0yhG:O9EgwP3Eۄů`"cdxb%n{!SRX =ƀ2T&z>r_-?8.+^²ϦieWcWxqـiVHy.LPK@7lr|I}G&AD5TėSCľsB]a냟j5n@-3nk@_ECE lK$x嘶٫HoD+rW;]MwyL/ZW˥Ҿߊ3¶FUE$o dc~k )ŴK@ǧ[[ SQLUEόQ.VRh#14S_m<7.q7K56umjAx)nbnSQco'$*p%1C+0[{7Ăz:ӻF"={| h3?JP;'%2,tp.'' $1_6->`ly؊jat~ /@ ޺X/|]v~.[=t>QM/LmCY&("mN5Yqț *F.0H |(u CK7- %<L_vSJ 3oPlB!p7dw01 EV1z_v(Pt^(b ڸ[`YXp@/P΂IIS: )(C*ةўk5C]̲{ ҽmEjHqo_52"h|!wdS'I1`G){JIqԓ\yOr3$A8g6Jfd-C{tTd(`jC,,7fG" AxP: 7wW6UmV#Ma(2cZD4K aµ`ȠWf+hS4:[KM^ɢ-t±r[Pe 7rл  !75=mgyLx 1g76%nJ8 ^]&c)4>3qmzӡ }o7~#խǤ; nO<8Gɬ) 0wT@sJ\m!8D0uϯ/1ߓ_ǗT^b{uqc!F\TME`Λv*27uR 3 1;wԁS3r3p{^8b2])Ko.*${1"1| O7/ P%Âqe *!:Yrerlw%E|뜷 lp߻98nT=Eog, a"nܐF`ORR5#uTt̾~f{^LŻ:BX1G٧TneTlBp+?)vYYq4}sdi3'"E9;ieye8c{ ]=60x4 9$n兆WDZ`' O/(e7CȖBN{C0C6 ,,N!="F_3:'q3PZSC5OPu1?,=1 s&f4D={L@S}?+fog0l0b0C$^)5ª//m.chxx?K2vYKN&4:&Z,==/jJ]6}4Ƈj_cZHT&XhpQ&bb;P RlZ 9tzb$斫 j*{r(`p[Go_ U]}&#Gs@1HnYoiD dvR^iIϴ f%"Y_9^:zgy(ybӣ$'߃Loq"ߨ C;&>ٟ G z8s#ܗzJ(~;솇Lt*CEP4b uvҀUeڮ~$!5{k>ao2b `NL2kyU>̊&}O<&}og_ه Nu3j)=%~'+:hᗀVбם S9K7"j:82m9N*jW>M2܂rTX|NqAKE[i_=ixȷp;s4 mi$Z>3Bɤd(``2*M- xU 햱ҍqF^ $myg6qhDVȋrrT꥓x~N?< '[U;/:d1U2cE$Sd Us(z\Q5DZffR 'rG*{'xLɾ ĵhuΨq)b4 XK7,>Oo_x+IĐf)xի{JđqtF!Ӑ;պ^#ȖjcȪ:Tuk^`R;V|fvdwW!6 R[ ֺU6jX:Z&lx)Z\ώMNW gAUH,J+h?M&F5KY BOQj,2~$5dN J}K3}>vTpe:0SX)ÅbHe$*ĵ٦V4 Ce1I|5S_ Pp} q>414RD&\a  i\> /;&$)u%r Z xkk p}|wdz)gj\e(k(WvlN Eާq$wu< F7ܵyNL_ 9ALy bdMCsz;{Ayyj5GغވwFe3,릶}r)C4L@ KM4c =]1$$-hBmuEE>܂EZZ a`ubHvZ*.}'^ݺH:aB1ucȮm6*&P;?9AŀwO$2ed1qs)s(ɸ4("{R'|:\컼ϧ-Ϭz2QNlQԪ7$}O2!ibK`MLM#P-v>>P2%%u,|"dC~/~^=,-]9 sA]5-;0tߊ,גH^( 5VaoҦǼUW`N ^]n(mU 4v{͙g $7B2xۼ*ЛHł1Eؘ j jڇ4,aֆ aJ#4S3N9JO,Ox솟"qgpZr'NW^0O6ka`H&ۭ*L֬oi Ĺ~ IDAT'7>9Nh5v?dc[`Wh##I4, jj g^ Dz|O`/ه*OԦoݳ)~YAK; s 4=gm 0^WVS{,ky^SȻ@e*<LM;Tdm.HE)E͓§{_HggrfNU,eZ?*$m^P+Km(~Hlp!OȚ!Y=̹='\=G֭%?!Yx&[`T^:3I<4< ٣3`plÊ>E*f}9xg'&P3jQ@!*QQ/ #p[/3osy^& &i$~ \d0~e= TY؊bgѹyT#+J^j5U Ԃc:+]JqZuR1]%a'^cn%U&,"jEY,e~.DY]=+AAy/,|F~G KP` o\DJv+ WƔt蠨YǞ4: Xp2Z2F-4E92 pUEHSԛ'Sǥ5,y^}$6$ Iș\-%z@wMK0F%EuW奄$4 bMRi- P rE*~?̈لJY"}maR >fPe>7jc5;ll5wŀ5ﱀ~kt裰Rm V_eH|OPS`< EUϤQs*{xnNn'b,VԃKܔEB5+U*_#A䦰 s f(i*$5ֆwCT. H}[rx6?/V[6]Dej@}y#ly2~$=.S15S$-Nh#I 8ңZVJw[{hM (@Y)VQBz9i͍ͥRNa_Wa$72KTۡm-l*|isN=T^t}v5n(F݁みHnP8"ؓq4hKӡ\Oz6ih4r*;Qǽz*^;gNyp;KNM5UyPZ$~8>ylX394VV$7EEvʒ>`F|؍}y/ܝm 7a_O@ Rg Dޞ)i&H(}0s#A.&/ 0?vVnur$ Iy ,3W]M'- Y=2~~7c`K'<WȂ/k"؇ri,bwlrVS"@lW+ӯ|妸 QV?Mn:y#*8Ot(^S!h%Rx~S5!_z- 4rY!Y 8ÖT:<̷4FEKƫሤG!1s9w@9ZT3~d=Ing1?|4[N@bֹZ kd(=APTeS)c(LXBf&sZD/5t5myb4kWA*í@c$ Emaq_5;!drl! .?.!M- Qr3/t P0tA%k6D`,_2Kiz_},4- ކlm2S(: /ahfqy\~2RSJ.zc Bfr#V2Īu6ᡱxmeu<ܺ;@[і׳0&Ä`ܵ)wc."_gMԥN+7' `Sn~;PxltJC"09,BDAOJNBw*htPZy|/5Тt,P1|̼t?t9`1.嚈f2ғտ @9-SXn:;ȷ;:l0=p뱱J%&N7]!?U#.ӹJ K6LqE"Y$)|IJbn ^ 0Lk Kg%"SOѕ<<ԸH/^k;Sz42ʿ 6&F%*QC i8XYP\Q4{nӳ>IŦyhҽmX7T9dLӰnߢwS.GF9Wo {E)_ N W.OBChXZ[flYl~l~bqW$$f Nax&Y 'a\LTXGC%8ƃ6/ׇăН+*?H`&=LzIKقڨZ{`2iY4߫?sy۟R-  ;=rk7gh`pX/⃎թ; $ mo,]Jp"$] GdNhmځ mǐH1ԯDK]H`jvMĢlX֯MOoz˹Jݘh<~f5 NnJ#~uM!}ݺ@{ՉY(r|XcY(0-:G9#ԺRAĐT&n[IQ%"qa 5ۂu\!N-wXtWחtl),gO~t1x$|%t:^*FDʚܣI!!3&U) Е :)Ԣ{s4+;UƷ! M5,RNŵNp *$mv Yt6ϨjL%˜Qy-4g.TT1iN+tNג^nl2RKCX)cYKga;˔1)aUhL1~]e 큓$4|e79F3F#:IKس=DvwN8vE_zcԱ]ʪzr {ܞ<ݢro3K:+! P/EFS7 Y|[*S]]NjG'Uigp֑^nؕx t'Nڋ/$zYtHVɢt G)]Kv~"bI8ƟK…a7 a>V>k@θV[TSp* N*$!xMoF`Rxˢ q5p %Y߽}U7rŧ MkVqV*Eޣ'ἤ~;Jy*\heQ;;2UP%jЫٱ\L͉bt|rgi/X6}UEFwq5Y[N62Aio2xϱdDb)DDko@j:2S׆lok.F^}RXTzPå:c 0'rҥmbKD7Σk 7d pGU$!]soL^[>k6eaecfy?#aڊA7+ƐF }SfYyV 訛_'6,l d+Đhr_ ,B].sJU{jQhL o4_.hjZ}Z5ImdVZiƸXڂOg vϫB> M5H8[#xWTp n9zW8:нrX6Ȏ6N[2WRUU.}Bn&%\[#ibIŚ$?+ȴppD4D{@B(L^-*MI# ;뺜 ).@H#jql; ;*aCe$lpEYbfs'`̘9rd]%.O{lcD"ފVg;j+ms$[lMF4+ p'AgЭl\buz |Q#-{mЈ =nM2 V?j^zL]R%9.N.j5ALQra/0n- {=AiHCō)[FqHhǁ.фL\$BqNYZnS C|.\ `E bX݇}{Up;Rg~Adɋn}U$S=1 ?kRƈ|)pCOAi5G)iHנ!p)kn%oDaXEՒ-J5[}.n]$GlN:m?k6m| }sxKdoVjQڱC?:7+BPLPXٱqjj#Q>q55 {͍m<(5#LN 2VRDA!'LJ_xv?Z&q,kB|X#3;[',K%(y|ZϨBJ)0fU"]̷8=q`IC^!*UCu2B'L߬\gLi, )Ò@Ľ*ԫup}'XbKfs oCwL-/a ^`u07e玪)\8EaGY"7"ڶkCK7lZ& G{J)Lqz7^Jk~c 0f] 0`gՖMbd>4z;ܯ/aҒ=nzH|+](Bw 0c&6 ܲLoitBI? <˲.>ESfQ\)o&0ߑuOsN3+Y~4D9e%ࡾ YA\tiπ&Aժzvg>d)5OtlްC:oMܚX܋ ")Au]ι5!{|cУJSCW(~%Dy"(N!l৤Tج[ͨfa320|mH#ۿ'kVmk"acmJ0Fl1GRqxVu(7Q<9u.N-[Zt$p[WGKN\F.>XX/yD}#5zzqxDrz8Z@!T5۽nqvm9-B e\=\_e)3TSQ4*VHODNgIsg}e66芽]mhۂ<ܫ졳y%E`0|ym(mݤ B=VzηO ǔޒcb8+,3@D?H*7[!IDHy|ur2 +{pH?.ĸʘ2\|/΢Y܋+AI6̦" Y@[H0 *уZ!}4*E}(/Z}8KMLcAnҡv(cz)9Yht-&|l:b-J9/DdY[#D5~Jѕ3,g ".1@xsY9&}h b2bvJ}J@pÑrSUUzQ'l;36eKT#jhܬ~Ť8Fm?S3 խ ]$o9ύc'kdؖU 4Hlr"~T*U0Y |aqã^l<1G[{v"`@*2(zffOݗV= ÿ²gVn:[73gG:2 6~ )Q (ܲEom-VU K-KjNq$^O#}(5zSլ5ߋ_@ɚzyOYYDx]456  FhH,Ĭ2@CC7Z򠕋aI 3zh@حHR~ޒ0 IDATj i/`tUq*w~~}k7nW#ْZ&4sM+!s(o dGS$:ֺ"?HVbKz=E-%uh Vv]DRomep&eYXI\1߮nmƉXhY%jzosRCyAkj'S9ęN m&<-OtŐ-:U#ϡVu c/rģ83LXrn~S&ކMix".y׼.@Utv~.ݑѿ^7Bѱ}lP؃ )dt85ƥ⼍F#׀*)D.H1iOcS> iWܾX-. qv6s149d"ׇvKE 晼*Ap~CW>6¿)]H*W&0'Р0HpF \/*\ѭԠܶH~l1@w"3UVWތ[ (>B@qEP;"d]Gm]2lZ%YHHl[q>հ̍J=n;J]ɆmS 60-b ,}3tZN9EL zGW<3q.!S8QN,6ͺsWFfexAP7Ut1)LqKɊ,a03zh.hb&k~/h).(8٥uO󝲿~OH lK-RwB-CDyKtc%JnItj'qngqs= _I UQmxu4&}ghgc-DYbHqLq"+Ű~Æܛ41^^4,^ZgL%; jL(cv zLBcH$_!k 1_bu]ⅇPbSFn3in7 L»8aT:DBՀgV4I>\JfA$oOZgvI.6ԉU#h٘ H`kBa cbA>mzRvE8 [<>"cp^쳴E ,gHK^m' pCNT~lxڵCqwg./W9>dc#W% V5^X뒿V|D?eżMكWYxݲ# ye|}Y\rdF$.mE҃ *0%Rp`GHhtw_d@P?t+dCmqY)B&Hjm%<9Ņ=jbĜiFd u/Sx+h 3o$`#[1 Ҟqq!a$mͮze 6 O ,K6ns ?ofrlwOcQDI?VRNi9'?!-.{]|gr4a31S>/(Xc, +eH뺼ns6¦&8scsM uh.D(5OsT~1]ɍ܋_k4$7F@T3@+,fvWQ^ c an#Oثڔn iH1P8i8ŕbX5žu].Atr>F6;ҿd@@ '0:)PB5wdA'Ts<iGE8(R 1;Tt5O%6d 5r=WUήa  TLb:iU* 5_$F&603Sm05{5+AјI7U;~UG-r6h{}5հCd%}'%RtHq q[mZ t 3UEwkR g,υnD'SfwsFRpJ1ŕn [[bfv;'jK~QW"d(/~wǙ}1:ac+Pܴe} 4(ߞmnH6=ߐs+"2\uTS-:`yH- UÊzc^> Qf8ڝ=>#F r aUm3_G*K/g0`9_L3pErX~!3q.gHV1,C(§O?Nqף»Lɾ㉉}.TӼ>3QxD};W68?a;,U plŷ,~"mz\?]@K̎c.,X(+ A6qvMzN涀@C̶8Bk2Y1eiq~С{4 af'Z'YՍ̲0t} l7]Dfq*&u#mLPEɎ\e;SLif rH_/o aA9Y>A*i6g(E"@?|v0lA_بʽlQKh6Ufýɳ*ϳXUm'pac+1X,{lQmE'嵏±8O4`$'>mhy'Ѵ[)UqZmymfep֑85pp&3x$ڒs3ŧ;ޱ˅'F4rz;5-:,>SNdÃC4ʺ`D(&:,aTv{־HST63v$H61~t.N}|EG?d"Ӣ66J"n Iv iqP]Bt[}5FaOv+iL)V8'R g=5Ԩ>9/6G=NYKfJfϐ7֩X3M<<|:S8Qĺw/KуgӯsRH[6pyO,>Ṁ]NfE,' ՟4>L >V5uq  ))9)ŻWL͝nK dihz-Udh4SN쯾š2-A؛}fAjZqdwaJH~+= Y+LV&bC>q0~H`6 O2"g94枖1=20-!j0}lKlo0Fk;9³WҬdLO˗ϴCfl9E!8e*L{oxE5p*tpf薺p ʳ4aHvY*,^g[ͼ,l CE';ȓ`>x/6H[q y.yl{W&ɻXt5K Ka Odz0}Pȕz.|T&&զ([|Y&$[7b{_$3WiqH,}7Wb;yXіYu3ξUty;wn*G @Ka:D h%"4',ھ{o`c $?-4"@"dpgA{rQV̖${)VN8M{ B ŧMh纪6ݤK7U\.ϢFC &Qc';1SJCnteDz芥8Q!Gx]}kCR`TvE$xA6ՈBQK&PD"ZG_Ar* (m%W⁅fv\gc5.E<.Z}g:Z}io}֖!&| |aBPvW EtkLqDD$zT(,=J0@X-3)Kw2;ExT ̂O5Urw gItۣ.o3ݩ'p1Ex-whzqL?2Z։TRa>s'?r}hK!gXr UY#܋NS"mpɫ`iX_؅&:*Rt,K\3ݥ @ΉE{^S6͟ӣpv2GW}%H4x8?IrxA~} @ʐL^*r>,h|,jeSfQ\)۷ Hp9{<#3+7)V9pT2 ? E cY1붜!l`6]niw 5f'mbR)?ÙZAQUR`q9|CL: "j(N-8C:W ./.:Q y)iB;}{i`H=E67Y0Jk{6bTgݤғRf!·sv,KB)lww9`ɳy9J88i^h CVMVL$ 8:%-p[({ҫllGol0<G4ǂ<\Nzo\=̀D<7gSU 0%u: Ґ+”'a߼^X>c7e9SVr_=]eSQUGȭczۗr뺼>_4ayJ"Z/]u\ ZldA w8Q"]9jxrÿ'(@[Gҧou$C ;Nz#RAl>\R?[@3sghJsX\tW9ƲNh3OVd@cLxYxGCkCYUœ1j!<̑^@%IH$ {Gǎ6'\0.NQ1{v~r\IDv\=m# !Z^)7x'mc%pl(@VT2$)E,[nRBwO~`T1=qK'| MO-f0hBXg|Y<,+Hjsa*DA_1 IDATӋdX"bP. Z CI#8о e$虘+ʼ#pjxk>//.JQC,]WcENKp^~XPߪeܸ2>%@`?tO۔-Y6αimQB*͆piwmvn(,@q>ҡ&bu?5 i 92o 8Xo<'2s%S5]n7Yk|846'0A-6sקǵU!T VAYyk>GNz=_SVel+P.B͚TskRqx7+RЀ<Gw~֛u#U28ll=U߃ֹXAJstÖ8~,__@&ơg$1A.4f>)41@FhM4Dr-4넺B؈rw8tW_3WR-%U[rFhkבE`(0Sn vx۠X [Aa^0KH1vQcdXa̡ut}pƀZ , A%s44^ ҥG9,buG' FqnE#{m. _x$"@Hew83M͊j4?#(Jӟ/Dn y.[\'GF@0R/5q/ehƙsNtyF^x>Κ]4XbSOe}EosQ.twjsfEhpTTHiBHAybNXWLkR d~qٚ/_T~g~z}p; vcHqZ,9,]0 =\% >)@˅E#%v%:X^`xmл]N Yyi EPd,Zܑ!ʢ P\PHP!TiCeE;>w7t!LX̪t sy7R8CÀ,. $4\*8Ofr煺MGhvTyaJ`UT#!`/=I2 [Cߨ"sp]_ f5p55wإx]Jt#8͉?:of(R4SJ1_7CO Hhȅb=~ݚW"ְ,y[oۊHS.ýn)եoA5l,ւ;16K Eh+E92APO}?Sk@flXE߭Rx$(X,bUKGN=ǎ>Z}w9ipԇw 3}RﲋCԀ.E܀X7D{2 t q%1T7GDc*G=p`kS[3yBt-C15^|*FSsf|S9Xbf뗷~+d# ku m\Ӓw[tUː=Vd}I>|&zu)' @K8+;nsśE)[ڋZAR73,a׹_&#!vnWӖ%=DJtc͟*u`tk;2&)cmd9w*;Ѣ`f5Zc$Uߐg8ab2W!' ^ky֩߆Q닮_܈p^#B.+=.fCy5 V"d `GUh q&@e:V= KX lHHts4ؽC֕ߛf6pўYR5K]?.9xkO,D+@8ps:3DɢIsV:EY80C|qd7=5xmǫZB2BVDrbA[ ghN0$ɤ=xN*F KnnQ+kj>6KւlE?d ]?Q R 5*aD=*GDWafBe#E' tZЬ\ҕGy4ke[z&tü&s3>\ꔒ--fZ@%%nmA^z! zxPW h,Md %d&0Ʌ4dC?u>ۿW(K$#L JN\G O:Q)(RQ7a|Œۍ}\JVjp)4^Ѷ-4k?q{7G$Wf hwߴR_EfQ u]uHg0IB84 wNc%7^#(cg2bGear.,y/ˑ)hФu>\`rW0 Ȗ8Asj kS?krl5?*b}j\UG`P硌_di/ s5pCh;V.7W^Qi DiҺ'Urc}8|QRb/w'~ەIÿowq/P$5Ww$Ѻ2cFOSzT-7.G#1;B#rtώpj_Vz㟈Vܳ@vxd s:5t|K!y^ f8q/U":W1v~MYaib;Md8)~:c+fX1;le!lNF ܮquO1+aNQ8u"wiU E[$7}1y :~h*/UI*8ٶ.OPI`#j+1{Q$$Fi qͰ ܚ#@N5>}Duf\Ƴ8N3ʼn(]csc݂VŴ5 2FPq'Hpu+5^`]7bj ]ZA&uϯ=; *S3~(WРB0XzXؑ5m_*n:dq_Hg6WhQ=P s ,\ %oQ\ʽWrFgHh/@zw( %T*ǾYGlj­.uC2@5p:z$DdZ (W(&Ȝ1x 4j-T@;~zN&V=NץgQy`뽌!qKi^h CbUxPI !Y2^[ އKS5iFJcw{Tc1wh`"TJF.6M_I9; '; 48{gFF7O!52s_5M@]E<%s+; -8$T?Eà](A4}oMKq@iktsܮʋ ?k0z~D~-Sʥ$tMְn2 4{P$ifoת pz$2oRtV' YVl]J"S _(yfb#NAGS !T}ȃ&bGq 48? GV|:l7V/#b3X"hA,M4UV.>!BW0Y¾e曅xU H{ݛQ` (qjG(3pes6is.Mm/~+`D{'?J8a2zV&9…Aq)NDqoێsԏqACJD+G{N?h7 hR"6FSj(iM˺)Y(Oa1)l@l\ope/;ogE_]m]Wk{N o. lQ]6eو`V~ <5P5b[/)Zںiq}4h0F +IPⅱΨVtP"_6/g.JtW8QB h]3#į]Da!ql<, ̟]_ה4;o Af޴p n~ KUX8=>un^Q||`gmƼڕ/ckJ[O환-NyT:hR\zeה1wڦ^  Pf0Mv ]1AbظU2P0iОm܍7[vi]7Tn|=lwe+{Ǘt̴BD>s|4Y@sfmv]]1X^ḥBar[hְ-^4d9Hix\˖#th!,Ĝޅ8$}r̙3_Cx\wşAPHJ *ߡ7c")JkgǗ8[ǗWY0TuɲͲ}|dŎS|"`nchRyg>H{?\:xf̗U YWGw/1i> z\CV5*xVUmd5ܲ/7X+^r(uf[VDlW#3&Z,m_gP;r#[LF~PD0 ϰKaYwO6>+ģAtӭ*HauC.tHNoiTdYMGLnS? CyO#%_ TYq^u3ȃN'Hyt붳 6c@i>2wRD̕Q6_7RB-b4[8 Z& Y#o<$ej73bݐ.l总VhEW7Ѻ }ї1i(;t F0n@mX?>z)egoAgAb{nQ}$+5W?3W+'Lbh?d M6W\h;(Nٲ&*:I5?n}R*]J1ߏȗ*Xdw  G皃 w2_9i.F%n~,_ï8S@r@,0 sG=yρė]˅t>k:O9}.Yk;(1i KD:฻ 7jp82\Q"E Hc>duW_ݛEq-RTLbM.}geH{4+,cBf5}#2x_D@Њ.&Ӊ_Л)s|1sn/g#iLӼ(1':ϖocsG],ޮ)2L7 "IѼ`.ꗑ,=ioj?l-Uݸ="5NK'<mX*`Pb Y"@5vXϞyw.۝/=0jAZeْ/MX'\ꨑ\˓{ptd?Nm_13d<}*'7[`]}N}\P-^L%+ z =גsLeZ acdS[DfI#u@oW?Y~F6W@3/¿OO8{.^钪oY@՝=y/0$7k,xd6]O (>J٠٦/&:?z*GثiY"Z( 4s8 rLJJ1~crȨwT4~mL2sV/#%>]sN|iڑr㫼 h9T:Q!fX J,&$@8ۈh`rlpH0ⲁ `kپ/ "yfPD$IGZ"`Nd)QUYL\Tź!fO뿤ʲ(ڈԿ[ZqQJ2t87Gx$?ִ_}!pݹۨCd1>H[Бzt"͉DOM2- OkuyL8hg /6jw%CG, |y! Up|CE3 9T:ѻ߻|m*Mfܚlk-7FDS]OqA>?>!ګ}FJ7v 8K8i5MPTZn/7N-=^4U135M@GwHyѡe+]Y|SSY?}D+Ms7AKF~5NK#c]qu!xIw&V٘W(*F$m->+b1[)p zPEm7? H4{x[)2v}˫J9#yybq4a.&J2_w`]W;Y Qj=O>AQB h\~Pg᷅ ATDkF|E^Po_u- Dq"~鑚ڭogaMf h ?#8& 9%ʎ`$zn7a^NQX|ڡսr<}tr1R 問^Yd*FR9 O@8*oLs}P&GtYxRBE"Zż}Sny^[2!h>v v oA{$}(Y}zНOݦm#\M8N4:K!d8nUTa!ps@t,wIuZ$-ܑ+l[oM_HDrbܦ{h,x3|_5uw@e?nkp̉54>{W d%ÁNLi|6cLY}?] =W%ڢ( 5W0R1%[!:8/#dۣ FA' Z a03i Z HWܟ[_P$G}" IDATRTPl48S〽fyq JuX<dV̒> m]X&ʼn/N=s^` :]CSV#y'az:aނLҊE HOH '9ZAۖ Z8ǵ eew=P. pdbɺԛ@dfՓ:9535(]}"M_0M֩<.oyڙ+~m[Kh4DWs1~"z=C 1+Y;M 2Ht >A`m*.(@ZJfdy0zO[mvsۓVsm0ǓoRyo}/<xm̠BXgzXbf P%4e6Ņr;b19X(\N <2*yH:ILe»kβHp+R[@=?ӏJb^5nm_n&0ZFl\1gHYmq%n/[Nm:ɦ`l31a#  +&͗omp׃"J.r:4Z+{幥ՉqpvYyR mЮe#TKK O(e2L}_zX!mtGc+i ђJ2@ Tސ/~r|ZlSrup4.ys#KSW!ww4 t9|XΜ/@TF޴FۓW"emxa \$̩bųe0[]i{W=ʸ*O1 no"(* q ϯd1ۯN_>a䆧uid" " :oJ%6tXI@Z U n@c+#8],'}FO>%]6c6n4gw]V,6b2 y#Kdf0+0ħqN"i%8)[l1B4SG{>JaZ:XݨAc/+δJhd픹p6PːI8.Tvn)ONI} ]D@=n8[KmZSDXׅ- :JvWvޢ~g䶁"'vo&? ݌=.V&_pQɜA8H(Ǯ/JGTT"Vt/ŭt&LN3yj7+E@}}5y5XG2^ t냃o'iO6'kZ_>zlsiOGd:J KU(BY2w`ހ~Pa0oֱvr~?G?5_p{7Й\׆d#4j;~*Vɗ4wdi[\'kg0l2=]_(mO%7ѮԤP}#*"s%pFe{^U6N(M8㲏 W)@1eu|ݖ JfL[÷;%^(:MK?>xY% {ݧt7o;|WM@4B(tϊRzV jD./5h71K!@M29UX20Q+C=6{̬1 {d={u&D\]vv{NJzGahCnwT[J6 -]I_o""ZOwޢdhqGOqRes{ϾTӃh(n᜞>CuUd17\W=%[kIpP DY rG |Za<uνH1ę/l[pZ!׻^+ܑ]&*©.=ks>Ʊ{b2LJknm[A aOjR\L ^;\>n{sw ЧrZ:<{uFaM'j[.P_YOX58EWa帲qBq)y$CNKm:.;pJrÚ^3(=q, ph+El$jT,hx0gK}#FKqC (_J^lc2!p*Ӆ$D3W 3+_]ᤎ]1d }yi@DDqk p=+yN&:*X 7Na2B6cMV0Vd3 CyXl>vcSg\5% 0^S9ęVvQ4KĉNzTUmdbH8*W*Xj+%%s]"ȫG(N4}MDJ*ʖi/h@KrBb6; y m]=453:S׳$رWP{IӎyXut!ap(ꁖq0 gQK|EApPQiPA'0( FM,&3M_4:B_Oq"`{peG=n|yf"tl6}ݞEp"T]Ndc"HqO e:c0o;4&[ٯ $uAEK󻋃e E..#斿j̟1M_D 8w88Y4jnnllCTgEnei0Gc2]0`WpUI~sT=s"Ƚc'H~ cA Ğӆ'Qc򤂫y:+[{.`]L?D<}8!|m@H!q(t`MR8WC Ro_4t?C/ "_|\L=K*4Qu+ i[y2kKvRq92+N"XK4U89]"|2O,,C4}=r46s)F5 'uRd$ՇEt,M:^dd%?&;v& 4_,48[=c`-hvŰ ztk /pUuMV%t[mκ-?]M_HDfț\Ԩ1/QD3T0f1G5nv^ZtR39S 1BXP:<[ .{)'όE/\S>ʭknnu|*6/t!l6q{EFkR!-l]&&.f7*}r2!l5NyH=w̳_Q +~t_\êtkoxO(.n\F VKՌ[/Nq)NDqox pH}~P/k;X@*]R`SYdY4Zq69i^WykQ_>@SJ Πn>Ѥ]Zj-g+kم@{|P zKCŢج`#D awP|f4i(NMYR#a' R񏡀sݞ~NhH"]oןLloJIy<}C y]a Q#؍&&ˌpI]G3r&d`k*qZ(3˺|_IQsoT(P+/WFV*D+m&7s:)R^-@f[feEAɿ6Rj|H1#(g"rd|)2cG?@ߏWddaw{ʍMuu8tjUq:o^6|Oܩb+3/ĶM&(ch\Z9u_63^_-1 oyLEkK3*wo zsh[)c}53K ~U6ޒT6-.YK#H?hH!6k/ ml-gڤT֣(kߖGڍ`3qOqf)ʾM4%jTrc״oowt2̷6p+>0L*B{(NmhED?]@D%u;tmAa8ܲE(Vs6tM9V(B]TLDt XK3$}|~ #3tY,M"FTLw" PQ5DV7)e3>3/ qϣ R w'|(Vh=Bef!JO|&p$lQ~/3+r 9VVJ!~ol}Xx% UxJ1]z4.8'Jt@(Ӝ OGLtֱ$ ߣ'9ݒ_Iaǯ-.1y=z9B+ےP4waog,%ճGz&e\p6 Q_՜ `ehXaRh ƫvN6G .)#gyejk*WnDɓoϺ-$^ʡӬvlw`4F y{-@Y#*= _es"YFǟ*Zm Ҙ\mLo%8e3n7Ä\{%CZbHqLq"YkQqYR 'KBD=5n;BlB41̘H-ҳF[h2GXc;m K@If/ ,O6[]v-<bxlEѪwV zy78u %}z@((Q|oTo'mXaźjs1}5\Vh,$aD3M_!N2cos*b:Aҟa՞IA IDATA(ufݫ׹w'!m 85*O)V͘q iLUw}>LdGT6KYv[ꞮEJ\?"M_'_y^sm[Cj!2eX?ӽ"):ǒEÆ" ٟY4HqlX$:U˷a;K|3z/.is-5~c R,IT[{PRo'go#ّ)i;!1u_J<ٱ[S"4:PˢkiciM.h d Ks&<^eB.BO4 Ɂ=([PzFG7/CZ@f_?8k+ek0݋Pw8=;a(TLj1Μ . +lPң oK 튀_]\!ק z#xvS_ O.\BntG&4]C?V~Ø`sŵ܎Eq.뺦+/1QcՁ&5ʮ, h(ŤM3< ,@OTZ,E4i?qBO'蘩uGU9=ZMLq[4M\Q^oAekA"B I (T.jͳ^=}H}Ki(NEQ_!dyg`,³m"|pC9Z J \*kC&_s&lsL<:BoyFRIRn.sۡ]LݲUE,u! tqpd*w+Leh?= к `mieFዶqLq"+Ű~'2݅r2QZ,:ӎ4)HN_4}Dx5Q9)Q6G3(,&Q#Vh_L/vߖE.j3/zءXJ>pöxa]Ԭ>6dQVrOrPA&Bq Gr#5f#Yb͍IQ Q50j]p@f Ty՝$Q9zv%piGaqRI 󉊗6dEɼ/@)>u*xu3C)ę47wM~dxkwX]ϗ+8#A%/FۋP]ITp(C*ӭ7vtlˀy(6O.5JoZx[ Fd'8l};3(4 OKtW׋ܯ Y^Ư^5x@w\X@Yyo«+.wnM\.ɷXqhy=4s{Yd U"lPOV(Cco llpB-UM͇YyZ޺@O_]vؕx$yy 8,&l5,K9RivAI_.GEv ĕnM@f=a6ZxTֿ [뿦o7?֪#ĎFP mXYVƛ}g$ ï!NmK3JLNqV@ޔƳ >@DWO qƚb_5^"].l+=t+?k׵saEh-MYQLɧc+*|^RDq?s5ruR+bU{D[wzgl);[ "1g.jZF"Γ]t.Я$A 9}cuX97+,ó* |jpWiS !_5ɱߚO?R DUo9] HqLqn&A>*^Fzʞ %ẦCCԬVM'$tϣ x bWVތ2'.L4[h&ވ8#O'EP`i:DƎNW5a@4)g=j) o|Rse)[Ɨm}У/Efc7#8Vha<M_4 sYI0cvY7В1 0gMzgof(:k A2—B$v&dN }vФ_g-8иuV6}r1% 2o km'-Jz9ة+|L8oð`83|5JDZ h X)-["Y/xhVЯ6҃5ʕ#8}lYB4o߿q/q>fڽgb&>H56x}oddy#l>2YDW ˆʰ_x|&%R[zliy aSVva|TdFT(%JK᤻5euq?L]PuЃZ *g;V/wo/=Z6)&qd c,^0]820(Nq?qi&^5zN{oJ|~ޘGHyu~xm],)5#K?A#{^h[\9F%y"Nbb?qKPFI/:F`UR|| }LmիuUl!&PHK\Θ V)?QoY(R?(Wyy!%FM)N!q (~^ lbviaVU!hY.l1ɴ?>. c**6p7; JTsZ/9yc&-, (4I Dn=kWMEi-kyU ,R(%㷯Půqg_Nerwb0!,IO ;])EC8nʾbD)q FC7-g[;29iKؽ;ĬRjb+MO]%Yqu5G1ܭh^g!OYW#җ~S§tՏDD/~_ ĥc2lB_e'qzt[%s|6%, ¶|]~0q鋦?[ApXN. Z%5z49ęrgq ulFElĐk`ltCJ3뀶Mlx/:iK0㞹zg_' zRSvn-{[)jX}b`+]ҫBS/}F %/L)UMx8!dž)4*ibor5ۻދ0|dݱU)N3ʼn]e2@}|\j^ZD@izRcyni>d8 qV_a˽L[- iibq'Yi p 24ZȎh3[;>~R,8H7&^VT-դ.6mv` óGůCa5C)n-""]'aJ%e ]XTi$K bm""VGf34X08]w$/wsߟ[rD^)!, <~D`U: [ Mn I&yN؀2w\=ꐶWŋ0U{]|7~i8oiYoż+Y`J+&#)9N739Ne]6Q>naPcؒ7lN >KԆldx[< 2֯ ˿뺦trYg[!| aKҩޗeICv_u{ A1HpVJ"A XџSI4{|seCջ28 TI2_$MI|݇2-}G|%VW7kpa;,*p>" 5ÝP.߸zxY /c K xK{8ꈫXEl؜?C-|ckLurqcߝ.euf2w TE&}juZ㟭(t+`LmO9 Â,ʫʳk#{:?gemMy89N%žC"Cu$M㯉H"&"EhFXM=߾Z hS{6/Yh]+Hp& t<6!jVW=k\RLOS3ќfwAQS][uEx޺KEdtҫL(.i8=Q2!#-[d37g]EʖgHG>~O9`҆bgeǡBI@|a)NJt[6AT0㭈BHAQ\n}Dul:V .D `)r7~Ӽε2\'l,2fyQgAʻO] lI- ՊzL+R4kHII v<[PO"_\L i], -Hӿo # H"" {4K棙٬u ևkw8M6ѡ6[$&6+*nNBP^&֊x}}QO2}Yc~[e*)|s`. *~#yO{GZ6+qA0tX=@xj%#7ot#m*Ά& &z6eWHU jT~*'Y^hc>pvФP/Y66g6'fc"RcEgS )ΥG&"^|#/B^i.N?eIMs|N#H5CCȗ7 O$-ofmi<i=Yb} OLrn͛.чna/d)nG\ $4,\Cۢ{2 Ũ"jGL<͉3 ǵ3h?"~O9`ƱWE[;Q'u{+pVxhz)\ETQ'ud\x\kįTjy^-UPdaj"gS#sH[υI#kMSWKGΤ OuJ("u^&K+ x5^"o"R|+Az+Cxb:H{i6C16@+m4 bN[Uvպ 1" mECǘ5k0{!gC#h!D - KW.]|Cu65]ibMڰx8xk$Y[DQ݋g_*TG\"gTF|,0ܛ4EgՐ+lE7J#֬ 6g6'6'փ{Jw$vIqIk)zI?v@Kݤ]%x_ǵMQWɻS>fkcjpA0}dqW3Hy8Xs_[H>^< IDATafItADsvBgCU 7NDzYX#W(rG J]-wϛCg"&hƋA+1g1(ŏZ.h-qKR 9 \֥1T{\^}9Da9˻~gLbm >(M/an;&Ye#G`p\`s?&(O2~LKl Úu%]?ߤ)a#iF1DDz76˃Ljd+I)tX# яA :yB\3dj-lm췿R̆i4Uߵ[c/0 Fc^Ț2D%-Q96gT \ w`vp"Y )(|ē#mH(]ia{cpi/%uD#e `Ea&tK"+Lk `Sv2Zl,ix|ʉ|~mP!ALbx }$}$mXqvBѨnOY0,=-~ӷV+ˮ%̑IDH- Bjf`oC?=ܵGH6'm` kl*ɡYd'LLYĚD\ZxןVI8mS K*_zkC"tv1H"ʇ~f˂5iz0U<ˏW/ϹwC :VT!is"h\Ba\J@Nk-`I,b֋f9j.9`ٛQ Ěa}LÑi e,`=U3++h]x-qHĆ~ Lphi9t%, tlp-Ȅ AH꾼)U o/cwQ]Ip?'GME^!ZblUZ4" Ϯ] 3r (35K>IeQ!oDXAj(jձ`[J!"R͟ٻO]s_ ZzI+h-G"c8gWՊw4.&N38L) Ma7Ikn /S'9Xڃlmang}3DÙam֦-j'kXsF3ms7R:pn=m'|?Thq˫%Sbλ ɣ灦4 &ҁڞ 㫂;9:9Ҭ :Lc c6 yahHC5w{ۀ)!A!~{%kbMڰx8(uytN/h)!ŬV-:2Y52XZr Z¾=)k˓ă[+u3gAE2N5c@t/OD9_bڰ>hsfsbsb}X+pCvphiE8 `֬bM׹nnsw.ֵgw/nbg6 ,2RرӅ4kNs_L%4 3l-D_|;*j c=Y "lMZL- ؍ݱLc0k<;@""EL.M"RM"Wn|VA|1DDz$Zƣ-d[dh]PnJ(~W^Y)'nA廕4|X6_E?Omc\6)ڑ6fB/YgƨH年ቖGha{puFg*/"E"0 -ҕweڰ>hsև3C`#p]i}(;S[59uf +_p$1\2_з[7Z@g9S1&5P(SýO0"i5[҆X_F:wmG~Gsny-x|b/q7udҐՀNdH^ЄU\WDIG y"&Dy M޲ʩKL)[t=z](Tm\=Uf=k">+-֢\P!Ȳhd@4mW7JLڐpfO?;^{Xr݀H$y_@N4~]EG>]La#{9ق4"}ҷ1heESgÁl}_[76z"WiG"K,Zaj+ݝ8\)潉qqp>ǻo}Xg#)=zMGCQ(A\c(a?Ў &l6R'm<%X^ˑYV1v Cв:6I}BiCÉSYk/TE}/'{PmG*%#Zzi*T⻜Zer(N/Pse il 8&lͼ4]1]"`9ҽ8G)rwUÖj>`"t?|$`j~,sW`)m JIƍgsJgN"R6gDZhP䷞`mG9z 薾+/CR6 )0%3EZ%v.V"ҬkNڜߤcђhHIUZe{ P4&JVO~s9~'vWeU ]+KB<;PSfe5k͙͉͉a7mVZH~WJ n-⁈ve}\&?'z;wRwbu컎u6͛ɀ.La@8lT2'xK{bbM^ ϒ$SyJT ] pSl' +zIrfZ>-'%Qs2Uf@.9g:r-d)b?T3,`um^<\aAkV\#""R4(&!"G>Vź@+O#B F^u$Lk@nv!G`tf4sٜĿ/񏲣v3,@y%L1];dS)ps#pAw?7>Q@+ 顑^wm"o$ ӱ 3_၇ٜx8ngz !*zB15bMJMF3khxU*}slk:R0_b˟.Nl~'n5y@ i&8(HII vٺ{)9>vHW+?~v]Fʼ,Dl]bMy8QMke9G$"b}u#S0]V Z߅=f: (6B!R)qE$W!{/88lG5OYh*1T*Q1;n)miƚ&V 37ق0aJa<|m<? 5[ao o9,4H+hL,2 k|:t{=N FK:@6"/vm9c(ݩؚX5^cU@X/SDO"iDC)%Kb &%a:,pK)a+hD{"f7 t&lNīߘ Qy x~C't xVʈe_gӠxw\C׏;2AsBlH =3@Ru_'g6=\Sߧ&Qu \/'%h+y"6q[A\mQ;Q ׬d0(-4_7=1kC6y*Nl+bE>l|t2Uf=kB˳!(t]Gq2pն1yO/ĦZ^u9>k £81.4wkӧ 4f\xm5ϗhOV8P@oVuz忤 '}yE(kQ_Su"`&֊i#e$KkGa=V*9Qr:Bizw yTha`&?Ć͉3+{v Ds ;N6|ZB38Tªa^>` F+/|`X@ڰ9M͟i8HF?A&DU1\FZ[VoZM6ڋД9?C;nx:1٘sސY2o TrRN!7ø;PsW+jT &;U`GXx xY6_6'F1suL"!~8H&e4)X+f?Kebqsa/R6;Y΁@.IIJqpJXcI[vd}Ir]fA{`܊ьMQ0[yHԯ"m6ޭf kET|9pXIQʻ/bֻҩ5Ě@k㓾䱀a}F!IeKu&޶@0BK'sD{p_t9IU%%rhD4amn礦I"r,/R; #}Fb9n~B6Џ$2Aav7Yp^j˭t DDpWT|sM5LDW=-J2XzMk ⛀F)DuU(idX, #f>O. <ă] )bQ# }:,ATUTg hAZ_ -b*<ҮPλDx`}\͙#7gxԛt{ޏ:)zq]Qʂd7f8hApGwr=N\\=w7ًʹ=֨} z{[B$>/q*?Qw/WRԢˆ$b}`LbZ0RFn/`Wj 41T)ph3u2{^bo/\ݾnnmhYGlNk[`Ivh?N/W\&w()I6T.H`o@ijlSAQ\H|hD*eADef>% w/7ZYlNoZ G/4`B& |IDլ>asLq1K j25{`ZQʃXV!^i)"1ЇG꧰|K:X0) _^>LËXz{!]~b x?Gα }:P5X%V"aPyS=QTbj4GǀdNK V3cK셺-ƻb^S2 /x޳(8njv!F+_t՞B3ζ-& b#!" t6ˌק1[tSg6g.f=|0| 21VDZyuΘQH5zp㤌aJپ^' Avl@Nf؋<(qv8vEwji=^D?/ZfR'!p.VB2ҽ#}K`? I 3ʽ` Gϑ]}|Hy(# xύt`h[z,\2Yswʰ^@waٮgj+T<: 8+!J^9`LNn53JvbPQM6Q"9Zkz5f$ygU O5ԧk[U-+3 /T˃"~=e{ڔ3^ Mv@95c(BuEmZZk @vicr$ IDAT%mv \۳nߥ]ه@.i*ֆ3AXoVdCh ص:#*@]YsZ?ҮJw\qG 3snW,En Wx'664\?K"6$0]աb(sUo9E_E!m/bQMt%{n@"'= wTVwa;Y"NG6I'̣]<~T%uLJm( -(K%Q]둢-Nfa_Џ!PrMe[@0({g6'aF\Cj^2ޝObMĖXY}-H}Sv2?ewwNxX4p \pfܳyX.ۊ!F{bG,4"+A'xp0G5fpPhO}_wNHY+ i+Z%xyvVdKlN͟ ~Hw1<=8I{S4G,iZA20׫qkvCKvMr1m=-X蛕6s%.p.j*Nzݾ gW9+Ψ$ȿM~9菓XXUZ~"}kgJG-TzvA`^̸6úЂx os  *\?7f>):4 *wS0:~%C9vlwVD?zww.L~}R]4O!b N!#5kk=:jjϖYcl~piSpfO?;^i~7F%x%ZI?=L<]؂=c|Vy aG׏p r cFz: {p?pfs7 ƥExS7ʋO(A[4,[#je"qp%:4r"R>L=HAr>R߾A/ 56}`_+8xEEe@0 5һF.h.i!/uhi/;4/H ?[NjA :b6EoXpՕDDڰ9ixȆwרbgi#yP<"0Cw\uy}C[f ;t+`%{qgs  ?545Lq0-R/tLnT0F,MQw՚Y8&wLoZ5%]g'ai UuWWh_\O>]V.-"XK?d_ ! N6?}VpAm@pbr]NOuhjרP֠s$*psnIA*`^ ,݋6l&zJ7?>kaSD;FFFpL~٩ΐn2K%^{.=][ Նt =Mwk;忡8l AP-1ƜK; BM;5w[qN!.nدTi g8Vo.ZzΗC$#oĻ1{iS@T4brYY%kdCFj@s G:iX{*NcjŌWZwcatex~B,Xq1ږ6b@w=MH& Ƿ|_> g6HxQ1fz]25EcЃ ]HSA^Ͻh%񶠲Hmp-.ZW(Z _ϑLJWmnX҂&o]g@lHDdud:cmU ao'8nlѹҚ q x#jj$~OubYO*H{)s)'bxF8Έ$U*jIĒ_鿾5^_gj 2I+ -FOMzf}!^e4;^Lju)光̈́V&[ ؅UcKֺ/uuhߦgV{[! hϒIm̭fQvyCe/ Nj .B׻ m_sE?;05ώ9H!A M!v<6g#ս7}uz)<&\EP-݉Kr'sVhВ 8k3*ngxf@ Hc/!rۃgas+?m!jRμ [fd`OF͟9f.nH,{ 2!'}JEa&-"Tib./{/3dN&:\<(ր`br5&kCÙ͉͉Q60jXj5?ϼ&o \ c=WUME2Mߓ(Q[2ڻ"q$sT&Dr ;?*}A~=奺+6zn6pk* \j. `wʨ") S4M&֯gwJzx?18&4@r,mhrb8V`)Ÿ洢gZ/$Y#9[sӨ?5Zks Ki&   IZFO 2ǟY_tEr8ߎ M-/4>_O 굤?~{7͔]ʺe%0+I8DD99__(L]5ޘ-O4ʫ2vNwv;Ѱq0 kC5\-ʿ92 kS'yE#}x@;ަyN+uk}5K]^2DIe| ѿpFÙ9Bʿw4g$r>owJs*1I~ѓ2II֗+){\Dm`$@'B3k/fk)X$'6&.A\=oά ΗmFMo?@ዢq*"Q%/Kop 6fO؜h8p$^HV7Zz$+Grѿ46F^pw܏m9j,O^B| ]@%VÙ5 _=u N}! ز5+]h}u)(n^^ks$`G;"s|.7xOey@_&pTZnB &:#axrJ;:%}[SHxukLڰ9͟0ƶ _ZXm]uFԄ~V Lk@E^ۜF\f`5#IhFQ$%it7fl/"WT%v'~֎Jk7k2őeGZnryfZѹcl&C"֬ i//_ЍDUgz!|Q<ȼxѠ/X3(5V;/u |bs"6+*|ǝ)ٓ=ZL{hŃ"&δz#hZ:JT𧾔#;":s_+XM>rk?Ϳn-< x3O+]!{aŗ_}c QZoekh=7#[㋲`ݟQ 1,/;ʏ[99 ׻oKHUp_ī-IjY!D͉lElF* `.t穩'ſX+ i~9W>1q1&_/T\*{A׎:(CN^,%6lN/#\~k:PI^@Ї(4dyPK dpsrNZK*EK"f:?r71kCqjgC1"2k ~Ε~^'R>ϜasLÑDvlO%D Uo-nXA[0kEt)i`s$>^3 esE;L6(G>{a֖m͹fWLu.a~NaOC|HEh,Wԣi׿85mZJ w\vJK_ 3?999˓{gXh8jsg"]1I$cR>&<%l辘X_H7dHUkt AVYq-ұF #Ď6漇HLlx89isf}`muj nBGLkN?I".j֎!.!(:zETWa)#Mj9 t27rC0T̟X#}#*WeT˃">> |iPgBz uAvm;GkXZحuv[,iTs@pۊ;e,HQ GX~F\/hʪDwgryY) ߼gNy."֬ '>~Ù ǩ}lFV,^#TsZR@*GpD4,}М'`(|\{%Ge2 _ab"= DxOWmuh?eG/<ą7s~W4-ʸ^֋/}Ki/ '}G37>1ʞPm0$Mr]bV|ՆEpu 9[\I>U!lV_ek)V% !Q^-k^Ao=^%DV9J{ZȐ3pC@tie}mEl6msb# mI-žR")6,}|J>*.B@WY"Բx%5Oݞӕg oYLEŗ_Wˏ$z~v|1&Me]e J\P[ O*rWK,q˼25KUtH>|GF*o}1Oov\Ȩ ,%b&MDÅ0),Dig8q$t¿s'Yv:>F&tŎBȑ7rsR^xTl/= <斐RjLunYxx,\[@19CoW-0rw`NZد[p)ys3p>ĆI6g6'F$.բ+4Chv=@GjN$r/.fvBpCi SDOc5^o7 IDAT@[:5o_v|(ە.Xq* pPn }{dΌ9g6lsvcwǻd^Fi6<u\d ;־7^%d0m/_}8QN+TMm[wd٧OeXjΓD o¸7i09)Tk;})IPѷR: kNڜGюv,u3w;Vp5< }UG90wDc 2j7:5KF{8sͼ]ѿ3\F?ѿ[]tӧOϫJyi|b~CZl +ZzpUQh @V@l vs .[q"$baebdrJLڐ64ٜ؜BϰG.48ny8ɞ4*' ޳[^:aCPfj*Mف2synҴu_aѿ|z D2B'\;PIj잩W@lk$΁7 pmed[3L*c42Xp5ZSZW8BY&}_u"Ái0y( JkCz꾓wj`'8$ A|vqC.%9w!ѿ+_/ `4t Č?c]vv͖XKUF.&,5:\T7ں93g`IV!W{| 5`OIڐ˯/Qޱe:dxR0V/ȘT*\mEwn. V@ Js˻isFuC=4Xjs|v!|z*ňXO}]v? Ujuk?n[J~j&*jR=TO<60i"H{f݆#Q32T{lb{8,]VUޘ& l*"6'=jvE;ڟ{OgW)Ww}tpK@B Ju\Uo0BQ=K딕:^f>0;_ xLddC娈@Q_IG h48>ވL.03W?(U GG"-;3BX7ć/j|* SݮWatdV(mߖ: @V)h Ɩ{dL?8=Kzۨ%]ڞZG?NS,"^YQb@C@ AڎLYc+8r`6)*rIlʾA^}.ʀV*V9 6Y_W$e_P첪Yyvj=\9kюWSjRu em$6*2=@N@wb3u7_q+ZtY !K%+Jxk{F9mMn#u{|)WcK^ʉɵ6Nw@2Vev!Kr NrcM}vu1=vO;t9swZ dО"1iC/v/dGeGk{"uѽQ>WSh@0h;|hO5y{U9b×_68%׸*(˹1:ˬZk+)*ۻSԬh&)3} kuG X\8VbFl؜Gk;^1 8~_YX f<1K-Nv%@n:x?%q؄k[Wro^PE6cIrPܩ}_ ?~$`2b v? A=#&/:# q򾢗A~bErqc\CΫ"5MfDQ3kCL^Nceymƛ p:ѿW %Ty:;gŷN/SB6WGNEG*O9hA,oqI[U5n-b35Z+̀u%T6 53%OٷtuUZK/rޥ,ڌQQ.fo xCE"hZ}8D. 0o /ش@&Ik6w=Oz@w ?d?i<|~[={҇_ߨaק0H%Ruk;m,;m-Zv&"^>ߩ⭠e)vЀs|h4E^ 5K&'\\¹τgDhpė_W=Acc/S1NX F8+R;+ъ[5Hd5}@ c{P7ſ4pz_FF˳cZa凝6b10"?/eRVz0xK{E& B[`><˲F@x[%Ҝ y(;i[= A6d/lkKE.Z˼9R@r4N`ç۔4Ԝ=S(WXmZ4GiaG rtd9GQH><´#&m^|׎vFS]/ףaC Y/v>-q3aQS}B-%i)hGHd{lЏb<ݺ%E ~}.*a}FaFZ'}G6)17-˰k8@9V%6CR vނ "!OV}->{R?=6|qE*r|6{k^~?{Qkv@gg n=M2&jE +kJf,X8`Bl}桺TǏ;߶ceYfnFԇX[faN%󉈦xV53?}n R~Kl}ǥF4< C% rla+OFq<-}&`&̣5/W%>ѭڲ'ɚO&zAzeGA16ZY;^юW[T:rj.2.Pܮ2o61ǧvXSj΂o>JUy m؜>zpF70ˋ 72#'?VZ]< y"sR ʯ Dհ@woHX*gcwW*e3}9A疯TP'kCH_6ǎ6M FGhDBᔟk9Yy ?1 CC|^F/>~Ù Ǵ֜ Cձo~ۑ$?0:yJ|2:J.9o$[JjQaK<3ޮl9p훽gbϘDIj_;.?-H>:5 \[1T^ߵH_&FoO\ִw;б?UpHsIé}`o"{4k?g-.lzT˃"&"p- 6k}NO˝6Q0኷0\Go\rM怓_P b0ҾIV26g/xC69 m4,.۩吼,*j@%ӟEd VHH22VàF@,JDƵZSg6_|"6SטFєeٳ mH0aVA%*Z@l)Ֆ4T,pԹ~†ȶYLe'R\˦75dNזٜv+]/;)工#֎+"x33@U* }ڇ~4?)0.]s0HS @R_OJ <#Tv/iUns$rKek{?lNN7C¶0"oyOߵ'q%Pl°}EШJW~[#haz _(2LU43{^%p"w@R~Go_I1%&6<؜A`dt{ P~@cD8ǺtvGMfu.!2+FpjF)g@+٭ PJ8ef}A~kr=~*(x8҇1>Foo7g00b^8u:RZ| B/tCcS^danO1kK[e# *#?yV^Dіu|EҜ{Y8"7#X;s!% sLQgdaʠxܫd0fKOAY?r@Zp6D 7,_⪇Gfmx8>~OMZ<6Ϣ" 3:ם吪w?Q Y[6D:8,R ѹm k4Iϵlq~%| G0KHV1)_/NjQp>r4/o͆N$49/Ori k+Exsb*3ZމI<{^rNrD0_8dC_R/NQ^@ P%%t^K O) 4)ȮZ7mڜZ?Wjt ؈ ޖV>}"; G 3n!>3b~$ 2:Hƀ{ pBbFcU~ih1w/筲b<Ky9 pk!lIVJxGbj1u&D:s]aÀ32ZA[) J5nLVL{9R8I03zNyKlRNb0x/M)65oևѿ"}F7CLlu}0,rwhZ46-UzBwľԄ]TkȤ%reU}pNdn;];_9/GMn"I݈ H{r9њ1OH{fM* x]!{^%>'WG |x@_|a8Ky:^E79Mφ1)H>|}8Ù YB+A06gZupi #7LNe]4fG.xʢJz36<\>[Ad OLy\T9 ]|kÉ#!|?C:a|Y:5Džg }往jї02?9 ֢{UONOgY(5餲ip`Ù GsV5$0 >.zo^TԻkw6gIl3ٴ`5uWuRyR)ܹ$M6􆵙g_c:z-Fj2*uy2KVA;y*ӬF/O~HRÂ+9Y 1L ϟ 0/EhYN]_Ul\nIE\=VC<6l= h W>yRDeNYG܆vzЏ1km -^fڹhP嵕k2efE<%ܬx$`;:p1xk ֡xEюG`[sEl 47iRRκ"@q]M4 RUUQg@\&s~cY'e/kֆY?S0{ל۹[ץus 5Qm02-wڎcWLOL0OUt @Y$%<ߓ5-ߕh,.]Ja/=I-)a/5q˗x!N}s 4/#z|cfiC_N7cmJt{cfn$\>6zX[o6SK%LW9)pzS'$ !pj=׻ysMxLϤ '}G>Çk^X@\6.퉽E,g!E¥te\1V+R)^L?7  ~TaFO9ej3Y☝}{N7lZ`pO9Jͩ cQ6&%@P,^/oևzܚ?1+)+m28\D~:G]zbx/bi]5IB PȺc IDAT`%HaܴFR,i؎˾Io":(0wWPR^%S峠%߷jÏ߲9B6_\v ՙVNB3+UnALD҆_Gpf=$݀1 ~K GK+\d7aGtq9d'ȗ1+ |PnݚQ8T>G=%˙P )lYi֖m\4<51R(֒íyf6% c5X;l$<[3H {Úr\m-o*^trҚ)B|þ3ɐθ7F%#dp`?lh8>lSGJ,5Y 膼> F>6(sw4x*fMc>fV3Qe]lt4T jC\h4(*#_/ȣ(`l(;QJF8>ݵ(:=ہ%<Y"/1h?- Ͽz>Yḡ'&O}ij*i/={o6_lNFdS5͎FȉDhD|GIVUKO}kUoO-ƒ׿}m^ǎ/&ID_|BB8ݛJ-K(m,}Fc]>|UfO魤z zOȂqٝbFgւPaEeXh6d?MPWCSv"ގ][?_RjW){f ]/(12QmZ !F{[GfՋx5,Zy0| SaI츅A/VB%$yD՘o`&{Iz07[I<G>Hkl?}/bCzjl7)"{}Ip)w:d@O"aRR]tc'~kGJw:.= "KJ"Bd^S[G0!OZ&Aw5k"$` 2w~ -+AT1k (g% UU[7Х^DEL%-qǙ+??76&e>YuXg_6րO 5Af"֜\^ۍbˮ<~ pvLnJ*ƧuFx!-ll9)WsT[N9qG20"K+e k#hY'HGO"ڏ)dvDA@l`/mRVˎó9w7Sz1nK<엵]⾍] ֬lN|7YDXso6!=/U m:vaco3:8l>=+r(a>ZNBzjBP @AAo5.ms D9$Lg% b҆ _~m4Ďf:W%&;Ve-]2L,"v PǗKbJ(CЎ /_LE?µ^SDx mgFq O|+k{Wg6_4w~v~Ip ٩7wNZ#S(l,.BCnĶ/.ܾu / K%;|3d3馑 "Z4jp"l\k@.+i6#QYl+۔Jzj;^ÄmM9t(,O@Yv|~xc~qHȴ%VyJE/$*N_Iwǩ52d]*ee ٜ m>~͉(v%Q7 ' S|efg+ l*[-בֿ[*lѤn[c=T%I:6GkWE;WY-#DBo&^lnضx!OjƠ\Hφge%9ݷLmB,L=pbUu^LChpMRu) ^6/o_\p鲝#lH_6z*? nq"`شA9*Dx jlbCD"tTDgjp/^ȁThk3Zz>?[5YNG*>)m7Dy' p'Sv?zc p]ltQ!| KB Cxixܹ[@Vmn$FZ+m_.WA]GN!a1$,1чA䀃鰅0"UV, }mJ\ݤ!eZUs#{0j,_j&IZ\x TQ5N\8̸e}J1Ў"ʣL ҷ]U}[Z+XI3'"RĒ껄h%bnakNoz@6Fv:`@-G z O49  6__6_4M?]S+o'nQ4ѕ ظSj1(g}_?]kbvȪ;q(@WߎBMMqD.)eOWٜᬏh8pP~i;_xUDf_p dǴ@X_N6c\},A-bA.>U#C;A?{翬"D>ٍTaQeY:9(4?Hl؜梗TLc˷p*a;d~u*!.uY6qG6͔Շ `bCLdJoG >UNnX [yiciňGDaX-*E;a* K8j){P %Xv]E.^wK\XL7_1H4&YCb yEH^q+\&?_S8jݩσ6*N` \zZ/15vα1LDkK=onɎ8 @JeCcz-_FwTgyl˲$$xGxA0@v$*";(b%~i5[{RKw؂KKUͺSL.{_A3ʲG ۟Q@ZskYk8Ӹ`"YmzQ'6\ ;!xMv܅'|8 k ~U/}?F[`0>/A9rNYJ4);{^ ōGVڢ{+5W'!?_c5G$%oiKy,5G]~b_i+5 `D-F&O2S؛>9'v QWN|Qvѝ>܌1{}zAac>&krfM2цCT?YsC^ d["bl7Uh_dhX*+ !!!#*mg) ת2eݻԜu8}3TW×ç>Xb#$dܴ12 8ٙzЏ s Z,@),/ah=C3uZˁ2=Srxْӕtw;D:jfѯQFܮ`7sCs}"zWM3<0? ,ggƀʼn'_HHHH(wc=A!&{O F r CgznP/.ߪJ)R[]]8k9c jhlW:m؟E;(*kV H \Bmd.K4c-\n_~\V,̐&v_ 񳁹_AO} :ߝi Q6ZScP:P$u'wGb~Q5 }q%+iV`Z-9oڞiG\t̋ AGl,;{ xBBBBBMsQt$l/Vz&,S?jRzpeA\972=7`Ȋ,L(|U."ӽcOCto֌y27ўdo}q3O`s]sn# 8s]b/ܴZsk5&6~lTa`k`s."LBBBB ՜7$?n{݇|S /ϸ_ ndcE$-j,uң{k ϶d~n0o*m,Xi =뫒$i+t/<)NZx Fj״,Љa+ԹHVV)e`TzXs65c.`J CqY7 Tx8D(q #$$$$~&Rz9K$hIo]TLōY6JPÏ~1׫3oFzd }&&-d8'DE0LG},VSݠt@'!]]9D,س'ۉӉ1|DHr@&桼̈́¢&HD7Q2ގ4^ _SC5^U2 C^XQ؄ZzkVbQ­ hBm*Q{*C[^@DP^ _GzTs,F:P`KفĒ9a1rUW PP_P_PiTՂgXqvG0ZB|1a%TՖlT&mt{lDu(*S$b[Z;B+0X/ŀ\pj5i.5va$L.$$$$$RWH.Aѐ޵ K/ Sݠ/=|S_]au,ῄljr?.` 3դ<:|R=pG=y(6XETf% fتt2c&!I3hTXZ\_a 0lWwFz+|=vbQ걻KjR_fneg9*PVBBBByh#yKN\饔mr)c} VvzWTd㣷b=Z^fY1`mn`/ŀ#MLO1ۇ,y%[usPq/ʳPγyh~RedZ`<;7FO՗?c0'<%q) 2o-ik*k/ҠP{Tu|HuO#~[q UJJvAagV 1vsj*krG9VWbai1hB,6K`!!!!/3>y߰l]f3~ 7Z_F gKw÷PQunY?;T bnRoa1̓=t6mnAzXt7*oZHao*¯H!,t|i5wdrPj5րUU΋L8WHHHH[7vdh &I*D:7Ttz::AbNῤaP;\ p+ 1W=i#{ւ 0FGN8OJv}i.d [:a^oCf>AIx[yJjs"2ӄq .%KT Zkn&3Cmǟ;6LkSjQ9%DVNduR(bpA3Q *tV85Iu|k`㨟d1y"JH_lz߹ȯ#" Xzk 0US0ǀ8C2䪁"!1(FS5` ^ )MX]G7R Mݞ x^wTOdTlz ֘XLu|3k*ަTQ+ɩu}gŖG`;_{Y4;|ί-Y&~.tQaWVQˡH/cZ0`g;)r.O[sbd](0,:F )ݸ51`Ia*$$$u$ %cA,@-D>Dy Pjҗ?zçW86`P2NHϢ2yÂ}GvP"cIDtAΨ-Es# PVGIE9g(uDz7r|1`LLu]ո$ M] QM6(,GQ Uݠ/=|S_]Pe~!hb.pBGD;LT'qN \Pj؂2fs*V9+f)Gs`$+}45ފ4Sk-8"JG1kzŀ0xFUK V aE+!!WCK,t`V OgT/uQÏ?8Xz;> uSsy4Uba졵Y5G` {!5([E-QBdi,[|;(Z w9Wޤc4+-Wfu,;C_ uC$ZV56ȱ *Uif~'$$$Ԝ'A a K /`T=*Ig R@>Q^XC*!cm1&j.HᥲHZ64|VV%l|-|Pf'lCj?3g.R,:Cjbjm vˤA0mȹ_|hXm8t pm"IO% : ,Iˈx)@Zql-sDǾ.V_5|7#3@m4rS*\李OQ¿ p#P{Tu>t&IdrK=]DТ۔~5r(Hn>Nͦ$/Z k5`oO͖w}`DE/ E J:O[HHH2zMm}=Q,i/wW ,<"/{DrUm`d׷Q^I+tMS,ŖB#CS3 <k"oN۵ɷy>cXνph뻞@2+ŀ;-ŀ{ :Xrwn#V-]!jժ ;bz o6n9 lYBC&>UWb@ycC?i^eܲ9$M #/sL@hjaz߭P+An68~Z6jzœ`߇") ^#6 x'EիÚjkY 8lJ GiT Ig!ܴrů l ˮ *to>e@:C)g3!ֿpqU jhMVSݠtgT/B"db] |ۇ<H0Vg/0U؁N/+WJnq"pS.1OSLH cIYQ W_5c1`B#OՊk!QkIRNGHH!W͈C~NvҾx$fh>Ec/ߺ)R_;gJ=Gk#o4iPP/cFdZͫ7tN{pg!wRXygoDS|6N J NwkYS&'Glܤd<Nz\*DcU%XHH\W .Wy@;ޕ%i0mtn}J/;,#}uEz W<(ޟ/SCr}Oӷ89=qE|ݑ:9ël(u,^,INMTѮ&a9*7:F `9zr< QQ8!`H͊lgtJΤܒ99|j୬F`UP yw9ai*lV~vQD UYz$f熇 F.s"u!!HCkEZt}϶A5EO;/F!1M _GzT#q V&m%5B"liUՔv&r"ң4K蘏V0DtEl ןB",E' ߉jP o8z=-ʦ$t7Dx,k!k+aCŘ6AQ@4-U@&:)7aCQ@Άe9FZ}#A_zç꿰KC>dwwh~A#†ݗ !L%ϕaL"?WP4Q#mpsBqV&$(1}; >r<lWӾL\`mE}wF5|MXZkqLD6bXKilk%X(l!a:mb%$tTbYYH(>7jAhe>~Q5ÍҺښ%G_j?ÿBVl:vUzɪOwfp (ga*8 ^GED\{e^*nۂrﶢNc u3vs5ր5|3^ ;_џP%XHF_aD˪h5׷=8e?=c=x$w:52_7t +ٛtYSd7 3^5ެ8>%zxO9ڳj9v+[f21>FսȢ WPY'D-aU)iu1Ep{#8!DɖMF,Шz=\"!IQIa9õN~m?s+GHزdZܺ\uIAnCf6gێfSU ul0a+<-yOi]LűOf=&tVR!!_)$u.\ >3wD/zE/)m߷Sek!56S|b)yl %ᓝ `+=p`DLD<:WúixU\ʕn6eAk׃9eTrU1&}s:o q Lή)-lAΝ#Tՙ"ʮ1P6Wp $ADÃE.RG偣,u|HVP,gu˂|+y&):r^-\ Is*Y¥Qk0W8EPP/cFhgK,uWvښ_Y+ =)/R Ԋef`DA;$,s<\] 5|MZkqx X6̄Pc$VP+$W谚a>k͙'c_ LFa$_@<6բM$(`}*/{.x;e)q(o:1KT}HK9vӟq2$ Y.~L9؃:!-T_![} }zP .?lX,l.V!Fe xo|R0L #SI#2!C1I,t`Fʝu:™J|itR2?G@[3 xA#LdN.kvgֳ@/D97PWkd lY[')44*o[ŀIn 0`'ثkYk\-̮? 'Td‰(PHHX1bz3ixRT+ҿ!uєwgR2+XӗKŇiRQu;D"y}pmhdxkfՒԛX)2jhzXr!;E'\YHS Mw(-@;7p5)x`/ߍnBcgiss?+`@uiCn"-wYR5EJxчUقsvLo(!:(Mx B Fye7S#pJ!!KGɱ1Pf_ҿ:/SR7ƈLI :6\]'S4=ܜO?_{` >؍CZ7k~vzߥ$&]MyE,vU۠ IDAT ^MH!O*pʿɻn3 r*ߓ>6#xmQ]97`4=W],u|b҂{SqADTJD 6:gs6! ,jd[x~Pө%@;X6l/6au+s;}0]vșpn=6{R5Abj8w#'FyE@u//cߺWTڲ߅=Zn4qTi!5D?*Ixg5X) /koZ\(ô,C7vr?r{麮Wjyrh8)c^Ff55O+ό0yXhW$ĚQsyG9XNE{)6kyf&tRQ[R_ @(f99dG}[h.{ْ7:9Z, 8Ze^+78nxv'U :YFXfo5_QܴZss4W 3`:`]!!#ռ?0EHU3vpy(O)V}_!M\]iNc;2-R}7 ޱ9 sb]BmۘoȳU*N3kJwܜEyka= X|<5ΡW&7@5 t!0kϳ=g~FbzCZHMAH 8zc;ԯ;^^Zk{T' Z_8~NxUt 3Nh(sPHtc &hڹR4* oyX좜ŀ+Q9yĀበ)ŀ=&90%]j M xK^`w\Oʣ˿*?Zvl7cn{fhil51আo=cLgHSϔouI4: gAyVd/FBZ9@p? 0N0΂~)`k!⛝;RPGhoc2VF XD/m(' |œOokĄ€w̷|]\5`66Sx'tү_=(G*Gd'E9(:* &p, -)Pç~9Ef~,!F\bveFR+ DtAΨ pA4+1kǣS9C2Jsf4w>F \nsk|pLY_YшU_5ެhKzءI}ΣgpǪ|B SD=6=4%Q>~k{ q_I { Az3S_GW_ !`MšzkY6',!wķeӖz3u2f0:9` 5(dnGC(ljP+"x_xɾ/y6_X]߮BpP_Zen\>+;yz\C{GL:ZUu=Nf^V$撐P:_LBPup4op&=𷻠Q,鱿̟۞/C2Xc,!Nbp_kshS`}Acwߗ,Б~cuN/%N }p:uZ{~?-tcTeV< =Ƌ1wsACGիZkwYPn;+,V<ط HI`!XG&AHH6ОA$TL-SfҿJw/i-[޻JhǦ9FMk'e}[b]{nj|f3 m0zhZx$aqEjLU[99D"aM\`T#4 -#bB`{=,m iW'p1o]$5N)$ Z -ih/@QۇG _Ji噷w#Uk|{3{<49WHCAk`P6Ea3D pރcJ3>I(A~iBFNIP<@PK lɮb&MŇ)"ϵU]bBRޙѬ*$tyA|[:h$IJA.bXA_by{o6>X^ɰ=c3ny_ivPk "ZsJPU>,#\%d#{:GC Uuz D8tĭyr:`Q<40FW0,eB0;n8ʥ䊷!r8d29-:;/FwUQ5dj?ǢX5hđss1 %\sOr ߭2"/Pecct1}[]NJ"w@t :R25'EuBy /.:H/G.Óٷ硍S):#(\Xqڟ؋w{Y#'!qT :$-]yC?4z1g+'bMSbK9?j,ʯ5IvaRbHٸ~\sɥu@7 .D'TD=gؘ`BU1dcVd IѬ`Ҳ7ͪ".hˆbv%rf~*0[bmvcqdj|mN`cXU0iWtdUJ4y`GB:`Tއ 4sW|潟 Wd:Xp^8x`022Tt <pQWUGvWG},u31fp6g$.#X 2CF K}-fA{^f/9"ύKULL|S^8-RZր5+f|L. WCnWĈ-7/Ƣۋ/P3 _xbu0X$hYH(Nq? aWcS_O $<5$JL:1eV=z@L965K!Pkݦsy-qE{:-UNlJ"hgskkqn!pQc P ۅj8i!&qb1溺D BB;rHmu72cwAգnK>2v 咙F!QpqXG 0ڄl-΃gb?Jq0ljF(`O\ZZ̃rZ?V6$7_i |ƪ0dF%fǀ#E4Q W8Pd `"aOW}X{"wNK+/AE23'CA],c Pbf < /R]H(F9e+/bBm(jV,{,t 2 !gAmnMG<.XR|p_߸VMBK}~,Ꭸ>@vyvޟa$Qn<ԁ9P7$Cַ`el:[(9j L\CU ՚+L#֟lu a ŜkbH'YT-$wfC 5h(dQkYN{/Rgr_U^4]oزE>\iJY~5b?"H=b0#dljc Lf 52 >۵xfͯ5k.,m .'5EDXMԛsLW&,F~14̄ctb8pFd&*/w[&u>nY7]Tg—Jctiq5j }5۝Yޓ9S7ɬ>489BIkQo# mr~-!) 3Z"+#_5DW̲ Ǵm?B'κx\_1uRTE@L\Z6G9/:"_wW-/ J^Mp 뿣vV)69orE!d>mP*@Cݣnj0b HQ.uaO83 ޚLW%-*WQ$.,a"++2;ߚLL-KB+ 8?jr_ylorj9=,TMNJPSGUr߅"oˇg4/EHcRQJj÷ᛊzZWefC- %L`#u)t>ƳٺǟE_lnFpmsS`}Acw_,Ї`9]e3>C>B5f L_`.RP\Mג!4a7^k,m;qVثBŀ}S5g;mW {Ch1imz|ߪ($.lm&ѮkAf;P2b}[[mՔY8?zTÏ>Q WOvloٞat+R $ُ T7(5a!SNhz Mwc&1 T;}BOs۝K0b=LZժ݋ [&HKI_He0)\rw+1`ħ&-O&2K u 絛 * ܠ2[ˊ3Q~6_K$SI8iD>s2fm-V_YO:wmCuYϹM-$Sa ~g IDATA,y!΍ۡ ̓̅ %\uāOAD;\4b-,$$$,QaǠfv2{5sXWmDA7X)y/'$w]=&K°BΙjϻZhTɕ8X>3T>G^a2Yc&PfOFO4eƶ_^h(<4 4jיK $zlk5,E#i3V&(*BBBw+rR(e@gg~dd?jRz }΅RmAQ$iFpYk3W\qYCGđ9g~: {!qgHA Y s;"h_1?1z}(;%2f1c\}A~a80dL jSBBb q* 9)j9&ق|Cl_ OlUSD)M7~4/JFOBPg{K@e|ƚ8S1`w!Iovcb~ߥUew%4<&o C*'[q( Rh걐БŠHb) 8wmA=r]< ڽc-H5|9c&yC̲0Z[H4o<(&wB3 t7<@7^uGŨ$ĩ2ωOXQ|Ĕ=-mNw}Tǜ (b +xxǀib991)+PWk/*POlRmh >=|Gz7뙡+yߺԄ5R$wvs>tN@g$^2?@ H-&B"d{;!d$-,T>h:zN`ԣ4H tv-{b[P8K㫫'CB{YHHHHH7[LDҿJw)3(SW o-uSeTEY<|}/>@/c@0= t2E9-Jg~mt9AVPBwOYu%8\ ^̢I³/PN ?s=`g= nbg8Vo^<:D mp>VնV+N{OuQz }-g٩bk%=.oMa\|׿, &amWg$?FyrKCe`Sn)5.?:td ?#Tg0^PҠ:@-5_0W q_jE*`P^5ZAcXҨ{5|QzV(cﲩŋ,b>=BZoG.ef"napΦ<6Ͱ (_qx=qrx hy~.>#?e`.@'-#PM]$mO&ĀF`ob08BYrJwjJ[Ԡ:D?Āɣu _\d 11be`*monZvT=*]m/KSDȖ?41FMHug]c@O]jOI4"]cU?۽H$2og.VT%0`n; oSw]iZݜ{RS>5ǯbSBzZ EsYQ@T{c_;O͸ts q*WՅs@AC j1Z`c};ݣY}މ䶅繒 >\No货5Iw̼Pvm4-G8`jT1?rwcdIޓ3PlsAi z'ؿ$G]ļ=: Ov!N=8XͧY*ݠ}֗?P?HȬcHcgLi$_B" P_fU2z˘RQYf{;OY/},^~Uqu?K7:@s^KF=L i|7rSU G9b̜(`&*oTduS쪨BWI*0_]mf\;zyQ/ӷt3EGJ=W%x 4I,vLjaBr&\(fexĭ) t3 gb캐X .뉫B !d|j,$-|UKR3*G=p98{p%/0/'?/C\?=\H!%ZEqU|G7/c@0̽Q1ӵWǭN0 f $¹ Uu݂ʧ^K8-GcFoI"[=Ϭ7Cg;ʶG=0C ,Ӽ}C%B'"trQ uZebT.f |׷c >=|G WjRo,6K˅nK;H8]*NZ{.x;enktKzTGHH$Xg[D^V1ͫjlt3n06Mu nlD1nÀr2&>MKP}0'o- ͚R r=\08Lq? * +$$&P\Akf7^{ sdE}V_VͪGgF ySj'j688?2TLܯGDCcm6ǞY7 c8ɸb593џ(@wL$#g8<22o;.e S0Y=iFosܞvJ99u197HB !!!!u=GH(NՎs545ERRY^ܰO_]UJ|d kY"v; n861>G1\@9\y*:"t7_Zpp_R`"h[{g@wBNx!TjPms%"OY=5I}+UWJ^f,%zq*aΥDg FUowQnPG!dgL8CgʑnJu'ЧFH(yd M$@zV eQ͕k9d~Nq[u(2v\.s<:{JUzTڢ{kK R+`.SdOI"=2AF?sJnq\<ŀOF.A+QGBPiThj€;x0>U&1_m`CGb!!!H0|D{MȆR& 'yȢf*kx#`׋"bk3]@H},9ӷ3G X=#ok9)zodnejz-ڿӖ'gb0"솣m{;,KP c8pT0uFBm,*Tt e?|G'JdMA);W+lYwK_/T xa\-'\&O` Ow<;G5r~ч:^VZ\Y (Y,EDtAΨŨil{EUc?fF8iSe:"ژ`@͢. 8r f]33QF7Ϳ?x#h?xw){.$(ҲgK{ [;&Oy3rt7P߱cx_Cu!_Nmm=6Xj`5*|]Wc9աQ_ƀ) ɻ3ю?~жrm_=HTUNӢCKP+>"ڷ_TcNJA֜WWx|f P36}KU<_hy+[cD M6J sEr&%v6s2 qYwj]TV\Q ʍgJhW^A>:/ U&N_btL9nc_zBcFPҀ b}FxcJl$ 0p ,Ps@‚eѽ}(,t]x1 Tr C-/nP݇|$-Kj z0v4u l'a/'\}訧{i4bR3L## }}{Y/+My/z{pȱ"*^H0`HwnEr{~ز˛@ZWN󶤴{%OSfVE!8H}wɵ4te]O\JL *+[E;;™"^}9waJ]q>^ܙ+: x]}2Jyf~@c"'[mJI+،UYTE~1z DYn1<;7ld+, #fWm?[6 ,<&ibwP")&ܔDuJAZҒPdM `|B}Qx%aæ3g׬$D!:P5l흜ۢY BBA\ 9tW ʤRMf)3)%kXO.koFs*{gD;֨iw\7g]=@wØ$ fYb(0%n@JB8VYat.PVp,TfT 8 輦}J d8 x9 IDAT ooneM.L'cNEu*y=_[J*n8q_8A0]JI@Wl G}AuW>>#s_B§AÓHnoSt5kt)]92F^g|}―z.{VRY  .#v%gj=6NJ7ХBe5و&vĐLX Ɔ> k?Rt3 ޔ6cPך=9Y p'( ɟjV|d ?%8J{|TBBxcOB,b-3Dx>~ x.9YJ5k R:\?L9'Tf@wT{) Atm `q \HH2aHv9u6cfz)xeӴy0`?՘8P_%c,cH^^Wyjv?ңE+#eL"&XWa#>w_O]fGw5s/e_mPbuIĚQO3aÌ+௤ljg$M tg|/>^o5-lucktί>`i-؛55W>P3>bcN96|0az?:$H`}QK?FNs˫1C@g*=@df*3!f~~3!wx(̎4gZ\4Q_iMmv)"㹞A)t@!jTt`-Xc?n&P;*lCގX{y&: Fitcr {~e}Nާ;#u?!S/7Joϼ.䣛}޽T}t|G{{x>C/ECO{-ao/6EY -.x78NYS1!eJxto 7:o"Tg}l>:RE0rBhS,A3T cQϢiGF2&AhȡqƉZb=D *{(\-אOΞU'5(`*<6loο/-$s}YWHH[W? ځ0?4D~MH/Gjç_RT.2}]0 'bqRl'bsUֻlς zZYΞm8|TS` FqQΉG,GR+ t)Ӡtua*Ӈ#n}!yoޔEyKa!8 AT._I=n#ݱ]9 B-jPa{CZku˒j[W6J~ 4Kp'I@!͓3Ry'>1tbf}xKUF0Yݪ!Jl[S]~P_R}f r_cZcN )>2Q_k.Y+A!]%`8EjwV`_;KtUޯW'$% [{~6.̞'02!t GJ @B.&^g6UJ|1Cl1v6.ƒp Mi?~z8oz{j/;߆ &G4jǐ2r[!s5! m&5wkb!Qc}nEGw,;33], 5_e39?vwp&k uUף[Y D.{/|))j1qqySsPWl^αr @1NRpDйv걻OOYs}Epw-$GMǵQD(nd_t8j;] ˬ1ԨҾ 1~ƒzDDn߷" N%5gnda`ةJSŶ=%"BB ]VHy0󁨜Ϩ&-wL9zvO+Bcb"۷J|> i̊WS}{,{= oQ1Vj^'5ќR` Ys}jL r@hHpQ3,͢#JB;_|'+$*i<3g>(T{V&6K@1<4T7(MΎ|LJ׹} "Z4vqPy1?M0]ѢtP+YKNмuZb@联ZgJxSA_kn{O/=|OQs}H7`Ny6?׊3&5 WߖezT WM0H~gq O i>)[T]J'KK||NoDN[ %Bx5K鬝JJB;_C;f4ZN *l-dBBBBBY6OezZ[>'b҄ϼ=wYjQ5u ͞x|[ zn;VnpF=޴e3VG-}y'wYuޛ&#]p赼6,"( 8Hʪ⊘,se1ex~T`UsT\;y1˳>;N@y<aaY XyQ9!U`4h( dRPy#{`UQ,5TSM5oR@# [ć˦YeO>^zL"o8UL5&CKLU R9v]b 6m۱Yi=@+˱Dlk=ٽ,A|ev?S5GycjG Z)檕VB؅ E\*KdžSTSM5$q60XqI~;)iځ;ےA0LѨ@|jYyQocEYVv"/!f T131~W0-4Wx'*2U~6"/aj'OT41괦1`hkApHxoڰ6+֌M ˗ըG뛧 :{tHpϜ)׽:Ճ9MpmDG h梛-_8n E}I^JBl]b=p H l WH_9{| ۭg0#Ij[q $o`,X~X}gqdǔeEtF(e݄Eِ gh*ˈ3=XSt`bFF}YݜOLO: k>/gQ2}*VO-h5 ~Bvx-@M?YzHTSM5Ք(wDul FE5jFΗ5;kWekeNc榛`95]\>K %$~rUXj2K5.W)G.h=اLڇၟ$`?-h@bRt{7@D" c &HP HVy3mR[X$?4kWױ%Fd0KL0`y,hƁQ~z*m)pΑ u%6ƚ_s++iA5TSM5b#Lfq臐kg\1hxϤ tqi:U.@%8u7xf+Ҕ|Ƚ+Np$nnL2_ܦޮڠ0j^[3 \߹gYl|֎NH;?Q/5|Ґ[\a4aÆ#+pȉ pEn$d<`IM;+ݡzbEƅ~Wn14hĽLh:瀝9X\^W ѷIИJx`UAjS^ru*3%yRL>e/7׿eQUC*"u1/f( ZURՠF;E{ "R2餍k0Whml6+w.Ga~Qr#zYjbZf$IqOAv~]z7f–cD@F9ZDh0A6  n3$!KHBi2 y9;f0ʋO\ŀkjʺ+qJQȑ%JCK Bs57Э/XnoHr"l/aڟ;5 ~/y(O}sYu*>ĕZw7Tkm`ZmZ[f%M IDAT Ʊ:FJԴ8YTS3"S*Ttv}w?% F'ɯ ̲#Q0`A=&4_N0kwϺ`|wH]q.)~,kK&܉=RwjcXWF..UKCvA+_LWWfV UP 6LthZ5k_lwEޭ\7f/5d`W >9#YY87D66@Xzqv0ןKVx>ܲ=LʫrР'r8VrnAղ-v -kAz5TSMYɫ֑+Vm/ɨC/W hUd74_SJU0iy^7ڛno۟ HJHe$_ kT{jl>]xMve\Q0y(]V8a(Byx*5]&rФ hY~l8g+B?{S=TSM5ܐ}*aOigp+ڐ2+eсo" 级^"x1(rw<AJ7s9h'y"n!$U}/Col`b?W1jOYٵ<RօD}v& a.,9O;BeX?W *9<?n\=9$`=7ſVn\\7oL+gH^DU)>k4h?Z$]ݲp 8_o|9ЍBwX!Bc䌳GF`KzHhC8 YFjwo8:gq=-SFuM5TSM-irb_ECbؐ&[,R+$MAΖ̔90RR~R\Ϩ`զ> R}R*CS[? 2ZlFޓvAI&6V(?|_&W#OH<*rdLr,]8X۲Ke5=3"A֭noqv"|(>g9JΑ*W[ɬ1jan˪*' _*nR+T X z<[6'*(/{)m4hi4 B(C|kH/f{z68t**\SM5elR[qP߄Bs3(oޚϦ!#AUb/91[FYR"r]LY9kYq첌8!f`ZhUYttY]t{cV^b ː C*aZ"14YxϏ$C܎gP~Q՜ Lyb3Y#5 u+GsC4~\[qߚj)ϧKn+[i2&\ZX`}jc|ή^AY7?KYFDUXgv2 [ DY,9_QX U)\ɚgkK.ܗpcZqnsKN~5=-{Ysvv)J{* #< x"ҋEpΦ5^%c7`Q[>7 hhB'Ӥr̒d$qpsl]SmE~9%̝>ff ?ƍ=~pi@1(x igL~l M,']m|+3q+\SM5-({n sW KX,k\w· ΆW;C:V|4' @sU77s\1ux-F)aw?c.t]` RC8NNc3 {DadERbJ2<ڶ_H[l%o^"@@5n ucxj':0Y 'QHXl -F]=zޛ ]pݞ1;!$Qy$qR.О8p˿ 3he|~mtsyF|pp`yT>1rR&p ^w$1I@cx_L(vf+HU?vCz~Jt9r}</7;tJMY-SY96C3RCK݉F^m? t6GJ XKF%#h4lFq=&8N$gZrZИ1>-‹w^s@' ;y~ߞA:Pz̭qQh,h//Up<̟s뽦j*עDpoRސ8k2|xgz Fiiҗ?E7W_gM|(vt1d4Ϥ%.J)#mW,']zDJ0?f&䂈oN= o$'=pZgNMQTyr-]c;w$) 'Y*pXsT`5F9H)x 8|՛ zJdf]5g5SqZ (eXRNAEǷ}Q Ɍ NCغDvX/\ެVǿ@UBpM54 N\38#RDrC|g&JH(C4Πh0-h3՗^qD_B0e=.81C`Y&pɶj!5)fy%.;cG\`]V(݀B6}ysnK援 W1驊~ +o;$ay!O"lj)K}'>V\Q~RNaoڡQ?H x}Y C޸^v]r5tc}~wl@ k>""_#+K -r9ˇ-7CC6)bNy?drJ#ċxuRȉ<@VF7+ݨ$g5Qw i쿓,/y [CYع9zU{"!z.yA+T@cff*.[ugY9n}F>7[mh向#y*Nx[2E*ʪd6!6,x39&kt5pM5_'Nġ0=eX _g'WZY"j>jo@e鞍{C7"͠Aez6ѝӌAn@.0ۈVn\\7ǜB{ԕ^k*uUΪl򔮝K4>yPgGd'Ωpv2{ .es71`_nRUwwpSC;qa 1,DjN7<m))f F2  PEkOH/3Y KxD9g{"`O.3>@\;~KLm4ǷN ^o-4vz=ž>:b!}x'`)e% q}܄om5hĻb`{ފeQnn@n͜ <sIqi̥DU53ζPgLIYT_Ūr;^|E:ig٠Bٲav>ᕵom5 32zwncyk>05wӮe)-zVS67=d ޥ-p{gdFZbEEh}O: kР3 7- uِմF \+VBr[ST` pնN?s>c7B*X0}j>f._og݊%4~F%J(j=AIlu#R(ك?!rsGIM]͗n]qW}7w;u8"k'g8c^Dr1lDx#^uxWIRLEKĮK"Qmy A+xG6FMc^ IDAT^?4/8o ?xV<*p{0>l=rPnb&_&eĺq~USMgKCD!aQ20Ձ5Ñ+cK| > DUg+$,ihf LM킚bow#4YЬ i,04=__"y,Ѣ1o;?(T**SxWdHtc!9<]"MLDJ`Sx'G=_Qq}lè|X <} IJFr^KVmyXYG\w]pY/h\p*+eF ާyf7J3.|J:AdskKUR[1-V7iAZזgWH`7j7 1rš%PڊgAKj{3әMj.BND.GB& ͯ(_'w/5$47tspZ/1^"@Td~nn\ǚϺnqTt״ \Δ|YϗQj:mz ]g"De0;8) ܪ4>ɸL޷[㔎t_T`~"Dڷ"4hcw6ه\G V~[ufB>Kۖs?<^D AyBn'M.YWؐjZ$SU;|{wgbs@r_3j*:Klo)"xX8-EH csZڭ;a Co$`\06w(>f^ Dԛvk șMBLtfX(S wۼ OXM%q>%m2=٫"7#:COhZ=O4`A6/*04ڟ6T)gZPz4^͙" DK:ֽzt/IYs`@°l ShshTL15|^_"L *Di>+ʅBq^H)㑚fƀ K>Eϼ[2r@:tȽŗ mhF*m>t ϨkWȜ%(*\SeaS: tW֧T,|b+\Ėy5sxLFQc M4f1R4\N\Zq?j$Ӳ*syyVT QI`.Vǰ8C2an8 Y/43IAM;;[ljY#TɉUcȮ-8>S:_{ͣ1F9 H WFIմaO! eT YJ<`&w6+OJT`.⨽wP u{? Я"vU8JuaMF/ҵo>c|[=Nڵljp?O qʕ|`Y_h\p~Ú)F}R9~ZX Js͓j+L,=Wb9+[̼uTUj޲hZL }l\ѕQSd7;s آ:kvzrIvZ< -(mD(;S}*&d$V O@T`mݕn@;H&7kZ}lGZUhd'z@l s]?fY@ '`m ^Sl-08M;&c8XJb?7FPYr6HVtrIMe<^s+Sڴ4]V3* Iy"GyO3;tL1w&aTN1 j?D!SSPW)<`T۽ʹ0[:HFM l5e wwE0F<1NBW5v>SZ_o`M;I؇CVYţ!rd bBa`(luuss}I=O_0.KƊ>["&!\#N-]sUG|2^ tnmE9Ý~-T%koisw/Y6~W: @M5CI6ɍXSO\K܊+'g2](4ܥ:kXG53ƣCĀSZ9?n = &<VC|!lBp5[4:tsvZfgV} b%k:'.7lӜ=|֗t׋ 5>ko)"hh+__ ,w15[$7:/< /{!PaZx2?Qh{S+SqWmWh_Wc[Ϟq W6}wq;j/x>aH60re0ueLF9c2dq!!^%z:]%lRNhm$kF0W{_vuzdWboУ;'h qi^Hsu+s梛]^vN~G)'"{7*5-z{|ygN+D8൫,IG9MȻu%Qҧ!n2׿s1o+K f8/gZtޙ{og$Tfyv?qiS;[-Mf r`dt(q Qs mZ;HHl =նN&&TxܻtZI mBQ"a}ҫLspSrn rj؅uaLFwV~T`Dк>~u 6VEU#+H-mq+/~Tî<v^ q p]ntMVATl9ADdbf]ì~.NdR5WED`Y ǝTEbWgxAdV[^Y0] @0VQEu .0p ;ӀnnUڸS@_fIE/FH^ݸUpAy  -Lv4YVEʱ'arn xK_B&[!(; V)T:-@7= I&BcV hF*;]sWjvj iTUpUK5?4_K~q#ȡ+ T` |>Rqa(T`F1yW?1Rj଀nm.4\{|;s uv<( Y(NU0$S}]n J<2Pp븄/wM M77Z'~Eȡ#*uEA*Ko=3ŶD껂.y IDO %)B'بz$&OZd[w͇P?|Vڴss+ h 4kٻn>JsB=Ξ_v(_x8Nn .KFN?tt L 8ɻ31U$uqlJk 8qGH6Cs+}#cGV`jÌH7{ x?rЊ bS^ ?Wmw_ W~ @^3 #tV 8ջ~FtTp5g~/`Z .v,3!Z<+ ")*g.!WkSS.)&Sz@HZCWtۛ~us]G>Fm|+8ߎ 9 2.k酽W5U1[nH`6aCVQMk8NG_ w30pw* ,󒻪r_(;Am;qp_fhhf8ܯn /%$Dz[ϼlPl)H0G)>rO]h~,w A ;@KOt ?ڴٹZ@21/ ^}ﭓTge>O>9'Fȷq_8b`vVlXxSoF-T` ZĀz``'jXWG4*6G{|+=}+,[_<OmxqI\cԁHi1><wnەI`rm<}C ŀ՜XxUA(_*RxVGWn{qoS}uJO P,ϐF=!8n]|5Քp Jl-҃X_GYw+ N/h&-ʴ!ڍC3PI÷0yFsOp\-F7tw}}7m)EGh)jjX#E.fw5lrUf{ƣgF C:ϊ%/^vo|dFtj%ϛLL\&p]ƙrᾊU#ņr[W:B9)on\ۃ8= 8[/K%s y 4921^ٻ/ޡBl9d|n\Au;u0{--;7 8hk8<`2 8i#ҋ8%*'sU.7vQXPKfGF0p> / y6\ ,{)fpV׷O܅@ka{Vȸ0 "1b `H>yЦ: ma.%U rD՜d+: ;a'ƀ1R=SX5dPaE6{|Kso{ WMq&vwRà.̛PPΧDL~a\ V 50pXgЭ mwW$0b*"t<\ؼE|Y 5sM5Ӓ=Wh˪(fզ߀I' h1-q"I S@nط>+Z$[(C .:tbCyLVRa!0wlZU@O 8yRS@[u,Ә/C%ZVs mZ묳=s(%[n5ףW_5^{ʫU:ϩHfm&Ud¾ȤadlhrXtY|qm>{J,6J>奂v_*nǖj~Ux\vfK&\xVJu~M݂6O׫t'b.(sЯ_su+s*"Wxʑ#g UZ'^itsqoR} "vH/p='8_/86W^!(+KʺūěR΢_a8!/ LT+ J; v60ƨřyO:ᖱ+,?ۻOڳƃS%O\K7O1B&_+ W[LAgQ?B6"g_x"UsbPQiqpHn.fD訋x%҆"$joI7#(QB $2S}F Nf`Ob/y(s~BA9{cA2´5Dd|aI``~*"F*BM6~ܝ5oU\ yAdyz~4LJkOmr!ۭ8>dgP2}f'^d-3<*AglĞ3sTg%@E9t#rlp 6ۻW9y9˾E $`Ӹf/v}3k܂)YxΤL{IP96[fkugqF̾-)}KUѩ33bJcfG|)fL"h Rhrb'6;pbF2Xa0Q&Qc;p~KZFpfY}) tʙD(s+mœ¾ݫ?\z/<\ n;P槩~/3Gc@SҚjK@c3L 0pdz'sg IW_i/!"$ēiqqFH%Oc[^:ztg< A㮛Z?J,^ QJ ?w),ʽƔPfdHIjƵ ^z%{Y-Wz^f04VJA3=j/ & 6J7[h߶yVj!6pصO!&]x1:4g$L¾^>.> RW+ WODGJr1Y]Ĭ[N eQN呀scM'bxF/0iL3g6мe|$TQNs[3@lТE*!Xg^QbElL[O T`J0i|o8l +Р[0-֚ƚƚK0`w cU:D `kA+^޸gߒ|8"/:Մ?IW1%K# \^mZ V7@g\G&,^':0{J_Sd]}TG^Wo3R\+m~_5ǷNiowpgW<P)oJT~7FMj^׃lh8V]^brP=~Q(f*B^*Уp00=Aig/ lc6;/86ʐ{,?L_Virmikov Ul*i.1#Иhy>}GԞ F F~@iuȉ˼L"R1~EZH:8X#_3KPlp-9 pjn.f]DŽOt sD _9'/97 Szq:\s+IY6aĀjPҲŧ&iz]r^㚉Na`ͻjB#baK`4h3 n ѦyQ/4U[p{u`}r-xeО yN@Q RŐ>-T` 4s+LR_'S9h| 2';-VJ-o6~(<0xacg~r=cm.L(h5onqV[,yzN9f= wӁ%ϐBOgDЯ e%_zc9O+U爻GM\#r*MvjF%Zߟ$+ޡBl]Y?=3 oسYTn0v%XKvGZu[ _.r0`SiİbQBB{5X: l>~\߽u၇[`\sĠ3~濁V&nf_J@'A,ȌyvcҦӂnh} s)@UqbICy$o䠿9!kYt#JT\*v~6ӴM8JDgD"a'/ Uv]VLM߮&$`6nt?O*ܚrq:Ov1lHc'dfh)_V(9h S.3GW_s׊OŁ՞}us~/-Gñ1"JC3#fV,AՔ'}ΰ1V>\C bVR= :ϺS^FWEk!ìxJ 8< g'C>|krmB*0" 3*!4cQh+gၻ2 7Ngn(7Puzow5';$BVi x0fl֠j/h>/ Je=UAq*[ೠʽwj2M6#[94+{o?z;emQL;soR‘}Op$<\EYS#-N8<3ɺ>,+ 8\Bc"#K!07XEPy&@1>uaeQQx.'^B̀q?'8 ßюỷ#TOCl\'x]4I䟾b[ޞɠ~z+"͜y~"wW'4.ff೯#AtN{`:/~J05-?g%Vz>3 i\]c5zӁ# > phQnJei,XIF %L|l/]%xv}rV9}! aЇ6w5oՔng#[AF3D\ 2lktZ:q߹n^_ӀiA hC9՞)}.4L_:Y+#L,,S,V+ A-.rU[ᯡ Zϻ QnhE8Uzht{׏UyffRBmgF%i4YJޖgki-\#BrG w`aNI<L%}zMq\Q??Fb*yyT0vYʐ9Px E,("yFmo`~a;6ˊK|VWV[nXBt˶a&"* 8 ͙MՈ|l? ټHRSi_,; 'lP ac ; "}G/1BlѐXyo#L-􂁝Y6BxCdTou]HB=" /~w^^{ASFM&ی>%w. jϠ fP{MW%a1ܘ/+rs9l9hu;(tPG2>e$%`?0 {Gh&j;h]+,;g~YgLĀsǗiQ%[c2㼛 <=sDIo9ZlXN5F?)N+E Q?,7A4n-CR8y, aG>@/<δhDdn_nQ4eFN+횈@"~R9˛N+H&q_Ԟ*b< bueшJ߸"h >; 8NJ,!ۇiDa04 ؚ;?j Nn5%8s $s)ƍH!~t{8^xsNl -,{19o9htȱ6HjK)BϛǪ_~ V[Ayɥp[ƟTTt o*nQͻ},1>.]P V!^n ( 6fUYSYH=U˜$sigA,眃mSIɱzI g*^'㈉F)l^ X0@ C$`-=j9m \Q8_p9Æ_s,(l40[!\\*E.$I : ),ԼDRxx9OYxiŕB^9; .VKa2 \~XȻ[,%-#5Fj7$&,Cx~uD[ X~=U%qIsd܎T%(ϖ9]맦C 8Atkxvg9|Qyٮg>4sfHe\;RE`%q^,6aq(X)zK91l1i*' 6^_I39Z+4 E^x%"X>|.3x}z^) Vc_.P~Ԟi}8(HG[i#%/wմ~s2Ӱ{C: U Ppyў i[h`ZƁV4[ި pc注ʴ&*BMT ҖԓS,ː [yd^9h5˩ռ4]q <ym!&JB=vx`_]hxW :v-@8 E *sBׁ'Ljzu 84 Bs5לĐE*)g+nG:n|5줜eW &bZ2z~뫔 |l/KM?Gׁx>h} TSM541"EYO\#V%@ QmVR$##a`l8yj@̸}pLs~YRly+Sp&VFx]h*ll]c OygŃonksN$ߪ&ϝ3眥i3eCy;H=nj;b \<3~*GobܢWop?4gL.T4G^ژ>/D^"@GCbYE0S;ڗGĀE.Kc5ς9#<9%A.&/X~8eÀEmo OS78,|7Rj=~& Hf^v7dzuΫ%1śI 9u}tXٍ3lg WiT{5KLJU< A:|HfT%0 kŒx<^hЂ[ق]s wqӏow˺( VkCb)Bb/ okB\s6_s|V,I"DMmX%.4 [a4L4B2?t@8Uӡ A7$Dz7:I3t )gkocN>2I/ԅ AW8lo KgGvq[cTULٴA 49WH; :)"h VAވWoyiA[N+†NAs"TSruUABr`Zp]? $ᖼɳT2]Ns܅QZ]'KS1[45p^'u_f3tiHłivl%:$>5ADADl=.ȮXԅ5]he7!x K>}U:mEק])hӾkc95q:.6o"r1;) u~cR~?R(8T9 ,ME0so&9 - U 0bljgfяEG|\q_ڳhшd6jMJdS_Y䑀,];ͣ];`{GzmbS' xl椿R}ڙpSDG LH9̄|^4N̵l]$f2Fl{00Q~>4Z~Y&<]j}'QڻՊ, 0p.߄Ǐno;`sgNKp[AEخajXd9T"]KVQ)uozn.oo&_ V#zt,cE+⸿ 7YPjOWCR$^z`iVI;sh.x-m37C)H5F̨Hh/ٷg~K QR"*0Jc^HBp(4~^ƺoBEf`XG``U]OYwŢke(pYL{ioӋ_tazQ~i]XyI8!ϒЯ Ffgl)>WI@B%'Ʒ ĻӗslG iA8l.=UB7ٖ؉v6peprSөќWb"'juaǝoc" d3?&)BݠED jA!x!>~p`.Nb qӂ+|(X#%EwMmtץ_CJ qq`qp_u3LCRl՛pַ]) 9 {q,_c<AL`k~2>y%mR>lVlJ3YyVisz^YW,(,zv jTS#䪏S4cȍ"Գj$z^ScTa| 4\͗nq,ז9#%u436/0W.i ]s[qB8^a`> i*"tT`EKEh%6ddɋ+dU~7m" v# )JyF F/[-f'TmK&h~%6jaeu@1 XUBv-bzgGrƄ 6\'У1(g#X^pWQUj"/[uIXrKf/M71W%gr΂AD3~Y X~SO7%7hKYhXUqF82P}͗n]qW}nHKY? \[baߣAW]ZkL0`uX*p.Q0Ā?5@59҂?``%M^h:䲹! qw* Wcuha|u,޹dr멩&Y]V<#f;;k}u 3ߴj* V`Tgł-~ Mwg,+xU=mJ(J'(GU/=n9@]{3{|I+qgpHg;<BgMW%߼fh@(:Q0`٧'9IVO|03lMG:, Iqt!<0^#<_Mg>8si諳~|sےD܅_ $peB+$\өnIxH~l2/ʯ6Fm~q|L7hWXM<3ڣXzD\_%.Q͛SY(l]zJ"I.YFc󯩰]N9ŋǜ$g{$/$Ϲn;,"9:3%U%ݑz=7ʰ Oq?" 4$ 3 y,E[J(t=ػ-U]+GՉ<$.@vWli2%eMK Hwvx i8Ǘ6*{ai/V6uRJo}ȾwTΟ[}PZ/Kr}hj!fmPޏqؠYu$lz!Yk%`w+,޸7n@kda1cO G g9[buMҶ?WKy=eh:SW8C@^%mVDJu ^ |>q١/_+HcE9c$ҺG$i~uk=]4 e,-ߏۥp|W yqj^iA>WBI݋*oBR,%'zwc"ק1CNɣG,2oq<.; 4^sHX%IND9T᠄13eECjH0u93Vf/]: _,'Fg*I:B4%/, 7S(7 ǦdN=;rЏeᵹ~HrJSM{kh%͸?!!wu>&y!:yoI7P~#SRŶ-4=tt 79=C^%[D7el۔ T 8wwV u?܈l۬wu#VvoB?#Y-WwEsA#i(vCGr\o4rM+Q<*E U^Pj.6ǜWNj`xO]̶&V>T6m>(gU`XB{^t?s7-J*7gbRgNLJs>m֒ I괨a|nIL[ 71~Eoqa6jN:*tv{ZMA쑆{.QzUK?f+:c̦4TU+YclKB%/Ͷ-!xk,Xnv:?`*̲H+FӅSx΍~`.ɗ?ds-t2><SR%CHM.Di#[#|UW<~]ɾ~Ś!uar oS1cI=eO@hM/D \N <.:gI_4;C\sgɞ;(8TB94+B/hǗ&w g/s$Y *pyU乫)KP<l5/IRHbvTf.#/>-jHn Wh ywocQg$y8/l;/ȢB~2КSh--08)Xt \" 3/΃;?ÝO J\֩}*[90 as'@V\^#8~8IwT$L1Jӻd2a`R`ٵ!}\~~Vy 1ܠo*|/ ]oqoE%WB^|[#u;2V&w%Kq_p_ɍd. {0uCI_2'"9Q*Lkji|w9j7-ᔬ1^Ca n[*7o \0&Vi>NOs!%1 4+sik~| ,I˪+pP1 {h9鈨Em춫ؔ פx/Jt*KxtZ>!WcF1ư$&ޣ?叝\{ʰ=AlrR"Q;{e}(KE:/ j}bG_?w~R<m91`uBr~'SL|JxH ՟&?/_Y$_ |#tFvkœ =}ʔ#f#,e{ID߱& -Cnl/@j#3ČbE'v֞R|}ކ=j2P @j}Z0$p_U-}H][|G/Cg~'ynߓ/6Yb(d3~BIzAVwtrHX $*ԋ/r^KI;oOß?[Ahٷ]\60›5g@ xl4-BLzaͶ.PIXX7%iuV' rLv^BO1`( e .'~PVīu Sh*m\4'ppJb-u5{׻HAEM /BS~+3TgQ&M *+J1 ɵ$V$dj-!H$Kq"hpnQvޝf7};r˿XΉYkyW֭/ Gj,Zh.PL X J0vK *WCba !#ۛKR4;_*:kfQm`>|43zѹ;|;õ25rnL7ODxB:t|{}ɾ`J/Nз֙V e~/*BuՖ! >c'̗(#pR3~M?$/_q9cc{E|3B$Lsg=cږ'Fh1(5g.j%G-3wg@),f^2dRI\H*fhf)!N7GbHDтr,C}/'\mϻ5sÚpCoRg/@5e}U(념[/-6SyMߊ9} * v U\ Un$#*+BL$Cn.cp0`kGCq\~Ϸl͌xudc$X; C: Nt_f.'䅆[H0ehLiC.^h9WrDOӁA;1譊nEOa#4\&R7 a>`q-Wڛ6vDCD V)gR@c-3Cnh r@e`ӳe>IC K"\&QHh5l).utkl{k3".4z%6F3g$!="9W351%0"$M>3|1N_j{vdeEKsHuBŞ}!' li|Lk )5?6f<WU:V/39B,CRH&-J4b/9^*.O*S<E0p}^+Mk`~ 7Z0[w8  5wklQx <k=$ HJ&.dȘtԈٞ~ܯ*oc&dw?Zuu d4f!reu>jM܅[x蒯: ꁧ,ZS>cӛrHHPQzBuQAPEbSf*sIq_f֌$(BxV-708FM} C 1.A}T|g'|\b0=t;=J>*&Qܗi9j=9/ྨU~yvo+4@;MĽJȋL܌阞^6Ysjbp~LD`!s>(ң>X@y6f&!7-zx~G Z-u&<^]B2B x.];+G8G?3!\GewE eqs[+I5#pC7y*M2\]VfۤU$*:3# xC2E_ Gg^cVwb?}SbbgZCuAzgtxVv{Xdin#j3B:d"N{q7ؓ=/ XvGy,6 }οܝ|x|OӰ}a: b1Vlwòut N!Cc?l:[:hB \`U_/U(rV'7(%%C \w4:rK_D$@~,!)`%YKw)uFb㳊ï)|N>hw}tz瀬u]Ai0W2eclT(r1KE^%^ &()V͔\1q g~I3^ ,ꖳm6\+ݲfu}2Z' "Y6`cV';CBVDD}Wb^h+3\(FF,Py ˓Bg6ڈEҧumP]兮SuB0uzK Gep:#Ur֤0G6997Y$ }ޘhcx! , U~+ɛMbNqH6$aN25A\op8u˿[%`.޺>&K2Q@k ΚjII 6-~*7 .\ݒ>Up/fPbjXo|HC%x+S6):U~ƒrǃ!xw 0 m-e>׿"G| }ܠ_잠$%rB7<+Ijxe;ߺir~hҌ[nc5s 8+k1 nVJPj#A\߈wǮfT֎QD&9Ce&Gև|+5m-gQd UF> \&.e<%Skڜ LF) )rpAyW#OxQ̈́ls~7 "| <1ѳi<V'|iDu[9+N 0I"5 /ȕNJU5#E%!o8Fq9HYRʵvkA~nm"2=Qj"W+5CIRʲ%ucU6&.;}ýl0]/ 0rQg͚5To96&К9"tם; xt@6s>l!րrgrͯ5=*T8Z/'4Ҩu 0Ws݅t*0偁p+Cq u#;Lx!Õ|f\7`ͬ[cS}?Go۟KE|A[ncNVsD1sZogt$pK9/0=.3뮵Ha[:+x~Zq?k\9}\GAhxҿfZ9W#4k2Jl;VzkSjM U%oGi3(´y[ eƫ4ƃ.ca9Ű2x$ op}L!VER^wsWw ȜukΊƂ~KR-*}ph(C^h\zτ?u*#.`a>l0\ނ-t ) tykDor^r*2FcN6ӊÚm:Vp p( {5G` &&yS#ÀafKg, |`:+v%61X=%ne৅ ]`x ߑcF B[,jSq^pvFv_\/p#@%D2be>W`^m]jh`e;8C:E5P[e( kǻ}_bkôۏ(K^Hz^ؽp/ *8B09Yji%rB䩱% @.jϕHWtˆ_T^)#Sj[ nG ewmrTĨ k3)ÛE= mf`z9#/tm]ǁ҂7Dt|eL `M o+{ 7xxJ Guw0T%*6$^C׹[ۃ/Abj!"8-9fWNnkn}Wdf{j+T8sWX VV D53%K`J+x;ptVl=^X{f&\5#8 wpS@8pTLYtЫ^ G;[ff ͌ZYTNzp: l"DpǬ7i}!$qt|E3Sa%ʣD3%hEqd,^"'U*0dP@oCTX " ,3Nz%ǔѰ5q(|(|{0ðQcP,)ɥwZĝ6J5e{nm~G^ڱ{++ x}/ô% ͗F% 14}Q̈*g|[J8wG&.E[Ű+}=ԻU7+1`\6%;n04 IG-E."Ȱf ivMo$DRCE^>+.Ѷ}``AC761}_Pa!ua1 ]Dņ5Y}Iau"/䢼p3P#0 $-(Wpsj$~ g6_Z'Ngxti01*_rIV.RsHI-{%`ȿ[Q}xeKsu\x>Q.<^X!O-LEPPQ|E7)kc$2>)tN=[EXqsGnA°F~@Ὦ0>cIYaI&ww!-}]l?Xx0(7m @|a՝mM_ݨx.Zsk/S1r?{ XmȈJwD&Y ߕAE%p'xkΫJ? n0.[驄PMriʼwKrE2ybRyARKl 8Hp) ̉e"]͌o$FyavjoC?[HShOOhxN=`1|6 9_CHS~"+5k?waFWPǧzWnoc 'Ve%|%|ni+:Lq5k=8P""cB p;o*_Jͅ7-t%s, %[Z\m 3^4qvOMjU2n*\*0~DZ._)53U[9V e&::T ]J ?iNN'9^N%-J:t_CWpwZ (sF_?jg/k[g{.o THW9Ub=K]bGaJhz`i#-U\~Z*'uTyD }*\%aUh{W}s}_Ep{QW-f(vfTol(1.lq{W(`k@(\}Cu`z?0w̙;;VZgWIߏ3H!~nTE?Ν'n5ülB]Ey2zw*biK]OilWa(F]Rڤ0"S@ocy$<-dB x0V7IDu2h+S@]J &kM!oDKKF[z~-FʽXdڨqt`қSt.@X÷lej7Fra7 6`l@4/H9x[wsW7H75؁߱ofNoc*f[mwK(oiQZd| %~AL_"T;ٞTKo "2`MnfTKVb6Oܭ$L KR&b7IA؛rY|c! ]1V&eMGXsi7T8*Q3ÀU}qDbVm_FTGct7dP[Wr>l ?EHKr#tBa1Vrst ܦ}MKA)KU6^L+o-trXKLjYnS-|lMB,0VGfnPw1S  ?p`y6?~Vך_T whFJТj6 H0\+!ǛfK2eC)BҾ^lg؛Lh9<Kc}xaPW h,3o9ϪHxbpp:AIA-M0jhPmh/(f/JݐF׼=oR?~D*ܜ,Уkh7-¿]\m $C {./`\t 0ty)2x1`ȎEz*c@\(yǪ_B^ ,ۥG84 d"JjfdᗅC%kŮB]y`U@sv`ՔٔFxŧNg⦿jO-qgR\x-'9)`|e'VrQ *)|XGq\Ub,x3 _>rwXX2}'kNhZ ؚ5;%L&;M9S$f%Jjeo)1d9EZ۝ 0ޮy! 7៞_t8vL5Qz&7J|DU`e{@s`ьπ=T 诌.h i8Oekλ}t-Q.9K)aÅS:R3q1,^ùc)6-g"A]Q|I`wyQ(qg#loH/T M:nuFÞK\ !e%mw-Ole)竵"s'7:͟.a9%3Ҝ=' IDATʇ=SOΜ|smvfJlF 'a 񼍯uK˟\3i %i~E#p9|K2*-pHYYzպyzyJK]w :*/QZ& 4= }&jU4n*vdþ7,%|Pri9NGXxbXn0Ƌ[)~jh_۝7>H-B 6 Υ:s~6]h`puR­5py1tT["(̾WAS4gʙ^:Xs;H&KZ4/S_*Ħ kɾ)^v LOצ1y"(wn.郁ٲʎt@153,6DN˗| $j O-7}F=|I]?Va;J,J%rP?W`@*Zʵݱx-nSk k?–Ow{(f:ʯ N7ͻ*b٪I:eHVQW`0 M˚~Z-*3_lO,ѧUZΖ^"IiU' v``EMB_A EQG+ N~lIAws'~703 R(v6çN{Bp_^1W&e/쮨;q(Ԣ'd`jUۚN6KO]@>..n_wO5vg ٺH͡v/u krn5hCasjmyn$ /@JkUEH0I 9 ft ^^*?ޤ7y0kMV {tBIT9l Y=m3$lI+f8 ÷6xSBa誏Pou̹ǵp\7pZ%2 F|,~-@DXL[~83Z7>L][# 1D3/)t9Pr RCJ |q!.Y`GpLr֬.M<[֗EL)P;Mac_y^SIPn9(+ ӣvN_LB&@k@os[X}hꆱ `$10`t G- 00mmIjMk2F%00q[7_޺7Q{[\H[x`6?`,[ T~!.(~@ϻtY&c$ ~Igz9:v@&0_;d+n/ &bkt6>KG8ʢ]I-qHVR|~ 7nl#׮/"m|pK3M.ŃKGY լ% BJx^Ȑ_9_,ռ%ڤ' q.֤ys^YUMZx&G'Kh)`}0I `k2-3 wd 6^KHx+aԤTishgBb5LD+% )MUӚgVTXcKuyC!ou33m+wv/J34jM8V F5UN%g`*6%v)۳(\+AvM8bvh@mB1RwLãU뎧1 fмUh)ad2hK+MKAXI 1r%+"5ŕOӕN/p-> QR,m=Xc?T"4[`#G}Zav4L2z jZe, t. tƫt};:(g#{ܼ`s͠ݪyZB5U;B'UzPAKrTa},EjE@㤛FQ]$A x GSւgə0vx{$A|)eAEzDw뻬ٞ:sx2q{}))8Վ?TZz=)ɔ(ESc GYI V%m%W>͟LWq F*:UT,k r$V  <%+Fub|;=@I 6l)h-T-VЫ;,-qv8^u=#;x:3DDƃDktT[تIo߬h7Ǿnt!@Kr|+7\ #I=7ZmaJ ԴVl7h;,=ɣL 퉠dE݇ ٧P28(e=XHp"mӋWlh 7> }VN#8u)SϬ H% x$}ٞ;cd3|DȖX^Pi>I_f^SYzY{!CXB 1,?,jd~AsY8fuwPS mV|q' ;) lX tа WlP ~P0 &?5߇HFw gPՉ)3p_۫e&d*_th=Qb9{ώS)#ɷL7Οi;.gpgB4Щ).Lk u.l5a1IZVGa04IVFW5#.<I)Um\[8׎"ocSNƏ&# itZU x Z<#}E3cc92  R.`ϝ,'Nqmȳ(^ǀېюr.!$`[Dfb `9GLMGթRCcDa&"gVF^^¶ʤEVT$s%_,X{!__-,f[s߃zT-ۤ#R"F~X=aIΖ*盰)A$B8_2mO_ܓU3)MI/'7~wX..$}}{sG}Z~Bk$mI.Ζj&>W X ~"o I"XGY[nH^KKbtӯY2:QGC\dO\lU 咾vo]4,9$5yQn>J4qྀOlϢłbg` AHȄ&/" IJ+ sQԝDN>οL6qWlءpWFͧ޶&1ޏSWj 2vg) rlJuQ.!M>$o,N ԓWiS*QH}I<)j.fӡY _%7ծ*Ӌ(JE*~anf&(P.&+i%$}9?8xbX0bӫoWx#v|,"D0`@!ƀUIXܩQSj+{0MDϦ I%+o/9^2H[:s$} /Fi_bBskC!: ;A.HBNF@%Vn+ M~/q9;,70죯t6V/3&֒ӚvVwm4َx'(K:}tC$Z0Z6sEL8;v9Dr4vխS_$6Sc 4PQMSH YV7t2vڥ6 LZ0K79_B <5Blgvt8_>$'R( rA8G8u˿Jǃ>W_q-*L 5Z4qg,LHթr% ڕgY|G<"bY xYӑMm7ΈQ`j:$;4,@Z0ߢdJɀ(LD=Np[2_ldYbd};{#u3C@&HDY.S@T~)^&03~9$r%/JmTxm37Z3"w} q cW͎OJY2bof)!DH6fq񹬉L(QjhY wd$ x\jo2ʲ6\-S8k IލK_$|)J,MQ4aBC4&z:́<nőpw̹O%V ʉ~]VX\ߋv_rm1`;cq;߈jZ @xhJ\Yل`@254p`O)?Ҿ572)rz!#+\.fpt˖GrP3U0e׹̭uK/ ,}`HB ^hE="[ogNI|~%Dfi"u// 5C]ݵL@F^h=]y?HkcJ҇QW$5{ݨ5.y$jz"į0`Pw*_͛>pk:zATo9֧s&_.1 Ņb@ !8m]gcsjB1ީemr OM_}F1`zLS|a茲 Gw t˛fRr]o;B%\iVHMHR=k}Nn&Y}P~ogߗO~Fgt35 $6閎L9?㴜!\7s ,gp>.g&~; 85/Is_O aޖ{<"m~WDw{mKhѳ; a~DޚZ;g?i!\+[5;ɒJoy>(ˁY`^T`F#FAHؑ-$+NXj(V*v۵-Cd<ǀ4Ы;f#6 OY_I* $(E^5Ja IВ` .]NR@}NO΋!*{̙'w/wBNNd \}˰ެ5k֪w 3'5د㣌{`_зBG6 (k2mNDFA-6K6}](]7vKԠMh#Sev8 A%.}.oNjb;:q%ߍ:i}Xsk{5M9kIf[{@9a`ODv QM[M1B I!%fDpYBEri^+l͚\ő6|/$:6y;J_)C秔%PV I%*;4̦bR;8qMvӧGX*_ާZֿ%fn1FeMuz耈rS1ё/4iW6:8)ve {j 6ڤ$U0UV^O [pi7\<\]۬M:^КuU QM41To-=㪄CS@s7dgF*m&|:EjHuZ]?ß?S%;ѫx>^nN\ФMufȰzOc܈rTF41 <$a|.ՎvrU-5+[F<8C a}XqBPٞaZE÷í{B<汗5Jۡ(̕,|B$`{$'Oњt C [ձ#uAx$z˜W?x0`\C}CZΨtOlB)pI ^ ӊ/Ɔ`00KLz)V)˧y*w"إs6FENUF3o# dҤ^$5#^GVFk pj}k"e4ܻ{y'ϸ!,!EzyWsAiC=/Ák!1ҧrmkdc]8&[Gmqߘwח?B`QX7l MA+3sER%E@NDO12d"'e*Ro T-a EF7o ..֞ @IݤT$]$='K2$T / ֺN0q 6|pU!ݬIZ267*N0Ί'cL96Ei{iac# qv|Y%r̓K% Ϩ@v`}}\4 r>[n| 1K'-W@Hmi~.Iz587sS` d)ΟivӧG\K& )dZ9MvcrZwa׻<p-(J`#thr߃|~&B ѧkk$y}_ԞYH(0MAkkD$ӊ{musznNbPM^lq\j,#$`/g?-q0ba}3y#[K+7J>sO]|9EQdY00mW >PxO +!̾I 'fVsH8bmyPTW*Ⱦ`|_Xᱎ=qY(mk =YRlbGVnkASyw]\n$_|;;JAt6n &rf/۲.:ֽsqпfyj=SY9.$ T߮H>Md`0B6ȫ6n#{j IIRn\y>|W6AH"rx<@ R'u*ɉQJtSsauKi[@" gA%CT2ko/V󹅠Y'&-d9q8'XFXA `UZ x8-g0' k]R/\ݽ9>eM~Wy -Ki>|"趜Ho0*d"HW[.YE  >K' `-WZ@ۢmq6AڸC '"|ķn0WT ns: &W<[Vt>gOg?i!\Jz4*kPQ%Ц(jXjQ %wE@^<.  QIP:lJ><8%gcn_BX6+\ E3uأ32r_ܸ5 6]5&CY37ԄKAWl "O4#_C<`t׍`=g요p$pAm~N5+$9(kjSgi6dG"*UJ@l: }d=65-KБ0| JSl;y\| Éh(QDq0baIǀc'[ؽs h؍5lLؼ):TлBum>g{)Ӯ͹vv{G32Ұm%< Vm5}A2hdW~gKy I,S:kZTQ'A-]K0'S|]\~/_DЬ@~^/S][|n.^!ŀYZыK]=9ʅ^& MMM p)7@^Vb${fTX16.=j$R5"4SZMk՗!Ȥc+7oY2y]fkWqF)0 pK|p 1@\:P }#,|HK+CP!; H<3 <#5@TC"w!\|*]"w`R2ִ̙EgZ}A&.y|#K6?q=Cb:WX0_ā|jkѿpV,b+ 8]ŀCV^}/b"x4*QDj[khۮJƢb|} )EU\vjC,EgФFo-(PL=90yKx^㎎l_5dklƃjuOKB `c)7?ڲɊ<_(_>b PV>-g0V kmjh{a8ʈ܉JF` .%F*HޘT`v%*gUmUvݔ١6*C3U}N¹V%\T]:{mV90 RA$A2H+X[cJD'5ja5|i,L&|ӷ-mqyxGXxgN'dg'O_wKbg}9 _~ItpE{+찛Z/S`T-81W$8T ~,)jt#@C n|џdQ.Ma#lXoj! LytXen+^PBߍHuNxZj S1e 9W ygwZ/yy$gu[zAbk>/V!{VXAKCxt8` ~$>:T')XyQ[~ZM; MЂa#.[pJ;pJ D1c_A&I)!p!a jT|4-& -: XiRe5t\#L|bX:#+#6!P~Àoa`ɕcG(`HkGuI OUDvC8G2^eqlcK"+M3<1!m3‰YÉOhD6p p}t>7W"f>,[`/{N ΟJU0Οivӧ_|;;"䓀5kZ8dvF6kFVbm6ֲ^,¾ŶP8fWi9$c}rM+J;`@ .9EdU䭆Í=1ã6Õc.[")!(/K/F 750ǧYD#EW;Aa?_֨GWF7ie0nHq2q?Onu?!\7s ,gd_i-UT1xEj! b49%E s,[#D> X1lbH]:Q6&l7¶[ q a51e9,jȥl(Qt\C0)+zx]L\D`ԑ£$eu((*1+{I8kAe*5$:N#i/K!.UHUty$_.i'u ̉ogEh(zob߇˭=[pl }[`0rh#~jg,(tc=KΎDg<7kΑ( <6gScE'ާ} :}B\&qk^^G.Dйw;n_ٹfT* "փDza7@oLcF``]PkŸOj`uM_$>˻0)L9DZ:Bɘ,Z,jN+d{dؗeS m!Kx*L3ǭUd4&D)<αO'ROWNh+㌷9%~WK,}.˺8qÂG9'>[[[zt.j 鑧;r}E$EW͆HXzb7 %Mq$1p뽵8̪C㥾Vl%0u&x!MeX_mu#(/muXJB˶ညDFЇINCUõm5JiͬU;..~K rqapi.4QB kMGM\w̲S<&.xa[IgپAʐn7=u: ah @|3n-$'?UW5睟ix򗏸,Brw~| $1` ;2 4 OmRA[!+ie\0lHF lF-p8g5#t2_D ~ dM[tmV|{:dӭĀIrH.s'7:͟.a93 8 [2הHr=FM5OϺMS6L\Fb 8t3xDja]-4Mkl5k ,giAX`~;z'5t\KTn_B~IDe,yيx9>}`>o%c`|? baa(hz39ۛ z1}; B\PN3)=r5n=6I䊘(%0B\"͂I0ZGyMo[AAAJ[0sRU0bp(Yu bDI[%,!=%~WKsvW&UucC7lۨ3TBkom̠K!RnvSNLD빙)Omf[ mD R!Ai78WYcvu$|Y-@jKA(FNzj_JMGQKtLN] x`9_0?ck=yw]\/CNi#ktݍm05kZY@u墵u<2@hr2d TZ 3dѯ~_|Ɉ;{vΣU wVfu؂^1+AAը"o+KdD]ֆ~;ŷ0`6.i*x%M} ~8-g0DNvf$½A0-kd֌ V}!'*s>)IJdRn#h /6|Y;/||Uφ?+xmk؂9CEg,[ Z&H^1w$oA$`܉K2ضy8#i/K!?ȅ5kBvoR'H8Վ1ƈY^W /^t€я4sA:>t4mGK St>ԎSzʔ- "~|FԆ5 y*<$%a7қMw2=t'y {c-Na<^&81O4;.gpgBo1SD΂?#H?4T3wM\Ж~ :NՠElmwΟlicR>˵Y[ˊ^U H!<;j,f0~Hs[ t2|s!nX hkz|<f)鴟sd?]I=-q%^b\AiRdN% ;֘vf̈́`dнꕎɾ€Afg[k2즔Y/"4v<\6 IDATVtR>}-Vv8CfTmN\{S-d LbYea}an״l=sAwϿrOX..,.?nkoC(剟 ~D|`fm<'a;[ʒp˺ÁeHV`XA\xP#~m ;ռHc/O}o"C߼7CҨ>lh/X_YTij7ߎQ^=rusyhJZ|nNGڳ8v?_3.kIX?yAcȇdoJNQOmZ[9g>Ϻ׀kA)nVPׂ8@W \[,G){9 +ZpkiMO[ <iɐzxo]\Y+v=+A25{8qp i;]> baIzR"E"םB06 vT Ғt/iU[q'3ډ_~U:e"BJ6tb0d!'gP5:j:*<)6Iޞ\0r֗㺑$$|Fzsbnnr&UĊ@?2B-a>,# 1;~/_3s&ng謥LI=ۨQ޺h'%-+*Z5 >gKg%SR3p57_#͔z"M0+._lR$qk2f-tj}$h$ෳ'= x9KrRgMkع,Cq%`g1,{WEYA\'Bga+qbآ2!8rOhp {1 XA^Wo 5#MB7b]UxYR:&Ε)v̞!S` & 8 gκ\)IAWivqo\bbȲerwUuG!^Z|g\:uqD;ϡzͲU!D%# rwXT[@ɕ蜭=J4e[&pk RBqӷ0و(3{ J nZ2WjpåZ aٹSsg?3Kpa'ĭS;K%'qk9!l Lz Iڐbmt0)J1/S|n4F~og%(~4k,  lr;pLZîځÙ5Oѝ3M<Ao}`^5Q0?4%âqi'"/"_?[X !%(oU)Il~GA D 5ъ2:fᧄjK({~ZK|Ÿa9߾xM1z{ DĀ^o1#i26i # Hp$W6U;ۀƼblDI^+<𢩊5u{n5{QQaZg͛Δ$ý4Z#8r(;? 'BV"`0ّ 5t1@%h̡K= nI!3屖3J\1}O*]} g_93,e-6/x#1 fM@>%|Muǂs'?s\qy :P) y+q0:RO9LXko[\6weʍi8Lntˡ|P-a/ aQ~-(acפ~u[tg[%VQXpJqʔjڵuk|ipnFwq p%qI]&ժ3֬16FOS`%T`z=2sd۟z2Jkw!dη4MkBu&ҍw0i#6)fsE'j^a:Ȣ+VYZL{%ʊ,Ǖ";Mr𳑓adF5/n-G+cq 7 e3;KH lΝ"c-=-FQo22=܊=MEJf ̅$~mYSt`VJr |t%/3k,. 1?<ʝɝDI&p1cX`9HĀ$K6Z׆}9ӶI>wJlFv.֑F0~EzOiT`"\a&{Qh TۚavOk'|k֬m8mFvjbNHx4;ñg9uDP ja%bkTtL4{&|%ÒuS6>kX IĀ{S+q7lf vĵeE L0pSf;5YLT^J]![h00Q(^quZMw,Rܡi&eQОUoU`=Y%28 q~M}~D8ZC=3*0=k֎O6jreʼ7o78u%fz[R,Z`<Pro_7deVZj fl6 `ӉB+ku=㲖*")Br[FWϒ UI󳟖8/_1.1FXΘR5Z78.~^v0øYVGthV>n0:E`,dz2=X4jud;-3 ~+WKE\6Dբ&d;(lrȡk/j2/)Cn Tš,qV &-J@p@ N꫊:Nß: %Lg2ߏqAhtUY!gE=r&€wxߪa`03GuMVljYâV+uY?|5Z=gUq 2 0IjZhSZ'8jaPx5$ j+A;_^ ~x\YHع?N%弄]127TN0RL]8[#R"SNR9.4jl$R@N); mm߈SuQlJiz\T~kDn8Ak#HV`SQ='flU$B)Qo$V58UܪN% ~|} .?h:¿ d{dž:M<u^<&x+e-|k",^&K<ڟñK4SKh/=XhY+3lm]ɠƞ22qY_çVNFP|0e־ '\ςy): @֬X2ו$[5O7s'7:͟q9_1,[b:'߱nw7ЗU2 eTECYHI}^IޑZ 2km/ ŤgmؙR%J14 x%t=H`۸%GLvQ&^5UjcMĮd9> VהH=,E.>Yp6I5Ny0t<|,v~9%\0t>#TKXZ$">֬5%ժT(mL.M+nGK2>G/頲ܫ@!&Oz렆&Q늤z4Vg&V> RCR*5Kz|]\/İİc"h!3XfeM|Rٌxǹ˚ι@SZKy2Mn (#RN*eWe?Sb?)+՚#5cp #Z(ůHSK5܅81`k],P%FS uN~8-縜/%,OӍOzRB Ƈ]dvω8wyUY_ "kRvxUwByЂC~'&RoKɮ9Zۡsuh&Jl,Ug_m^ˁUu{'0:focN"F^;F4١Sp@_!nqָ:$B*TfR#;gr#֬Yk4Q[KKDXo*r9/$˕iCq#)5.JAkS\^mZ;G0e[T)! %~x*{ԩwA_.1aap9g$Āj 21hbk짠[Vd'nhzKSވ7B$ryWjI t´p*ni5kֈM +:{l U&C 5U&/W{fZx_5.[-" {J`V5 ~ϸ/%,.\"_8' _e/097,dj ۦCTie1ϚlWϨ*J^#laPm{[f->~O ƫnu=66ڥcp\sf4,&s]I> >]4{?NMNt'>:Zό,Qq'A1`C:E^Iա7%5GJ2gZ6 i9QzP eY3;'5~2;1OK{^B6d|Zuŷ@fN֏Iglp%\u;r/\\ZyuS2BT;5d=.ϫP9JWv?~a;rcrb|%!hvޢ~OA_hklu+u:^Lq\VU=OOb~HVV^dqFZI,!@4@ZCL/(BE_JX3)db(Y E\3i@ܒU=,Ц hޚ9G!pCù vwԵ6wY?W4seiF.H|z_AtkSkkN@pl.LR_e'Íu| .|0`:JH/"fpՓ'}CX3ldqGZt+ VоQ^NΕ.l4}JXS׵?~A}Zʆǽ;{LuHW3o2k렽*U?T 5s X?R#И!=)G%"H,bE[+ #FF> * )'}S4rdӌ7w2P̝=>eWD[ϧ9:\sn=̏Jf @@gx${J(|Z0۷-J_ g=Y`@>sľ `h*Σv,.Ѓi5jU~ƀ:Xn<( |ǀ/?] 1FЕ_}HA@1=CI+>N4+ZLPUPJҷpSWԛrx+yAcUZzDž3ډ7eBQ'8 GkS_/Z@;kU [yepKOOߴoJBx_Cs]߀[t;?R=?vаUW}hWOۀ O{!}ciq7ucv$_a;P'+ǨR&_4JF*6]`iDž p/s [?E$G |Q$Zr~r8i.`1`GX ~!7豷L'x{Ư_j+GxţDHnUr<C |BL_M{CP,LgGDų)_kpy4>n?ÑKXw{& n,5.3 Ib+i:}ӟx k!XS~NwKH*Ӈ0,'@,˧mY] IY|/? <:Ⴆ T Ώ[ɉ"x7Ʉu&/P3Buf)DUv.ra`և0KZR&.EOxߴ׳gC15GPvqq00`w H`F d/, Sa"J"p4qVh}$2kFHθM9\eJ͎vv"#4|vM[Βu#&;$ĥ&T)9b-+qth3?| !?4-k<}M%^.έ[!sRq跀5Fv !07~j"ͼ3IZ:'?쌘=Ј yc9<I ӯŔ<jWc~*?00vKQ vjJtH2ZÙT֟Z gùc 瓏tgZ/1%ق}?ĀA```FhKg|P@"ڇ []E;h'.pEhh|.JD߅ "5[{m(}kZWb㲊<+0c^Z8MM{b7}HΑfrWjR\urf;ĔG\O_z9,My b:Eպ У \f&piTL辒ZB:{n3ksRBȻɤwNK`R+t m*jl8|`C$+;"ʶc U9 WX́a;9i_e[Q[9ͷRP4xN_s8ǰ]*wUc]Tb ƾ_L5E FGo2%TW1Zfea)q㫬Nӭ)zb Fɷ]0 6\  bv9(1`AEvS[i/e0LAg  X $p3 6B_@x5|Jf*%ky<^BKf)3HUMN߇^r܉E5zT? x~=p FnJ_u;L?TP&?sw#踞p 1:?%^E)ƺ˞fE,<`ڤ+Wc!gWe([l)8jjab|ò3HSdVf3Q@=> ~& ʤC7pF d83ڬ ͱr+dxR2Q/OuEα3/zNo Ő&ՓLú Dpm|[h{!\ >lk5QM~V䑭G70")蚱2ue~"Ɓu WRB Z"j^ܫb hDqx9l Lo:eq1%A)RZ _6%eȀde_Hϖ)qT# ʽSN*$SCHK!, U ɹ0fFyg{>Хx)(;XIa$ϙ;wk\\647ѱ26"?49N_s8ǰ<5\[ϟ[v4m#-@pq5w/`bh{?Ɗ5YuXy%1QP@ Mͷ}@>K/,UHLs^p H-nؙYq[~}kbad{ʘ`>\p2Z@[w_c$+opo:BTeJ|1JjRc6Xz (bCH djv?'5|D2XYM!gZwshK]UWf39^ϵtXsxl9!ͶiC9f&Bn%iܿk! =EtP-hꮛ1&\LIߚEY0Be}g})4KI1raur# A~HW)|0:`{snnbq1Llw!rODf nyȾk0f( 1` YUո")p0G Y=R - 77+=ncqd\MciQp-i?}w.b2z xc6.Sc,^:@^À{1PƊ'USqCTwb&Ci@ w=>`<)5j[R4ئxWz4q4N\ SK5!?4bsX]İFЄSiL 0`w#' hWmmBK( Ϸwtv̋kExV>ඁ@ B2Lu9vS0-rA/O]*f(lq>~k0QI ]zqᲆՇKp2L1*B7OH5W~ּoVuAuS׫gk2JY5\.k*@0Ci^kj9p8 DBAzȿg1Z;xF:hesO%KSR}GA|l <{r@^`lol{w Sau >@TpI\m`U&䧓_i_] 1w-N>{BwAwxxK`ȋx@+ a``B/hj+MY}fC 50\Yu@C669,MM%W26ӱ "oٝ-)b-eZvN*J 'S |ϊZCK<6j:6 ُDxA8),]*pկs$]Gb8"'c"`l£8=r}op=NmU}kkV.1zMeof͏LxEF6vFbrCN0(=pӽa̝ -csX3܏Fb`p1pi@:oƻ4/_K9kXMh򰪧ȓhpC읺Im ΩmM WuO>6o$8faNM6-k%1ް_`0Hcr-^ kM"n <;B)Ā0o8I5ޙ,$$UTF ۳BidW]Ge})`KO'U>X5L.`w8hM,ud2<i:}t-Y\S@{ k>%͂Z˦ǀE7mѕ)'?cBR9 pllR0ioiLY,;4{,OXaw/iF>"NQr%T9f!oBn,:Ɯ,c= AxDH\1`U8c[PؤҲE.T17g4ז)ҕH:'ƀ8V!W6NՃ"/zNoPV潟˅ QR]qྪEK͢+(qbfFԴ{_=yf)L:+}Q&X}>0hulgG^iԄ_3 8w%k/˯_b4:֬adܓRGTl$0# Re7GE4wq +^+(uв܋Յ7G^ :Th=Ȣf0P,EewK] K.{S d>6aTY$:-lscpaSÀO?C . &Y| "E/M\L@ͷay~rzmOC୵Q0C2\ckhɾЮYkhg w$ L~X`MJ܄ңIǧoC)ؾ+NlӺ[N9~CەzcdLk]nofOӽt 11FIףia @_1cs V%g!{x;lVs&ߚFdb`؀`:8KpomI fslkO?L} P@߷ cXT~yQfv*.*NXL\FSX簺pau1{#[yd5 dU" xߣ|- !vhÑDB#nz^U{k<8},~3D ZMɮs{i_Z"0GJNv~kpD,_SVKl6 a U+R~1s8ǰk䰦N*~Joja|XKA)NAZ=BkR e>-`N fT$&C%j+B9|P07-o% y7蟇N{#N9% u< i!%#fyZA'!WkzǪO߰^\a>\Yv)s3}C;,8ӈc]alqIC323P\ jĀiC+~4:0}$Ҫ CB`onIG0V6P EH:J0T$) L ňv}m4a3%P9HsmO~>M.aq=ObpqކD|eѪ=$(4棣(J E~66_a+9 bVoش&AL>~""*' y{]4FK*lzݾ<#YYeK$${nw#hע*tKe:]毿F1D79 {KF㿃@/=/r QFn5Ff;jXU"#>X_ݡqw3tZA HIf,qA]Nfٔ/d]OjAmo|Ղ3l'kh}SW'%a'3 |eFR<jjTɜ%h~%g ' O2Xï]@]AWa kFWxjHAKƲdo WZ,Up0l nޘF`kho;}pqn='u"F,uR4- TDBBN'@`@eXc~am9֟nn&p@ 3ewO}G0Ku ogI&P]ͶGzlqw4\YyJb-~T~<=dTgp*cU~>|oN_i,ԗ9^m У `D> })4 y5}y Q-Ƕq՟ _N&dbop eb]JM. {z8%SgRN3TRS!0F.\i=0kdzz ;N8`QA1&YaKs"?nę'y(0lq/Ky9yI7MJ_^"NGЌOS$^MzFЕdBF|7vi`bI@v8O̅90`7;](1A6քJ0ߍZVk<,nWӾ|'6{A#gv1h%g__+Qk^.\i=0`fIW0CV:LY/Ȋۺ>kzSV?^A,]jodcp}sz_akXP tZ[z_QP.1.`Wʷ҆3#sn7!5s 6#&Ku`-ۈ @RKx0B%9]kzv|a.Ӟ1.&lŁ@TwG+j/XCt{f8mY-c-]cD, 1ITucw_Aaub FйY¢|6?l ˷ZYA }qatc4tC[E|MSWw cPl>zAlkÀX)؃Hf|8gԐv/vʫI98ИA,ǀ]zF~g\tTZg'?u1я?%ugzQܷig-L}Zȯ b0Zj0>IC_x>{J`aU);A)ƈAF9ʮwָ}a3!cpTNX{g4,Hy1aɉ_VV|yi֋ 5>\~A)T W *k"kjug͓1l$|+KlkMb|NzF䧓__/2aש10JH R PGk)z^Gqd?:#j^6#JL)Q[)x Ў8@i z㽝P߶X:ئGX FP\]xu}jk-B ܔY4y3~~qtrbp9}pewכPQىrX1`0?T`R`JH1=kğ1s_E0vXnQn?0Wg*1)\8DW/ݢpTtӯXC r$:r9^"@Yr-€eKL&57n['?skVCkt|crXb&M)-+3hD@F7.G+}4m(WJ:o39HIu&r6g#Edw0ASN#? ' i=|=u1ƿD*hQBZ4gx1&gDxe}lfnԁ ~WBl9۰?s8}Nơ;|m3ph:Ã߆ 5G,W@ Bq?,fôkTO[>S)l] JtN_11R`s.Fu? ~b42P 2Cb>TBQDpOΉdȓ 8\5\qV2.zoy:pF67BWt@|W#@ϳdaݡMEJrLsEx2iR&<׃ϳlɥi֋ 5އO/Ds%m~zĀ · :\뫝tyuGd"` b4[ |>n >8OAX ҦY_8"tq%C +F@Zzl74gC\*޽"N5vIO~>MιW _.1z.JLmu]w7٨^zwp7Nd 8ֿ)&bGsb1-c`3 \d PG1.}%pNm\W֓뷑58IH87tMFFK ^;B07G2h>SkÆ~Z)%3Gw!zkp)WSyY}jwwԷAt]XI-PV{l޾t9l:4f dS03ZΦݜj&Wt׳ poZ!ArI_zo"pF1*\< ]APǣ㕱 ޡ9d  #B_N )<[[F v 2MWr|S\'MYt6|Zh0 O~>9{#b\c>\'U$Ssn;Ż*a J 0k8 "yԏE h -`qs:~;I$D*&j|A$a 2ʤ"` q_d?^JuQE S%7ę\D@2 RۮAaub 1V5οby3FAr&aȆ"sqw 2?W m)n(68 cci/cwX@UF顂5!yEOi]n߫1"E&?u1\VSlJ˜63ȓ;ܕoK в=E LܨlVC9l"Dnb']5@_Jl;.KweU6Ҽx!4o;6C(y$H~udj$u?סap 1ݔ~*{眂b6dRFpuA5"T܋3SEEBc*|ҕg8B: ZGi<-6s>}KKJ<(^`u9%E'1wV5.`O3Ws]^,O m[Ϲs/zA+co|P=xQ5)=4 jh"d/h֠ 1yFnKl^> ԙ IG m즠:Bܵ@^U5EuD nJB).VC?}p k.c.}eBIopA+Ҭ6N6\ XF*e$ݧj5RhM @|-z RT+U+TD1! Rmn/f.`Jh6\y ?v.5kMnnxO=w<-.ǣ/ C\IMK5ֺAXSjV}d?nXhC> l[0}C#I-p4ʍ@׃~Spmɬ^\7RƑ5λaL2htueswk0a1oo1Ɓ}qچ dG[_D$x7_B ԉȽU&m *C 534Es$;4CG4^\1޼{ylRJ@v=}Vn=t-V Zp@Y-W+=}EP-><&61`Z A"饯׽2M#Pǁ.u),k֤-LYmݖS9#)l#wvp],KS%GmB6}@8!ۣ3rM9V  W\T5bLU<#ḙ8[ 0`A2 NOae#4Oy f$01$|ԑR?~YAM],#.B ,j+Fij TYk> $XГ\uo#m/qg.p^A,GJNEف&BzAgONB*Y ĆڕrOB bRs"`܃>)\D5IVf`Sw/?F\A>jg'PyhY f;K_]tR ݩ?jם.r]npsk1J NbrP `Ch?e73nYfZ4G=mBxp!afG9 wrᒤfO@8z;~a( C_ N +/ SUl>UŐK`G1j>Wr̔Hya>\0৽l}h2Pa/ x#8dϋH6oDw4+} 0e~2\}/ G4cʭJ0  ] .:]ɫE+m W""`e|/ f篔`Ouexܯ?.^@߆|+&ퟺ7 :B50j`F 吳wvBCY5^BgJV%A-. * sRTɨVBnx1;L9]',00b\X65N[-K-PƀNO~c|ÚL[貿IBFjGaҦ !/T]hH!qw\]EH}b` v2}]v,YcG!dwດ|M]CuÀs9UY0^V 5$p#_sg]Ւ"XohC! ԑñi# R~~z4q@aphUc s2cK-|ŀYBz- e-d]a!7َn+j?݇ 9?r l.ܞWuG5n+,', ݘvkhmf+c[N;"[T@z>`X~[hY{Nj-chd&떭%V`opS}^8oC~zhKYZ=uOQ[,ޖ+fBWR+o=rmN6H@VS1=:0DJg]b8`, m*mQqS4(aT*O?{kA^owxPP]صrq04{NAs~``ً ٹvDp %ۉ/x]U #, Gla5 ([qoIvk<$[2Rd\vr0/CϺ  pj1/z>ڂj%S?!ړ\:lmҜbkCd*gN-鹀 Y֪b֘ Tt_,XW糀 `F_d/ ( X'N_ ׂ-*xwv,s5mvCfN(F,8 عpqn=߄X\1ZSwW\^R@!g EU>1Jm=Hҁn:()t{bmWOꗍd<ҔZ@*0]1VP:Nz :iy8co?݆c]t1C W0X4߻8[ 5^ű@ .M}Xt`&K\Jjv=[T־ (w]_V8ZMmIDAT&[lL@$+L{+\f} mct5#WaCrDIL b2bGu+snzqbp1l^oFS1E:Rެ.޳z{*D( _y`z au8^``3hA K i <%7:G-BԴpKC&=p-ihBݤ+o> ݼA|\{?O.REw|WuG &0pfTQHY 0rx~=z|9lL]b6Mā@ oWE7ӡ\NiLZ奸΄G{brf?DG. *zIENDB`arctica-greeter-0.99.1.5/data/arctica-greeter-yellow.xcf0000644000000000000000002416410014007200004017664 0ustar gimp xcf file @BBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) P\ @arctica-greeter.png     K @wPP P,P8PDPP @#)D5@EM]013#G@MYd0o0zZy ܑ -d+qHh:<+ Q&AcZ8I$ ,7{BN%Y{dZo{brǂҐPDF0QaqukN՘Z 26UvONtF)M52@Q?d wN (և )Jjb\  6G W w : Ă  %  5Y US u* o N 8 O   +K 6m J} k\ A ͵ N   > _%  8 0 M  B (Q 60 S u S 5NW1ix#jT'!B#MXfzt:,H`S_:jWuG15;CZz, %0<HSSts? 1R.r :p? #9\}>Y=A^6!!»7J='\}k|!\?ayKJ!o~Z0\QNqt^gIJO#IYgseL#/3:IcFƮ(43w>JFUduہ8DOW__GD}IL L7xWyHo*۩G=^~pt!e3!Tu46+ 0 L "M - 9T Df W4 w ڐ !!&!?!`!n!|! !q!!!"" ""3"VS"v}"`""f"""# U## #,#6#Bu#M#X#d#o#>###$ $~$#$2$N$q $$$ҫ$ %c%%%&%2D%=%L%e%%%%R& &&&&&2&> &I &S&_&j&ug&O&&k&&ȼ&'')v'I'T'a?'o'''a'( ~(-p(@(L%(W(b(n4(yi((((z)x)$x)E)])h)t))4)))X)E))T)ز)*G*6*V**v*w**+**K*g+8+;p+\+}T+g+++'++˪+ي+ , ~,.E,N,o,,,,,E,z,=,-n-K- -%{-@-a-@-\--.q...,".@.e .!..x.p/X/ /i/#///;//G/V-/t@/W/(//0060Ih0TZ0^0i0tR0(0000إ012191Z1{1111<1P12242T2t122 282282˘222233:3[23{N3 3|3{34 t4 -43p4I&4e(444455'5G15iy5yQ55X5585A566/J6O]6p66666>66Ɖ6.6p771a7Q7r.77d7Ҽ78818R+8q88i88 9%929U9h?9u!999e99`9::$N:E*:e:~:g:::::-:0:ݻ:;<;<;\;};;;ܨ;Z<<8}>1>Q>_+>j>u>w>0>=>>>">>??;?[?{@?x???@@8@Yy@y@@@3@w@@@iAAAA.AOAp AGAAmAB B}B hB+B7)BBkBMBYBBeBrHBBB[BACC%CDCcvCCUCCDDD*D6DBeDM&DXlDcDo4DzDDDD;DkE4E/EPEp2EEE;EEEE$E@E/EREAF F$FCFdfFzFCFĺFGaGSG$G0HG;GGGRG]GhGtuGG:GG!GsGGHJH5HV#HwHHHHHrHωH>H0HHIiIII).I7IGIWIeIrI}TIaIIOIsIIII IBIxIJJJJ4:JWJwJJJ$JKK!K-K8~KCKNKYKdKoKzKKKK6KHKKoKgKܮKKKL L7L#L)L5L@MLKLWLbnLmrLzsL L LLMNM(JMHMhMM MMMM MM"M`MMMN NN_N*N5ON@@NJNUN`dNkMNv#NN N NRNNNNϳNNNOO;O[O|LOOOOPPPP'yP1P<PGPRP]qPgPrMP|PP8PPPPPǮPҨP8PgP`񜝝  򛚛     񟞞           𡠠     󦥥  򦧨         򮭭  쭮  󭮮򬫬     򬫬󫪫            󲱱    񱰱  񳲲    򴳴 ƴƴǴƴǴ ȴȵ ȵ鿾ɵɶɵʶʵ˶̵˶̶ͶηηϸϹϸϹϹйϹйк򻼼кѻ =<=<;;:999886656454422mmmnnmnnnmnnmmnonnonmnnmnomnonmnoonomnnonoommnnoopmmnnonoppmnnopmnnoppmmnnoopmnnopnnopqmnopqmnnoopq =<=<:::999777766444423               mnmonoopqrstuttuuvwxmnoonoopqrqqrrsstuvuvvwvwwxxnopqrstuvwxymnnopqrstuttuvvwxynnopqrststuuvwxymnnoopqrsrssttsttuuvwxwxyyxzymnnopqrstutuuvvwxyxyzzmnnopqrstvwxymnnopopqqrstuvwxyzyzmnnoppqrqrrststuuvwvwwxxyznopqrstvuuvvwxwxxyzmnnopqprrststtuvuvvwxyxyyzmnnoppqrststtuttuuvwxyzyz{{mmnnonpooppqpqrrsttuvwvwwxxyznnonoppqppqqrststtuvwxwxxyz{z{mnnopqrstuvwxyzyzz{mnmnnoopqpqqrrstuvwxwxxyzyzz{mnnopqrsrrsstuuvuuvvwwxwxxyyz{z{{mnnonoopqrsrsstuvwxwwxyyzyzz{z{{nonoopqpqqrstuvwxyz{z{{mnnopqrsrsststuuvwxwxxyz{z{mnnonoopqrstutuuvwxyz{z{{mnnonooppqrstuvwvwwxxyz{z{{nnonoopqpqrqqrsstuvuvvwwxwxxyz{nmnnoopqrqrsstutuuvvwxwxyyz{z{{nmnnoopqrstuvwxyz{z{{mnoopqrstuvwxwxxyzyzz{mnopoppqpqrrsrssttuvwxz{|{mnnoopoppqrqrrstutuvuvvwxyxyzyzz{z{{mmnnopqrstutuuvuvvwxyxyyzz{z{{nnopqrststtutuvvwxyzyzz{z{{mnmoopqrrstuvwxyz{|{nnonoopqrqrrstuvwvwwxxyz {mnnopqrstuvwxyz{|{nnonoopqppqqrsttuvwxwxxyyz{|{{nmnnoopqpqqrrstuvwxyz{|{{|mnnopqrsrsstuvwvwwxyzyzz {|{{mmnnopqrstuvwxwxxyz{z{{|{{|mnnoopqrststuutuuvwxyz{nmnnoopqrqqrrsrsstutuuvvwxwxxyyxyzz {|{{nmnoopqrstuvwvvwxxyz{z{z{ {|{mnnonooppqrstuvuvvwxyz{z{{|{{|{nnopqrstutuuvvwxyz{zz {|{{nopqrqrrsrsstuvuvvwxyxyyz {|{{|nnoopoppqqrsrsstuvvwvwwxxyzyyzz{zz{{|{||{|{noopoppqrqrrsrssttuvwxy{zz{{|{noopoppqrsrssttuvwxyyz{z{{|{{|{{onopoppqrsrststtuuvwvwwxxyzyzz{|{|nooppqpqqrstutuvvwxyz {|{{|{{|oopopqpqqrstutuuvwxwxyyz{|{|{||{opqrsrssttutuuvvwxyz{z{{|{{|{||{|oppqrststuutuuvwxwxxyyzyzz{|{|{||oopqrstutuuvwxyzyzz{|{{|{|ppoqppqrrststtutuuvwxyzyzz{{|{|{{|{||{|{oppqrtsttuvwxyxyyzz{z{{|{|pqrrsrsstuttuvuvvwxyz{z{{|{|{{|{|pqpqqrrststutuuvuvvwwxwxyxyzyzz{z{{|{|pqrsrsstuuvuvvwxwxxyyz {|{{|{||pqrsrsttuvuvwwxyz {|{|{{||{|{||qppqrrstuutuvvwxyxyyz {|{|{ppqqrstuvwvwxxyz {|{|{{|{{|{pqqrrqrrsstuvuvvwwxyxyyz{{z{ {|{|{||{|qqrststtuuvwxyz {|{{|{|{{||qrqrsstuvwxwxyxyyzz {|{{|{|{||{|{||                                                                                              yzyzz{ {|{{||{|{||{|{| |}|}|}||}|}}yz {|{|{{|{{||{||}||}|}||}|}||}}|}|yzyzz{ {|{|{{|{|{||{||{{|{||}||}}|}|}}|zyzz{{z{{|{|{{|{{|{||{| |}|}|}|}|}}zyzz{z{zz{ {|{|{|{| |}||}|}|}}|}}|}}zz{z{|{|{{|{{ |}|}||}|}|}}|}}z {|{{|{{|{| |}|}|}||}|}}|}}|}zz{z{{|{||{|{{||{| |}||}|}|}|}}|}{z{z{ {|{|{{|{| |}|}|}}|}|}}|}z{z{ {|{{|{{|{||{||{| |}|}}|}|}}{z{{|{||{|{|{||}|}|}|}{z{{z{{|{|{|{|{||}||}|}}| }{z{ {|{{|{||}|}|}||} }z{{|{{|{|{|{||{{|{||}|}|}}||}|}}|}}|}}{|{{||{| |}||}|}|}}|}}|}|}}{|{{|{{|{{|{| |}||}|}| }{|{{|{{|{|{{|}|}}|} }~{{|{|{||{||{| |}||}}|}|}}| }{|{{|{{|{||{|{||}||}|}||}| }~}}{{|{{|}||}|}||}|}}|}} {|{{|{||{||}|}|}||}|}|}}~}~}{{|{{|{||{| |}|}||}||}|}}|} }{|{ {|{|{{||}|}|}||}|}|}}~}}{|{|{{|{|{{|{||{| |}||}||}|}}~{{|{{|{||{{||{|}|}|}}|}}~}}{|{||{|{|{||}|}|}|}}|}}|}|}~}}~}}{|{|{|{{|{||}|}||}}|| }~}~~{{|{|{{||{{||}|}|}}|}}~}~~}|{{|{{|{{||{ |}|}||}|}}~}~~{||{||{||{|{||}|}||}}|}}~}}|{{||{|{|{||{{||{||{||}||}||}||}}|}|}}~}~|{{|{||{||{||{||{||}|}|}}||}~}}~}}{|{||{|{||{| |}|}|}}|}}|}}~}~}~}}~}~}}{|{{|}|}||}|}}|}|} }~}}~}}{|{|{||{||{| |}|}||}}|}}|}|}}~}~}~~}~~}{|{{|{|{||{||{||}||}|}}|}||} }~}~}}~~}}{|{{|{||{||}||}||}}|}}|}}|}}|} }~}~~}~}{{|{{|{|{|{| |}|}|} }~}~}}~~}}~~||{||{{ |}||}|}}|} }~}}~}~}~{{|{|{||{{| |}|}|}|}|} }~}}~}}~}||{{|{{||{|}||}||}|}|}}~}~}}~~{|}|}|| }~}}~}~~}~~|{||{|{||}|}}||}||}|}}|}|}}~}~~}~~}~~|{|{||{||{{||}||}|}|}}|} }~}~}~~}~{{|{||}||}|}}|}|} }~}}~}}~}}~~{||{{|{||{| |}|}}|}|}}|} }~}}~}~~|{||{||}||}|}}|}}|}|} }~}}~}~~}}~}{||{||{||}|}||}|}}~}}~}}~}~|{{|{||{||{||}||}|}}|} }~}~}~~}}~|{|{|{||{||}||}|}}|}||}}|}~}}~}~}~}~~}~{||{| |}||}|}||}|}}|}}~}}~}}~}~}~~}~~|{||}||}||}||}|} }~}~}~}}~}}~{| |}|}||}|}||}|}~}~}~~}~~|{{|}|}|}|| }~}~}}~}~~}~~}}~~{|{|{||}|}|}}||}}|} }~}~}~}~~|{||}||}||}}|}}|}}~ }~}~}~~}~~|{||}||}|}|}}|} }~}~}~}}~|{||}||}|}||}|}}|} }~}}~}~}~|{||}|}||}|} }~}}~}}~}~}}~~{|}|}}|}|}|| }~}}~}}~}~}} ~|{||}|}||}|}|}}|}}~}~}}~}~}~~}~~|}|}|}}~}~~}~}~~}~~|}||}||}||}|}}|}}~}}~}~~}~~}~~}~~~||}||}||}||}}|}|}|}}~}~~}~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |} }~}~}~}~}~}~~}~~~~~~~~~~~~|}}~}}~}}~}~}~~}~ ~~~~~~~~~}~}}~}~}~ ~~~~~~~~~|}~}}~~}~~}~~}~~}~~}~ ~~~ |}}~}}~}}~~}~}}~~} ~~~~~~~~~ }~}~}~}~ ~~~~~~~~ }}~}}~}~}~}~}~~}~~~~~ }}~}~}}~}~}~~}~ ~~~~~~~}~}~}}~}~}}~}~~}~}~~~~~~~~~ }~}}~}}~}}~}~}~~~~~~~ }~}}~}~~}~~}~~~~~~~~~~~~ }}~}~}~}~}~~}~~~~~~}~}}~}~}~~}~}}~~~~~~~~~~ }~}~}~}}~~}~}~ ~~~~~~~~}~}~}~}~~}~}~~~~~~~~}~}}~~}~}}~~}~~~~~~~~ ~}}~}}~~}~}~~}~}}~~~~~ ~~}}~}~~~~~~}~}~}~}~~~~~~~~ }}~}}~~}~}~}~~~~~ }}~}~}}~~}~}~}}~~~~~~~~ ~}}~}}~}~}~ ~~~~~~~}}~}}~}~ ~~~~~~~}}~}~~}~ ~~~~ ~}~}}~} ~~~ }~}~~}~ ~~~~~~ ~}~~}~~}~~~~~~~~}}~~}~~~~~~~ }}~~}~~~~~~~~~~ }}~~}~~}~~~~~}}~~}~~}~~~~}~~}~}~~~~~~~ ~}}~ ~~~~~~~~~~}~}}~~~~~~~~~}~~}~}~~~~~~~~ ~~~~~~~}~}~}~~~~~~~~~~ ~~~~~~}~ ~~~~~ ~}~}}~~}~~~~~~~~}~ ~~~~~ ~}~~~~~~~~~~~ ~}~ ~~~~~~~ }~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~ ~~~~  ~~~~~~~~ }~~~~~~~ }~ ~~  ~~~~~~~ ~~~~~~ ~~~~~~ ~~~~~~~~~~~~ ~~~~~~~  ~~~~~~~~~ ~~~~~~~ ~ ~~~~~~~~~~~~~~~~  􁀁~~~~~~~~~~~~~~~~ ~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   􂁁      􀁀  ꁀ   􀁀  󁀀          􁀁          󂁁       򁀀 󂁁           􁂁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                񂁁     턃    􄃄  󃂃     򃂃           򄃄 򄃃   酄􃄃   󅄅򄃃 򄅄  酄        􅄄  􅄅 􅄅                                                                                                                  膅 򅄄   􅄄     󅄄               􅄅 􆇆 񇆇 򆅅          􇆆                                                                                                 %+ !       􇆆             񈆇  쉈                 􉈉    򈇈   닊                                              !   !%  051.700<6z:8<:=;>   􉈈           􌍍 󈉈     񊋋               󌋌􍌌)*/2/71>2379z<?@zz  򒑑    򓒓      򔓔  񕔕       󔓔                      򘙙    󛚛    񜛛                          󜛜  񝜝                                                        󦢣                                                 򫪫       󨧨  򩨨                      ꬫ          󬭬        󭬭                                                 𯮯    󮭮                  ﲱ          𮭭שּׂ            򯮯  󯰯                   󳲳      𴳳 𴳴   𳲳    񵴵  ﯮ쯮򮯮    󰯰   󱰱ﱰ 򰱱        봳𳴴󴳳 򳴳 󳴴 󵴵    򴵴  򶵶  񶵵  %  /𱰱      𱲱      >3  󳴳    ﵴ󵴴 )    𷶶  ﹸ   𯰰   %*   갱 󰱰         󴳳     &  񶷷򵶶          𮯮󯰯           󰱱     񰱱   ﳲ 𳲲 򲳳 򲳲 򱲴 󲳲󳴳  򳴴                       󫬬   򮭭    򬭭󬭭󯮯           񮯯          𯲲          󲳳                  멨              򫬫      򬭬    﫬                             復                              񩪩       𢣣      𠡡            줥  󨧧               󟞞                 󜝜  񜝜   񝞝         򗘗      񗘗                                               5;>:6=~;       󈉉   󈉈         􋑑       ;:5;8:=6:A                                                 $ # !                    󇆇   󇆆    􆇆    񇈈 􈉉     뇈񇈈          󇈈    󈇌                                                & #!$   "                                                         󅆆       넅  󆅆           􅆅           􄅅       󅆅 愅   󇆇 򄅅  򆇆   󅆆 󆇆                                                                                                                               򂃂   󂁂 򂃂        򃂃 􃄄  􃄃               󂃂   􃄄           󃂃􃂂  񅄅 򃄄 󅄅  򂃃 󂃂                                                                                                                     ~ ~   ~~          󀁀        􀁀   󀁁                󁂁    񁂂      򀁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ~~~~~~~}~}~}}~} }|}|}}|}||}~~~~~~}~~}~~}~}~}~}}~}}~}~}}|}|}}|}||}}~~~~~}~~}~~}~}}~}}|}||}||}|}}|~}~~}~}}~}}|}}||}|}|~~~~~~~~~~}~}~~}~~}~}}~}}|}|}~~~~~~~}~~}~}}~} }|}|}}|}|~~~~ ~}~~}~}~}}~}~} }|}}|}}~~~~~~~}~}~}~~}}~} }|}}|}||~~~~~~~~~~}~~}}~}}~}}|}}|~~~~~~~ ~}~}~} }|}}|}|~~~~~~~ ~}~~}}~}~}~}~~}}~} }|}|}|~~~~~~ ~}~}}~}}|}||}}~~~~~~~~~~}~~}~~}~~}~}}|}|}}~~~~~}~}~~}~}}~}~}}~~~~ ~}~}}~~}~}}|~~~~ ~}~~}~}~~}~}~~}}|}}~~~~~~~~~~}~}~~}~~}}~}~}}|}}~~~~~~~}~}}~}}~}}|}}~~~~~}~}~~}~}}~}}|}|~~~~ ~}~}~~}}|}~~~~~~~}~~}~}}~}}~}~}}|}}|}~~~~~~}~}~~}}~}}~} }~~~}~~}}~}~}}|}}|~~~~~~~~~}~}~~}~} }|}~~~~~~~}~}}~}}~}}~~~}~}~~}~}~}~}~}~}}|~~~~~~~~~}~~}~~}~}}~}}|}} ~~~~~~~}~~}~}~~}~}}|}|~~~~~~ ~}~}~}}~~~~~~ ~}~}~}~~}~}}~}~}}|}~~~~~~~ ~}~~}}~}~~}}~~}}~~~~~~~}~}~}}~}~~}~}~}} ~~ ~}~~}~~}~}}~} }~~~~~~ ~}~}}~}}~}}|~~~~~~~}~}~~}~}~}} ~~~~~}~}~}~~}~}}~ ~~ ~}~~}~}}~}}~~~~~~~~~}~~}~}~~}~}}~}} ~~~}~~}}~}}~}~~ ~~ ~}~}}~}}~}}~}}~~ ~}~}~}~~}}~}}~~~~~~~~~}~~}~~}~}~}}~}} ~~~~~~~~~~~}~~}~}~}~} ~~~~~}~~}~~}~}} ~~~~~~~~}~~}~}} ~~~~~~~}~}~~}~~}~~~~~~~~}~~}~~}~}~}} ~~~~~~}~}}~}}~~~~~~~~ ~}~}}~~}~~} ~~~ ~}~}~}}~~}~}~}~}~~~~~~~~}~}~~}~~}} ~~~~~}~}~}}~~~~~~~~~~}~~}}~}~}}~ ~~~~~~~~ ~}~}~~~}~}}~~}}~~~~ ~}~~}~}~~}~~~~~~~}~}}~ ~~~~~~~~~~}~ ~}~~~~~~}~~}~~}~~~~}~~}~}~~~~~~}~~}~~~}~} ~~~~~~ ~}~~}~~~~~~~~~}~}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |{||{||{|{ {z{zzyxyxxwvwvvuut}|}||{||{||{|{|{{z{zzyxwxwwvwvvuut}||}|}||}||{||{||{|{|{||{ {zyxyxwxxwwvutt}|}||}||{|{{|{{z{zyzzyyxwvut|}|}}| |{||{|{ {z{zzyyxwvut|}||{|{{|{{|{|{ {z{zzyyxwvu}|}}| |{||{| {z{{z{zzyxwvu}|}}|}|}||{||{||{|{{|{|{ {zyzyyxxwwvu|}||{||{||{|{|{{zyxwvu||}|}||{||{|{{|{ {zyxwwv|}|}}| |{||{||{|{ {z{zzyyxwvu}}|}||{||{z{z{zzyyxwvwvvu}||}|}|}||}||{|{||{||{|{{||{ {zyxwvwvv|}|}|}}||}| |{|{{|{||{|{||{ {zyxwxwvv|}|{|{{||{{||{{zyxwv}|}|}||}||{||{|{{|{|{ {zyxwxwvwvv}}|}||}||}| |{||{||{|{|{ {zyxwv|}}|}} |{||{||{|{{|{{zyzyyxxwxwwv}}|}||}||}||{||{||{|{{|{ {zyxwxww}|}|}}|}|}| |{||{|{{|{{|{{z{{zyyxwv||}|}||}||{|{|{{|{ {z{{zzyyxwxxww}}|}}|}|}||{|{|{{|{{zxw}|}}||}||}||{||{||{{|{|{|{|{{zyxwxww||}||}}||{|{{|{|{{| {zyxw}}|}}||}}||}||}| |{|{||{||{ {zyxw}}||}}|}||{||{||{|| {zyxw}}|} |{||{||{||{{|{|{|{{z{zzyxyxww|}}|}||}||}||}||}}||{||{||{|{||{ {z{zyywx}}|}|}||}}| |{|{||{||{ {zyyx}|}}|}| |{||{||{|{ {zyx}||}}|}|}|}}||}||{|{||{|{|{ {zyx}|}}|}}|}||{|{{|{||{|{ {zyzyyxx}|}}|}}|}| |{|{|{|{|{ {zyx}|}||}||}||}| |{|{|{ {zyx}}|}}|}|}|}||}}||}||{||{||{|{zy}|}}||}|}| |{||{||{|{|{{|{{z{zyzyy}|}}|}||}||}||{|{||{||{|{|{{|{ {zyx}}|}}|}}|}}|}| |{|{ {zy}|}}|}|}| |{|{||{|{{|{||{{zyzyy}|}}|}}|}| |{||{||{|{|{{zy}|}}|}}|}}|}||}||{||{|{||{| {zyzzy}}|}|}|}||}||{|{||{|{{||{{zy}}|}}|}||}}||}||}| |{||{||{||{{|{{zyz} }|}}||}| |{||{|{||{|{ {zy}}|}|}}|}||}|{|{|{|{z{zz}~~}||}}|}}|}||}|}||}|}| |{||{||{|{{z{zz}}|}|}||}||{|{ {z~}}|} |{||{|{||{||{{|{|{|{{z}|}}||}|}||}}|}| |{||{||{ {z{{zz}}~}}|}}|}||}}|}|}||{||{|{{|{||{||{|{ {z}~}}|}|}}|}}| |{||{||{|{{|{{|{|{{z~}}|}||}}|}|}||{|{||{|{{|{|{||{{z{z{~} }|}}|}}|}}||}| |{||{||{| {~}}~}}|}}|}|}||}||{|{|{{||{|{{|{ {~}~} }|}|}||{|{|{{|{{|{{z}}~} }|}}|}}| |{|{||{z{} }|}|}}|}||}||{|{|{||{|{ {}~} }|}}|}}|}||{||{|{|{|| {}~} }|}||}|}}|}| |{|{{||{|{|{|{{~ }|}|}||}||}|}||{||{|{|{|{ {}|}||}|} |{|{|{||{{||{{~ }|}}|}|}|}||}|{||{||{|{{|{{~} }|}|}|}||}|{|{{|{||{|{|{{}~} }|}}|} |{||{|{{||{||{|{{                                                                                                                                                                                                                                                                                                                                                                                                                                                                      󢣣  󨧧   󥤤񤣤   򦥦 󩨨      򩪪難   񫪪󯮮 񬫬      󫪫 󰱰쬫          񵴴򾿾󸹸 񶷶뻼²³²³ óóijijѻһһһһӼӼԽվվվվվ־ֿֿ221100..----++++*))()''&'&%$$#$""""!  mnnonoopmnnopqmnnonoopoppqmnnoprnnopqmnnopopqpqqrmnnopopqqrnnopoppqrmnopqpqqrqrmnopoppqrmmnnopqrqrmnnoopoppqrmnnonoopqrmmnoopoppqrqrrssmnopoppqrqrrssmnnopopqqrqssrnnopqrsmmnnoopqpqqrsnnopqrqrrsmnnopoppqqrsmnnoopoppqqrsmnnopoppqrqrrsrssmnnonoopqrqrsststnnopqrsrssttnopqrstmnnonnooppqrsrssttnnopopqpqqrsrssttumnnopoppqqrstmnnopopqpqqrrstnonoopqpqqrsrsstnnopoppqrstumnopoppqrqrsrssttummnnoopqpqqrstutunonoopqrstumnnoppoppqqrstunopqrsrssttutuuvmnnoopopqqrqrrstsstuuvnopqrstssttutuvumnnopopqpqqrstuvuvmnnopqrstuvnopoppqqrstuvnnopqrqrrsstuvuvwmnnopoppqrsrsstuvmnnopqrsrttuvuvvnmnnoppqrqrrstuvuvwvnmnoonoppqrqrrstuvmnopqrstuvuuvvwwmnnonopoppqrstutuuvvwnnopqrsrssttuvuvvwnonoopqrsrssttuvwvwwnnonooppqrqrrsstuvuvvwwmnopqrsrsststtuvwxxnopqrstuvwxwwnonoopoppqrqrssrssttuvwvwwxwnnonoopqrstuvwxmmnonoopqrstuvwxmnnoopqrstutuuvuvwvvwwxxnnopqrsrsstuuvuvvwxmmnnopqrqrrsstuuvuvvwxmnnoopqrstuvwxwxxynonpoppqrstuvuvvwwxmnnopqrstuvwvwwxnonoopqrqqrrsstuvwvwwxynnopqrststtuuvuuvwwxxwxxyyz2101/0./-.,,,+***)*)(''&'&&%%$$##"!"!                                qrsrststuttuuvvwvvwwxxyxyzyzz{z{{|{{|{{|{|{||rsrststuuvwxyz{z{{|{|{|{|{||{|{{||qrstutuuvvwvwwxwxxyyzyzz{z{ {|{||{|{{|qrrstuvwvwvwxwxxyxyyzz{z{{|{{|{||{{|{||rstuvwxwxxyyz{z{{|{{|{|{||{||rsrrssttuvwxxyzzyz{zz{{z{{|{|{{|{||{||{||rstuvwxyxyyzz {|{|{{|{|{||{||rststtuuvuvvwxyxzz{z{z{{|{{ |rsstuvwvwxxyzyzz{{|{|{{|{||{|{||ststtuuvwvwwxwxxyyzyzz{|{|{||{|{{|{{|rsstuvwxyz {|{{|{||{||ststutuuvvwxyz{|{{|{{|{|{{|{| |stuvuvvwwxxyz {|{{|{|{| |stuvwvwwxxzyzz{|{{||{{|{| |sttuvuvwvwwxwxxyz{|{|{{|{| |stuttuuvuwvwwxyxyyzz{|{{|{{|{|{||}|sttuvwvvwxxyz{z{{z{{|{{|{{|{||{||ststtuuvwxyzyzz{z{ {|{|{{|{||{||}||ttuvwxwxxyyz{|{|{{||{||}sttuuvwxwxxyxyyzz{z{{|{{|{|{{|tuvwxyz {|{|{|{{||{{|{|{||}||}ttuvvwvwwxyz {|{{|{||{||{||{||}||tuvwxwxxyzz{|{|{||{||}|}||ttuuvuvvwxyz {|{{|{| |}|utuuvvwxyxyyzz{|{{|{{|{||{||{ |}|utuuvwvwwxyz{z{ {|{||{{|{{|{||}|}||utuuvvwwxyxyyzz{|{{|{||{|{|{||{||{||{||}|uuvwxyz{|{|{||{{|{|{{||tuuvwxyzyzz{|{{|{{|{|{|{{||{||{||}||}||uvwxyz{|{{||{||{||{||}|}|uuvvwxyz{|{|{{|{|{{|{|{||}|}||uvvwxwxxyz{zz{{|{{|{| |}||uvwvwwxyz {|{{|{|{||{||}||}|uvwxyyzyyzz{|{{|{{|{{|{||}|}}|}||}}vvwxyxyyz{|{{|{||{||{| |}|}}|vvwxyz{|{||{{||}|}||}}||vwxyz {|{{|{{|{|{||{||}||}||}}vvwxyyxyzyzz{z{{|{{|{||{|}|}|}}|vvwwxwxxyzyzz{z{ {|{|{||{||}|}}|vwwxwxxyzy{{|{||{||{||}|}}|}}vwwxwxxyxyzyzz{z{{|}||}|}|}||wwxyz{{z{{|{|{{|{|{|{{|{| |}||}|}vwwxxyz{z{ {|{|{{|{{||{||}|}}|}wxwxxyz{z{ {|{||{||}||}|}|}}wwxyz{z{ {|{||{||}|}|}}wxyz{|{{|{{|{{||{||{||}||}|}||}wxxyxyyz {|{||{||{{||{|}||}|}}|}}xxyzyz{{|{{|{|}||}||}|}|}}|wwxxyyz {|{{|{|{{|{{|}||}|}}xyz{|{||{||{{||}||}|}xyz{zz{zz{{|{||{|{||{||}||}|}||}||}xxyz {|{|{||{| |}|}||}|}}||}xyyxyzyzz{{|{{|{|{{|{{|{||{||}|}||}|}}xyyzyzz{z{ {|{{|{| |}||}||}|}||}}||xyxyzz{z{{|{{|{{|{{|{| |}||}||}|}xyz{z{{z{{|{{|{||{{| |}||}|}|}}|}xyyz{z{{|{{|{|{| |}||}||}}|}||}}xyz{|{|{|{| |}|}|}}yz{z{{|{||{||{|}|}|}}|}}yz{z{{|{{|}|}||}|}}|}|}}yzyz{z{{|{|{||{|{||}|}}|}||}yz{z{z{{|{|{||{{||}||}|}}||}}|}}yzyzz{{|{{|{{|{||{||{||{||{||}||}|}|}}|}}z{|{|{{|{|{||}||}|}|}||}}                                                                                                                                                                                                                                                                                                                                                                                                                                                     {| |}|}}|}}|}}|}}~}~}~~}~~}~~|}||}|}||}|} }~}~~} ~}~~~||}||}||}|}}||}|}|}}~}~}}~}~}~ ~|}|}|}|}}~}}~}~~}~~}~~}~~|}||}||}||}||} }~}~}}~}~}~~~~~||}|}||}|}||}|}}~}}~}~} ~ |}|}|}}~}}~}~~}~~}~~}~~~~||}|}}|}}~}~}}~}~~}~~}~~~~||}||}||}|}}|}}|}}~}}~}}~}}~~}~ ~~||}||}||}||}|}}||}|}}~}}~}~}~}}~~~~~~||}||}}|}||}~}}~}~~}~~}~~~||}||}|}|}|}}|}}~}}~}~~}~~}~ ~~~~||}|}|}||}|}}|}~}}~}~~}~~~~||}||}||}|}||}|}}~}~}~~}~}~ ~~~~~|}|}|}|}}| }~}~~}~}}~}~~}~}~~~~~||}|}|}}||}|}}|}||} }~}}~}~~}~~~~~|}||}|}||}|}}~}~~}~}}~}~~~~|}||}||}}|}|}~}}~} ~}~~~~~~||}|}}||}|}||} }~}~}} ~~~~~~||}|}|}}||}}~}}~}}~}~}}~~}~~~~~~~~}||}|}}|}}|}}~}}~}}~}~}~ ~~~}||}}|}}|}|}|} }~}~}}~~}~~}~ ~|}|}}|}||} }~}~}}~~}~~}~}~~~~}|}|}}|}|}}~}}~}~}~~}~~}~~~~~~~~~~}}|}|}|}|}|} }~}~}~~}~~}~}~}~ ~~~~~~|}|}}|} }~}~}~}}~~}~ ~~~}|}|}}||}}|}}~}~}}~~~~|}|}||}|}}~}~}}~}~~}}~~}~~~~~~~~~||}|}||}|}~}~}}~}}~}~~}~ ~~~~~}||}}||}||}|}}~}}~}~}~}~}~~~~~~~~~~~}}|}|} }~}}~}}~~}~}~~~~~~~~~}||}| }~}}~}~}}~}~~}~~~~~~}|}}~}~~}~ ~~~~~}|}}|}}|}}~}~}}~}~~}}~ ~~~~~~}}|}}||}}|} }~}}~~}}~}~~~~~~~}||}}~}~~~~~~~}|} }~}~}}~}}~~}}~~}~~}~~~~~~}||}}~}}~}~}}~ ~~~~~}|}}|}}~}}~}}~~}}~}~}}~~}~~~~~~~~~}}~}}~~~~~~~|}}|} }~}~~}} ~~~~~~~|}}~}~}~}~ ~~~~ }~}}~~}}~~} ~~ ~~|}~}~~}~~}}~}~ ~~~ |}}~}~}~ ~~~~~~~~|}}~}}~}}~~}~}~}~~~~~~~ }~}~}}~}}~}~ ~~~~ }|} }~}~~}~~}~~~~~|} }~}~}~}}~~}~~} ~~~~~~~ }|}}~}}~~}}~~}}~}~~}~~~~~~~~~|}}~}}~} ~~~~~~~ }~}}~}}~}}~}~}}~}~~}~~~~~~~~~~ }~}}~~}~}}~} ~~~~~~ }}~}~}}~~}~~~~~~  }~}~}}~}~}~~}~~~~~}~}~}~~}}~~}~ ~~~~~~~}}~}~}}~}~~}~ ~~~~~~~} }~}~}~}}~}}~~~~~ }}~}~~}~~}~~}}~}~}~~~~~~~~ }}~}}~}}~}~}~~}~~~~~~~~~~ }~}~}~}~~}~~~~~~~~ }}~}~}~}}~~}~}~~~~~~~~~}}~}~}}~}}~}}~~}~ ~~~~~ ~}}~}}~}~}~}}~~}~~~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ~~~~~~ ~~~~~~~~~󁀁~~~~~~~~~~~~~~~~~~~~~~  ~~~~~ ~~~~~ ~~~~~~~~~ 􀁀~~~ 򁀁~~~~~ ~~~~~~~~~~~~~ ~~~~  ~  ~ ~  ~  ~~ ~~ 󀁀~  􀁀        򀁀        񁂁     󀁀   䂁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򃂃 򂁂 󂃂섃      󂁂              􃂃 􃂂      􄃃  󄃄 􄃄                                                                                                                                                 􅄅        󄃄  􄃄       񆅆       򅄄򆅅           󅄄        􅄅           󆅆  􅆅   򅄅                                                                                                          򆅅    󆅅      􈇇  􈇈􈇈  􈇇                         􉈉 䉈    򈇇                                                                 !#&'.),/*/**.,,4../3163427:83=;}?; 򊉊􊉊          񋊋   򉈈         󌍍            댍   %!$!#,"&$' $&+++,22-5-27762<6379:=8?<z}>    󎍍 񒑒                       񙘙                  򝜜                    򞝞         𝞞    󞟞                      𦥥                                    쪩     𫬬 񭬭   󫪪󩨨                           𰯰                                                                           񳲲     󳴴                       ¸ù              򶵵   󼻼򿾿º» »ĻŽ žƿǾ                     ½  þ  ÿÿ                          񽼼                                          ﺻ  񽾽 󽾽                                              񶵵                                                                                              𳴳󻼺      𪫫                 󬭬     󮭭          򮯮                      񥦥           򫬫  򨩨     򬭬            𢣢           򤥤    𢣨  򨧨      󣤤   𥤥         󞝝 󝞞  𠡡      렟    񡢡   𘙙   񖗖󓔔      ꖗ   𖗖 𖗗              폎󎓔    𔕔铔      '  ( +%'& &-%&,0+(*)(-).162-/043262;31787797x6yB 􇈇􊋊    򇈈      􇈇 󈇈 򌍍   󈉈           '%"( $ $ )&+2))++)*(0,1130+2441:176965944>:8=:>                                                                񅆆   󇆆     񇆇  􆇇  񆇇        񆇆  󅆅􆅅񅆅   򅆅  񇆆     󇈇              󆇆󇈈  뇈                                                                                                                          􄅅                             򃄃  򄃅񄅅  󅆅                                                                                                                                        󁀁  􁀂 򀁀   􀁀     󀁁      􂃂   􂃃   􂁂          􂁂                                                                                                                                                                                                                                                                                                                ~~~~~~~}~~}~~}~~}~~~~~}~}~~}~~~~ ~~~}~} ~~~~~~~~}~}~~ ~~~~~~ ~}~}~}}~~~~~~}~}~ ~~~~~~~}~~~~}~~ ~ ~}~~}~~}~~~~~~}~}}~ ~~~~~~  ~~ ~~~}~~ ~~~~~~}~~}~~~~ ~}~ ~~~~ ~} ~~~~~}~~} ~~~~~~ ~}~~~~~~~}~ ~~~~ ~}~~  ~~~~~ ~~~~~~~~~}~~} ~~~~~  ~~ ~~~~ ~~~~~~~}~ ~~~~~ ~~~~~~~~~~}~~~~~~~~~ ~~~~~~~~~ ~~~~~~~~ ~~~~~~~~~  ~~~~ ~ ~~~~~~~~ ~~~ ~ ~~~~~ ~ ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ ~~~~~ ~~~~~~~~~~ ~~~~~~~~ ~~~~ ~~~~~ ~~~ ~ ~~~~~~ ~~~~~~~~~ ~~  ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~  ~~~~~ ~~~~~~  ~~~~~~~ ~~~~~~ ~~~~~~ ~~~~~~  ~~~~~~~~~~ ~~ ~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ~} }|}}|}} |{|{||{{||{|{|{~}}~}}~}~}}|}}|}| |{||{|{ {~}}|}|} |{||{||{|{~ }|}|}}|}|}|}||}| |{||{|{|{{}~}}~} }|}}|}| |{||{|{|{|{|{||{||{{}~}~}~} }|}}|}}||}||}| |{||{||{{|{{|{}}~}}~}~}}|}}|}}|}|}|}||}| |{|{{}~}~~}}~} }|}}|}}|}|}}|}|}| |{|{|{{|{||{|{{~~}~~}~} }|}||}}|}|}||}||{|{||{||{|{{|{{~}~}~} }|}}|}|{|{|{{|{{|{}~}~~}}~~} }|}}|}}|}|}}|}|}||{|{||{|{{||{{|{~~}~ }|}|}}||}||{|{||{|{{||{{|{}~~}~}}~}}|}}|}|}||{||{|{{}~~}~}~} }|}}|}||}}|}|}||{||{|{|{{~}~~}~}}~}}|}||}}|}|}}|}}|}}| |{|{|{|{{~}~}~}|}}|}|}|}}||}|{|{||{{}~}}~}~}~}}~~} }|}|}||}| |{||{|{|~~}~}}~}}~}}|}}|}|}}| |{||{{||{{||{}~}~}}~}~}~~}~}~~}}|}|}}|}||}||}||{|{||{||{}~}~}}~}}~}~} }|}|}||{||{{~}~~}}~}~} }|}||}|}||{|{|{{||{{~}~}~~}~}~}~}}~}}|}}|}|}||}|{||{|{{~~}~}}~}~}}~}}|}||}||}||}}| |{|{||{|{{|}}~~}~~}}~~}}~}}|}}|}| {~}~}}~~}~}}~~} }|}|}|}}|}} |{|{||{~}~~}~}}~}~}}|}}|}|}| |{||{||~}~~}~}~}}~} }|}||}|}||{|{||{{|{||{||~}~~}~}~~}}|}|}}|}}| |{|{||{|~~}~~}~}}|}}|}|}}|}||{||{|{{||{||}~~}~~}~}}~}|}}|}|}||}| |{||{|{{|~~}~~}~}~}}|}}|}|}|}||}}|{||{|{|{~~}~}~}}~~}}~}}|}}||}|{|{|{||{|~}~~}~~}~}}~}~}}|}}|}}|}||}}| |{|{~}~~}~~}}~}~}~}}~} }|}|}|}}||{~}~}~}~} }|}|}}|}}||}||}||{||{|{||{|~~}~~}~}}~} }|}|}}||{||{|{{~~}~}}~}~~} }|}}|}}|}|}||}||}||{||{|{{~~}~~}~~}~~}}|}}|}}||}}||}||}||{|{{|{{|{~~}~~}~}~} } |}||{||{||{~~}~~}}~}~}}|}}|}}||}}||}||~}~~}~} }|}|}||}|}||}||{|{|{{~~}~}}~~}~} }|}}|}}||}||{||{|{|{~ ~}~}~}~}~}}|}}|}}||}|}}|{~~}~~}~}}~}~}~}}~} }|}}|}||}| ~}~~}~}~~}}~} }|}|}}||}|}||{||{||~}~~}~}}~~}~~}~} }|}}|}|}}||}||{||~~~}~ }|}|}}|}|}|}}||}||}||{|{||~~~}~~}~~}~}~}}~}}~}}|}}|}|}||{|| ~}~~}~}}|}} |{||{~ ~}~}}~}}~}}|}}|}||} |{|~~}~~}~~}~}}~} }|}}|}||}|}||}||{|{|~ ~}~}~~}}~}~}}~~} }|}||}}|}| |{||{~~}~}}~~}~}}~}}|}}|}|}||}| |{||~~}~}~}}~}~}}~}}~}}|}}|}|}}|}|}| |~~~~}~}~~}~} }|}}||}|}||{||{~~ ~}~~}~}}~}|}}|}}|}}|} |{||{{~~}~~}~}~}~}}~~}}|}}|}||}}| |{~~}~~}}~}~}}~}}~~}}|}}|}||}}||}||}}||{||~~~}~~}~}}~}}|}}|}}|}| |{~~~~}~~}~~}~}~}}|}|}||}||} |{~~~}~}~~}~}}~}}|}}|}}|}||}||}||~~~}~}}~}}|}|}|}}||}}||{||~~~~}~}~}~}}~} }|}||}}|}||{~~~}~~}~}}~}~}}~}}|}}|}||}}||}||}||{||                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      񠟟  󤣤      򪫫񫪫   񧦧       򫪫 򲱲     򮭮       󱰱곲 ijųijŴųƳƴƴ그ųǴǴȴȵȴȴɵȵȵɴʵ򽾽ʴɵʴʵ˵˵ʵ̵̶˵̵̶̶̶͵ ==<=<<;:;mmmnnnmnmmnnnomnnn ==<=<;;:;                   nopqrstuvwwxymnnoopqrqrrsstuvwxymnoopopqppqrrstutuuvwvwwxxyzmnnonoopqpqrrstuvuvvwxyzmnonoopopqqrstuvwxymnnonoopqrqrrstuvwvwwxxyzmnnoopqrqrrsrsttuvwwxyzzmmnnoopqrsttstutuuvuvwvwwxyxyyz{nmnnoopqrstuvuvvwxyxzyyzzmnnoopqpqqrststtuuvwxwxyyznmnnoopqpqqrsstuvwvwxxyzyzz{nnonoopqrqrrstuvwxyz{mmnnopqrststtuuvuvvwxyz{nnopqrstuvwvwwxyz{nnoppopqqrsrsttuvwvwwxxyzyz{z{nopqrsrsstuvwxwxxyyz{mnonoopoppqrrqrrsstutuuvwxyz{nmnnopqrstuvvwxyz{nopqrsrttstuuvwxyzyz{{mnnonooppqpqqrrstuvwxyz{zz{z{mnnopqrstssttuuvwxwxxyz{znopoppqqrstuttuuvwxwxxyyz{mnnonooppqrsrsstuvuvvwwxwyyz{z{{nnopqpqqrrstuvuvvwxwxxyzyzz{mnnopqrqrsrsstuvwxyyzyzz{{nnonnooppqrstuvuwwxyz{nmmnoopqpqrrstuvwxyz{nopqpqqrstuvwxyz{z{{mnoonoopqrststtutuuvvwxwxxyyz{z{{mnonooppqrstuvwxyxyzz{mnnoopqqrqrsstuvuvvwxzyyzz{{nmnoopoppqrqrrsrsttuvwxyz{z{{|mnoopqrstuutvuuvvwwxyzyyzz{{mnnoppqrstuvwxwxxyyzyz{{z{{z{{nmnnoopqrqrrstuvwxyzyzz{{zz{nnonooppqrsrsttuvwxyxyyz{z{{|mnnopqrsrssttuttuvuvvwwxwxxyz{|{{mnnoopooppqqrstutuuvuvwvwwxyzyzz{|{mnnopqrstutuuvwxyz{z{{z{|{{mnnonoopqrstuvuuvvwxyxzyzz {|{nopopqqrstuvwxyz {mnnonooppqrsttsttuuvwxyzyz{{z{{|{|nopqrstuvwvwwxxyzz {|{nopqrstuvwxwxxyz {mnnopqrstutuuvvwxyz {|{mnoopqprqrrsrrttutuuvvwxyxyzyzz{|{{|{|mmnnopqrqrrsttsttuvuvwvwwxwxyxyyz{z{{z{{|{||nnonooppqrstuvwwxyyz{z{ {mnnoopqppqqrststtuvwxxyz{z{{|{|{nnopoppqrqqrsstutuuvvwxyzyz{{mnnopqrsrsstuvwxyz{z{{|{{|{||nmmnooppqrststtuvwxzyzz{{|{|{|mnnonoopqrsrssttuvwwxyz{zz{{|{|{|{{nonooppqpqqrstuvwxyz{|{{mnnopqrststtuuvuvvwwvwwxyzyyzz{{|{{|{{monoopqrststuuvwxyzz{|nnoopoppqqrsrsstuvuvwwxyz{|{nnoopqrstutvuvvwvwwxxyzyyz{{z{{|{{|{{nonoppqrsrsstuwvvwwxxyxyzz{z{ {|{||{noopqqrqrrstuvwxwxxyxyyzz{z{{|{||{{||noopopqqrstuvwxyz{zz{ {|{|{||{|oopqrqrqrsststtuvuvwvwwxyxxyyzz {|{{|{{||noppqrqrrsstuuvwxyxyyzz {|{{|{|noppqrstuvwxyzz {|{{|{|                                                                                      z{|{{||{||{|{||}|}|}||}|}|}||}|}}yz{z{ {|{|{||}|}}|}|}}z{|{{|{|{{|{||}||}||}|}|}|}}z{zz{{|{{|{{|{|{|{| |}|}|}}|} }z{z{z{{|{|{|{||{| |}||}|}}|}}z{z{{|{|{|{||}||}|}~}z{{|{{|{{|{|{||{||{{| |}||}|}}||}}|}}~}}{z{z{{|{{|{{|{| |}||}|}}|}}|}}~}{ {|{{|{{||{||{||}||}||}||}|}}|} }z{{z{ {|{|{| |}||}||}||}|}}|}}{z{{|{|{{|{{||{||{|{||}||}|}|} }z{z{{|{{|{|{{|{||}||}|}|}|} }~{ {|{{|{|{||{||{||}||}| }~}~}{ {|{||{{ |}|}||}}|}|}}~}}{{|{{||{|{|{||{||{||}|}|}}|}}~}~~}z{{|{||{|{||}|}||}|}|} }~}}{|{{|{|{|{{|{||}|}|}| }~{ {|{{||{{|{||{| |}||}}|}~}~}}~}}z{{|{||{|{|}|}|}||}|}||} }~}~}}{|{{|{|{||}|}||}|}|}||}}| }~}}{|{{|{{|{{|{||}||} }~}}~{|{{||{||{{|{| |}||}|}||} }~}}~}{{|{{|{{||{||{||}|}||}}||}|}~}}~}}{|{{|{||{|}||}|}||}|}|} }~}}{{|{|{| |}|}|}|}}{|{{|{|{{|{||{||}||}|}|}}|}~}}~}}{{|{||{|{ |}||}|}|}~}}~}~}}~{|{|{|{|{||}|}|}}|}|}}|}}~}}~{|{|{{|{{|{|{||}|}|}|}}~}~}}~~}}~{{|{{|{ |}|}|}||}|}||}||}|} }~}}~~{{|{{||{||{||}|}|}|}|}||}}|}|}}~}~}}~}{||{||{|{||{| |}|}|} }~}}~}~}{{|{|{||}|}|}||}}|}|}}~}}~}~~}~}}{{|{{|{||{||{||}~}~}}~}{{|{{|{|{||{| |}||}|}}|} }~}~~}~~}}~{{|{||{|{{||}||}|| }~}}~}~}~}}~~{{|{||{{|{|{||}||}||}}|}|}}|}}~}~}}|{|{{|{|{{| |}||}|}|}}~}}~~}~~}}~~}{|{{|{||{||{{| |}||}|}|}||}}~}}~}~~}~|{{||{||{|{| |}||}||}}|}|}|}}~}}~}~~}~}~~{|{|{{|{| |}|}}|}~}~}}~}}~}~}~{{|{{||{||{||}|}||}||}||}|}}~}~}}~}~~||{{|{||{||}||}|}|}|}}||}|}}|}}~}~}~~}~~{{|{||{||}||}||}|}}~}~}}~}|{{|{||}||}|}|}||} }~}~}}~}~~|{|{|{||{|{||{|}||}|}||}|}}|}}|}|}}~}~~}}~}~}~}}~}~~{||{|{||}|}}||}||}|}}~}}~}~}}~}}~|{||{||}||}| }~} }~}~}~|{{||{||{| |}|}||}}|}|}}~}}~~}~}~~}~}{{|{||}|}||}||} }~}~}}~~}~}~~}~{|{||}||}||}|}||}||} }~}} ~|{||{||}||}||}||}|}}|}}~}~}}~}~~}}~~}~~|}||}}|} }~}~~}~}~~}~~}~|{||{{|{| |}|| }~}~~}~}}~}}~~}~~|{||{||{||}||}|}}|} }~}}~~}~}~}~~{|{{||}||}|}|}}|}~}}~}}~}~~}~~||}||}|}}|}|| }~}~}~~}~~|{|{||}|}||}||}|}}~}}~}~}~}}~}~~|{ |}|}}|}}~}}~}~}~~}~ ~{||{{||}||}|}||}|}}|}}~}}~}~}~|{||{| |}|}}|}|}|} }~}}~}~}~}~}}~}~~|{| |}|}||}|}}~}~}}~}~~}~~{|{|{||}||}|}|}||}|} }~}}~~}~~|{||}|}}||}|}}|}|}}~}}~}}~}~~}~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               }~}~~}}~~}} ~~~~}}~}~~}~}~}}~}~~}~~~~~ }}~}~}~}~}~ ~~~~~~~ }}~}~}~}~~~~~~~~ }}~}~~}~}~~~~~}}~~}~}}~~}~ ~~~~~~~~ }}~} ~~~~~~~ }~~}~~}~ ~~~~~~~~~~ ~}}~~}~~}~~}~ ~~~~~~ }}~}}~}~}~~}~~}~~~~~}}~}}~}~~}~~~~~~~}~}}~}}~}}~~}~~~~~~~~~~}}~}~}}~~~~~~~}}~}}~~}~~~~~~~~}}~}~~~~~ }}~}~}~~}~~~~~~~ }~}~~}~}~~}~~~~~~~~ }}~~}~}~}~ ~~~~~}}~}~~~~~~~}}~~}~~}~}~~~}~}~ ~~~~~~~~~ }}~~}~ ~~~~~~~~~~ }~}~}~~}~~~~~~~}}~~~~~}~}}~}~~}~~~~~~~~~~~ }~~}~}~ ~~~~~~~~~}~}~~~~~~ }~~}~ ~~~~~~~ }~~}~ ~~~~~~~~}~~}~}~~~~~~~~~ ~} ~~~ }~~}~~~~~~ ~}~~~~~~~ ~}~~}~}~~~~~~~~ }~ ~~~~~ ~~}~~~~~~~~}~~}~~~~~~~~~}~}}~~~~~~~~~ ~~~~~~~ ~}~ ~~~~~~~}~~~~~~~~~ ~~}~~~~~~~~ ~~~~~~~~ ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~ }~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~  ~ ~~~ ~~~~~~  􀁀~~~~~~~~~  ~~~~~~~~~~~~ ~~~~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                􁀁               􂁂                       򂁁   󃂂           邁                                                                                                                                                                                                                                                                                                                                                                                                                                    󄃃  񅄅 򅄅 􄃃  􅄅􂃃   򅄄  󄃃           󅄅      􃄃                                                                                                                           󆅅󆅆  􅆆       􇆆          솅      뇆   󇆆           򆅅       􆅆       񈇈   󈇈                                                                              ( $ '  %!!''$$%*( &&(1-0*8(+0,4.2303:6:534     􉈉  􊉊      񉈉  񉈉󈇇             􉊊        򍌌      񉈈            !   ('# !) ! # ! $%#) +%&'-++52),+1+*.362376:3189󑊊     􏎏     󓒓         󕍎   򒓓  𖕖      󗘘  󚓒           򘗗                                   򡠡    𥤥        󧦧                   󫪫   񪩪                      򭮮                        󳲲     𵴴           󶵶ﳴ           򼻼򽾿  񶵶   켻 µﹸõöŷŷƸǹǹɻɻʻ˽̽ͿĹĺźȽɾɾʾʿ:842/   mnnmmmnmnnmnnmnnomnnonnmnnonnonono:841. 72-( #                            nnmmn mnmnnmnnmmnmnnommnnmnnonnonm n onoo mnmmnmnmnnonono ommnnmnnmnnonnonnonnoopoopmn nonoopoppoppoppmmnmnnonnoononoopoppoppqmnnmnmnnonnononnopop pqppqpmnmnnonnono opoopqpqqnmnonnopopopoppqppqp qmnmnnonnoononoopopqpp qrqrnmnmnnmnnopoppqpqpp qrqrqqrqrrqnnonnonoopopoppqppqqppq q rnonononoopoppqppqqrqqrqrrsrrn opoppqpqqrqqrqrqrrsrsrssrssonoopoppqpqrqqrsrsrsrsrrstoopoopoppqpqqpqqrqrqqrrsrrsrsrsstoopooppqpqqpqqrqrqrqrrsrsstsstssttstt 71 ,( #                                                mnmnnmnmnmmnmmnnmmnn mmnmnmnmnnmnnmnnmnnmnmnnmnmnmnnononnmmnmnmmn nonnonn ononononnmmnmnnonnonnoonoononnonnoononoonoonmnnmnnononnonoonoonoopoopopoopononno ononoonoopopoopoopoopoopoopononnonoonononoopoopoopoopoopopoppoppoppoppopononoopooppoppo poppqppqppqppopopopoppooppqpqqppqpqppqqpqqpqqopopoppqppqpqpqpqqppqqpqqpqpqq pqppqppqpqqrq qpqpqppqpqqrqrqqrqqrrqrrqrqqrrqrrpqqpqpqqpqpqqrqrqqrqrqrqqrqrqrrqrrqrrqrqqrrqrrqrppqqrqrqqrqrrqrrqrrqrqqrqrsrsrrsrsrrsrsrqrrqqrrqrrqr rsrrsrsrsrrsrsrssrsrssrrqqrqrrsrsrrsrsrsrsrssrssqrrsrrssrrsrssts stststtssttstsrsrssrs stsststsstssttsststtsttsttsttsrsrsstststststtsttsttrsstststtsststtuttututtuututtutstsstutuuttutututuutuusttututtutuutuututuututtuttutuutu uvuuvuuvvu uvuuv                        *                                                mnmnmmnmnmmnnmnnmnmnnmnnmnnmm nonnmnnmnmmnmnnononnonoononononnon nmnnmnnmoonoononoononononnononnmnnmnmnnpoonoononoonononmnnmnmmnnmmpopoopoppopoppopoonoononnonnmnnppoppoppopopoopoopopoopoopoopoonononnpqpqppopopopopoppoononppqppqpqppqppqppoppoopopoppoononoqqpqqpqqppqpqqpqppqppqpqppoppopo qrqqpqqpqqpqpqqpqppqppopoopopqqrqrqqrqqrqrrqqrqqpqqpqppqpqppqpqppopoprrqqrrqrqqrqrqrqrrqrqqpqpqpqp prsrrsrrqrqqrrqrrqqrr qpqqppqpsrsrrsrsrsrrsrsr rqrqrrqrqqrqqrqrq qpqrssrssrsrsrssrsrrsrrqrqrqqpqssrsrsrrsrrssrrsrrqrrqststtstststs srsrssrsrrqrrtststtsttsststs srssrssrsrssrssrsrrtststtstssttststssts s rututtuttsttststts srsrutuututtututtutuutuutut tststsstssttsru utuuttuututuututtututsttsttsstsstssuvvuuvuututuutututtuttstsstss  +                        @;61-)%!                        nmmnnmnnnonnmnmonnonnmnmnnoonnononnmnnmm oonoononnonmpopopoononoonnmnm opoppop o nmpopoopoopoonononnmnmpqppopoppopopoonoonmnmqpqpqppoppopoononononnmnnmnmmqpqqpqppopoonoonononnmnrrqqpqqppopopoo nmrqrq qpqppopoonoononnmnmrrqrqrqrrqrqq popoonmnmmrqrqqrrqpqpoppopoonononnmsrsrrqrqqpqpqqpoppononononnmnmnssrssrssrrsrrqrrqqpqqppoppopoonoonmntstssrssrrqrqpopooppoopoononmnn @;61,) %          < n< 𰵶          򵶵   󶵵        񬫫                               頻     󧨧    񨩩        󭮭󮯮򭮭                      򥦥 󢣢 󣢣           򞟟󙚚񜛛           좡 ꑒ   򗖗  󒓒     񓔓 󗖖   􈉈    󐑐      񏎎   򎏎     񌍌􍎎󐏏                                 $#!   # (  !  򇈈    󆇇      퇈      󈇈   󇈇        􆇆 􇈇   􇈇       󆇆                                                          $ " ! !                                                               󅆅  􆅆      󅆅  񅆅                 󅆆    􅆅񄅅 􅄅     󅆆  񅆆       򄅄 􅆅    󅆅    򅆆 󄅄  􅆆 󄅄􅆆                                                                                                                                   􁂁              􂃃 󂃃 큂    񁂁   󂃃        􃄄         􂃃                                                                                                                              ~~~ ~~~~~~~~􀁁 ~~  ~~ ~~  ~~󀁁~~~~~ ~~~  ~񀁀~  ~~ ~~  ~ ~~ ~ ~~~~ ~     ~ ~~  ~ ~   ~    ~              񀁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ~ ~}~}}|}|}||}}|}||~~}~~}~}~}}~} }|}|}}||}||}}|}||~~ ~}~}~~}~~}|}}|}}|}||~~~}~}}~}~}}~}~~}~~}}|}|}}|}||}|}||~~ ~}~~}~}}~}}~~}~} }|}|}}||~~~~ ~}~~} |}||~~~~~~}~}~}}~~}~}}|}}|}|}|}}||}||}|}||~~ ~}~~}~}}~}~}}|}|}|}||~~~}~}~}~}}~} }|}|}{~~~~}~}~}~~}}~}~}}~}}|}|}}|}||~~~ ~}~~}}~}~}~}}~}~} }|}}||}||}||~~~~~}~}~~}~}~~}~}}~ }|}|}||}||}||~~~~}~}~}}~}~}~~}~} }|}|}}|}||~~~~~~}~~}~}~}}~}}|}|}||}|}||~~~~~ ~}~}~ }|}}||}}||}||}||~~~~~}~}}~~}~}~}~}}~}|}|}||}|}|~~~~~~~}~~}~}~}~}}~} }|}}|}| |~~~~}~ }|}}||}|}||}}||~~~~~~~}~~}}~}}~~}~} }|}||}||}||~~~ ~}~~}~~}|}}||}|~~~~~}~}}~}~}|}}|}|}|}|}}||~~~ ~}~~}~}~~}}|}}|}|~~~~~~~}~}}~~}~}}~} }|}|}||}|~~~~~~~~~~}~~}~}~}}~}}|}||}|}}|}||}|~~~~~}~~}~}~}}~}}~}}|}|}|}|~~~}~~}~}}|}||}}||}}|~~~~}~~}~}~~}~}}|}}|}}|}}|}|~~~~~~}~~}~}}~}|}|}}||}|}||}}||~~~~~~~~ ~}~}~~}}~}~}}~} }|}|~~~~~~ ~}~~}}~}}~}}|}|}||}|}||}|~~~~~}~}}~}~~}~}}|}}||}}|}||}}|~~~ ~}~~}~}~}}~~}~}}|}}|}}|}}||}~~~~ ~}~}~~}~}}~}|}}|}|}||}|~~~ ~}~~}}~}~~} }|}|}|}~~~}~~}}~}}|}|}|}}||~~~~~~~~}~~}~~}~}}~ }|}||}~~~~ ~}~}~~}~~}~}~} }|}||~~~~~~~}~}~~}~}~~}~}~}}|}}||}}||}|}~~~~~~}~~}~~}~~} }|}}||}||~~~~~}~}~}~}}~}~}}|}}|}}||~~~~ ~}~}}~}}~}}~} }|}|}|}||~~~~~ ~}~~}}~}~} }|}}|}|}||~~~~~~ ~}~~}~}~}}~}}|}}|}|}|~~~~~~~~~~}~~}~~}}~} }|}}||}||~~~~~~~ ~}~}~}}~}}|}}|}|}|~~~~~~ ~}~}~~}~~}~}}~} }|}}||~~~~~~ ~}~~}~}~~ }|}|}}||}~~~~~~~}~~}~} }|}}|}} ~~~~~ ~}~}}~}}~}}|}}|}}|}}||}|~~~~~}~~}~}~}~} }|}|}~~~~~~~~~~}~}~~}~}~}}~} }|}||}~~~~~~~~~}~~}~}}~}}~~}}| ~}~}~}}|}}|}|}}|~~~~~~}~~}~~}|}}||}}~~~~~~~~}~}~~}~~}}~}}|}|}}~~~~~~~~}~~}}~}}|}}|}~~~~~~~}~~}~}|}}|~~~~~~~}}~~}~~}}~}~}}~}}~}}|}}|}~~~~~~~ ~}~~}}~} }|}|}}~~~~~~}~~}~~}~}~~} }|}~~~~~~~}~~}~}~~}~}~} }|} ~~~ ~}~}~}~}}|}}|}}~~~~~~~~~~}~~}~}}~}~}|}}|}|~~~~~~~~}~}~}}~} }                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 󢡢  񡠡  󨠠󥤥  򣢢   󬫫 󯮮 񪩪󫪫  򮭮   󬫫 ꭬򬭭   벱򳲳    򳲲  󴳴 ζͶη϶Ϸ϶ϷϷϸﻺиѹйѹѹҺҺҺҺӻӻҼԼӻԼԼսԼս:9999978666665555333231110110/0//..-,,-,,+++**)))()'('&'&&&%$$$$mnnnnonnomnnommnnoonnomnnoonnomnnonnopnonoopmnnopmnnoopopnnomnnopmmnonopoppmnoopnnonoopopqmnnopooppmnopmmnoopqpnmnnopqppmnopmmoopoopqpqnnopopqppqmnopqpqqmnnonooppqnmnnoopoppqqnmnnopqrqnmnnoopqpqqmnnopqpqqrmnopqpqqrnnopqrmnnopqrmnnonpoppqrnnonoopqqrsmnnopqrrmnnopqrmnnopqrsnmnnoopqrqrrnnopqqrsmnnopoqqrsrmnonoopqrsmnnopoppqqrsnopqrrqrrssnopoppqqrqrrsnonoopqqrqrrssnnopqrqrrssnopqrrsrssnmnnoopqrqrrsstmnnoopqrsnnopqrstnopqrstnnopqrqrrstmnnopqpqqrstmnnoonoppqrsrssttmnnopqrstummnnoopqrstmnnopqrqrrstnnopqpqrrstunopqrstmmnonooppqpqqrrststuunmnoopqppqqrrsrsttunmnnoopqpqqrrstu:9:88888777556445443322120010////-..,--,++***)))))(((('''%&&$$%#                            opqrstuvuvvwwxxyxyyz{|{|{{|{{|opqrsstuvwvwwxyz{|{|{|{{|{|{|{{opqrstutuuvvwxwwyyz{z{{|{{|{|{||{||pooppqrssrtsttuutuvvwxyzyzz{|{{|{{|{{|{{oopqrstuvwxyz{|{{|{|{||{{|pqrqsrsstuvwxyzyzz{{|{{|{|{||opqqrstuttuvvwxwxxyz{|{{|{|{{||{ooppqqrstuvvwvwxwxxyz{z{{|{{|{{|{{||oppqrstuvuvvwxwxxyyz{z{{|{|{{|{|{||{oppqrstuvuvwwxyz{z{ {|{||{||pqrstutuuvvwxyz{z{{|{|{{|pqpqqrstutuuvwxyz{z{zz{ {|{||{||{pqpqrqqrrstutuuvuvvwwxwwyyxyyzz {|{{|{||{|pqqrststtuvuvvwxyz{|{{||{{||{|pqqrstuvwxwxyyz {|{||{||{||qrstuvvwxyz{z{{z{{|{{|{||{pqqrrststtuuvuvvwwxyz{z{ {|{{||{||pqrqrrststtuvwxyz{z{{z{{|{{|{||{||{|qqrqrrsrsttuvuvvwvwxxyz {|{|{|qrqrrsrssttuvwxyz{z{z{ {|{{|{|{|qrrstuvuvvwxyxyyzz{ {|{||{||{|qrrstuvuvvwwxwyyxyzz{|{{|{{||{|{||{||{||qqrsrsststtuuvwxwxxyxyyzz{z{{|{{|{|{|{{||rqrsrsstuvwxyz{|{||{|{||qrrstutuvvwvwxwxxyxyyz{|{|{||{{|{||qrrstuvwxwwxyyz{z{{|{|{|qrrstuvuvvwxyxyyzz{|{{|{|{||rstutuuvwxyxyyzz{ {|{|{||{|{||{||rstuvwvwwxyz{|{{||{|{{||{{| |rstuvwwxwxxyyzyzz{{|{|{{ |rsttsttuuvuvvwvxwxxyz{|{|{||{ |rstuvuvvwvwxxyz{z{ {|{|rstutuuvwxyzyz{{|{|{|{||{|{|{{||}|rsstuvuvvwyxyyz{|{{|{||{| |}|rsstuvwxyzyzz{{z{{|{|{|{| |srststtuuvuuvvwxyz{|{{|{|{||{||{||}||stuuvwxwwxxyyz{z {|{||{||{|{||stuvwxwxyxyyzyz{z{{|{|{|{ |}|sstuuvwxwxyxyyz {|{{||{||sttsttuuvwxwxxyyz {|{{|{{|{| |}|ssttuvwvwxxyz{|{{|{{||{||}||stuvwxyz {|{|{ |}|}||}sttuvwxyz{z{{|{{|{|{|{||{||{||stuvwxyxyyz{z{{|{|{| |}|}}ttuvwxwxxyz {|{{|{| |}|}sttutuuvuvvwwxyz {|{{|{|{{||{{|{|{||}|ttuvuvwvwwxyz{|{|{||{|{{|{||}|}||ttuvwxyxyzz{|{|{||{||}|tutuuvwvwwxxyzyzz {|{|{|}|tuvuvwwxwxyxxyzyzz{|{{|{{|{|{{|{| |}|tuuvwxyz{|{|{||{{| |}|}tuuvwvvwxwxxyyz{z{{|{{|{|{|{| |}|}tuuvuvvwwxxyz{z{{|{{|{{|{||{||}|}||ttuuvwxyz{|{|{||}|}tuuvwxyzyz{ {|{{||{||{| |}|}|ttuuvvwxyz{|{|{||{||}tuvwxyzyzz {|{{||{ |}|}|}|}|}||uvwxxyz{z{ {|{{|{{|{| |}||}tuuvvwxyzyyz{{z{{|{{||{{||{{|{||{| |}uvvuvvwyxyyz {|{|{|{{|{{||{||}||}||}}|uuvwvwwxwxxyyz {|{|{{||{|}||}|}uuvvwwvwxwxxy {|{{|{|{ |}||}||uvuvvwwxyz {|{{|{|{|{||}||}|}||uvvwvxwxxyz{|{{|{||}||}||}|                                                                                                                                                                                                                                                                                                                                                |}|}|}||}}|}}~}}~}}~}~} ~|{||}||}|}}|}|}}|} }~}}~~}~~}~~}~~|{| |}||}||}}|} }~}~}~~}~}}~~}~~{ |}|}|}}|}}~}}~}~}~~}}~~}~~|{{ |}||}|}}|}}~}}~}~}~}}~}~~~|{| |}|}}|}~}}~~}~}~ ~{| |}|}}||} }~}~~}}~}~ ~{||{||}|}||}|}||}}|}}~}~}}~~}~~}~}~}~ ~ |}|}|}}|}|} }~}}~}~}~~}~}}~}~ ~ |}|}|}||}}~}}~~}~~}~~}~ ~{||}||}~}~}~~|}||}|}}|}}|} }~}~||}|}||}|}}~}~}~}~}~~}~ ~|}|}|}}|}|}}~}~~}~~} ~| |}|}}|}|}}~}~}~~}~~~~|}||}|}|}|}|}|}}~}~}~} ~~~ |}||}||}}|}}|}}~}}~}~}~}} ~~~{||}|}||}|}|}}|}||}}~}}~}~~}~~}~~~~~~| |}|}|}}~}}~}~}}~}}~}}~~}}~ ~|}||}|}}|} }~}}~}}~}~~~~|}|}}|}|}||}~}}~}}~}~~}~~}~~~~~||}|}}|}|} }~}~}~}}~}~~}~~~~~~~~||}|}||}|}|}}~}~~}~~}~~}~~~~~~||}||}|}|}|}}|}|}}~}}~~}~}~}~~}~~~~~~~||}|}|}|}}~}}~}~}~}~~}~~~~~||}|}|}}|} }~}~}}~~}~}~~~~~~~||}||}||}|}}|}|}}|}}~}}~}~}}~~~||}}|}}|}}|}}|}}~}}~~}}~}~~}~~}~ ~~~|}||}||}}||}|}|}}~}~}~}}~~}~~~||}|}|}}|}}~}}~}~}~ ~~~~~|}||}||}|}}|} }~}}~}~~}~~||}||}||}|}}|}}|}}~}~~}~}}~}}~}~~~~~~~|}}||}||}~}~~}}~~}~}~~~~~~~~|}||}}|} }~}}~}~ ~~~~~~|}||}|}}|}}~}}~~}~}}~}~~}~ ~~~~~||}||}||}}~}~}~~}~~~~~~~||}|}|}|}|}}|}~}~~}~~~~~~~}||}|}||}}||}~}}~}~}~ ~~~}||}}||}}|}|}|}}|}}~}}~}}~~}~}~~~~~~~~~|}|}|}}|}|}}~}~}}~}~~}~~~~~~}||}|| }~}}~}~}}~~}~~}~~~~~~~~|}}|}}|}}|}}~}~}~}}~}}~}~~~~~~~~|}||}}||}||}}~}~}~}~}~}}~}~~}~ ~~~~|}||}}|}}|}}|}}~}~} ~~~~~~|}|}||}}|} }~}}~}~ ~~~~~~~~||}|}|}}~}~~}~}~ ~~~~~|}|}||}~}}~}~}~~}}~~}} ~~~~|}|}||}|}}~}~~}~~}~}~~~~~~~|}|}}|}|}|}}~}~~}~}~~~~~~~|}}||}|} }~}}~~}~}~~}}~~~~~~~~}||}}|} }~}}~}~~~~~}|}}||}|}~}~}}~~~~~|}}|}}~}}~}~~}}~} ~~~~~}||}}~}}~}~~}~}}~}~~~~~~~~~|}}|}~}}~~}~~}~~}~~}~~~~~~~~~||}~}}~~}~~}~}~ ~~~~~~|}|}}|}}~}~}}~}}~~}~~~~~~~~~}|}}|}}~}}~}}~}~~}~ ~~~~~~~}|}|}|}}~}~}~~~~~|}||}}~}}~}}~}~}}~}~}~~~~~~~~~~}~}~~~~~~~}}|}}~}~}~}~}~~~~~~}|} }~}}~}~~}~~}~~}~ ~~~~~ }~}~~}}~}~}}~}}~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ~~~~ ~~~~  ~~~~~~~  ~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~ ~~~~~~ ~~~~~ ~~ ~~ ~~~~~ ~~~~~~~~~ ~~~ ~ ~  ~~  ~ 󁀁~~~ ~~~ 񁀀~ ~~  ~  ~~~        ~    򁀁     򁀁 񁀁    􂁂    ꂁ 󁀁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    򃂃 􃂃             􃂃򃂂  󃂂       􄃄                                                                                                                                              􄅄   􄃄          􆅆    􆅆                                  쇆                                                                                                                               􈇈  􈇈    􇈇           􇆇                                                                  736<9<::9;~;y~  􉈈  񉈈   񈉈      􉊉𑐐    @;95897<8>=;>         񐑐              󝜜  򜛜 󘙙                                  򤥤𤣣       񦥦 𧦧    󧦦  󧦧          𮭮  찯 򰯰        󯮯                          󸷸        ³´   ôĵĵĶŵŶŶƶǶǷ򹸹ȷɸȸʺ˹񽾽̻̻ͽϾϾпѿҿ<::8nnmnmmnnnnmmnn<;:8?;:75430/-+)' %$#    mmnnmnmnnnnonnmmnnonomnmmnnonoopnnmnnononooppmnnonopoppmnmmnnonoopoppmnnononoopoppqpmnmnnopooppqpnmnnonoopopqnmnnonoopopqpqqrqnmnnonoopqrqqmnnopqrqqrrnmnnopoppqpqqrnonopqrmnnonoopqppqqrqrrsrmmnnopoppqpqqrqrrsrrsrsmnonoopqpqqrqrrsrsstmnnopqppqqrstsnmmnopoppqppqqrstmnnononoopqrqrrstssttmnnonoppooppqrststtuttnopoppqppqqrqrrsrsstummnnonnoopqpqrqrrstunopopopqppqrqrrstumnnonoopqppqqrqrrqrrsrssttsttutuuvumnopooppqrsrststuttuuvuuvumnnonnoopoppqpqqrqrrststtuvuvvnmnnopqrstuvuvvwmnnopqpqqrqrrstutuvuvvwwvwmmnnopooppqpqqrqqrrsrsststtuvwvwwmnnonnoopqpqqrqrrstuvuvvwnnonoopopqqrqqrrstssttuttuvuuvwvwwxmnnopqpqqrrqrrsrsstutuuvwxnmnnonoopoppqqrqrssrsrsstuvuvvwvwwxwxxnmnnopqrsrsstuvwxwxxyynnoonoopqrqqrrsrrsrsstuvuuvvwvwx xonoopqpqqrstutuuvwvwwxyxyynopqrsrsststutuutuuvwvwwxyopoppqrqqrsrsstutuuvwvwwxwxxyxxy?;985430/,*)(%## !   ,*&$ "                mmnonnopmnnonnopmnonoopooppnnonnoonnoopoopoopmnnmnnonnopoppoppqppmnmmnnonopopooppqpmnopqpqqpqqmnnmnnonoopqpqqpqqnopooppqpqpqqrqrnmnnonnoopoopopp qrqrnmnnonnonoopqppqrsrnmnnonnonoopopqpqqrqrrqrsrsrrmnnonoopopqpqpqqrsrsmnmmnnono pqrsrssmnnmnnonoopooppqpqrqrrsrsstmmnopooppqppqqrqrqqrrsrststtnnmnnopqpqpqqrqrrsrsrsststtumnnonnonoopqrqrqrrsrsstststtnmnmmnnonoopoppqppq rststtunnonnoopoppqpqqrqqrqrrsrrssrsststtututtuunmnopqpqqrqqrsrsrsstssttutututuumnonnoonoop pqr stsstuvuonononnoopqpqpqqrrqrrqrsrrsrsst uvuvvonoopoopoppqpqqrqqrrsrrsststtutuuvwvnoopqrqrqrrsrsstsststtuvuvvwopq rststtuttuuvuvvwoppoppqrqrrststtutuutuu vwvwwpoppqpqrqrrsrsst uvuvvwxwxppqpqqrrststtuvuuvwvwwvwwxwxwxqppqrqrrsrsststuvuuvvwvwvwwxwxxwxxpqrqrrststssttuttuuvwxwwxxyqqrsrsststtututuuvuvvuvvwvwwvwwxwwxxyxyqqrsrrststtuttuuvwvwvwwxwxxyxyyqrstutuuvwxwxxyxxyxyyrststtuvuvvwvwxwxxyxyyzyyqrrsrsstutuuvuvuvvwxwxxyxyyzrst uvuvvwvvwwxwxwxxyxyxyyzsrsststtuvwxwxwxwxxyxyyz{zz{ssrtsstutuuvuuvvwx yzyzz{z{{stststtuvwxwxxy z{sttsttuttuutuuvuvvwxwwxxwxxyxxyzyzyzz{z{{z{{tuvwvwxyzyyzz{z{{z{{z{{ttuvwvwwxwxxyxxyyzyzzyzz{z{ {tututuuvvwvwwxyxyyz{z{{ uvwvwwxwxwxwxxyzyzyzz{zz {|{{tuuvwvwwxwxxyxyzzyzyzz{z{z{{uvwxyxyyz{z{ {|{{vuvvwxyzyzz{zz{{|{|{vuvvwvwwxwxxyxxyyzyyz{|{{uvvwvwwxwwxxyzyzz{z{{|{{vwxwwxyzyzz{z{{|{|{{wwvwwxyzyz{z{{|{|{|{|{wwxyzyzz{zz{| {|{{vwwxwxxyxyyzyzz{z{ {|{{|{wwxyz{|{|{{|{{|{xwxxyzyzz{z{{|{{|{|{|{||{|xxyxyxxyyz{z{{|{|{{|{||{|xxyxyyzyyz{z{ {|{{||{{|{||{||{||xyxyyz{z{ {|{|{|{|{xyyz{z{ {|{{|{{|{{|{||{|{{||xyyzyyzyzz{z{{z{z{{|{{|{{|{|{{|{|{||{{|yzzyyzz{z{{z{{zz{{|{{|{|{|{||{||{||yzz{|{{||{|{|{{|{||{|{yzz{z{ {|{{|{{|{|{|{||{||{|,)'$!                                                                          # !      opop pqrqrrsrs s toppqpqpqqrqrrsrssrsrsstststtststtutppqp qrqrrsrr stsstssttutuututuupqppqqpqqrqrqqrqrrsrsrsstsstst tutuupqqpqqrqrrsrssrsrsststtsttutututtuutuuvqrqqrsrsrsstststtutuutuutuuvuvvuvuvqqrqrqrsrrsrsstststtuttutuutuvuuvuvvuvvrqrrsrsststt uvuvuv vqrrststuttutuutuuvuvvwvwrsrsststtsttutuututuuvuvuvvwvwvwvvwvwwsrsstsst tutuuvuuvwvwvwvwwvwwrstsststtutuuvuvuvvwvwvwwxwxwxsststssttututtuuvuuvvuuvvwvvwxwwxwxxsttututtuuvuuvvuvvwvwxwxwxxwxxyssttuttuuvwvwxwwxwwxwxxyxxyttuvuvwvvwxwx xyxyxyyxttutuuvuvwxwxwxxyxxyyxy ytuuvuuvvwvvwvwwxwwxwxwx x yzuvuvvwvvwxwxyxxyxyzyzyzzyzuuvuvv wxwxxyxyyzyy zuvwvvwxwwxyxyyxyyzyzyz z{z{z{vvwvvwxwwxwwxyxyxyyzyzz{zz{{z{vwvvwwvwvwwxwwxxyxyyxxyzyzzyzz{zz{zz{{vwvvwwxyxxyyzyyzzyz{z{{z{{z{{zwwxwxwwxyxxyyxyyzyzyyzz{z{{z{ {wxyxxyxxyyzyzzyzz{z{z{{z{{z{ {wxwxxyxyyzyyzzyzz{zz{zz{wxxwxxyxyxyxyyzyzzyzz{z{{|{{xxyzyzzyzz{z{z{{xyxyzyz{z{z{|{{yxyyzyzz{z{{z {z{{yzyyzyz z{z{z{{|{{|{{|{yyz{z{{|{{|{{|{yzyyzz{zz{{z{{|{|{{|{|{{|{{|{|{|{yzz{z{|{{|{|{{|{||{|{||{zz{|{ {|{{||{{|{|{{|{{|{|{|{{z{{zz{z{{z{{|{{|{|{{|{{|{|{||{|{{z{ {|{ {|{{||{{||{{|{|{|{|{{z{{z{{|{{|{||{|{{|{||{||{|{{|{|{{|{|{{|{|{||{|{|{{||{{|{||{{|{{|{{||{||{{|{{|{{|{{|{|{||{||{|{|| {|{{|{{|{|{|{{|{||{|{{||{|{||{||{|{||{||{{|{{|{{|{{|{|{{|{{|{{|{|{||{||{|{||{|{|{{|{{|{{|{{|{{|{{||{|{||{||{|{||{||{|{ {|{{|{{||{|{||{{|{{|{||{{|{{|{||{|{||{||{{|{{|{|{{|{|{{|{||{{|{ |{||{||{{|{{|{|{||{|{|{{|{||{||{|{||{||{|{||{|{{|{{|{|{|{||{{|{||{|{{||{{|{||{|{||{{||{|{|{{|{||{||{||{|{||{||{||{||{{|{|{{|{||{|{||{|{|{||{||{|}{ {|{|{||{|{||{||{| |{|{{|{|{|{{||{|{{|{||{||}||}||{{|{|{|{|{||{||}||{{|{||{||{||{||{|{||}|}|}||}|{|{||{|{|"|}||}||}|{|{||{||{|{| |{||}||}||}||}|}||}|}}||}|{{|{||{||{| |{| |}| |}|}}||}||}||{||}|}||}||}||}|}|}}|}|{||{|{|{{||{| |}| |}|}|}}|}||}|}||{||{{|{||}||}||}|}||}}|}||}||}||{|{||{||}||}||}|}|}||}|}||}}|}}|}}|}}|{|{||}||}||}}||}|}}|}|}}|}}||{| |}|}||}||}|}|}}||}||}}|}||}|{||{||}|}}||}||}||}|}|}}||}|}}|}|}}|}}|                                                                                                                                                                                                                                                                                                0,   )+       # &64     tututuutuvuuvuvuvvuvvuvuvvuvuuvvut uvuuvuvvuvuvvuvuvuvvutuuvuuvuvuuvuvuvvwvvwvvwvvwvwwvwvwwvu uvuv vwvvwwvvwvwvvwvwvwvwwvwvvwwvwvvuuvuvvuuv vwvwwvwvwwvwvvwwvwwuvvwvwvvwwvwvwwxwwxwxwwxvwvvwvvwvw wxwxxwwxwxxwxxwxwxwwxwxxwvvwvvwvwvw wxwxwwxwwxwxxwxxv wxwwxwxwwxwxxwxxyxxyxxyxxyxwwxwxwxxyxyyxxyxyyxxy yxyywxwwxxwx xyxxyyxyxxyyxyyxyyxyxyxyxywxxyxxyxxyyxyxy yzy yzyzyyxxyxyxyxxyzyzyyzyzyyzyzzyzyzyyzzyzyyzxyxxyx yzyyzyzyyzzyzzyzyz zxyyxy yzyzyzzyzz{z{z{z{zzyzyzyzzyzyz{zz{z{z{zz{z{z{z{zz{zz{z{yyzy z{zz{zz{zz{z{z{{z{{z{{zyzzyzz{z{z{z{z{{z{{z{z{{z{{z{){z{z{{z{{z{z{&{z{z{{z{2{z{={z{{|{ {|{{|{ {z{{|{{|{{|{{|{{|{{|{|{#{|{|{|{|{{|{{|{|{ {|{{|{{|{{|{{|{{|{{||{{||{{|{!{|{{|{|{||{|{|{{|{{|{{|{ {|{|{{|{|{|{{|{||{{|{{|{||{|{{|{||{{|{|{{|{{||{|{||{||{|{{|{|{{|{{|{{|{|{|{{|{{|{|{{|{{|{{|{||{||{||{|{{|{||{|{|{|{{|{{|{|{||{|{|{{||{{|{|{{|{||{|{{||{|{||{|{|{||{|{{|{|{|{||{||{{||{||{|{|{{|{||{||{||{|{||{|{{||{{|{||{{|{{|{||{||{{|{|{{|{|{{|{{||{|{||{||{||{||{|{|{|{{|{{|{|{{|{{||{||{|{{|{||{|{|{||{||{|{|{{||{|{{||{|{||{||{|{||{||{||{||{||{||{{|{||{{|{{|{|{||{||{|{|{{||{|{|{|{|{|{||{||{|{||{||{| |{|{||{||{||{||{|{|{|{||{{|{||{||{||{||{|{|{||{{|{|{|{||{||{||{||{||{{||{|{|{||{||{||{||{| |{|{| |{| |{||{|{|{{||{ |{||{||{{|{{4|{||{||{||{|{)|{| |{||}||}| |}|)|}||}|}||}||}||}| |}| |}||}||}|}||}|}||}||}|}||}||}|}}| |}||}||}||}|}}||}|}}||}|}|}||}|}}||}|}||}}|}||}||}||}|}}||}|}||}|}|}|}|}}|}||}||}||}||}||}||}||}||}||}||}||}}||}||}|}|}||}|}||}|}||}|}}||}||}||}||}||}|}|}||}}|}||}||}|}|}||}|}|}||}|}}||}|}|}}||}|}|}||}}|}||}}||}||}||}|}|}}|}|}||}|}}||}}|}||}||}}|}|}||}}|}}|}}|}||}|}|}|}||}}|}||}||}|}|}|}||}|}|}|}}|}|}||}}|}|}}||}|}||}||}|}}||}||}|}||}|}}|}}|}}|}|}}|}||}}|}||}|}|}|}||}||}||}|}}||}||}}|}||}}|}||}}|}||}|}|}||}|}}|}|}}|}|}|}}|}}|}}|}}|}}|}}|}}|}|}|}}||}|}}|}|}|}}|}}|}}|}}|}}|}|}}|}}|}}|}}|}|}}|}|}}|}}||}}| }|}}|}}||}}||}|}}|}|}}|}}|}}|}}|}}|}}|}}|}|}}|}|}}|}}|}}|} }|}}|}}                 &                                                                                                                                                                                                                                                                                                     !            (    '                                                                                                            $#)&         '    vuvuvvuuvvuvvuuvuvuvutuututtuttsttsvvuvvuvvuvvuvvuvuuvvuututtuuttvwvvwwvwwvwvuv vuvuuvuutu uwvwwvwvwvwvvwvvwvvuvvuvuvuuvuuvuutuuw wvwwvwvwwvwwvvuvu uxwxwwxwwvwvwwvwwvvwvvuvvuuvuuvvuuwxxwxwxxwwxxwxwwxwvwwvwvwvvwwvvwvv xwxwxxwxwwxwxwxxwxw wvwvwvvxyxxyyxxyx xwxwxxwxwvwvvwvyxxyxyxyxxyyxxyxy xwxxwxwxwxwwxwwvwwyxyyxxyxyyxxyyxyxyxyxyx xwxxwxwwvwyyzyyzyyzy yxyyxyyxyxxyxyx xwxwxwwyzyzyyzyzyzyzzyzyyzyyxyyxyxxyxxwz zyzyzyzyzzyzyzzyzyyxyxyyxyxxyxxz{zz{zzyzyzzyyzyxyxxyyxxz{z{{z{z{{z{{z{zz{zzyzzyzy yx{z{{z{{z{{z{z{{z{{z zyzyyzy{z{{z{ {z{z{z{{z{zz{zzyzyyzyy{z{{z{ {z{{z{ {z{{z{z{zz{zzyzyzzy{{zz{{z{{z{{z{{z{{z{z{{z{zzyzy{4{z{z{zz{|{{|{){z{z{{z{{z{|{{|{{|{{|{{|{{z{zz{{z{{|{|{|{{|{ {z{{|{|{{|{{|{|{{|{ {| {|{{|{|{||{{|{||{{|{|{{|{{|{{|{{|{{|{||{|{{|{||{|{{|{{|{{|{{|{{|{|{{|{{|{|{|{ {|{{|{|{{|{{|{|{{|{{|{|{|{|{|{ {|{{|{{||{|{|{|{|{|{{|{{|{{|{{|{{|{{|{{|{{|{||{|{||{{||{{|{{||{|{{|{{|{ {|{||{{|{|{{|{|{{|{|{{||{{|{{|{|{|{{|{|{||{{|{||{|{{||{|{{|{|{|{||{{|{{|{|{{|{{|{|{{||{|{|{||{{|{{|{|{|{{|{||{|{||{|{{|{{|{|{{|{||{|{|{{|{{|{{|{||{|{|{{|{{|{||{{|{{|{|{|{||{{|{|{||{|{||{{|{{|{|{||{|{|{||{|{||{||{||{{||{||{|{||{||{{|{||{{|{{|{ |{||{||{|{|{||{{||{|{|{||{||{||{| |{||{|{||{||{||{|{|{|{||{|{||{{|{||{|{||{|{{||{||{|{{||{||{||{||{|{{|{|{||{ |{||{|{| |{|{||{+|{|{{||{|{|1|{||{||{|2|{| |{||}||}||{||{||}| |}||}||}||}||}||}}||}||}||}|}| |}||}||}||{||}|}||}}||}|}||}| |}| |}||}|}||}|}|}|}||}| |}||}|}|}}|}||}||}|}}|}|}||}||}}||}||}|}|}}||}||}||}||}||}||}||}||}||}||}|}||}|}}||}|}||}}|}||}||}|}||}|}|}||}}|}|}}|}}|}|}}|}|}}|}|}|}||}||}}|}}|}|}}||}}|}||}|}}|}}|}|}}|}}|}||}|}||}||}|}}||}}|}}|}|}|}|}|}|}|}||}|}}|}|}}|}}|}|}||}||}|}|}|}}|}||}|}|}}|}||}|}|}}|}||}|}||}|}}|}|}|}}|}}|}|}|}||}|}}|}}|}|}||}|}}|}}|}|}}|}|}}|}}|}}|}|}|}}|}}|}}|}|}|}}|}|}}|}}||}}|}}|}}|}}|}}|}|}}||}|}||}|}|}}|}}|}}|}}|}}|}}|}}|}}|}|}|}}|}}|}}|}}|}}|}}|}|}||}|}}|}|}}|}}|}}|}}|} }|}|}}|}}|}}|}}||}}|}|}}|}}|}|}}|}}|}}|}}|}|}|}}                    !  ;        $                                                                                                                                                                                                                                                               ,                                                                                                                                                    tstssrsrrqrqqpqppopoonoonnsttststtstssrsrssrqrqrqqrqqpqpqppopopoonootutt srsrsrrqrrqrrqqpqqponoouututtsstt srsrrqrqrqqpqqpopooututtstsstssrsrqrrqpqppovuututtuttststsrsrrsrrqpqqpouvuutuuttuttsttsstssrssrsrrqrqrrqqpqpvuvvuuvuutut tsrssrssrrqrq qpvuvvuvuuvuututtuttstsstsrssrrsrqrqrqqpqpwvwvvuvvuvvuvvuututtuttststssrsrrqrrq w vuvuu tsrsrrqrqwwvwvwvwwvvuv u tstssrsrrqrrwxwxxwwvwwvvwvvuvuutuutuuttststssrqrrwxxwwxwxwxwwvwvwwvwvv ututtststssrsrr x w vuvuututuuttsrsrsyx xwxwwxxwwvwvvwvvuvvututsttssrsyyxxyxyxxwxwxwxwwvwvwwvwvvuvuututtstsstssyxyxyxxwxxwxwwvuvvuuvvuuttuuttszyyzyyxyyxwxwvuvuutuututtszyzyyxyxxwxxwxwxwwvwwvuvvuuvuututtszzyzzyzyzzyxyxx wv ututtzyzzyzyyzyyxyxwxwwvuvutuutz{zz{zyxyxyyxxwxwxwwvutuzz{{z{z{zz{zzyzyzyyxyyxyxxwxwxwwvuvvuuz{{z{{z{zyzzyzyyxyxxwxwvwvwwvuvuu{z{{z{zzyzyyxyxxwxwwv{z{{z{zz{zyzyyxyyxyxxwxwwvwvv{zyzzyyzyy xwxwvwwvv|{ {z{{z{z{{zz{zz{zyzzyyxyyxxwxww{|{{|{{z{{z{zzyzyyxwxww{|{{|{{zyxw{|{{|{{z{z{{zz{zzyxwx{{|{{||{|{{|{ {z{{z{{zz{zzyzyyxyxx{|{{|{|{{|{{z{{zzyx{|{|{|{{|{|{{|{|{{z{{z{zzyzzyyx{{|{|{|{{||{|{ {z{{z{{zyzyzyy|{|{{|{{|{|{|{{|{||{{zyzyyzyy{{|{{|{||{{|{|| {|{{z{{z{z{zzyzyy|{||{|{||{|{||{|{|{{|{|{{zy|{|{|{{|{||{|{|{{|{{||{{|{ {z{z{{z|{|{|{{||{|{{|{{|{||{{|{{z{{z{z{{z{||{||{{|{|{{||{{|{{|{|{{|{{|{{z{{z{||{|{|{||{||{|{|{|{{|{|{||{{|{z{{|{||{|{|{||{||{|{{||{|{{|{{|{ {|{|{{|{|{||{|{|{|{||{|{|{|{{||{{z{{|{|{|{||{|{{|{||{|{{|{{|{{|{{ |{||{||{||{{|{{|{|{{|{|{|{{|{|{|{{|{{|{|{ |{|{|{||{|{{|{|{{|{|{||{{ |{||{|{||{|{{|{||{|{||{{|{|{{|{||{||{||{||{||{||{||{||{|{|{{|{{|{|{||{|{|{|{{|{|{{||{||{|{{|{|{||{||{|{|{|{{|{|{|{{|{||{|{|{{|{|{{|{|{|{}|}||{|{|{|{||{|{{|{{|{|{{||}| |{||{|{||{|{{|{|{}| |}||{||{||{||{{||{|{{|{{|}||{||{|{||{||{{|{{|}|}||}||{|{||{|{|{||{|}|}||}|}||}|}}||{|{|{| |{|{|}}||}||}}|}|}||{| |{|{||}}|}||}}|}|}|}|}}|}| |{||{||{||{{|{{|{{}}|}|}}|}|}||}||}||}| |{||{|}}|}||}||}|}||}|}||}|}||}|}||}}| |{||{||}|}|}}||}|}||}||}|}}| |{||{||                                                                                                                                                                                                                                                                        97530.,)'%#!          nmnmnonnmnm nmoonmnmmpoonoonmnpononnmnpononnmnnqppopopoononnmqpopoonoonnmpqqpqqppopponononnmnmrqqpopoonoonnonnmrqpononnomnnmmrqrqqpoppoononnmmnrrqpqppopopopoonmsrrqrqqpqqpqppononnmnmsrssrrqrqrqqpqppononmmnssrqrqrrqqpqppopopoonoononntssrqrqrqqpopoonoonnmstsstssrsrrqrrqqpqqppqppoopoononnmnmttsrsrqrqqpqpqppopopoonmtstssrsrrqrqqpononnmtuttsttssrsrrqqrrqqpqpponutuuttsrqrqqpqqppopoonoonnmnnuututtstssrsrrqponmnmvuututuutstssrsrsrrqqpqppononnmvutuuttsttstsrsrrqrqqpqpponmwvvuvuututtstssrsrsrrqrrqqpoponnmvvwvvuuvvuutstssrsrrqrrqqpqppoonmwvvuvvutsttsrqrqrqqponmwwvwvvutstssrsrrqpopoonmwwvuvuutsrsrrqp onwxwwvuvvutuuttstssrsrrqponxwvwvwvvutuuttuttstssrqpqpponxwvwwvuvuutsrssrrqrrqqpoppoonoxxyyxxwxwwxwwvuvuututtstsrsrrqpopooyxyyxxwxwwvwvvutsrqpoyzyyxyxxwvwvvuutuuttsrssrrqrqqpqqppoyzyyxwxxwwvuvuvuutstssrssrsrrqpqppzyzyyxwvuvuutsttssrqpzyxwvwvvuvuuvuutsrqp{zzyzzyxwxwwvwwvvuvuutsrqp{z{{zzyzzyyxyxxwvuvuututtsrssqrqqp{{zyzyyxwvwvvututtstssrq{zyzyyxwxwwvvwvvutuuttsrqrqq{z{z{{zyxyxxwvwvvuvvuutstssrsrrq{{z{{z{{zzyzyyxyxxwvutuutsrssrq{{z{zz{{zzyzyyxwxwwxwwvvwvvututtstssrssrr{ {z{{zyzyyxwxwwvuvuutsr{ {z{{zzyzzyyxwxwwvuvuututts {z{{z{{z{zzyzyyxwvututstss{|{zyzyyxyxxwvutstss{{|{z{{z{zzyzyyxwvuvuututts|{{|{ {z{z{zzyyzyyxyxxwxwxwwvutuutt{||{|{ {z{{z{zzyxyyxxwxwwvwvvututt|{{|{{|{{zyxyxxwwxxwwvwvwvvut{|{{z{{zyzyzzyxxyxxwvu{|{{|{{|{{z{{zyzzyyxyxxwxwwvut{||{|{|{{|{|{ {zyxyxxwwvuvvuu{{|{{|{|{{|{ {z{zzyzyzyyxwvu|{|{||{|{ {z{{z{{zzyzyyxwvwwvvu{{|{||{|{{|{{|{{z{{z{zyyxwxxwwvwwv|{||{{||{|{{|{|{{|{{z{z{zz{zzyzyyxwxwwv|{||{|{|{|{|{{|{ {zyxwv:753/.+*'%#                   ==;:865431/--,*('&$$#! nmnnmnmnonnmonnonnmonmnoonpopoonnmppoonmppoppoononnmqpponononmmpopononnmqqponqqpopoonmqqponmnnrqqrqqponmrqpononnmrrqpoppoononnmsrrqponmssrqpqppoopoononnmssrsrrqponmntssrqrrqqponmnstssrsrrqpqpponmttsrqrqqponmttsrssrrqrqqponmuttstssrsrrqrqpponoonnmnututtsrqpononmmuututtsrqpononmmvuuttsrqrqqpoppoonnmvuutstssrqpopoononnvvutsrqponmvuvuutsttssrssrrqqponm==;:874320/.,+*)''%$#" 𼽼򾽽           򸷸 򱰰     뭮     󮯮                      񧨧  諬   󦧦   򟞞       󞟞                  󖗖    񗘗     񔓓􍌓 􌍌򌍌     󏎍           !"& " ! #. % %'*# " ) '(+* *+/()-0* ,* ++' ) +-.4/..,7/-1961122012.97928 񋌋          퇈򈇇 򈇍                       􇈈'" % ""#( "%$#&&((- ( +()* '%, *( )3(-*'**,1 /5 ..+,.0/50010-1/240264/4                                                􅆅                                       󆅅             ꆇ  􆅇      񆇇                                                                                                            󃄃 򃂂񃄄  􂃃             󄃄 򅄄  􅄅  󂃂 򃄃 􂃂 肃         􄃄                                                                                                                                                 򀁀       􀁀                                    󀁁            򁀁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ~~~~~ ~}~~}~~}~}}|}}|}}~~~~~~ ~}~~}}~}~}}~}}|~~~~~}~}~~}}~~}~}}|}}|}~~~~~~~~~~}~~}~~}~~}~} }|}}|}}~~~~~~~~ ~}~~}~~}~~}~}}|}|}~~~~~~~}~}~~}} ~~~}~~}|}} ~~~~~}~}~}~}}|}}~~~~~~~~}~~}~}}|}|}}~ ~~ ~}~}}~}}|}}|}}|~~~~ ~}~~}~~}~~}~}}~} }|~~~~~ ~}~} }|}}~~~~~~~~~~}~~}~}~~}~}}| ~~~}~~}~~}} ~~~~~~~~}~}}~}~}~}~}~~}|}} ~~~~~~}~~}~~}~}~~~~~}~~}~}}~} }|~~~~~~~~~~}~~}~}~~}~}}~~~~~~~}~}~~}~}}~} }~~~~~~~~~}~}~}~~}}~}}~}~}}| ~~~ ~}~~}~}}~}~}~}}~~~~~~ ~}~~}~}}~}~}~}}|}~~~~~~~ ~}~}~~}| ~~~~~~~}~}~~}~} }~~~ ~}~~}~~}~}}~~~}~}}~~} }~~~~~~ ~}~}}~}~}|}~~~~~~~~~~}~}}~}~}}~}~}}~~~~ ~}~}~~}~}}~}} ~~~~~ ~}~}~~}~}}~}}~}}~~~~~~~}~~}~~}~}}~~}~}}~~~~~~}~}}~~}~}}~}~}}~~~~~ ~}~}~}}~ }~~~~~~ ~}~~}~~}~~}~}}~~} ~~~~ ~}~}~~}~}} ~~~~~~~~~}~~}~~}}~}} ~~~~~~~}~~}~~}~}}~~}~}}|}~~~~~~~~}~}~}~~}~} }~~~~~~~~~~}~~}~}}~}~~}}~}}~~~~~~ ~}~}}~}~}}~~~~ }~}}~}} ~~~~}~}~}~~}~}}~~~~~}~}~~}~~}}~~}~}}~~~~~~ ~}~}~~}~}}~}}~~~~~~~}~}~}~}}~~~}~}}~}}~}~}} ~~~~ ~}~}}~}}~}}~~~~~~~}~}~}~~}}~}}~}~~~~~ ~}~~}~~}~}}~~~~~}~}~}}~}~~} ~~ ~}~~}~}~}}~~~~~~~~}~~}~~}~}}~}} ~~~~~}~~}~}}~}~}}~}~~~~~~~}~}}~~~~~~~~~}~}}~}}~}}~}}~~~ ~}~}~}}~}} ~~~ ~}~~}~~}~}}~}~} ~~~~~~~}~~}~~}}~}} ~~~~~~~}~}}~}~}~~~~~ ~}~}}~}~}}~}~~~~~~~~ ~}~}}~}~}}~~~~ ~}~}~}~~~~~~~}~}~~}}~~}~}}~~}~}~}}~}~}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            񣢣  󩨩        򫪫             󰯰󶵶     ²³󾿾²ò󵶶òòóij ijֽ׾׿׿׿׿$$##"!"!" !!  mnnoopqrqrrstuvmnnopqpqqrsrtsttumnnonopoppqqrsstunmnonoopqrstunnonopoppqqrstumnmnnooppqrqrrsstumnnopqqrsrrssttuvmmnoopqrststtuvnnonooppqrstuvuvmnnopqrstuvmnnoopopqppqqrsttuvuvvnopqrqrrstuvmnnonopoppqqrstuvnnopqrstutuuvuvvmnnoopqpqqrsstuvnopqpqqrrstuvvwnopoppqqrrqsrsstuvwmnnopqpqqrsrsstuvuuvvnnopqrstuvvwmnnopoppqqrqrrststtuvvuvwwmmnoopqrstuvwvwmnnopqqrstuvwmnnoopqrsrsststuuvwmmnoopqrstuvwnnopqrrqrrsstutuvuvvwnnopqrststtuuvwxmnnoppqrstuvwxmnnoopoppqrrstsstuuvwxnmnnopqrsttutuuvvwwxmnnopqrstuvwvwwxnonoopqqrstuvwxnmnnoopqrqrsstuvwxmnopqrstsstuuvwxxynnopqrstuvwvwwxxmmnoopqrsstuvwxmnnopqrsstutuuvvwwxynopqrstuvwxnnoppoppqqrrstutuuvwxynnopoppqrstutuvvwxnopqrqrrsstutuuvwxwxxyynonooppqrstutuuvuvvwwxymnnoopqrqrrsstuvwxymnnopopqpqqrsstuvwxyynopqrqrrstuvwvwxwxxyynmnonoppoqqrstutuuvwxymnnonoppqpqqrstutuuvwxyznopqpqrqrrstutuuvvwxynopqpqqrrsrststtuvwxwxxynnopqrstuuvwvwwxyxyyzmnnopqrtsttuvwxymnoopqrstuvwxxyzmnonnooppqrsstuvvwxyznmnonooppqrststtuvuvwwxyzmnnonooppqrstuvwvwwxyyznnonoopqrstuvwxwxxzyzzmnnopqrstuvwxyzmnnopqrstuvwxyzyzzmmnnopoppqqrsrststuuvwxyxyzyyzznmnnooppqrsrsttuvwxyzz{nonoopqrstuvwxyznopopqqrstuvuwvwwxwxxyyzmonoopqpqrrsttstuuvuvvwwxxyxyzznopqrstutuuvuvvwwxyyz{nnopqqrstuvwwxyz{$$""#!!!" !!                                                 vxwxxyzyz{{z{ {|{|}|}|}|vvwvwwxyzyzz{{|{|{||{|{| |}||}|}uvvwwxyzz {|{{|{|{||}|}vwxyz{z{{|{{|{||{||}||}}|}||}|}|vvwxyyz{|{{||{|{{||{| |}|}|}}vvwwxwyxxyyzz{z{ {|{|{{|{||{||}||}||}|}|}}vwxyz{{|{|{ |}||}|}}||vwxyz {|{{|{||{|}||}||}|}}|vwwxyz {|{|{||{||{||}||}||}wxyz{z{ {|{{|{||{|{||}||}|}vwwxyz {|{|{{||{| |}|}|vwwxxyz{|{{|{||}|}}vwwxyz{z{ {|{|{||{|{||{||{|}||}|}|}}wxwxxyyz{|{{|{||{||}||}||}|}}wxyzyzz{ {|{{|{||{||{{||}||}}wxyzyz{{z{{|{|{|{||{||}|}|}vxwxxyzyzz{{z{{|{{|{|{||{||}|}||}}|}}|}}|wwxxyxyyzz{z{{|{|{{||{|}||}||}}|}}|}}|wxxyzyzz {|{|{|{||}||}}|}wwxxyyzyzz {|{|{{|{ |}|}|}||}}|}}wxyz{z{{|{|{||}|}|}||}}||}||}wxxyyz{|{|{||}||}|}|}}xyz{|{{|{|{{||{|{||}|}}|}|}|}}|}wxxyz{|{{|{{||{|{{ |}|}|}}wxxyyz{|{|{{|{{|}|}|}}|}||}}|}}wxyyxyzz{|{|{{|{||{||{ |}||}||}}|}}|}|}}xyz{|{{|{{|{|{|{||{||}||}||}||}||}}|xxyyz {|{|{{||{||{||}|}||}}xyyz{z{{|{|{||{|}|}|}}|}}xxyyzyz{{z{{|{{||{|{{ |}||}||}}|}}xzyzyz{{|{|{||{{|{||}|} }xyyz{z{{z{ {|{|}|}}yxyyzz{|{{|{||{ |}||}|}}xyyz{z{{z{{|{||{{|{||{| |}||}}|}|}}xyyz{|{||{||{| |}|}||}|}}|}}yz{z{{|{{|{|{{|}||}}|}yzyzz{|{|{||{|{|{{ |}|}|}|}||}yz{z{{|{{|{{|{|{{| |}||}|}|}||}||}}yz{zz{ {|{||{||{||}|}|}}yz {|{|{{|{{|{| |}||}|}|}}z{z{{|{|{|{{|}|}|}}|}|}|}}yzz{|{{|{||{| |}|}|}|}}|}}z {|{{|{{|}|}||}}|}|}}z {|{{|{|{||{| |}|}||}}|}}|}~}}z{z{{|{{|{{||{{| |}||}|}|}}|}}~yzz{z{{|{|{||}|}|}}|} }yzz{|{|{|{||{|}|}|} }yz{ {|{|{{|{{|{||}||}|}|}|}}z{z{{|{{|{||}|}||}|}}||}}~y{z{{|{{|{||{{| |}||}||}|}}|}}|}}~zz {|{|{{|{||{{|{||}|}}z{|{||{||}||}|}|}}|}|}}~}}zz{{z{{|{{||{||{{||{| |}|}||}}|}}||}}~}}~{z{ {|{|{{|{{| |}|}|}}|}}|}|}}~}}~z{z{{|{{|{{||{|{| |}||}|}||}}|}}||}~}{{z{ {|{||{| |}||}}||}|}}~}}z{z{ {|{{|{|{|{{| |}|}||}|}|}}~}~}}~z{{|{{|{{|{|{|}||}|}}|}|}}|}}~}}z{{|{{|{|{||{||{||}|}||}}|}}~}}~~}}~{{|{{|{{|{| |}|}||}}z{|{{|{{|{{|{|{|{{||}||}|}}|}}~}}~}}{|{{|{{|{||}||}|}}|}}|}}~}{{|{|{{|{|{{||{| |}||}}~z{ {|{| |}||}|}|}}|}}|}}~}~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }|}~}~}~~}~}}~~}}~}}~ ~~~~~}|}}|}}~}}~}~}~ ~~~~ |}}|} }~}}~~}~~~~~~}|}}~}}~}~}}~~}~~~~~~~}|}}|}}~}~~}~}~~}~~~~~~~~}|}~}}~}}~}~~~~~~~~}|} }~}}~}}~~}}~ ~~~~~~}|}|}}~}~}~~}~}~~~~~~~~  }~}}~~}~} ~~~~}|}}~}~}~~}~ ~~~~~ }~}~~}~}~~~~~~~}}~}~}~~}~}}~}~~~~~~}||}}~}~}~}}~}~~~~~~~~~ }~}}~}~~}~~~~ }~}~}~~~~~~}}|}}~}}~}~}}~~}~~~~~~~ }~}~}~} ~~~~~~~}|} }~}~}}~~}~~~~~~~~}}~}~}~~~~~~  }~}~}}~}}~~}~~~~~~ }|}}~}}~}}~}} ~~~~~~|}}~}}~}}~}~~}~~}~~~~~~~ }~}}~~}~ ~~~~~~ }~}~}~}~}~~}~ ~~~~~} }~}}~}}~~~~ }~}~}~}~}}~}}~}~~~~~~~~}~}~}}~} ~~~~~~ }~}}~}~}~~}~~}~}~~~~~~~~ }~}}~}}~}~~}~~~~~~~~ }}~}~}}~}~ ~~~~}}~~}~}}~}}~~}~~}~~~~~~~~~~~~}}~}~}~}}~~}~~~~~~~~~}}~}~}} ~~~~~~}}~}~}~~}~}~ ~~~ }~}~~}~}~}~}}~ ~~~~~ }}~}~~}~~~~~~~~~~}~}~}~~}~~~~~}}~}}~}~}~ ~~~~~~~~~ }~}~}~}}~}~}}~~}~~~~~~~}~}~}}~~}~ ~~~~~~}~}~}~}~ ~~~~~ }~}}~}}~~}}~~}~~}~~~~~~~}}~}~}~}~~}~~~~~~~~}~}}~}~~}~~~~ }}~}}~~}~ ~~~~~~~}~~}}~}~}}~ ~~~~~~ ~~}}~~}~ ~~~~~~~~~~~}~}}~}~}~}}~}~ ~~~~~~~~}~}~}~}~~}~ ~~~~~~~~~~}}~}~~~}}~}}~}~~~~~~~~~~}~}~}}~}~~~~~~~ }~}}~~~~}~}}~}~~~~~~~~}~}~}}~~}~~~~~~~}~}~~}~~}~~~~~~~~ }~}}~}~}}~~~~}~}~~}~~}~ ~~~~~~~~~ }~~}~}~~}~~~~~~~~ }~~}~~} ~~~~~~}~}~~}~~}~~~~}}~~} ~~~}~~}~~}~}~~~~~~ }~}~}~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      򂁂 􂁂  񁀁                      󀁀            򁀀           󂁁􂁂    񂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          􃂂      򃂃 󃂃        􄃄       񄃃       񄅄  󅄄򃂃    񄃃 񄅅  󂃂   󃄃     􅄅                                                                                                                                    񇆇 򅄅                        򇆇               񇆇퇆      􇆇􆇆      򈇇                                                                  "    #"" # $ !!%!% $ "'(%$( %#%&%'.+'+-,*+.*41+24:5/-       񈇈   󈇇   󈇈 󈇇  쌋􈇇       󊉊  퍌  󌍈􉈉󊉊  򍌍            &! ! $ "#'# !#!$" $&!&), (')),+,,))-10/10.+./4//􍌌     󑐑 듒茍 󌍎  򐏐     򐏏   򓒓    󔓔 򖕕  𖗗             񛚛  󞝝   𢛚 򟞞𞟟 򜛜        񠟠   󝞝         򤣤          頻  󩨩    ﮭ 𮯯 󮭮       򲳳                 ĵôĴŴĵĴƵŵƵǵǵǵȶɵɶɵʶʶʷ˷˷̸͸͹͹ι򼽼λϻϻлѼѽҽѽѽҾӾӾӿ <<;;:98755322nnnnmnmnnnnnmnonmnnommnnoonnononoomnmnnoopomnopoommnnoopopmnop <<;::98665431763321..,,*((&$##!!   mnmnnmnnonoonnonoonnopopnonnooppopmmnonnoopoppmnnpoppnonoopqmnnopqnnopoppqqpqnmnnoonoopqpqmmnnopopqrqnnopopoppqrqrrnopoopoppqrnmmnnopqpqqrsnmmnnoopqrsmnopoppqpqrqqrsrrsmnnonoopqrsnmnnopoppqpqqrstnonoopqpqrqrrsrsstnmnnopqppqqrsrsttmnmnnoonooppqrstnnopoppqrqrrststtmnnopoopqppqqrsrrsststtmnnopqpqqrsrssttumnnononoopoppqrsrststtutuumnopoppqpqqrstutuunmnnoopooppqrsrsstuvummnnopqrsrstssttunonoopoppqrststutuuvuvnmnnonoopqppqqrsrsstuvuuvvwnnonopoppqqrstsstuutuuvwnnmnnonnpoppqpqqrstuvuwvwwnmnnopoppqpqqrstutvuuvwmnnopoppqrsrsstssttuvuvvwxnnopqpqqrqrrstuvwxmnnopqpqqrrsrsstuvuvwxmnnopqpqqrststtuvwxmnnopqppqqrqrrstuvwxmnnonnoopoppqrqqrrsrsstututuvvwvwwxmnnopqpqrsrsststtuvwvwwxymnnonopooppqrqrrstuttuuvvwxyxyymnopqrqrrststtuuvwvwwxxwxxyynmnnonoopqrsrsttuvwxwxxyzmnnopqrsrsststtuvuuvvwxyzyzmnnonoopqrqrrsrsstuttuuvwxyzyzznnopooppqrqrrsrsststtuutuuvuvwvwwxyzyzznmmnnonopoppqpqqrqqrrsstutuvuuvvwxwxxyzyyz{mnnonoopqrststtuvwxwxyxxyzyz{zzmnnopoppqrqrrsststtuuvwxyz{z{{nmnonoopqppqqrrststtuvwxyz{z{{nopopqqppqqrstuttuvuuvvwxyxxyyzyzz{z{{nopqrsrsstutuuvvwxyz{z{{onppqrrqrrststtuvwvwwxyz{opqrsrststtuvuvvwvvwwxyxxyyzyzz{zz{{opqrststutuuvvwvwwxwxxyz{z{z{{opoppqqrstuvuuvwwxyzyzz {pooppqrststtuvwvvwwxwwxxyz {opqpqrqqrsrsstutuuvwvwvwwxxyzyzz{z{{|{{pqrstuvuvvwxyxyyzyzz{z{ {pqpprqrrstututuuvwxyzyyz{z{ {|pqppqqrsrrsttssutuuvwvwvwwxxyxxyyzz{z{ {pqqrstutuuvwxwxyxyyz{|{{|{{|qqrsrssttuvwvwwxyxyyz{z{{|{|{{|{753310..,+))('$$#!!                              opqppqqrstuvwxyxyyzpooppqppqqrsrsststtutuuvuvvwvwwxwxxyzyzzopqpqqrststtuvuvvwxyxxyzyyzyzz{oppqpqqrqrrsrsststtuttuuvuvvwxyxyzyzyyzz{pqrqqrrststtuttuuvwvwwxwxxyxyyz{z{{ppqqrqrrsrsststtuvwxwwxyz{zpqqrsrsstutuuvuuvwwxwxxyxxyyzyzz{z{{qrsrssrssttstuttuuvwxwxxyyxyyz {qrststtuvwvwxwwxyyxyxyyz{z{{qrstuvwxyzyzz{z{{z{{rqrssrsstuvwvwwxwxxyyzyzz{z{{qrrsstuvuvvwxwwxyzyzz{z{{z{{rstssttuttuuvuvvwvwwxwxxyz{|{rsstststtutuuvwvwwxwxxyz{z{{rsstuttuuvwxyzyzz{stuvwxyzyyzz{z{{|{{stuvwvvwwxwxxyzyzyz{{z{ {|{{|tsttutuuvwxwxxyz{z{{z{ {|{{|{tsttuvwvwwxwxyxyyz{z{ {|{|{{||{stututuuvwxyzyyzz{z{z{ {|{{|{{|{ttuvwvxwwxxyxyyz{z{zz{|{{|{{|{{uvuvvwxwwxwxxyxyyz{|{{|{{||{ttuuvvuvwwvwwxyxyyz{z{ {|{|{|{{|uuvuuvuvwvwwxwxyxyyz{zz{{z{{|{{|{|{{|{|{||{uvuvvwvvwwxyxyyz{z{{z{{|{{|{{||{{|{vuvvwvwwxyxyyzyzz{{zz{zz{{|{|{{|{||{{|{|{{|vvwxwxwxxyxyyzyzz{|{||{|{|uvvwvwwxyzyzz{|{{||{||{|{|vvwxyz{|{{|{||{||{|{{||vwxyxyyzyzz {|{{|{{|{||{|{||wxwxyxyyz{|{{|{|{{|{||{{||{||vwwxyzyyzz{z{{z{ {|{|{|{{|{|{|{{|{{||wxyz{|{|{||{||{||wxxyxxyyzyzz {| {|{|{|{||{|{||xwxxyz{|{{|{|{|{|{||{||xyxyyz{z{|{{|{{|{||{|{{|{{|{||{||xyxyyzyzz{z{z{{|{|{{|{{|{||{||{||xyxyyzz{z{z{{|{|{|{||{|{|{||}xyyz{z{{|{|{||{||{|{|{||yzyzz{zz{z{{|{{|{{|{||{{|{{|{||}||yzyzz{|{|{{||{|{||yzz{z {|{{|{{|{|{||{|{||}zyzz{z{{|{{|{{|{||{|{{|{{||{|{||}||z{|{{|{{||{||{||{ |}||z{zz{{|{{|{||{|{{|{|{||{| |}|}||}||z{{z{{|{{|{{|{{|{|{||{||{| |}||}||}}|}{{|{{|{{|{||{||}||}||}||z{{|{{|{|{{||{|{{|{{|{||}|}||z{ {|{{|{|{|{|{{||{{|{|{||}|{z{{|{{|{|{||{{|{| |}||}|}}|{z{{|{|{|{|{|{{|{{||{||{ |}|}|}||}|}||}} {|{|{{|{||{||{||{||}|}|}|}}|{{|{{|{{|{|{{ |{||}||}|}}|{|{{|{{|{{|{||{||}|}|}}|}}|}}|}|{{|{{|{{||{{|{|{|{||{||{||}|}||}||}||}}{{|{{|{{|{{|{{|}|}|}|}{|{{|{||{|{|{||{|{||}|}}|}}|} {|{|{| |}||}|}|}|}||}|}|}}{|{{|{|{|{||{|{{||{||}|}||}|}|}}||}|}}{|{|{||}|}}|}}|}||}|}}|{{|{|{|{{||{|{||{ |}|}||}||}}|}}|}}|}}|}}{|{{|{||{|{||{| |}||}|}|}||}|} }{|{{||{|{{||}|}}|}||}||}|} }|{|{||{{||{|{{||{| |}|}}||}|}||}|}}                                                                                                                                                                                                                                                                                                                                                         z{|{{|{|{||{|{|{||z{|{|{|{||{||{|{|z{{|{{|{{|{|{|{||{{|{||{||{||z{ {|{{|{|{{|{{||{|{||{|{| |z{{|{{|{{|{||{{|{{|{| |{||{|| {|{|{{|{{|{{||{||{||{|{|{||{||{||}|}{ {|{|{|{|{|{{|{||{||{||{|{{|{{|{|{||}{|{|{{||{{|{||{|{|{{|{||{| |}|}|{{|{||{|{||{{|{||{|{||{||{| |}|}|| {|{|{|{||{|{||{| |}||}|{||{{|{|{|{{||{|{{|{{||{||{||}|}||{{|{{||{|{{|{||{||{||{|{||{||}||}||}}|}||}||}|{|{{|{||{|{{||{||{||}||}}||}||{{||{||{|{|{|{{|{||{||}||}|}|}||}{{|{||{|{||{|{{|{||{|{||}|}}|}||}|}}||}||}||}{{|{{||{{||{||{|{|{| |}|}}|}|}}|}||}{|{{|{| |{||}|}}|}|}|{|{||{|{|{|{||}||}|}|}|}}|}||}|{|{|{{|{{|{{|{||{||}|}||}||}|}|}}|}}|{|{{|{{|{||{|}||}|}}||}||}|}||}}||}||}|}|{|{|{{||{||{|{||}||}|}}|}|}|}||}}||}|}{{|{|{|{{||}||}||}|}||}}|}|}}|{|}|}|}||}}||}||}|}}|}}|}}|{|{||}||}||}}||}|}|}|}}|}}|}}|}}|{||{||}||}||}||}|}||}}|}|}}|}}|}}|}}{{|{| |}||}}||}|}}|}||}|}}|}||} }|{| |}|}}|}|}}|}}|}|}|}|}}||}}|}}{||{| |}||}| |}||}||}||}}|}|} }|{||}||}|}|}}||}|}}|} }|}|}|}|}}|}}|}||}|} }~}||{| |}|}||}|}}|}|}}|}}|}}{||}||}||}|}|}|}}|}}~}~||}||}||}}|}||}|}||}}||}}|}}~}}|}||}|}|}||}||}}|}}|}}|}}~}}~}~}~~}||}|}|}|}|}}|}}|}|}}||}|}}|}|}|}}|}||}||}||}}|}}~}}~}~}~~}} |}|}|}|}}~}}~}}~}~||}||}|}|}}|}}||} }|} }~}~~}}~}}~}~||}|}}||}}|}|}|}}|}~}~}|}||}|}|}||}|}}|} }~}~}}~}}~}}~}~~|}||}|}|}|}}|}}~} }~}~}}~}}~}}~}~~||}|}||}|}}|}}|}}|} }~}~}}~}~}~~}|}}||}|}}|}|}|}}||}}|}}~}~}~}}~}~}~~}}~~}|}}|}||}}||}|}|}}~}}~}}~}}~~}~}~~}~||}|}||}|}}~}}~}}~}~~}~~}~~}}||}|}}|}}~}~}}~}~~}~~}~}~~}~}}|}||}~}~}~}}~}}~}}~~}~}~}|}||}}~}}~}~}}~}~}~~}~~}~~|}||}}||}}|} }~}~}}~}~}}~}~~}~}~~}~}|}~}~}~}}~}~}~}|}}||}|}|}}~}}~}~}~}}~}~}~}~}~~}|}}||} }~}~}~}~}}~}~~}~}~~}~~}~}|}|}}~} }~}~~}~}|} }~}~}~~}~}~}~~} ~}~}~}~}~~}~~}~}~~}~}~~}~}~~~||}}~}~}}~~}}~}~~}~~~}|} }~}}~}}~}~}~}~~}~~}~}}~}}~}~}~~}}~}~~~~~} }~}~~} }~}}~~~~}}~}~~}}~}~}}~}~~}~~}~}}~}}~}~}~~}~}~}~}}~~}~}~~}~}}~}}~}~}}~}~~} ~~~~~~}~~}~}}~}~}~~}~~}~}}~}~}~ ~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             '  "              |}||}||}||}|}}||}||}||}|}||}|}}||}|}}|}||}||}||}|}||}||}||}||}|}|}}|}}|}|}|}|}|}}||}||}}|}}|}}|}}|}}|}|}||}||}|}||}|}}|}||}|}||}}|}}|}}|}||}|}}||}|}|}}|}}||}}|} }|}}|}||}||}|}}|}}|}|}}|}}|}|}}|}}|}}|}||}||}||}||}|}}|}|}||}|}}|}}|}||}}|}}|}|}||}|}|}}||}}|}}||}|}}| }|}|}|}|}|}||}|}}|}|}|}|}}|} }|}|}|}}||}|| }|}}|}}|}||}|}||}|}|}}|}|}|}}|}|}|}}|}|}||}|}||}}|}|}|}}|}}|}|}||}}||}|}||}| }|}}~}}~}~||}}|}||}|}|}}|}|}}|}}~}~}|}|}|}|}||}|}||}}|}}|}~} }~}}~}}|}||}}|}}|}|}|}|}}~}}~}}~}~}~~}~}}|}}|}|}}|}|}}|}}~}}~}}~}}~}}~}}~}}~}}~}}|}|} }|}}~}}~}}~}}~}}~}}~}}~}~}||}}|}}~}}~}~}}~~}~}}|}}|}}|} }~}}~}~}~}~}}~}~}~}}~}}||}}|}}|}|}}~}~}~}~}}~}}~}~}~}|} }~}}~}~}}~}}~}}~}~}}~}~~}~}}~}|}}|}}~}}~}}~}~}}~~}~~}~}}~}}~}~~}~}|}}~}}~}~}~}}~}~}~}~~ }~}}~}}~}}~}}~}~}~}~ ~}~~ }~}}~}}~}}~}~~}~}}~~}~~}~ }~}~~}}~}~}~~}~}~}}~}~}~}~}~}}~}~~}}~~}~ }~}}~}}~}~}}~~}~~}}~}~}~~}~}}~~}~}~}~~}}~}~~}}~~}~}}~~}~}~~}}~}~~}}~~}~~}~}}~}~}~~}}~}~}~}}~~}~~}~ ~}~~}~}~}~}}~}~~}}~}~~}~~}~~}~ ~}~}}~}~}}~~}~}~~}~~}~}~}~}~}}~~}~~}~}}~}~}}~}~~~~~}~~}~}}~}~}~}~~}~}}~}~~}~}~}}~}~~}}~}~ ~}~~}~~~~}}~}~~}~}~~}~~}~~}~~}~ ~~~~~~~}~~}~}~~}~~}~}~~~~~~~~~~}~}~}}~}}~ ~}~~}~}}~~~~~~~~~~~~}~}~}~~}~~}}~}~~}}~}~~ ~~~}}~~}~~}~~}~}~~~~~~~~~~}~~}~}~~~~~~~~~~~~~~~}~~}~~}~}~~~~~~~~~~~~~}~}~}~~}~ ~~~~~~~~~~~~~}~ ~}~~~~~~~~~~~~~~~}~}~}~~~~~~~~~~~}~~~~~~~~~~~~~~~}~ ~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~ ~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~  ~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ ~~~~~~~~~ ~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ ~                                                                                                                                                                                                                                                                                                                                                   $                                                                                                                                                                                        !        5+ )     M&|}}|}|}}|}|}|}}|}"}|}}|}}|}|}}|}"}~}}|(}~}}~ }|}}|}}|}}~}}~} }~}}~} }~}}~}}~}}~}}~}}~} }~} }~}}~}~}}~ }~}}~}}~}}~}}~}~}~~}}~}}~}}~}}~}}~}}~}~}}~}~~}}~}}~}~}}~}~}~}}~}~~}~}}~}~}~}}~}}~}}~}}~}}~}}~}~}}~~}}~}~}}~}~}~}~}~~}~}}~~} }~}~}}~}}~}~}~}~~}~}~}}~}~}}~~}~}}~}~~}~}~~}}~}~}~}}~}~}~}~}}~}}~~}}~~}~}}~}}~}~}~}~~}~}}~~}~}}~}~}}~}}~}~~}~}}~}~}}~}~~}~~}~~}~}}~}}~}}~}~~}~~}~~}}~}}~}~}}~}~}}~~}~}~}}~}}~~}~~}~}~~}}~~}~}}~~}~~}~}~}}~}}~}}~~}~~}~~}~}}~~}~}~}}~~}~}~~}~}~}~~}~~}~~}~}}~~}}~}~~}~}~}~}~}~}~}~~}~~}~}~~}~}~}~~}~}~~}~}~}~}}~~}~~}~}~~}~~}~}}~}}~}~~}~~}~~}~}~~}~~}~}~~}~~}~}~}~}~}} ~}~~}~~}}~}~~}~~}~}~~}~~}~ ~}~~}~~}~~}~~}~~}~ ~}~~}~}~}~ ~}~ ~}~~}~~}~~}~}}~~}~~}~~}~~}~~}~~}~~}~~}~~}~~}~ ~}~~}~~}~~}~}~~}~~~~}~}~6~~ ~}~~~ ~~ ~~~~~~~~ ~~ ~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~ ~~~~ ~ ~~~~~~ ~~"~~~ ~ ~ ~~                                                        .   ,                                                                                                                                                                  )                                                                                                                                                                           &    "                                                                                                                                  (   '       &#9 !      2 ,'%}|}}|}}|}}|}||}}~} }|}}|}}|}}|}}|}~}}|}}|} }|}}~}}~} }~}}|}}|}|}}~}~}'}~}}~}}~}~}}~}}~}}~}}~ }~}~}}~}~} }~}~}}~}}~}~~}~}~}}~~}~}}~} }~} }~}~}~~}~}~}}~}}~}~} }~}~}}~}}~}}~~}}~}~}}~}~}~}}~}}~ }~}~}~}}~}~~}~}}~}~~}}~~}}~}}~}}~}~}}~}}~}~}}~}}~}~}}~}}~}~~}~}~}~}}~}~~ }~}~~}~}~}}~}}~}~~}~~}~~}~}}~}~}}~}~}}~}}~}~~}~~}~}~~}~~}}~}~}}~}~}~~}}~}}~}}~}}~}~}}~~}~}~}~~}~~}~~}~}~~}~}}~}~}}~}~}~}}~}~}}~~}~}~}~~}~~}~}}~}~}}~}~~}}~}~~}~}}~}~}~~}~~}}~}}~}~}}~}~~}~}~ ~}~~}~}~}~}}~}~~}~}}~}}~~}~}}~}}~}~~}~~}~~}~~}~}}~}~}~}~~}~}~~}}~}~~}~ ~}~~}~~}~~} ~}~~}~ ~}~~}~}}~~}~~}~~}~~}~~}~~}~~}~}~}~~}~~}~}}~~}~~}~~}~ ~}~~}~ ~}~}~}~}~~}~~}~}~}~~}2~}~ ~}~~}~~~ ~~~~"~}~~~~~~~~}~}}~~}~}~~~~~~~~~~~~}~~~~~~~~~~~~~}~~}~~}~ ~~~~ ~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~ ~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~ ~~~~~~~~~&~ ~~)~~~~ / ~                                                            $      !                                                                                                                                         *      .     ,      ;          )                                                                                                                                                     "                                                                                                                                                  "!                         |}|}||}|}||}||}|}|}||}||{||{||}|}}|}}|}|}|}}|}|}||}|}||}|}||} |{||}|}|}||}}|}|}|}||}||}}|}|}}||}|}||{|{|}}|}}|}|}}|}}|} |}|}|}|}}|}|}|}||}||}|}||}|}||}||}||}|| }|}}|}|}|}}|}|}}||}||}| |}||}||}| }|}}|}|}|}}|}}|}}||}|}}|}}||}|}}|}|}|}}|}|}||}||}}|}|}||}|}||}}|}}|}|}}|}}|}||}|}}|}||}|}||}|}}|}}|}}|}|}}|}|}|}}|}||}||}|}~} }|}}|}|}}|}}||}}|}||}}|}}|}|}||}~} }|} }|}}|}|}||}||}|}||}|}}|}|}}|}|}||}||}||}|}||}}~}}~}}|}}|}}|}||}|}|}||}||}}||}~}~}}~}}~}}|}}|}||}||}}||}|}}||}~}~~}}~}}~}}|}}|}|}||}}||}||}|}}~}~}}|}|}}|}}||}}|}}|}||}~}}~}}~}~}}~}~}}~}}|}|}|}}|}||~~}}~}~~}}~}}~ }~} }| }|~}~}~}}~}}~}~}~}~}}~}}~} }|}}|}}|}}|~~}~}~}}~}}~}}~}}~}}|}||}}|}}~~}}~~}~}~~}~~}}~}}~}}~}~ }|}}|}}|}~}~}~}~~}}~}}~~}}~}}~}}~}|}}|}~}}~~}~~}~}}~}~}~~} }~}}|}}|}|~~}~}~}~}~}}~}}~~}~}}~}~}}~}}|}}|}}||}~}~~}~~}}~~}~}~}~~}~~}}|}}~}~~}~~}~~}~~}~}}~}~}}~}}|}}~}~}~~}~~}~}}~}~}~}}~}~ ~}~}~~}~}}~}}~}}~~}~}}~}~~}}~}~}}~~}~~}}~}}~}~}~}~} }~}~~}~~}~}~~}}~}~~}~~}}~}}~~}}~}}~}~~}~~}~}}~}~}~~}~}}~}}~}}~}}~~~~~}~~}~~}~~}~}}~}~}~}~~}~}}~}}~}~}}~~}~~}~}~}~}}~}~~}}~}~~}~}~}~~}~~}~~}~}~}~}}~~~~~~~}~}}~}}~}~}}~}~}}~~~~~~~ ~}~~}~~}~~}~}~~}~}}~}}~~~}~~}~~}~}}~}~~}~~}~~~~~~~~~}~}~}}~}~}~}~}~}}~~~~ ~~~}~~}~}~~}}~~~~~~~~~~}~}~}~~}~}~~}~}}~~~~~~~~~~~~}~~}~~}~}~~}~~~~~~~~#~}~~}}~}~~~~~~~~~~~~~ ~}~}}~}~~~~~~~~~~~~~~~}~}~~~~~~~~~~~~}~~}~~}~}~~~~~~~~~~~~~ ~}~}~~}~~~~~~~~~~~~~~~~~~~~~~}~~}~~}~~~~~~~~~~~~~ ~}~~}~~~~~~~~~~~~~}~}~~~~~~~~~~~~~~~~~ ~}~ ~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~ ~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                !                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |{|{||{{|{|{{|{{|{{||{{z{zzyxyxxw|{|{||{||{{||{|{|{{|{{|{{z{z{zzyzyyxyxxw|{||{|{|{|{|{{|{{zyzyyxw|{||{|{||{{|{|{|{{z{{zzyzzyyxw||{||{||{|{{|{|{{|{{z{zzyzzyxw| |{|{|{|{{|{{|{ {z{zzyx|{||{||{||{|{||{|{|{||{|{{|{ {z{z{{zzyx|{|{{||{||{|{||{|{||{{z{{zyx||{||{|{|{{zy |{||{||{|{|{||{|{||{{|{{|{{zy|{||{|{|{||{{|{||{{|{{z{{zyz||{||{|{|{{|{ {zy||}||}||}||{||{|{||{||{{|{|{{|{{z|}||{|{{|{||{|{|{{z|}||{|{|{||{{|{{||{ {z|}||{|{{|{||{||{||{{|{{|{ {z{|}||{||{||{|{{||{|| {|{{z{||}||}|}||}||{||{|{||{{|{|{||{|{{|{ {z{|}||}||}||}||}||{||{||{||{|{||{| {}||}}|}|}||{||{||{||{||{|{|{|{|{{}|}||}|}| |{||{||{|{{|{{|{{}|}||}||}|}|}}| |{||{|{||{||{| {}|}|}||}|{||{|{||{||{||{}|}}|}||}||}||}||{||{{||{|{{|{{|}}|}|}}||}||}||{||{||{||{|{{|{{}|}}|}}||}}|}||}||}||}||{||{|{{|{|{{||{{|}}|}|}||}|}|}| |{||{|{|{|{{|{||{{|}}|}}|}}|}}|}|}||{||{|{{|{{|{}}|}}|}}|}|}| |}||}||{||{||{|{|{{||}|}||}}|}}||}|}||}}|}||}|}||} |{|{||{|{{|{||{{}}|}}|}|}}|}|}|}|}|}||}||}||{|{{|{{||{|{|{|{}}|}}|}|}}|}||}}|}||{||{|{|{{||{}}|}}|}}|}|}}||}}||}|}}||}||}| |{|{||{||{}|}}|}|}}|}}|}||}||{|{|{||{}}~}}|}}|}}|}}|}}||}|}}||}||{||{|{{|{|{||}~}}|}}|}}|}||}|}}||}||}|}| |{||{}~}}|} |}||}||{||{|{} }|}}|}|}|}|}||}|}|}||{|}|}}|}}|}|}}|}||}||{||}}~}}|}|}|}||}||}| |{||}~}}|}|}|}}|}|}|}| |{|{}}~}}~}~}}~}}|}}|}}|}}|}}|}~}}~}}~ }|}}|}|}}||}||} |{|~}~~}~}}~~}~~}}~}}|}|}||}}|}}|}}||}}||}}||}||{|{||~~}~}~~}}|}|}|}||}||}|}| |~}~~}~}}~~}}~ }|}}|}}||}||}}||}||{||~~}~}}~}}|}}||}|}||}||}~~}~}~}}~}}~}}|}}|}}|}|}}||}||{|~~}~~}~~}~~}~}~}}|}}|}|}}||}||}|}||}||}||~}~~}~}}~}}~}}~}~} }|}}|}|}||}}|}|~~}~}~}~~}}~}}~}~}}|}}|}|}}|}||}~~}~}~~}~~}~~}}~}|}|}|}}|}|}}||}}||}||~}~~}~~}~}}~~}}~ }|}}|}}||}|}}||}|}|}~~}~}~}}~}~~}~}~~}} |~}~~}~~}~}~}}~ }|}}||}}||}|}~ ~}~~}~}|}|}}|}}|}}|}|}||~~}~}~~}~}~~}~}~}}~} }|}}|}}|}||}||}}|~~}~}}~~}~}}~}~}~~}~}}~}}|}|}}||~}~~}~}~~}~~}~}~}~~}}|}|}}| ~}~~}~~}~~}~~}}~}}~}}~}}|}|}|}|~~}~}}~~}~~}}~~}}~}}|}}|}}|}}|}~~~~ ~}~}~~}~}}~}~}}~}~}}|}|}}~~ ~}~}~~}~~}~~}~}~}}~}}|}}|}|}}|}~~~ ~}~~}~}}~}~}~}}~}}~}}~}}|}}|}|}}|}|}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         wvvututssrsrrqpononnmvwvvutuuttstssrsrrqpopoonwvwvvutsrsrqqponmxwwvutstssrqppopoononnmxwwvutsrqponmwvwvuvvuttsrssrrqqpqpqpponmxwvutstssrqpopoponnxwvutsrqpononnmnyxxwvuvvuuttstssrqpqpponyxxwvwwvvutsttssrqpononmnmyxwvwvuvvuuttsrsrrqrqqpqppopoonnyyxyxxwvutsrqponmyzyyxwvutsrqrqqpopoonmzzyzyyxwxwwvutsrqpqppoonmzzyyxwxxwwvvwvuvvuututtsrsrqqrqqponzyxwxxwvutsrqpononnz{zzyxyyxxwvuvvuutstssrqpqoonm{zz{zzyzyyxwvwvvutusttssrqrqqpononnm{{z{zyzzyxxyxxwvutsrqpon{z{zzyzyzyyxxwxwwvvutsrsrrqpopoon{{zyzyxxwvwwvvuutsrsrrqpqppoopnn{{yxwvutsttssrrqpon{{z{{zyxwvutsrsrqrqqpon{z{{zzyyxyxxwxxwwvutsrqponoonn|{{z{z{zzyzyyxwvwvvutstssrqpon|{{z{z{{zyxyxxwvutsrssrrqrqqpqppoponn{|{{zyzyyxxwxwwvutsrqrqqppo{|{ {zyxwxwwvvutsrssrqqpopoon{ {zyxyxxwvuvvuuttsrsrqqpo{|{{zyxwvutstsrssrrqpo{|{ {z{zzyxwvutsrsrrqp{| {zyzyyxwvututtsrqpo|{ {z{z{{z{zzyyxyxxwxwwvututtssrqpqpp{|{{| {zyxwvuvvuutsrqrqqp|{{||{|{ {zyxyyxwvwvvuutsrqp{|{{|{||{ {zyzyyxwvutsrq{|{|{{|{||{{z{{zzyzyzyyxwvuvvuutsrrsrqqp{{|{{|{|{{z{zzyxyxyxxwwvuvvuutsrqp{{|{{|{|{{|{{zyxwvuutsrqrrq|{{||{|{{zyyxwvuvuttsrsqrrq|{||{{|{||{{z{zzyxwxwwvutsrq{|{||{||{|{|{ {zyxwxwwvwvvuutssrssrrq||{|{|{{|{ {z{{z{{zzyxwvuvuutsr{|{{|{{|{{|{z{{zyxwvutstssr{|{|{{||{||{|{|| {zyxyxwwvutsr|{|{||{|{|{{| {zyzyyxxwvututtstssr|{{|{||{|{{|{{|{|{{zyzyyxwvutuuttss|{|{||{||{|{|{ {zyxwvuvutts|{||{|{{|{|{ {z{zzyxyxxwvvuts|{|{|{{|{|{ {zyxwxxwwvvuvututts}||{|{|{{|{|{{|{ {z{zzyxwxwwvut|{|{|{{|{{|{{z{zyzyyxwvuts||{||{|{||{|{|{ {z{zyzyyxyxxwwvuuvutt}| |{||{|{||{|{|{|{{|{{z{{zzyzyyxxwwvuvuutt| |{||{||{||{|{{z{zzyxwvwvvu|}||{||{|{{||{{|{{z{z{zzyxwvut||{||{|{{|{{|{|{|{{z{yzyyxwvut| |{|{||{||{{|{{z{{zyxwvu |{||{|{||{|{{|{|{|{{zyxwvu||}| |{|{|{{|{{zyzyyxwvuu}| |{||{||{|{{|{|{{z{{zzyxyxxwwvu||}||}||}||{||{|{||{|{ {zyyxwv}|}}|}}|}||{||{||{||{|{{zyxwv}||{|{{||{|{{|{{zyxwxwwvwv                                                                                                                              ==;;:9976754333211//..,,,+*))((&%%$$#"#!!mnnnmnmmnonnonnmonmnnonnmoonnmpoonopoonnoononnmmpponpponpponmnpponqpponoonnmqpqppoonqqponmqqpopoonnqqpqpoopoonnmrrqqpponmrqpqppoonmnsrrqqponmsrrqrqqpponsrrqponmsrrqrqqppononntssrrqponoonntssrqponmtssrqqpqppoonssrsrrqponmttssrqpqpoonmtsrqponuttsrqpononmmttsrqponuttsrqrqqpponmnuututstssrrqpqoonututtsrsrrqrqqponutsrqpopoonvuutsrqrqqpopononnmvutsrqrpqqppoonmn=<<;;:887655433201//---+++*)((('%%%#$"#" [㿾񿾿򯰯 򮵴򱲱     󴵴 ﳴ  󷶷    񲳲񷸷 걲        򧨧               󡢡󡢢 󢣢   󠡠󝞝       󗟟  󝜜      􎗖 󔕔󕖕 󏐏􏐏 񕖕     됑     󓔓23297:4:x36886986{:86@{;?:<z9;=|;:@<~=>~                 􍎍   󊋊      󎍍23539;98:376:4:;6;@9>7;::z<;=:;@?=<{<;;~~                                             􆇆   􅆆     􆅅  򅆆񅆅  򆇇                            􆇆     񇆆                                                                                                                         􃄃                             􄅅            򃄄                   􂅆                                                                                                            쁂   󃂃         􀁀    󁀂               󁂁         򂃃                                                                                                                                                                                                                                                                                                                                                                                                                                                 ~~~~~~}~~}~}}~}~}} ~~~~~ ~}~~}~}~~}~}}~~~~~~~ ~}~}~~~~}~~}~~}}~}~ ~~~ ~}~~}~}}~}}~}~~~ ~}~}~~}~~}~~~~~~~~~~~~}~}~~}~ ~~~~~~~}~}~}}~}}~~~~~}~}~}}~~}~}}~~~~ ~}~}}~~}~~}}~~~~~~ ~}~}~}}~}~~~~~~~}~~} ~~~~~~~ ~}~~}~~}}~}}~~~~~~~~~~}~}~~~~~~ ~}~~}~~}~~}~}}~~~~~~~~}~~}~~}}~~}~}}~~~~~~}~~}~}~}} ~~~~~}~}~~}~}}~}~~~~~ ~}~}}~}~~}~}~}} ~~~~}~~}~~}~}}~~~~ ~}~~}~} ~~~~~~}~~}~~}~}~~ ~~~~~ ~}~}~~}~~~~~~~~~}~~}~}}~~}} ~~~~~~ ~}~}}~~}~~~~~~~~}~~}}~~}}~~~~~~~~}~~}~~}~~}}~}~~~~~}~~}~~} ~~~~~}~~}~~ ~~~~~~}~~}~~}~}~ ~~~~~ ~}~}~~~~~~~ ~}~}~~}}~ ~~~~~}~}~~~~~~}~}~}}~~~~~~~~}~~}~}~~}~~~ ~}~~}~~~~~}~~}~~} ~~~~~~~ ~}~~}~~~~~ ~} ~~~~~}~~}~}~}}~} ~~~~~~~ ~}~}~}~~}} ~~~~~~}~~}~~} ~~ ~}~~}~} ~}~~}~~~~~~~~~}~} ~~~~ ~}~}~}~~~~~~}~~}~~~~~~~~}~}~}}~ ~~~~~~~~}~} ~~~~~~}~~}}  ~~~}~}~} ~~~ ~}~}}~~}}  ~~~~~~~~~ ~}~~~~~~~~ ~}~}}~}}~~~~~~~~~~}~~}~ ~~~~ ~}~~~~~~}}~~}~~~~~~~}~~}~~~~~~~~~~~}~~}~~ ~~~~~~}~~}~ ~~~~~~}~} ~~~~ ~}~~}~}}~~ ~}~~}~} ~~~~~~}~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    򪩪𩨩      󧦧󦧦 󫪫ﯮ백󭬭  쯰  𯮯IJ ijų񴳴ųijųųųųƳ񷶷ƳƴƴƳ ǴǴƳǴǴȴȴȴɴ ɴȴɴɴɴʴʵʵ                       mnnopqrsstuvwxyzyyzz{nnopqppqrqrsrsstuvwxyz{nnopqqrstuvuvvwxyz{z{mnnopqpqqrrsrrstssutuvuvvwxyzyzz{{mmnnoopqppqqrrsrssttuvwvwxxyzyyzz{{mnnopqrstuvwvwwxxyxyyzyz{z{{nmnnonooppqqrsrrssttuvwxyz{mnnopqrqrrsrsttuvuvwwxyz{zmnnopqrqrrststuuvwxyz{mnnoopoppqrststtuuvvwvwwxxyz{mmnoopqrstutuvvwxyz{z{{nopqrstuvvwxyzyyzz{{nonnoopqpqrqrsrsttuvwxwxxyz{nopqrsrsttuvwxyyz{mnnopqrstuvwxyz{z{{nnopqrstvuvvwwxyz{nnopqrqrrsstuvwxwxxyxyyzz{nnopqrqrrsstuvuvwwxyxyyz{nnopqpqqrstuvwxyzyzz{mnnonnopoqqrqsstuvwvwxxyzyyzz{{nnopqrqrrststtuuvwxyz{z{{nnonoopopqqrqrsrrstsuuvwxyz{mnnopqpqrqqrrtssttuuvwwxwxyxyyz{mnnoopoppqrsrsstuvwxyz{z{mnnopqrqrrstuvwxyz{z{{mnnoopqrqrrssttuvwxxyyxyyzz{z{{mnmoopqrqrsstutuuvwxyz{mmnnopqpqrrsrsstuvwvwwxyz{zz{{|{mnnopqrsrsstuvwxyz{z{{|nopqrststtuvwxwxyyz{mnnonopoppqqrrsrttsttuvwxyxyyzz{|{mnnopopqpqqrrsstuvwxyzzyzz{|{{mnnoopqrstuvwxyzyzz{z{{|nmnoopqrststtuuvwwxwxxyyz {mnnopoppqsrssttuvvwvwwxyzyzz{{|{{nnonoopoppqqrstutuuvvwvwwxyz {nopqrsrsttuvwxwxxyz{z{{|nnopqrststuuvwxyz {|{mnmnoopqrstutuuvwxyz{|{mnopqpqqrsrssttuvwxyz{z{{|{{nopqrrststtuuvuvvwwxyz {mopqrstutuuvwvwwxwxxyz{z{{|{{mnnopoppqrqrrststtuvwwxyzz {|{mmnnoopqrstuvwxyyz{z{{|{|monoopoqppqqrrstuvuvvwxyz{|{|mnnopqrsrsstutuuvwxxyxyyz{z{{|mnnopqrstutuvvwxyz{z{{|{{|mnopqpqqrssrsttuvwvwwxyz{{|{{|{mmnnopqpqqrrsrssttuvuvwwxwxxy{zz{ {|nnopqrsrsstuvwvxwxxyyzyyz{ {|mnnopqpqqrrstuvwxwxxyyz {mnnopqrstuvwwxyz{z{{|{{|nopoppqrsststtuvwxyz{z{{|{{|{mnoopqrqrrsstuvuvvwvwwxxyyz{z{z{{|{{|{mnoopqrstuvwxwxxyz{z{{|{{mnnoopoppqrstuvwxyz{z{{|{{|{|mmnoopoppqpqqrstuvwxyz {|{{|nopqrsrsstuvwvwwxyz{z{{|{{nonopoppqrsttutuuvvwxwwyxxyyzz {|{{|mnnopoppqqrstuttvuuvvwwxwxxyz{z{{|{{|mnnoopqrsrrssttuuvwxyz{z{{|{{|mnnonoppqrstuvwxyz{{|{{|{{nmnnooppqrstuvwvxxyz{|{{|mnnonoppqrststuttuuvvwxyzyzz{|{{||{{|{                                                                                {|{|{{||{||}||}||}|}}||}}||}|}}|}}~} {|{||{{|{{|{||}||}|}}|}|}|} }~{ {|{ |}||}||}|}|}|}}||} }~}{{|{|{| |}|}|| }~}}~}~{z{{|{|{{|{| |}||}||}|}|}|}}|}}~}}~}}{{|{{|{|{||{||{||}|}|}}||}}|}|} }~}{{|{||{|}||}|}}|}|} }~{{|{{|{|{|{|{||{| |}|}}|}|} }~}~~{|{{|{||{|}||}}||}||}|}}~}~}}~{{|{|{||{|{| |}|}|}|}|}}|} }~}{|{{|{|{|}|}||}|} }~}}~{{|{|{||{||{| |}||}}|}|}}|}}|}}~}}~}~}{{|{|{{| |}||}|}||}}~}~}~}{{|{{|{||{||{| |}|}}||}}|}|} }~}{|{{|{{|{{||{ |}|}|}}|}|}|}}~}}~}}~~}{{|{{|{{|{||{||}||}|}}||}|| }~}}~}~{|{||{{|{||}|}||}|}|}}~}}~~}~}}~}~{{|{|{|{|{||}|}}|}}|}|}}~}~{|{|{|{|{{|{{|{||{||}||}}||}}|}||}}~}}~}~}~}~{{|{{||{||{||}|}|}||}||} }~}~{{|{{|{{|{{|{{| |}|}|} }~}~}~~}{{|{{|{{||{||}|}|}||}}|}}~}}~}}~{|{{|{||}||}|}|} }~}~}}~}~~{|{{|{||{{||{|}||}|}||}}~}}~}~}~}{{|{|{|{{||{| |}||}|}}~}~}~}{{|{{||{||{||}||}|}}||}|}|}}|} }~}}~}~~}{{|{| |}|}}||}||} }~}~~}~~}}~{{|{{|}|}}|}|}}|}}|}}~}~}}~}~}~~}~{{|{{||{|{||{| |}||}|}}~}}~}}~}~}|{{|{{|{|{|{| |}||}||}|}}|}}~}~~}~}{|{{|}||}|}||}}||}}|}}~}}~}~~|{{|{{|{|{| |}|}||} }~}}~}~}~|{|{|{{|{|{||{||}|}|}~}}~}}~}~~|{{|{| |}||}||}~}}~}~}}~}~}~}~{{|{{||{{||{||}|}||}|}~}~~}~}~~}~|{{|{||}||}}|}}~} }~}~~{|{|{|{{|{|{| |}|}|}||}|} }~}~~}~}}~|{{|{|{||{| |}||}~}~~}~{|{{|{||{| |}|}||}|}}|}}~}~}~~}~}~}{{|{||{||{|{||}|}}|}|}|}|} }~}}~}}~~}~|{||{|{||{| |}| }~}~~}}~}~~{|{|{|{||}|}||}}~}}~}}~}}~~}~~}~}~~{|{||{|{{||{||}||}|}}|}|| }~}~}~~}~}~~}~~{{|{||{||{||}|}}|}}~}~}}~~}~{||{{|}|} }~}~}}~}}~~}~}{{|{||}||}}||}|}||}|}|} }~}}~}~}}~~}~}{{|{||{||{||}||}|}}|}|}|}}~}~~}}~}}~|{|{|{{| |}|}||}|}||}}~}}~}}~}~~}~~|{|{||{||}|}}|}|}}|}}~}~}}~}~~}~~|{|{||}|}||}|} }~}~~}~}~~|{||{||}||}||}|} }~}~}~~{|{|{| |}|}||}|}|}}|}}~}}~}~}}~~{|{|{|{||}||}|}|}}|}}~}}~}~~|{|{||{|{| |}|}||}|}|}|}|}}~}}~~}~}}~~}~}~~{|{|{{|{{|{||}||}}|}||}|}}~}}~}}~}~}~~|{||{||{||}||}|}||}}|}}~}}~}}~}~}~}~}~}~~{|{||}||}|}~}~}~}}~|{| |}|}||}|}|}}~}}~}}~}~}~~|{||{||{||{||}|}||}||}}|}}~}~}~}}~~}~~|{{|{{|{||}|}||}|}}|}}|}}~}~}}~~}}~~}~}~~{|{|{||}||}|}|} }~}}~}}~}~~}~~~{||{|{|{||}||}|}~}~}~~}}~}~~{|{||}||}||}||}|}|} }~}}~}~ ~|{|{| |}||}||}|}}~}}~}}~}~~}~}~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ~}~~}~ ~~~~ }~}}~}}~~~~~~~}~}}~~}~~~~~~~~~  }~}~~}~ ~~~~~~~ ~}~~~~~~~}~~}}~ ~~~~~~  }~~}~~}~~~ ~~ }~~}~}~ ~~~~~ ~~}~ ~~~~~~}~~}~~~~~~~~}~}~ ~~~~~~~~~ ~}~ ~~~~~~~~ ~}~}~~}~~~~~~~ }~~}~ ~~~~}~}~ ~~~~~  }~~}~ ~~~~}~ ~~~~~  ~}~~}~~~~~~ }}~}~~~~~~~ ~ ~~~~~~ ~}~}~ ~~~~~~~ ~~}~~~~~~~~~~}~~~~~~~~ ~~~~~~~~ ~~}~~~~~~~~~~ ~~~~~~~  ~~~~~~  ~~~~~~~~  ~~~~~}~ ~~~~~~~~ ~~~~~~~  }~~~ ~~~~~~~~~  ~~~~~~~}~ ~~~~~  ~ ~~~~~~ ~~~~~~~~~~ ~ ~~~~~~~~~~~~~~ ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~ }~~~~~~~  ~~~~~~~~~~~~~~ ~~~ ~ ~~~ ~~~~~~  ~~~~~~~~~  ~~~~ ~~~~~~~~ ~~~~~~ ~~~~~~ ~~~~~  ~~~~~~ ~~~~~~~~~~~~~~~~򁀁~~~~~~ 򁀀~~~~~~~~ ~~~~~~ ~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        򀁀 󁀀 򂁂 􂁂 􁀁􂁂    􂃃 􂁁 􃂃􂁁     񃂃 삃                       􂁁񃂂  򃂃                胂 󂃂                                                                                                                                                                                                                                                                                                                      􅄅         󅄄 􅄅             􆅆     񅄄􆅆  􆅅󄃃 􅄅󅄄      셄 􃄄                                                                                                                           򆅆       􆇆 􇈇 󈇈􇆆             􆇆                  򇆇       􈇇          򇆇                                                                   65/?4593:;33:89:3:79:vz577>B7:}z<>~ 󎍍               󍌌 􌋌     􊉊3-4176513/23@226938=67;:==67?{>|<<@;<>}~  񑐑򑐑      𕖕  򔕕 󕔕         잝            򡠡      󟞟 򟞟 𥤥           񧦧     򭬭    񪩪           𴳴           򾽾  ³óóijĴŴŴ󶵶ƴƴƴǵǴȵȴȵȵɵɵʵʵʵʶʵ˶˶̶̶Կ1/0..,,+))(''&%#$"!!        mnmnnopqnnononnpooppmnnopoppqmnpoppqmnonoopqnopoppqqrnmnnopoppqqrmnnonnopqpqqrmmnnopqrqrrmnmnnoopoqqrsmnnonooppoppqqrqrrmnnoopqpqqrsrsmnnopqrsrsmnnopqqrsrssmnnonopoppqrstmmnnopqrstnopoppqrstsstmnnopqrstnmnnonoopqrqrrsrstsstnnoppqrstnonnoopoppqrstunnonoppqpqqrstumnopoppqrststtumnnopqpqqrstutunnopqrstutuumnonoopqrqrrststtuvmnonnoopoppqqrsrsstuuvnonoopqrsrrsstuvuvmmnoopoppqpqqrrstutuuvwmnnonopoppqrqrsrsstuvnmnnonoopqpqqrstuvwnnopoppqrsrrsststtuvwmnnopqrqrrsstuvwmnnopqrrqrrstuvwvwwmmnnopqrststtuvwvwwxwnopopoppqqrqrrsstuvwxnnopqrstutuuvuvvwwxmnnopqrstuvwxmnnopqrsrsrsstuvuvvwxymnnopqrrstutuuvwxyxnnopqrstuvuvvwxynmnnopqrstuvwvvwwxyxyymnopqrstuvuvvwvwwxwxyyzmnnopqrqrrstuvwxyzmnnopqrqrsrssttuvwxwxxynonoopqrsrssttuvwxwxxyzyznoppoppqqrqrsstuvuuvwwxyznopqrqrsrsststtuvuvvwvwwxxyxxyyzz{mmnnopoppqpqqrstutuuvuwwvwwxxyz{nmnonoopqrqrrstutuuvwxyzyz{{nnopqpqqrrssrsststtuvuvvwwxyz{mnnopqrstuvuvvwxyz{z{{nmnnoonooqpqqrstuvwxyxzz{mnnoppqpqrrstuvwxyzyzz{mnnopqrstutuuvvwxyzyzz{mmnnopqrstuvuvvwxwxxyz{z{monnooppopqpqqrrstutuuvwwxyyz{{z{{mnnopqrqrrstuvwvwxwxxyxyyzzyzz{{mnonooppqpqqrststtuuvuvvwxwwxyxyyz{nopoppqqrstuvwvwxwxyxyyzyzz{{mnnopooppqqrstutuuvwxyz{z{{mmnnoopqrsrssttutuuvvwvwwxwxxyzyzyzz{mmnnoopqrstuvuvvwxyz{z{{mnnopqrstuvwxyzyzz{z{{|{|1/0.--,+*((('&%$##"                                             pqqrqrrsstuvuvvxwwxxyz {|{{|{qrqrrstutuvuuvvwxwxxyz{z{ {|{qrststtutuuvvwxyxyyzyyzz{|{{|{|{{qrsrsstutuuvwxyz{|{{|rsrsstuvuuvvwvvxwxxyz{z{{|{{|{{|{{|{rrstuvwxyxxyzz{z{z{z{{|{{|{||rstuvwxwxxyzzyz{z{{z{{|{{|{|rststtuvwxwwxxyz{z{|{|{{|{||{|{|sststtuuvwvvwwxxyz{z{{|{{|{|{||{{stuvwxyz {|{|{|{|rsststtuvuvvwwxyz{|{|{|{{stuvwvvwwxwxyyzyzz {|{|{|{{|{{||{||{||{sttuvuvvwwxyxxyyzyzz{zz{z{{|{{|{{|sttuvwvwwxwwxxyxxyyz {|{|{{|{|{|{||{|{|ttuvwvwxxwxxyz{|{{|{{||{|{|{{|{|ttuvuvvwxyxyyz{|{|{|{|ttutuuvwxyz{|{{|{||{{|{{||{{||tuuvuvwvwwxyz{z{ {|{{|{|{||{|uvwvwwxyz {|{{|{{|{||uvwxyxyyzyz{z{{z{{|{{|{|{|{|{{||{|uvwxyz{z{z{{|{||{|{||{||{|{{||{||{|uvuvvwxwxxyz{|{{|{|{{|{{|{{|uvvwvwwxxyz{z{|{{|{{||{||{|{{|{{|{||uvwxyxyyz {|{{|{|{|{{||{||{||vwvwwxwxxyzyzz{z{ {|{{|{|{|{{|{| |}|vvwvwwxyxyyzyzz{z{ {|{|{{|{|{||vwxyz{|{|{{||{||{{||{| |vwwyxxyyz{z{{z{{|{{|{{|{||{|{||{||{||}||vwwxwxxyxyyz{z{z{{|{{|{{||{||{{|{ |}|wwxyz{z{ {|{|{{||{||{|{| |}wxwxyyxyyz{|{|{|{||{||xwxxyyxzyzz{z{{|{{|{{||{|{{|{|{||wxxyxxyzyzz{|{{||{|{| |}|wxxyzyzz{z{{|{{|{{||{||{||{{ |}|}|xxyzyzz{ {|{|{||{|{|{{||}|xyxyyz{z{ {|{||{{|{{||{|{{| |}||}|xyz{z{{|{||}||}||}||}||xyyz{|{{|{||{|{||{||}|}||}|}}||yyz{z{{|{{|{{|{||{||{||{|{||}||}|}}|}yyz{z{ {|{{|{{|{||}|}|}}||}yz{|{|{{|{{|{|{|{||{ |}||}||}}|}|yyzz{z{{|{{|{|{|{|{||{||{||}|}}|}zz{|{{|{{|{|{{||{||}||}||}||}z{|{{|{|{|{ |}||}|}||}|}}||}zz{z{{|{|{|{{||{| |}||}||}|}|}|}}z{|{{||{|{||{|{|{||}||}}|}||}}|}}|}|}zz{{z{{|{||{|{{|{{|}||}||}|}||}}{{|{{|{||{|{{||{||}||}|}}|}|}}||}}|}}{|{{|{|{{|{{|{||}||}||}}|}}||}|}}{{|{| |}||}||}|}|}|}} {|{{|{{|{||{||}||}|}|}}|}}zz{{|{{|{|{{|{|{| |}|}||}|}|}}|}}{|{|{||}|}|} {|{{||{||}|}|}||}|}}|}|}}{|{{|{{|{||{{||{|{||{||}| }|}}{|{{|{{|{{|{||{|{|{{||{||}|}|}}|}}|}||} } {|{||{|{|{|{{|{||}|}||}|}}|}|}}{|{{|{||{|{||{||}||}|}~}{{|{||{||{||}||}|}}|}}|}|}}|}}|}}|}}{|{{|{||{||}|}}|}}|}}|}~}}{|{|{|}|}}|}}~{{|{||{||{| |}|}||}|}}|}}|} }{|{{|{|}|}||}||}}|}}~}}{|{|{||{|{|{| |}||}|}|}|}}|}}~}}                                                                                                                                                                                                                                                                                                                                                                                                                    |{{|{||{||{||{||}||}||}||}||}|} }|{{|{||{|}|}||}}|}}~}}||{{||{||{|{| |}||}|}|}||}}|}}|}}|} }|{|{{|{{||{| |}||}||}|}|}}|}}~{||{| |}||}||}||}}||}|}}|}|} }|{||{|{||{| |}||}||}|}||}|}}{|{|{||}||}||}|}}||} }~}}{|{|{||{||}||}|}|}}||}||}}|}~}}~{{||{||}||}|}|}|}}|}||}|}}|}}~}}~}}|{||}||}}|}|} }~}~~}}~}{|{{||}|}}||}|}|}|}}|}|} }~}~}}{||{| |}||}|}|}||}||}|}}~}}~}~}~~||}||}||}|}}||}~}~~}~}~}{||}|}|}||}||}|}}|}}|}}|} }~}}~}~}|{||}||}||}||}|}}||}}|}||}}~}~~}~|{| |}|}|}}|}|}}|}}~}~}}~}~~|}||}||}~}}~}}~}~~}}~~|}|}}|}}|}|} }~}~}}~~}~}| |}|}|}}|}}|} }~}}~}}~}~~|}||}|}}|}||}|}}|} }~}}~~}~~}}~}~}~}| |}|}}|}|}}~}~}~}}~}~|}|}|}|}|}}|}}|} }~}}~}}~}}~~}}~}~~|}||}|}||}|}}|}}~}}~~}~~}}~~|}|}||}}|}|}}~}}~}}~}~}~~}~~|}|}|}}~}}~}~~}}~~}~~}||}|}}|}}|}}|} }~}}~}}~}}~}}~~}~|}||}|}|}}|} }~}}~}}~}~}}~~}~~}~~}~~}~~|}}||}|}}||}}~}}~}}~~}~}}~}~}~~}~~}|}|}|}}|}}~}~}~~}~~}~}~~}~}~~}~~|}}|}|}}|}|}}|}}~}~~}~}~~}~}~~|}|}|}||}||}|}|}}~}}~}}~}~}}~}}~ ~~~|}}|}}|}}|}}~}~}}~}}~}~}~~}~}~ ~}|}}|}}|} }~}}~}}~}~}}~}}~}~~~~~~}|}}|}|} }~}}~}}~}~~}~~}~ ~~~~~|}||}}||}|}|}}~}~}}~}~~}~}}~~}~~}~~~~~}||}|}}|}}~}~~}}~}~~}~}~~}~~~|}}||}||} }~}~}}~}}~}~~}~~|}|}}|}}||}}~}}~}}~~}}~}}~~}}~~}~ ~~~}| }~}}~}~~}}~~}~~}~~~~~~~~}|}}||} }~}~}}~}~}~~}~~~~}}|} }~}}~}}~}~~}~}~~}~~~~~~~}||}}|} }~}}~}~}}~}~}~~}~~~~~~~~}|} }~}}~}}~}~~}~}~~}~~}~}~~~~~}|}}|}}~}}~}}~}~}~~~~~} }~}~}}~}}~}~ ~~~~~~~~~}|}}~}}~~}~}~}}~}~}~~}}~}~ ~~ }~}}~}~~}~~}}~}~~}~ ~~~~~~}|}}~}~}}~}~}~~}~~}~~}~~~~~~~~~~~~~}|}}~}~}~}}~}~}~~}~}}~ ~~~ ~~} }~}~}~~}~~~~~~~~~}~}~~}~~}~}}~}~~}~~~~~~~~~~~~}}~}}~}}~}~}~}~~}~~~~~~}~}}~}}~}~}}~}~ ~~~~~~~~~~~ }~}~}~}~ ~~~ ~}~}}~}~}}~~}~~}~ ~~~~~~}~}}~}~~}~~} ~~~~~~~~}}~}~~}~}~}}~~~~~}~}}~}~ ~~~~~~~}~}~~}~}~~}~~~~~~~~ ~~}~}}~~}~~~~~~~~ ~}~}~ ~~~~~~}~}~}~~}}~}~ ~~~~~~~~~~~}}~}~}~~}}~~~~~~~~~~~}~~}}~~}~~}~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }~}}~}~~}~~}}~~}~~}~}~~}~~~~~~~~~~~ }~}~}~}}~}~~}~~}~}}~~}~ ~~~~~~~~}}~}~}~~}~~~~~~~~~~}}~}~}~~}}~}~}~~}~}~~}~~~~~~~}~}~}~}}~~}~~~~~~~~~~~~~}~~}~}~~}~~}~~}~}~}~~~~~~~~~~~~~}}~}}~}~}~}~}~~}~~}~~~ ~~~~}}~}~}~~~~~~~~~~~~~~}~}~}~~}~ ~~~~~~~~~~~~ ~}~~}}~~}~~~~~~~~~~}~ ~}~}~ ~~~~~~~~~~~~}~~}~}}~~}~ ~~~~~~~~~~~~~~ ~}~~}~~~~~~~~~}~}~~}~~}~~~~~~~~~~ }~~}~~}~~~~~~~~}~}~ ~~~~~~~~~~~}~}~}}~~~~~~~~ ~}~~}~~~~~~~ ~}~~~~~~~~~~~~ ~ ~ ~~ ~~~~~~~~ ~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~  ~~~~ ~~~  ~~ ~~~  ~~~          􁀀                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ~~~~~~~~~~~~~~~ ~~~~ ~~ ~~~~     󁀀   򁀀 􁀀  󁀀󁀀       􁂁 邁 큂끂􁂁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         3         $                           񁀀􀁁 򀁁- #󀁀!􂁁񂁁 􂁂  􁂁 򁂁"*      􂃂낃탂냂              !     !              ,                                                                                                                                                                                                                                                                                  (      !          %!        "0              %              %  "󁀁    󁀁聀뀁󁀁򀁀    %󂁂􂁂򁂂󂁁󁂂     3 "  ' 탂 􃂃 󃂃 󂃂                    &     3       '  #                                                                                                                                                                                                                                                                  !         %                       0 '                                      ~~~~~~~ ~~~~~~~ ~~~~~~~~~~~~~  ~~  ~~ ~~  ~ ~~~       􀁀          􀁀       񁂁 􁂂                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ~~~~}~}~~}~}~}}|}}~~~ ~}~~}}~~}~}}~}~~}~}~}~~}}~}}|}}|}} ~~ ~}~~}~}}~}~}}~}|}|~~~~~~~~}~}~}~}}~}}|~~~~~~~~~~~ ~}~~}~}}~}~} }|}~~~~~~~~~}~}}~~}}~}}~}~~~~~~~~~~~}~~}~~}}~~}}~}}~} }|}}~~~~ ~}~~}~~}~}}~}~}~~}}~}}|}~~~~~ ~}~}~}}~~~~~~~~ ~}~~}~}}~~}}~~}}~}}~}}|}~~~~~~~~}~}}~}}~}}~}~}}~~~~~~~~~}~~}~}}~}~~}~}~}}~~~~~~~~~~~~~}~~}~~}~}~}}~}}~~~~~~~~~~~}~}~}}~~~~~~~~~~~}~}}~}}~}}~~~~~~~~ ~}~}~~}~~}}~}~}}~}~~~~~~~~~~}~}~~ }~} ~~~~~~~}~~}~}}~~}~~}} ~~~~~~}~}~}~~}}~~}}~}}~~~ ~}~~}~~}~~}~}~}}~}}~~~~~~~~~ ~}~~}~~}~~}~}}~} ~~~~~ ~}~~}~}~}~}} ~~~~~~~~~~}~~}~}}~~~~~~~~}~}}~~}~~~~~~~~~~~ ~}~~}~}~~~~~~~~~ ~}~}~~}~~}~~}~~~~~~~~~ ~}~}~ ~~~~~~~}~}}~}~}~~}}~}~~~~~~~~~}~~}~~~~~~~}~~}~~} ~~~~~~~~}~}~~}~}~~~~~~~~~ ~}~}~~}~~~~~}~}} ~~~~~ ~}~~}~~~~~~~~}~~} ~~~~~~} ~~~~~~}~}~~~~~~~~~}~}  ~~~~~~~~~~}~~~~~~}~~ ~ ~~~}~~ ~~~~~~~ ~~~~~ ~ ~~~~~~~~~~~~~~~~~ ~~~~ ~~~~~~~~~ ~~~~~~~~~~ ~~~~~~~~~~~~~~~~~ ~~~~~~~~ ~~~~~ ~~~~~~~~~~~~~~~~ ~~~~~~~~~~~  ~~~~~~ ~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |}||}| |{||{||{|{|{{z{{z{zzyxwvw}||}||{|{|{{|{{|{{|{{z{{zyxxwv}|}}|}||}| |{||{{||{|{{|{|{{z{zzyxw}||}|}} |{||{|{|{|{{|{{zyxyxwxww|}|}|}|}||}||{|{|{{|{{z{{z{{zzyyxwxw||}}|}}|}|}}|}| |{||{|{{|{ {zyxw}|}||}| |{|{|{{|{{z{{zzyxw}}|}||}||}||{||{|{|{{z{{zzyxw}}|}}||}|}}|}|}||{| |{|{{|{{zyzxxyxx}}|}||}|}||{|{|{||{||{|{{zyzyyxw}}||}||}}|}||} |{||{|{{||{|{{|{{z{{zyxx}|}||}||}}||{|{||{|{{|{{z{zzx}|}}|}||}||}||{||{||{|{|{ {zyx}}|}||}||}|}| |{||{|{{|{|{{|{z{{zyx}}|}}|}|}|}||}||{||{|{{| {zyx}}|}}|}||}| |{||{z{zzyy}}||}}|}||}||}| |{||{|{|{{|{|{{z{{zzy}}|}|}||}}|}|{|{{|{{z}|}|}}|}||}}||{||{|{ {z{zz~} }|}||}}|}||{||{| {z}|}}|}}||}||{||{||{|{|{ {z~}}~}}|}}|}||} |{|{||{|{||{{|{{z{z{z} }|}}|}}|{|{{|{{||{|{{|{{z~} }|}|}}||}}| |{||{{|{{|{{}|}|} |{|{|{ {}~}~}}|}|}}|}|}||{||{|{{|{{z}}~}}|}|}}|{||{|{|{|{{z} }|}|}|}|}| |{||{||{|{{|{{z{~}}~}|}}|}}||}||}||{|{||{||{||{{|{{|{{}|}}|}||}||}||{||{|{|{{|{|{{~}~}}|}}||}||{|{{|{{|{ {}~}}~} }|}}||}||}| |{||{|{||{{~}}~}~} }|}||}||}|}| |{|| {~}~}}~} }|{||{||{||{|{{|{{~~}~}~} }|}||}||{||{||{~}~~}~}|}}|}| |{||{||{||{{|{{~}~}}~}}~}}|}|}}|}||}||}||{||{||{||{|{|{|{~~}~} }|}}|}|}||}}|{|{|{{~}~}}~}~~}}~} }|}}||}||}||{||{|{{|{~}~~}}~~} }|}}|}}|}}|}||}|{||{|{|{||{{|{~}~}~} }|}||}| |{||{||{||{|{{|{}~~}~ }|}}|}|}}||} |{|{~}~~}~~}~}}|}|}||}||{|{||{|{{}~~}~}}~}~}}~}~}}|}||}}|}||}| |{|{|{|{~~}~}}~~}~~}~} }|}||}| |{|{|{{|{||}~}~}}~}}~}}|}||}}|}||}||}||{|{|{||{{|{||{||~~}~~}~}~~}}~}}|}}|}}||}||}||}| |{||{|{{~~}~}~~}~}~}}~}}|}|}||{||{||{|{|~ ~}~}~} }|}|}}|}||}||{||{||{{~}~~}~}~}}~} }|}}|}}||}||{||{~~}~}~~}}~}~}}~}}|}|}| |{|{||~}~}~}~}}~}}|}|}}|}||}||{||{|{|~ ~}~}}~}}~}}~}}|}||}| |{||{||{{| ~}~~}~}|}|}||}||{||{||{|{{~ ~}~}}~}~~ }|}}|}||}||{|{|{{|~ ~}~~}}~}}~} }|}}| |{|{{|~}~}|}}|}||{|{|{~ ~}~~}~}}~}}~}~} }|}|}}|}||}}||{|{{|~ ~}~~}~}}~}}|}}|}}|}| |{|{{|{{~~~}~~}~}}~} }|}}|}|}||}||{|{|{{~~~}~}}|}}|}||{||{~~~~}~}~~}~}}|}}||}|}|}||{||{||~~~~}~~}~~}~}}|}}||}}|}|}||}||{|{||{|{{~~~ ~}~}~}~} }|}}|}|}||}| |{|{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        !                vuttsrsrrqponmnvutsrqponmnvvuvuuttssrqpoponnmvutsrqpqpponmwvvuvuuttsrrqponmwvvuvvuuttsrsrrqponmwvutsrqponmwvutsrqpoponnxwwvutsrqpononnmmxwwvutsrqponxxwwvutsrsrrqqponmxwvutsrqpqpopoonmxwxwwvuvvttsrqponmyxwxxwwvutuuttssrqpononnxwvuvuutsrqpopoonnmyxxwxvwvvuvuututtssrqponmxwvuvvuttsrsrqqponmzyyxxwwvwvvutuutssqpopnonnyyxwvutsrqpqppoonmyyxxwxwwvutsrqponyzyyxxwvutsrqponzzyyxxwvuvuutsrqponommzyyxwvuvuutsrqponzyxwvutsrqrqqppoonmn{zzyyxwwvwvvuutstsrsrqrqqpponmzzyxwxwvvutsrqponomn{zzyxwxxwvvwvvuutsrqqrqppon{zzyzyyxyxxwwvutsrqponmn{zyxwvutsrqponmn{{z{zzyyxwvutsrqponm{z{zzyxwvutsrqponmz{zyxwvutsrqpon{{zyxwvutstssrrqpopoonmm{{z{zzyxwxwvvwvvuutsrsqqpon{zyxwxwwvutsrrqpon{{zyxwvtuuttsrqpoon{zyyxwvutstssrrqqpqpponnm{{zyxwvuttutssrqpon{{z{{zyzyyxyxxwwvutsrqpon{{zyxxwvututtsrqponm{{zyxwvvutsrqpooponn{zyxwwvwvvutsrqponm{z{{zzyyxyxxwvwvuutsrqqpon{z{zzyyxwvvutsrsrrqponnonn|{{zyxwvututtsrqpqppoon{{|{{z{{zzyyxwvwvuvuuttssrqpqppoononm{ {zyxwwxvvuvuuttsrsrrqqponm|{{zyxwxwvvuttsrqponm{ {zyxwvwvvututtssrsrrqqponm||{zyxwvwwvuutsrsrrqppon|{ {zyxyxxwvwvvutstsrsrqrqpponmn|{{z{zyyxyxxwvututtsrrqrqqpponm|{{|{{zyxwvwwvuutsrqpon{|{{|{{zyxwvuvvuutsrqpopoonnm||{{|{{z{zzyxwvutssrqpqppoonn{{|{ {zyxxwvtuttssrqpon|{|{{|{{zyxwvutsrqponm|{|{|{ {zyxwvvutsrqponm|{ {zyxwvvutstssrqpon{|{|{{|{{z{zyxwvutstsrrqpqppoon{{|{|{{|{{z{{zyxxwvuvuutsrsrqqrqppon|{{|{{z{zzxyxxwvwvuvuttsrqpqqoppoonnm|{{|{zyxwvutsrrqpqpoponnm|| {zyzzyxxwvutsrqpononnm                      񲱱[ ﶵシ 붷𺹺忾󲳲   󯮮       𪫪   𯰰 󫬬      򧨨𥦥     򧦥   򚛛  򠡡     򞟟    󑒑      󕖕󑒑  ~    􉊊     󐑐  򍎎                                                                   񇈇     􆇆                                  󆇇                                                                                                                                           􅆅          񄅅    􄅄          󃄃                                                                                                                                                         򂃃      󁂁   􁂂􂃃    񂃂  􁂁    򁂁󀁀         򁂂           􁂁򂃂                                                                                                                                                                                                                                                                                                              ~~~~~}~~} ~~~~~~~~}~}}~~~~~~~}~ ~~~~~ ~}~~ ~}~}~~~~~~~~~~~}~~}~ ~~~~~~~~}~~~~~~~~~~}~~}~~} ~~~~~~~~ ~}~ ~~~~~~~ ~}~~~~ ~}~~} ~~~~~~~~ ~}~}~ ~~~~~~~~~~~ ~ ~~}~~ ~~~~~~~~}~~ ~~~}~~~~ ~}~~~~~~}~}~~~~~~~~~}~ ~~~~~ ~}~ ~~~  ~~~~~~~}~~~~~~~~~~~}~~}~~~~ ~}~}}  ~~~~~~ ~~~~~}~~ ~~~~~ ~ ~~~~~~~}~~~~ ~ ~~~ ~~~~~~~~~}~~ ~~~~~~~}~ ~~~~~~ ~} ~~~~~ ~~~~~~ ~~~~~~}~~ ~~~~~~~~ ~} ~~~~~~~~~~~~~~}~~~~~~ ~~~~~ ~ ~~~~~}~}~~~~~~} ~~~~~~~~~~~  ~~~~ ~~~~~~~~~}~~~~~~~~~~}~~~~~~~~}~~} ~~ ~}~}~~~ ~  ~~~~~~}~}~} ~~~~~ ~}~} ~~~~~~~~~}~~~~ ~} ~~~~~~~~}~  ~~~~~~~ ~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~}~~ ~~~~~~~}~  ~~~~~~~~}~~~~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򭬭 񩨨         𮭭      򭮮򵭭  󯮮  𴳴   򲱲ʵʵʵʴʴʴ˴˵˴ʵ˵˵˵˵˵˵˵񷶷˵̵̵̵̶̵̵͵͵춵̵͵̶͵͵ζζεεε͵εε====<<==<;;<;::;:;99:9::8898887778666667665564454mnnnmmmmmnnnmnmnnmnnmnnnnmnnmnnmnnomnoonomnnomnnononnmonommnononomnnomnnoonnomnnomnnomnnoonnonopmnnoommnnoopnopnopmmoopmnnoopmnnoopnoponmnnoopmnnopnopoonnopnopmnnopmnnopnnop====<<=<<;;;;:;;:;9:99:99899987788766767655554554                      mnopqrqrrsstuvwxyxyzz{|{{nmnnopqrstuvwxyz{|{mnnopoppqrsrsstuvwxyz{z{{|{{|{{nopqrstutuuvvwyxyyzz{z{z{{|{|{mnonnppqrstuvwxyz {|{{||{{||nnopqpqqrrstuvwxxwxyyzyzz{ {|{|{{|nnonooppqrsrsstuvuvvwwxwxxyyzyzz {|{{|{||{nnpoppqrstuvwxyz{|{{|{{|{mnnopqrstuvwxyxxzyyz{z{{|{{|{{|{|nnmnnoopqrsrsttutuuvwxyz{|{||{nnopqrstuvwxwxxyz{z{ {|{|nnopqrststtuuvwxyzz {|{|{nmnnooppqrstutuuvwxyzz{z{ {|{{|{|{|nnopqrstuvuuvwwxyyzyzz {|{|{|nnopqrststtuuvwxyz{zz{{|{{|{{|{|mnnoopoppqqrrqsrssutuuvvwxyxxzyzz{ {|{{||{|mnoopoppqqrrsrsstuvwxyz{|{{|{||{||nopqpqqrrstuvuvvxyz {|{|noopqrstuvuuvvwwxyxyyzz{|{{|{|mnoopqrstutuvvwvwwxyz{z{{|{||{{||nnpqrstuuvwxxyz {|{|{{|{nnopqrstuvuvvwxwxxyz{z{{|{{|{{|{|{||{|{nnopoppqrststtuvwxyzyz{ {|{||{||nnopqpqqrsststtuuvwvwwxxyz {|{||{||{nnoopqrststuuvuvwwxwxxyyz{z{{|{{|{||opopqqrqrrstuvwxyz {|{{|{|noopqrsstuvwxyxyyzyzz {|{|{{||oopoppqqrsrrssttuvwxyxyyz{z{{|{{|{||{|oopqrstuttvvwxyyz{|{{|{|{||{|oopooppqqrstuvuvvwwxyxyyzz{|{{|{|{|{{|{{|{nopooppqqrststtuuvwxwxxyyz {|{{|{{|{opqrstuvwxwxxyyz {|{{|{||opqrsststtuuvuvwwxyz{z{{|{|{ooppqrsrsttuvwvwwxxyxyzyz{ {|{|{{||{|{|oopqrsrsstuvwxyzyz{{|{{|{||{{|{{||{|oppqrststtuuvvwxyzzyzz{{z{{|{{|{|{||opqrstuvwxyxyzyzz{z{z{{|{{|{|opqrsutuvvwvwwxxyyzyzz{z{{|{{||{|oppqrstuvuuvwvwwxxyz{z{{|{|{{||{{|{||poqpqqrstuvwxyxyyz {|{|{{|{{|{||{||{ppqrstuvwwxyxyxyzz{|{{|{|{{|{||opoqqrqqrrsststtuuvwxwxxyz{|{{|{|{|{{|pqrststtuuvuuvvwwxyz{z{{|{{|{|{||{||ooppqqrrtsuuvwvwwxyzyzz{{|{{|{{|{||oppqpqqrststtuuvwxyz{|{{||{||{|oppqrstuvwxyxyzzyz{{|{{|{{|pqrsrsstutuvvwxyz{z{ {|{||{{||pqrstuvwxyyz{z{{|{||{|{||{||{pqrqrsstuvuvvwxwxxyz{|{|oppqqrstuvwxyz{z{{|{{|{{|{{||{||oppqqrqrrsstuvuvwwxyzz {|{{|{{|{{||pqppqrrstuvwxyxyyz{z{{|{||{|{||{||pqrsstuvvwxyxyyzz{z{ {|{|{||{||{||pqrrstuvuvvwxyz{|{{||pqrststutuvvwxyzyzz{z{{|{|{{||{||pqrststtuvwxwxxyxyyzz{ {|{{|{{|{|{{||{||pqqrstuvuvvwxyzyzz {|{|{{|{||{||ppqqrststuuvwvwwxyz {|{||{|{{||qpqqrstutuuvwxyz{z{ {|{|{||{|pqpqrrstuvuvvwwxyzyzz{z{{|{{|{|{{|{||{|pqqrqrrstuvuvvwwxxyzzyzz{{z{ {|{||{{||qpqqrstutuuvwxyxyyzz{z{{|{|{|{||}qqrstutuuvvwxyxyyzz{|{|{|{{|{||{||pqrqrrstuvwxyz {|{|{||{||                                                                                                                                                                                                       |{| |}||}| }~}}~{| |}||}||}|}|}}|}}~}}~}}~~}~}~}~}~~}~~{||{| |}|}|}}|} }~}~}}~}}~~|{||{|}|}||}||}}|}}~}~}}~}~ ~ |}||}}|}}||}}|}|}|}}~}}~}~}~}~~}~}~~}}~~|{|{| |}||}||}}|}~}~}}~|{{||{||}||}|}}|}}||}|}}~}~}}~}~}~}~}~~|{|{| |}|}}||}|}}|} }~}}~}~}~~}~~}~~{|{{|{|{| |}||}|} }~}}~}}~}~~}~~~~{||{|{||}|}|}||}|} }~}}~}~~}~~}~}~~|{| |}|}||}|}}~}}~}~~}~~}~~~| |}||}~}~~}~}~~~~||{||}||}}|}||}|}}|} }~}~~}~}~~|{| |}|}}|}|}}~}}~}~~{||{||}||}||}|}}~}}~~} ~~~{||}||}||}|| }~}}~}~}~~~||{| |}||}|}}|}}|| }~}~~}}~}~~|{||{||}||}|}|}|} }~}~~}~}~~|{||{{||}|}|}|} }~}~~}~ ~||{||}|}||}|}|}}~}~}}~}}~~}~}~~| |}||}||}|}|}|}}~}~~}~~}~~~| |}|}|}||}||}|}}~}}~}~}~~}~}~~~~||{||}||}|}||}}|} }~}~} ~||}||}}|}|}}|}|}||}}~}}~}~}}~}~}~}}~~~{||}|}|}}|}||}}~}~}}~}}~}~ ~||{||}||}|}}|} }~}~}}~}~}~}}~}~~~{||}||}|}||}|}}|}}~}}~}}~}}~}~~~~|{||}|}}|} }~}~}}~}~}~}~~}~~~||}|}|}|}}|}}~}~}}~}~~~{||}|}|}|}|}||} }~}}~}}~}~~}~ ~~||{||}| }~}~}~}}~~}~~}~~}~ ~ |}||}|}|} }~}~~}~~}~~~|{||}|}|}|}}|}}~}~}~~}~}~~}~ ~~~|{||}|}|}||}||}|}}~}}~}~}~~~{|}||}||}}|}| }~}~}} ~~~{||}|} }~}~}~~}~ ~|{{||}|}}|}|}}~}}~}~}~}}~~}~ ~~~~~||}|}|}||}||}||}}~}}~}}~~}~~}~~~~|{||}||}|}}|}|} }~}}~}~}~}~}~}~~}~~~~|{| |}|}}|}|}}~}}~~}}~~}~}~~~~|}|}|}}||}}|}||} }~}~}}~~|}|}|}}|}}~}~}}~}}~}}~}~}~}~~~~~| |}||}||}|}}|}}~}}~}}~}~}~~~||}||}|}}|}}|}}~}}~}}~~}~}~}~~}~ ~~~||}||}|| }~}}~}~~}}~~}~ ~~||}||}|} }~}}~}~~}~~~~~~{||}|}|}}| }~}}~}}~}~~~~{||}|}}|}|}}|| }~}~}~}~}~ ~~~~|}|}||}|}}|}}|}}|}}~}}~}}~}~~}~~}~~}~~~~~~~|}|}}|} }~}~}~}}~}~~|}|}|}}|}|}}|} }~}}~~}~~}~ ~~||}||}||}||}}|}}~}}~}~}}~~~~||}||}|}}|}}||}|}|}}~}}~}~}}~~~~~~||}|}}|}|}}~}~}}~~}~~}}~~~~~||}||}||}|} }~}~}}~}~~~~~||}||}|}}||}}|}}~}~}}~}~~}~~}~ ~~~~~~||}||}|}|}||}|}|}}~}}~}~~}~~~||}||}||}~}~}~~}~} ~~~||}|}||}| }~}}~}~}~~}}~ ~~~||}||}|}}|}}~}~}~}}~}}~~~~~~~|}||}|}|}|}}||}~}~}~}}~} ~~||}||}|}|}}~}}~}~~}~}~~}~~}~~~~~|}|}}||}||}|}|}}|}}~}}~}}~}}~}}~~}~~}~~~~~~~~}||}|}}|}|} }~}~}}~}}~}~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ~~~~~~  ~~~~~~~~~~~  ~~~~~~~~~~~~~ ~~~~ ~~~~~~ ~~~~~  ~~~ ~~~  ~~~~~~~~~~~~  ~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~ ~~~  ~~~~ ~~~~~~~~ ~~~~ ~~ 򀁀~~~~~~ ~~~~~~~~~~~~~~~~ ~~~~  ~~~~ 􁀀~~~~ ~~~~~~~~~ ~~~~~~~~􁀀~~~~~~~~~   ~~ ~~~~ ~~~~~~~~~~ ~~ 򁀁~~~~ ~~~~~ ~~~~  ~~~ ~~  ~ ~~  ~ ~~ ~   ~~   ~~~~~  ~~~~  ~~ ~ ~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 򃂃    􂁂                      󁂁      񂁁   턃         􃁁  񄃄                                                                                                              􆅆 󆅆               󅄅􅄅     󆅅           􅄅 􆅅   􄅄             󆅅    􆅅 񆅆                                                                                                                       󇆆  􇆇򈇈     숇  󉈉                            􋊊                                                               􎍎            󑐐󌋋               󠟠              򦥥󨧧  󥤥   󤣤󨩩 𪩪 񨧧 򩨩      󰯰  񯮯           󫪪           󷶷      򴳳󶵶ͶͶͷηͷηϷθ򹸹ийййкѺѺѺѺҺһӻҼӼӼԼԽսսֿ׿ֿ׿׿=<=<::9987866545442211000..--,++***))'''&&&$$###"""!   nnmnmnnmnonmnnmnmnonnommnnomnnomnnoopmnnoommnnopmnnopopnnopnopqnopoppmnnonoopoqqnopqmnnonoopqnmnnoopqnnopqnmnnoopqnnopqrmmnnpooppqrmnnoopqrrnnopqrmnmnonoopqrsnnopopqqrqrrsmnnopoppqqrqrrnnopoppqrmnopqpqqrqrsrmnnopopqpqqrsrmnnoopqrsmnonoppqpqqrsnopoppqqrsrrtsnmnnonooppqrstnopqrsnopqrqrrstnmnnoopqrsrsststmnnopoppqrsrrsstnnopqrstmnnopqrstumnnopqpqqrstutmopoppqqrstutumnnopopqpqqrstunopqrqrrstunnopqrqrrstutunopqrstumnnopqrstunmnnopoppqqrstuvmnopqrstuvnnonooppqrststtuuvnopqpqqrstuvmnonopoppqrstuvnmnnopqrstssttuuvmnnoopqrststutuuvvmnnoopqrsrsstutuuvuvvmnopqrsrsstutuuvvw=<=<:;:997876644343120100/.--,+,*+*()('''&&$%##"#!!                                  nmnnopoppqsrsstuuvwvvwxxyxyyzz{z{{|nnopqrstuvwxyz{z{{|{mnopqrstutvuvvwxyz{z{{z{{|{mmnnoopqpqqrststtuvvuvvwxyz{|{{nopopqpqqrsrssttutuuvwwxyz{ {|{nonnoopqrsrsstuvuwwvwxwxxyzyyzz{|{{|{onnooppoppqqrststtuvuvwvwwxyxyyz {|{|{|noopqrststutuuvvuvwvvwwxyxyyzz {|{|{nooppqrststuuvwxyxyzyzz{z{{|{{|{{|noopqrstutuuvwxwxxyyzyz{zz{z{{|{{||{nooppqrqrrstutuuvwvwwxyz {|{{|{{ooppqrsrsststtuvuvvwxyzzyzz{z{{|{|{|{{opqpqqrsrsstuvuuvvwxyz {|{|{{|{{oppqrssutuvvuvvwxyz{z{{z{{|{{|opoqqrqrsrsstuvuvwwxyxyyz {|{|{{||opqqrsrsststtuuvwxyzyzz {|{{|{||ppqrstutuuvvuvwwvwxwxxyxyyz{zz{{|{|{|ppqrstuvwxyz{z{{|{|pqpqqrstutuuvwxyxyyzz{ {|{{|{|{{|qrqrrstuvwxyzyzz{|{{|{|{|{|qqrqrrsstuvuuvwvwwxyz{z{{|{{|{|{{|{||qpqqrrststtuutuuvvwxyz{|{|{{|qqrstuvwxyz {|{|{|{{||qrstuvwxwwxxyxyyz{z{{|{{|{{|{||{||qqrrsrsstutuuvwvxxwxyyz{z{{|{{|{{|qrrstuvuvvwwvwwxxyzyyz{z{ {|{||{|{||{|qrrsrsstuvuvvwxyz{z{{|{{|{||{||rstuvwxyzyyzz{{z{{|{{|{|{||rstutuvvwxyzz {|{{|{ |rstsutuuvwxyxyyz {|{|{|rsstuvwwxwxyyzy{ {|{{|{||{||stuvuvvwxyz{z{z{{|{|{||{||{|{||rssttuvwxyz{z{{|{|{{||{|{||{||stuvwxwwxxyz{z{{|{{|{||{|{||{|{||{||rssttuttuuvwxyxyyzyzz{|{{||{||{||rssttutuvvwvwxxyxyyzyzz{{z{ {|{||{{||}|ssttuvwxyxxyyzz{z{ {|{{||{{||{||{||tutuuvuvwwvwwxwxxyyzyzz{ {|{|{|{| |stuvwxyzyyzz{ {|{|{| |sttuuvwvwwxyxxyyz {|{{|{|{|{|{{|{||{||}|stuttuvvwxwxxyyxzyzz{z{ {|{|{|{||{| |tuvwvwwxyxyyzz{|{|{||{|{|{| |tuutuvuvvwxyz {|{|{| |}tutuuvwxyz{|{|{||{||}||tutuvuvwwxwxyyz {|{{|{|{| |}|}||tuuvuvvwvwwxxyyz{z{{|{{|{||{||}||tuuvwxyz{z{{|{{|{{|{||tuuvvwxwxxyz{{z{{|{||{||{||}|uuvvwxyxxyyzz {|{{|{|{||{||}|}|uvwxwxxyyzyzz{|{|{|{{|{{|{{|{||{||}|}}|}||uuvvwxwxxyzyzz{ {|{{||{{||}||uuvvwvwwxxyz{z{{|{{|{{|{||}||}|vvwxyz {|{|{{|{|{||uvvwxwxxyzyzz {|{{|{|{|{||}||}vwxwxxyyz{|{||{||{||{||}|}||}vwvwwxyz {|{|{{||{|{{||{| |}|}}||vwxyxyyzz{|{{|{||{||{||}vwvwxwwxyyz{zz{{z{{|{{|{|{|{{|{ |}||}wvwwxyxxyzyzz{|{||{||{||}||}||}|}}wwxyz{|{{|{|{{|{{||{||{||}|}|}}|}||wvwwxyz{|{|{||{||}vwwxyz{z{{|{||{||{| |}||}}|}}wxyz{z{ {|{{||{|{| |}||}|}|}}wxxyz{z{{|{{|{|{{|{{|{|{||}|}|}|}}|                                                                                                                                                                                                                                                                                       {|{|{||}||}|}||}}|}||}}~}{||{|{|{||{||{||}|}|}|}}~{{|{|{|{|{||{|{|{||}|}|}}| }~}}|{|{{|{|}|}|}||}||}||}}|}}~}}~}~}}~}{{|{||{|{|{|{| |}||}|}}|}}|}}~}}~}~}~}~|{{|{{|{||}|}||}||}|}}|}|}|}}~}~}~~}{{||{{||{| |}|}|}|}}|} }~}}~}{{|{||{{|{{||{{||}||}}|}}~}~}}~~{|{{|{||{||}||}||}}||} }~} }|{|}|}|}}|}|}}|}}~}}~}~}~}~~|{||{||}||}|}}|}}|}||}|}}|}}~}~}}~}~~}~|{{|{{| |}|}||}|}|}}|}}~}}~}}~}~}}~}{||{{|{||}||}|}}|}}|} }~}}~}~~}~~{|{||{|{{||}||}||}||}|}|}|}}|}}~}}~}~{||{| |}|}||}|}|}}|}|}}~}}~}}~{|{||}||}||}|}|}|}|}|}}|} }~}~}~}~~}}~~}}~|{||{||}|}}|}|}|} }~}}~}~~}~~||}|}|}}||}||}}~}}~}}~}~}~||}|}}||}}|}}|}}~}}~}}~}~~}|{{|}||}||}|}|}|}}|}}~}~}~}~~}~~|{| |}|}}|}|}}|}|}}~}~}~}~~}~}~~| |}||}|}|}}|}|}}|}}~}}~}~}~}~~}~~|}|}}|}}|}}|}}~}~~}~~{||}|}||}|}}|}|} }~}~~}~~}}~}~~|}||}||}| }~}~}~}}~~}~}~}~~}~{| |}|}|}|}|}}|}}~}}~}~}~~}~}}~~}~~ |}|}||}|}|}}~}}~}~}~}}~}~}~~|}|}||}|}~}}~}}~}~~}~}~~}~~||}||}|}|}|}||}}||}|}}~}~}~~}~~~|}||}|}|}}~} }~}}~~}~~}~~||}||}|}}|}|} }~}}~}}~}~~}~~}~~}~~|}|}|}}|} }~}}~}}~}}~~}~~~~|}||}|}|}}|}|}|}}||} }~}~}~~|}|}|}}|} }~}}~}~~~~||}|}|}||}|} }~}~}~~}~}~~}~~~~||}||}|}}||}}|}}||} }~}}~}~~}~}~ ~~~|}||}|}||}|} }~}}~~}~~}~~}}~~|}||}|}|}}|}}~}}~}~}~}~~~~~~~|}||}}||}|}}|}}~}}~}~~}}~}}~~}}~~~~~~||}|}|}}|} }~}}~}~~}}~}~}~ ~|}}|}|}}|}}~ }~}~ ~~~~}|}}|}||}}|}|}~}~}}~}}~}~~~|}}||}|}||}}~}~}~~}~~}~ ~~~~|}}||}}|}|}}~}}~~}}~}~~}~~~~~~}|}|}||} }~}}~}~~}}~~}~ ~~~~|}||}}||}}|}}|}}~}~~}}~}}~~}~~}}~}~~~~~~||}|}}|}}~}~}~}~}~~~~~~}}|}}|} }~}}~}}~}~}~~}~~~~~~~|}|}}|}|}}~}}~}~}~~}~~}~~~~~~||}|}}|}}~}}~~}~}}~}~~~~~|}}|}}|}}~}}~}}~~}~}~}~~}~~~~~~~}||}|}}~}}~}}~~}}~~}~~~~~~~~~~|}|}}||} }~}}~}~~}~}~~}}~~~~~~~~}|}}|} }~}~}~}~~}~ ~~~~~~~~}|}}|}|}}||}}~}~}}~}~}~}~~~~~~~}||}|}|}}~}~}~~}~ ~~~~~~}||}}|}|}}~}}~~}}~}~~~~~}|} }~}}~}~~}}~~~~~~~~}|}}~}~~~~~~|}||}~}~~}~}~}~~~~~~~~~|}}|}}~}}~}}~}~~}}~ ~~~~~|}}|}}~}}~}}~ ~}~ ~~~~~ }~}}~}}~}}~}~~~~~~ |}|} }~}~}}~~}~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }~}~}~ ~~~~~~}~~}~}~~}~}~~~~~~~ }~~}~}~}}~}~ ~~~~~~}~}~~}~~~~~~~~~~~~}~~}~}}~}~~~~~~~}~~}}~~~~~ ~}}~~}~ ~~~~~~~}~~}}~ ~~~~~~~~~~}}~~}}~~~~~~~~~ ~~}}~ ~~~~~~ ~~}~ ~~~~~~~~~~}~~}~ ~~~~~~~}~ ~~~~~~~~~~~ ~}~ ~~~~~~~~}~~~~~~~~~~}~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~ }~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~  ~~~~~~~~ ~~~~~~~~  ~~~~~~~~~~ ~~~~~~~~~ ~~~~~~~~~ ~~~~~~~~ ~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~ ~~ ~~~~~ ~~~~~~~~~~~~~~ ~~ ~~~~~~  ~ ~~~ ~        򁀁 􁀀                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               􁀀񂁂􂁂   󁀁           󁂁     񁀁    񁂂 󁂁   􂁁     󁂁   󂁁    򃂃 򂁁   󂁁   󁂁                                                                                                                                                                                                                                                                                                                                                 􂃃      샂     󄃃񃄄        򅄄  򄃃        􄃄 񄃄󄃄􄃄 􄅄񅄅  񅄄                                                     !           #         񃂃!     󄃄  􄃃  􄃄  􃄄    󅄄 񅄅 򄅄     " 􆅅􆅅 􆅅 􅆅󆅆    )                "                        1+      !! $              !#  "'  1  *2􂃃  󄃃􄃄  8   򅄅 򄅄󄅅 򄅅 愅턅   +'    򆅆 󆅅 )#           -,      *$          -                                                          򃂃 󃂂 󂃃󁂂􂃃               󃄃   􂃃    򂃃            񄅄       󅆅   􄅅򅄅                                                                                                                ~~ ~ ~~  ~~~ ~~   ~~~ ~  ~~~      󀁀                     򀁁       󂃂􂃃                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ~~ ~}~}}~}}~}}|}|}||{||{|~~~}~~}~}~}~~}}~} }|}|}||{|{|{{~~~~~}~~}~~}~~ }|}|}}|}||}||{||{~~~~~~~}~~}}~}}~~}}~}}|}}|}||~~~~}~~}~~}~}}~}}~}}|}}|~ ~}~}}~~}~}}|}||}|}}||}|}|}| |~~~~~~~~}~}~~}~}~}}~}}|}}|}|}| |~ ~}~}~}}~}}|}|{||{~~~~~}~}~~ }|}}|}} |{~~~~~~}~}~}~~ }|}}|}}|}||}||{|~~~~~~~~}~}~}}~~} }|}|}||}|{|{~~~~~}~}~}~~ }|}}||}}||{|~~~~ ~}~~}~}~}}~}~~}|}|}| |~~~~~~}~}~}~~}~~}~} }|}|}}||}|}||~~~ ~}~}}~}}|}}|}}|}||~~~~~}~~}~}~~}}|}}| |}||~~~~~}~~}~~}~~}~}}~}}~}}|}|}}||}||}|}||~~~~~~~~~}~}~} }|}|}||}|~~~~}~~}~~}}~}}|}|}||}||~~~~~~~ ~}~}~~}~}}|}|}|}}|{~~~ ~}~~} }|}}|}}| | ~~~~}~~}}~}}~} }|}}||}||~~~~~~}~~}~}~}}|}||}|}||~~~~}~~}~~}}~~}}~} }|}||}||~~~~~}~~}~ }|}}|~~~~~}~ }|}|}}|}||~~~~~~~}~}~~}}~~}}|}||}||}||~~~~~}~~}~~}}~}}|}|}}|}||}||}|| ~~~~~}~~}~}}~~ }|}||~~~~~~}~}~~}}~~}}|}|}}|}|}||}}~~~~ ~}~}}~}~~} }|}}|}||}|~ ~}~~}}|}|}}|}||}~~~~ ~}~~}~~}~}}|}}|}|}||~~ ~}~~}}~}}~} }|}}| ~~~~}~~}~}~}}|}|}|~~~~~}~~}~}~}}|}}|}|~~~~~~~~}~}~~ }|}||}|~~~~~ ~}~}}~}}|}}||}|| ~~~}~}~~} }|}|}||}~~~~~~~}~~}~}}~}~}~}}|}}|}|}||~~~~~~~}~~}}~}}~~}}|}}||}}|}||}}~~ ~}~}}|}}||}| ~ ~}~}~}~~}}~}}|}|}}|}}|~~~~~~~}~}~}~~}}~} }|}|~~~~~ ~}~}}|}||}}||~~~~~}~~}~}~}~~}}|}|}}|~~~~~}~~}~}~}~}~}}|}|}}||~~~ ~}~}}~}~}}|}}|}}|}|~~~~~}~~}~}~~} }|}}|}}||~~~~~}~~}~} }|}|}|}|~~~~~~~}~}~}}|}|}}||}||~~~~~~~}~~}~~}~}}|}}~~~~~~}~}~~}~~}}|}~~~~~~~~}~}~}~}}|}}|~~~~~}~~}~~}}~}}|}|}|}}| ~~~ ~}~ }|}||}|~~~~~~}~}}~}}|}||}|}|}||~~~~ }|}}|}||}}|}~~~~}~}}~}}|}}|}}~~~~}~~}~}|}}||~~~~~~~}~}}|}|~~~~ ~}~}~~ }|}}|~~~~~}~~}}~}~}}~}}|}}||} ~~~ ~}~~}~}~}}~}}|}}|}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     {|{|{{|{{z{z{zzyyxwvvutsrsrrqqpopoonm|{{| {z{zzyxyxwxwvvutsrqponmm{|{{||{|{{zyxwvvutstssrrqqpqppononm||{|{{z{{zyzzyyxwvwvvutsrqrqqponm{{|{{|{ {zyxwvvutsrqponm|{||{||{z{zyyxwvwvuutsrqponm||{|{{|{{zyxwvuutsrqpopoonnm||{{|{{|{{z{z{zzyyxyxxwvutsrrqpon||{|{{|{{zyxwvutsrqpoonm|{|{||{zyxwvutsrqponnm|{|{|{{|{{||{|{{yzyyxxwvutsrqpon||{|{{||{{zyxwwvutsrqrqpqppoononn||{||{||{{z{zzyyxwvututtssrqrqqppoonm||{|{{|{{|{|{{zyzyxxwwvutstssrrqrqqppoon|{|{|{{|{ {zyzyxyxwwvutsrqpoon||{||{||{{z{zzyyxwwvwvvuuttssrqppononn{||{|{||{{zyxyxxwwvvutssrqpon||{|{{zyyxwvutsrsrqqponnm{||{||{{|{|{{zyxwvutsrqpon||{{|{|{{zyxwvutsrrqponnm||{||{|{||{|{{zyxwvutsrqponnm||{|{||{||{ {z{zzyyxwwvutsrqpoponn||{|{||{{|{{z{z{zyyxwwvutsrqpoonm|{||{|{||{|{{z{zzyxwvutssrqponm||{|{{|{{|{{z{zyyxwxwwvvuutsrrqponm||{|{{||{|{{|{{zyxwvuutsrqpnonmm||{||{|{{|{{z{zzyxwvutsrsrqrqqpponmn||{|{|{||{||{ {zyxwvwvvuutsrsrrqponm||{||{||{{z{zyzyyxxwvutssrqpon|{|{|{||{z{z{zzyyxxwvuvuttsrsqrrppqpoononn||{||{|{{zyxwvutsrqpon||{|{|{{|{{zyxwvutsrqponmm||{||{|{|{|{ {zyyxwvuttsrqponm| |{|{|{{zyxyxwxwwvvutstssrrqpqpponn||{||{||{|{{zyxwvutsrqpon}||{|{|{||{ {zyxwwvutsrqpqppoonnm||{||{|{ {z{yyxwvvutrsrrqrqpponm||{||{|{{|{ {zyxxvutsrqpqppoononm||{|| {zyxwvuvuutsrqpon||{||{|{|{{z{{zzyyxwvutsrqpopoon||{|{||{|{{|{{zyxwxwwvvuuttsrqpoponnm||{zyxywwvtsrqrqppononn}||{|{|{{|{ {zyxwvutssrqpqpoonnm||{||{|{|{zyxwvuvutussrqpoponn|{|{|{{|{{zyxwvututtssrqqpqppoonn|{|{||{|{z{zzyxwxwwvuutsrqpononn}||{|{||{|{||{{zyxwvutsrqopoonn}||{||{|{{zyxwvuvuttsrqpoponnm||{||{|{{|{|{{zyzyxxwvutsrqrppon |{|{|{ {zyxwvuttsrqrrpponm||}||{||{|{{||{{|{{z{yyxyxwwvutstssrrqpom|{|{||{|{{|{{|{zz{{zzyyxxwvutsrrqpon|}||{|{|{{zyxwwvuutsrqponm||{||{|{|{{zyxwvutsrrqponm| |{| {zxwvuvuuttssrqpon}||{|{{|{{||{|{{zyxwvututssrqpoonm|}||{|{|{{|{zz{zzyzyyxxwvwvvuuttsrqrqqppoonm}|}||{|{{|{{zyxwvutsrrqpoonm|}| |{||{|{{zyxwvutsrqpponm}||{||{|{zyyzyxxwvutsrqpon|{||{|{||{{|{{zyxwvuutsrqpqpoponnm| |{zyxwvutsrqponnm|}||{||{|{ {zyxwvutsrqpponm||{|{|{|{{zyzyyxwwvutsrqrqpponn                                                                                                                                                                                            񲳲򾽽 󾽾 򬭬񬭭    񫬬 󱲲 󬭬  𩨨     򨩨   𩪩  󦧦       򢡡   񙚙󞟞         򙗗 쒓𒓒쓒 򑒑 􊉊  򎏏   󏐏􎏎񊋋􎏎 󎏎                                                                                       󆇆    􈇇          󇈈        􆇆           󆇇󇈇                                                                                                                                         񄃄􃄃  򃄃􃄃      򄅅     񃄃       ꃄ     󄃃 􃄄   턅    򄅆 󄅅                                                                                                                                                  􁂂        򁂂         񁂂   􀁀            􂃃􁂂   􂃃      􂃂                                                                                                                                                                                                                                                                 ~~~~~~~~ ~~~~~~~~~~ ~ ~~~ ~}~~~~~~~~ ~}~~~~~~~~~~~~~~~~~~~~~ ~}~~~~~~ ~~~~~~~~~~~~~ ~}~~ ~}~  ~~~~~~} ~~~~~~~}~~~~~~ ~ ~~~~~~~~~~} ~~~~~ ~ ~~~~~~}~} ~~~~~~~~~~~~~~~ ~ ~~~ ~ ~~~~~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~ ~ ~~~~~~ ~}~~~ ~~~~~~}~}~~~~~~~~~~~~}~~~~~~~ ~~~~~ ~ ~~~~~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~} ~~~~~~~}~~  ~~~ ~ ~~~~~~ ~ ~~~~~~~}~~~~~~~~~~~~~~~~~}  ~~~~~~ ~ ~~~~~~~ ~~~~  ~~~~~~~  ~~~~~~~~~  ~~ ~~~~~~~ ~~~~~} ~~~~~~~~} ~~~~~~~~~}~~ ~~ ~ ~~~~ ~ ~~~~~~} ~~~~ ~ ~~~~~~}~~~~~~}~~~~~~~~~}~~~~~~}~~~~~~~~~} ~~~~~~~~~ ~~~~~~~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    쭬짨󩨩 󫪪 﨧 󮭮 򬫬򬫬 㴳𵴴 򯮮             ϶϶ζ϶ϵ϶϶϶Ϸ϶϶ϷϷзззϷзѷѷѷѸѷѸѸѸѸѸѸҹҸѸѸҹҹҸҹ54343343333332112112011111000//00.///../..-..-.,,,,,---,,,+,+,*+mnnopnmnoopqnnopqmnnonoopqnopmnonoopoppmnonoopoppqnnonoopqqmmnnonoppqnmnnoopqpmnopqnopqmnnopqnnopqmnnopqnopqnmnnopqrmnonoopoppqqnnopqmnnoopqmnnopoppqrmnnonoppqnopqrmnnoopqrmmnnoopoppqrqnnopoppqqrmnnopprqnnoppqrqmnnopoppqqrmnnopqpqqrnnopqrmnnopoppqqrnnopoppqrmnnopoppqrnmnoopqrmoqpqqrrmnnoopqrnopqrqrrnnopqqrmnnoopqrnonoppqrmnnopqqrsnnopopqqrsnnoppqpqqrqrsnmnonoppqrsnmoopqpqqrrsnopoppqqrsrmmnnooppqpqqrssmmnnoopqrssnnopqrsnnopqrsmnnoopqrsnopqqrsmnoopqqrsrnnopoppqrrsmnopqrsmmnonooppqrsnonooppqrsnmnoopqrsmnonoopqppqrrsmnoopqrsnnpooppqpqqrssmnnopqrsrssnnopqpqqrs553344433322232222211111101//0//0./////......-.,-,-,,--++,++++**                         qrqrrstuvwxyzz {|{|{{|{{|{||qpqrqrrssttuttuvvwwxyxyyz{z{{|{||{||{||{||pqqrrstuvuvvwxwxxyz{z{{|{{|{{|{|{||pqqrrststutuuvwvwwxyz{{|{||{||{| |qrsstutuuvwvvwwxyz {|{{|{||{|{||qrstutuuvwxyz{z{z{{|{{|{{|{| |prqrsstuvwxyxyyzz {|{|{||{|{||qrstuttuuvvwxyz {|{|{||{|qrrstutuuvvwvwxxyz{z{{|{{|{||qrsstuvwxyz{z{{|{{||{|{|{|{|{||}||rrstuuvwxyyz{z{{|{{|{{||{||{||qrstuvuvvwwxyzyz{ {|{|{|{||{|{||rqrrstuvwxyz {|{{|{|{|{||rstuvwxyz{z{{|{|{|{{|{{||qrrstuvwxyxyzyzz{{|{{|{||{|{||}qrrstuvwxyz{|{|{||{|{{|{{|{||}|rrststtuvwxxyzyy{zz{z{ {|{{|{|}|rrstuvwxxyz{z{z{{|{{|{|{|{||}qrrsstuvwwxyxyzz{z{ {|{||qrrsrssttuvuvvwwxyz {|{|{|{||{{||{||}|rrssrssttuvwxyzyzz{ {|{|{ |rqrsrsttutuuvwxyz{{|{{|{| |rststtuvvxwxxyzz {|{|{{|{||{||}|rrstuvuvvwvwxxyzy{z{{z{{|{|{{|{{|{||}|}qrsstuvwvwwxxyz{z{|{{||{| |}rrsstuvuvwvwwxxyz{z{z{ {|{|{||{||}|}rrsstuvwxyxyzz{|{{|{||{||}rstuuvwxyz {|{|{||{|{| |}rrsttuvwwxyz{|{|{{|{{|{{||{| |rstuvwxyz{z{{|{{||{{||{|{| |rstuvwxyz{z{{|{|{|{||}||rsttuvwvvwwxxyyz {|{{|{{ |{|}}||rststtuvwxyz {|{||{|{{| |}rsstuvwxyxyyzz{|{|{{|{{||{||{||rstuvwxxyz {|{|{{|{|{|{||}|rrssttuutuvuvvwwxyyz{|{|{||{|{||{| |rsstuuvwxyz{z{{|{|{| |rsststtuuvuvvwxwxxyyzyz{{z{ {|{||{||}||}|sstuvwvwwxwxxyz{z{{|{||{||{| |}||rrststtuuvwxyzyzz{ {|{|{{||{||{||{||rsstuvuvwvwwxwxxyyz{z{{|{{||{||{|{||}rsstuvwxyxxyyzz{ {|{|{| |stuvuvvwxxyz{|{|{|{||{|}|ststtuvvwxyz{|{{|{{|{{||{{||{||}||sstuvwxwwxyyz{z{{|{|{|{|{|{| |}||rststtuvwvwxwxyxyzz{|{{|{||{|{||}|sstutvuvvwxyz {|{{|{|{|{||{| |}rsttuvwxyz{z{{|{|{{|{| |}||}|sststtuuvuvvwxxyz {|{|{|{ |}|rsttutuuvvwxyz{z{{|{{||{{||{{||{||stuvwxyz{z{{|{{|{||{|}||ststtuvwxyxyyzz{|{{|{{||{|{|}|}|}|ststtuuvuvvwwxyzyz{{|{{||{||{||}|ssttuvwxyxyyz {|{|{||}|}}stuvwxwxxyzz{|{{||{|{ |}||sstuvwxyyz{|{{|{{|{||}|sstutuuvwxyz{z{{|{|{|{{ |}|stuuvwxyz{|{|{|{{|{|{||}||}||}ssttuvvwxxyz{|{||{{ |}|}||tuvuwvwwxyz {|{|{|{||{||}||}|ssttuuvwvwwxxyz {|{{|}|}||stuvwxyxyyzz{ {|{|{||}||}||}}ssttuuvvuwwxyz{z{ {|{{|{||{||}||}|}||tuvwxyz{z{z{{|{|{{|{|{{|}||                                                                                                                                                                                                                                                                                                                                                                                                                                   |}|}||}|}||}|} }~}~}~~~~~~|}||}||}||}}|}}~}~}}~~~~~~~~|}||}||}}|}}~}~}~}}~~~~~}||}}|}}|}|} }~}~~}~~} ~~~~}||}||}|} }~}}~}~~}~}~~}~~~~|}|}}|}|}}~}~}}~}~~}}~~}~~~~~~||}|}|}}|}}|}}~}~}~~~~~~|}||}|}~}~}}~}~}~~}~~~~|}||}}|}|}|}}|}~~}~}~}~}~}}~~}~~}}~ ~~~~~||}||}}|}}~}}~}~~~|}||}}|}}|}}~}}~}~~~~~~|}|}|}||}||}}|}}~}~}~~}~~~~~~~||}||}}|} }~}}~~}~~~~~}||}| }~}}~}}~}~~}~~~~~~~||}|}}|}|}}~}~~}}~}~}~ ~~~~~~}||}}|}|}}~}~}}~}~ ~~~~~|}}||}|}}|}}|}}~}}~}~~}~ ~~~~|}||}|}||} }~}}~}}~~} ~~|}~}~}~~}~~~~~|}||}|}}|}}~}~ ~~~~~~|}}||}||}|}}|} }~}}~}~ ~~~~~~~|}||}}| }~}~}~}~}~ ~~~~~||}|}}|}}~}~~}}~}~~}~}~~}~~~~~|}|}}||}|}}|}}~}}~}}~}~~~~~~||}||}|} }~}~} ~~~}|}||}|}}|}}|}}~}~~}~}~~}~}~ ~~~~||}|}}|} }~}~}}~}~~~~~~|}}|}}|}}|}|}|}}~}~}}~}~~}~}~~~~~~~~||}||}|}}|}}~}}~}} ~~~~~~~}|}}| }~}~}}~}~~}~~}~~~~~|}}|}||} }~}}~~~~~~~||}||}|} }~}~}}~}~~~~~||}|}}|}|}~}}~}~}~~}~ ~~~~||}|}}~}~}~}}~~~~~~~~~~|}|}|}}|}|}}~}}~}~}~}~~~}||}|}|} }~}}~}~~~~~~~~|}||}|}~}}~}~ ~~~~~~~~|}}|}}|}}|}}~}~~}~}~}~~}~ ~~|}|}|}}|}|} }~}~}~~}~~~~~}|}| }~}~~}}~}}~~~~~~~~~~}|}}|}||}}|}}~}}~}~~~~}||}||}}|}}~}~}}~~}~ ~~~~~}||}||}|}}~}}~}~~}~~~~~~~~~|}||}||}}~}}~}~~~~~~~|}}|}||}}~}~}~}}~}~}~~~~~}|}}|}|}|}|}|}}~}~}~~}}~}~}}~ ~~~~| }~}}~}}~}~}~ ~~~~~}|}}|} }~}~}}~}~~~~~~~~~|}|}}~}~}~~}~}}~ ~~~~~}|}}|}}~}~}}~}}~}~~~~~~~~}||}|}}|}}~}}~}~}~~}~~}} ~~~~}|}|}}|}}|}}~}}~}}~}~}~~~~~~|}}|} }~}~}}~}}~}~}~ ~~~~~}|}|}|}|}}|}}~}}~~}~~}~~~~~|}|}||}}~}~}}~~}|}|}|} }~}}~}~~~~~|}|}}|}}~}~}~}~~}~~~~~~~~}}||}}|} }~}~}~ ~~~~~ }|}|} }~}}~}~~}~~~~~~~|}|}}~}}~}}~}}~}~~~~~~~~ |}|} }~}~}~ ~}~~~~~~~~ |}|}}~}}~}~~}}~}}~~~~~~~ }||}|}||}}|}}~}}~}~}~ ~~~~ |}|| }~}}~}~}~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ~~ ~    ~ ~ ~  ~  ~  ~ ~~  ~  ~ ~  ~    ~ 􁀁            􁀀           󂁁    􀁁     񁀀                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      􄃄󃄁􃂃   􃂃  􄃃                 򃂃    򃄃      򂃂    􃂂  􃂃                                                                                                              􅄄           󆇅    􆅅    􇆆       􆇇   􆅆                  򆅆      򈄅                                                                   #  ! $  !     ! % " $ % # $ # &  % ! " '&" !*  " ( %'     󇈈          􉈈     􈇇          򈇈      󈇈 􈇈      󈇈                  # " #  ! "" ! % " ('$ '# %$  "' %$ $ !$! ) &    􏎎򒑑  󏐐       󑐑       󙘙     󖕖 񛚚    󣢣   񜝝  񧨨    򪩩     拉 𱰱         𲱱        󮭮 ²²³²²²óó²ó񵶵ijijijóIJ򷶷ųųųų ųƳƳƳǴ ǴǴȴȴȳɳɴɴ             mnnopoppqpqqrrstuvwnnopqrstutuuvwvwwmnnopqrstuvwnnopqrstuvuvwvwwmnnopoppqqpqqrrstuuvwxmnnoopqrqqrrstuvwxnmnnopqrqrrsstuvuuvvwwxnopqqpqqrsrsstuvuvvwwxwxnnonopoppqrrstuvwvwwxnnopqrsrsstuuvwxwxxmnnopqrststutuuvwxynnopqrsrsttuvwxynnopqrsrssttuvwwvxwxxyynnopqrstuvuvvwxxnmnnopqrsrsstuvwxyxymnnopqrsrststtuuvwxynnopqpqqrrststtuuvwvwwxymnnonoppoppqqrststtuuvuvvwwxwxxymnoopoopqqrstuvwxyzynnopqrsttsttutuvvwxymnnopqrqrrsstuvwxyxyymnnoopqrstuvwxyzznmnnopqrrststtuvwvwxxynnopqrstuvuvvwxyxyyznopqrqqrsstuvwxyzyz{nmnnoppqrstutuuvvwxyzyzznopqpqrrstuvwxwwxxyyzmmnopooppqrstutvvwxyzyz{zmnnopqrstuvuvvwwxyz{mnnopqpqqrrststtuuvwvvwwxxyz{mnnopqpqrrstuvuvvwwxyz{nnopqrstuvwxyz{nnopqrssrsttuvwxyz{z{{mnnonooppqpqqrqsrsstuuvwxyzz{nnopqrsrssttuvwxyz{mnnopqrstuvwxwxxyyz{nnopqrqrrsstuvwxyxyyz{nonoopqrststtuuvuvvwxxyz{nnopoppqrstuttuvvwxwwxxyz{z{{mnnopqrsuvwxyz{z{{nmnnoopqpqrrsstuvwxwxxyzyzz{{mnonooppqrsrssttuvuvvwxwxyyz{nnopqqrststtuuvwxxyz{mnonoopqrstuuvwxyz{nnopqrqrrsrsstuvwyxxyzyzz{z{{nopqrsrsstuvwxyz{nmnoopqrqrrststtuvwxyz{z{{mnoopqpqqrsststtuuvuvwwxyz{mnpqrstuvwxyz{z{{nmnoopqrqrrsrssttuuvwxyzzyzz{nnonooppqpqqrrsstuvwxyz{z{{nopqpqqrrstuvwxwwxxyyzyzz{ {nopqrsrrsstuvwxyxxzyzz{z{{nmnnooppqrssrssttuvwxyz{z{{|{nmnnoopqrstutuuvuvvwwxyz {nnopqrsrssttutuuvwvwxxyxyyzz{|{mnoonoppqrqrsrsttutuvuvwwvwxxyz {|nnopqprqrrsstuvwxyz{z{{|{{|{{nopqrqrrstuvwxyyz {mnnopqrqrrsrsstuutuuvvwxwxxyyz{z{{mnnopqrstuvuvvwxyxyyzz{{|{{|nnopqrstuvuvvwxyxyyz {|nnonooppqrsstuvwxyz {|{{mnnopqrstuvvwxyz {|{{||                                                                           wxyz {|{{|{{|{|{|{{||}||}|}||}}||wxxyz{z{ {|{||{|{||}|}||}|}}wxxyxyzz{z{{|{||{{||{||{{||{||}||}|}|wxxyzyzz{{|{{|}||}||}}|}}|xxyyz {|{{|{|{{|}||}|}||}wxyxyyzz{|{{|{|{{|{ |}||}||}}|}xyxyyz{z{{|{|{||{|{|}|}|}|}}|}}xyzyyz{ {|{{|{{|{{||{||{||}||}|}}||}}|}}xyyz{|{{|{| |}|}|}||}}xyyzyzz{{|{||{||}||}||}|}}|}|yyzyz{{z{{|{||{{|{|{{| |}||}||}||}|}||}}yz {|{|{||{||}|}| }xyyzz {|{{|{||}||}||}|}}|}}|}}yz {|{{|{|{|{{|{||}|}||}||}|}}||}}z{z{{|{{|{|{{||{||}||}||}}|}}|}||}yz{z{{|{{|{||{|{{|{|{| |}|}|}||}|} }z{|{{|{{|{||{||}|}|}}||}}z {|{{|{|{{ |}|}||}|}|}}~}}yzz{z{{|{||{||{|{|}||}|}}||}|}|}}|} }z{z{{|{{|{{|{{|{||{||{||}||}|}|| }yzz{ {|{{|}||}}|}|}|}}z{|{|{{|{{||{|}||}|}|}}|}|}}|}}~}}zz{ {|{|{{|{| |}||}||}|}}z{{zz{|{{|{{|{||{{| |}|}|}}|}}~}~}z{{z{{|{{|{{||{|{|{||}|}}|}|}||}}|} }{z{{|{{||{{|{||{|{||}|}|}}|}}|}}|}}~{{|{|{|{{|{|{{|{{|{||{||}| }~}~{{|{{|{{|{{||{||{|}||}}|}|}}~ {|{{|{||{|{|{{| |}|}|}}|}}|}~}~{{|{{|{||{||{||{||}|}||}|}|}}{|{|{||{{|{|{| |}|}}|}}~}~}{{|{{|{|{{| |}|}}|}}~}} {|{||{||{{|{||}||}||}|} }~}}~}~z{{|{|{{|{||{||}|}|}||}}|}}~}~}{{|{{|{|{{||{||}||}|} }~}}~}{{|{{|{{||{||{|{||}||}|| }~}}~{{|{{|{{|{| |}|}}||}|}}~}} {|{||{|{| |}||}||}}|}}~}}~}}~{|{||{{||{||{{||}||}|}||}||}|} }~}~}}~}{{|{||{{|{||{||}||}|}}|}||}}|}}~}}~{||{{|{|{|{| |}|}|}||}|}|} }~}~}~{{|{{|{|{||{||}|}}||} }~}}~}}~}{{|{|{{|{{||{|{| |}|}}|}}| }~}}~}~}{{|{|{||{|{|{||}||}|}|}|}}~}~}}~}}{|{|{{|{{| |}|}|}}|}}|}}~}}~}}~}}~}{{|{|{|}||}|}|}}~}}~~}{|{{|{||{||{| |}|}}|}}|} }~}~}}~|{{|{||{{| |}|}|}|}|}}|}}|}}~}~|{{|{{|{| |}||}||}}|}}|} }~}}~~}~}}~}~|{{|{{|{||{|{||}|}|}|}|}||}~}~~}~{|{{|{||{|{| |}||}|}|}|} }~}}~}~~{|{{|{{|{||}||}||}|} }~}~~}~~{|{|{||{| |}|}|}}|} }~}~}}~}~~{||{|{||{||{{||}|}}|}}|}}~}~}~}}~}~{{|{{|{||{||}||}||}|}}~}~}~~{|{||{{||{||}|}|}}~}~{|{|}|}|}}|}~}}~}~~}}~}~~{|{{|{|{||}||}|}|}|}|| }~}}~}~~}~~}~{{|{{|{||{||}|}|}|}||}}~}}~}~~{|{|{||}|}}|}|}}~}~}~~}}~}~~}~}~~{|{||{||{|{||{| |}|}|}}|}}~}}~}~}~~{|{{|{|{{| |}|}|}}~}}~}~~}~~}}~~}~~|{{|{|{|{||}|}||}|}}~}}~}~}}~}~~{||{|{| |}|}|}}| }~}~~}}~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             }|} }~}~~~~~~~ }~}}~}~}~}~~}~ ~~~~~}~}~}}~~}~ ~~~~~ }~}}~}}~~}~~}~}~~~~~~~~~~~ }~}~}~}}~ ~~~~~~~ }}~}~}~}~~}}~ ~~~~} }~}~}~}~~}~~~~~~|}}~}~~}~}~~}~~}~~~ }~}~~}~~}~ ~~~~} }~}}~}~}~}} ~~~~~~~ }~}~~}~~}~~~~~~~~}}~}}~}~}~}~~~~~~~~~~~ }}~}}~~}~~}~~}~~~~~~~~}~}}~}~}~}~}~}~~~~~~~~}~}~}~}}~}~}~~}~~}~ ~~~~}~}~}}~~}~~~~~~~~~ }}~}}~}~}} ~~~~~~~~ }~}~~}~}~}~~~~~~~~~}~}}~~}~}~~~~~~~~ ~}~}~ ~~~~~~}}~}~}~}}~~}~}}~~~~~}}~~}~}}~~}~}~ ~~~~}}~}}~~}~}}~~~~~~~}}~}~~}~}}~~}~~~~~~~~~~~~}~}}~~}~~}~ ~~}~}}~}}~}}~~}}~~~~~~~~}~}~~}~}~~~~~~~~ ~}}~}}~}~~~~~~~~ }~}~~} ~~~~~~~~~~}}~~}~~}~ ~~~~}~}~}~~}~~~~~~ }~} ~~~~~~~~~~}~}}~}~ ~~~}~}~ ~~~~~ ~} ~~~~~~~~ ~~}}~}~~~~~~}~}~ ~~~~~~}~}~~}~~~~~~~~~}~}~ ~~~~ ~}~}~~~~~}~}~~~~~~~~~~}~~~~ ~~~~~~~  ~~~~~~~~}~ ~~~~ ~~~~~~~ ~~~~~~~~ }~ ~~~~~ ~}~~~~~~ ~ ~~~~~~ ~~~~~~~}~ ~~~~~~~}~ ~~~~~~~~~~~~~~~~~~~~~~~ } ~~~~  ~~~~~~~ ~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             􂁂       􁂂          􂁂  񂁁                 񃂂 󂁁            󃂃                                                                                                                                                                                                                                                                                                                                                                                                                                             脃󃄃 򄃃󃂂   򃂂            򄅄 󄃃   텄  򅄅          򄅄                     򄃄                                                                                                                  􄃃   򅄄   憅󅄅 텄  򅄄       􇆅     􇆆    󆅆 󆅆񆅆  󇆇         󇆇   􇆇󆅆 򈇈   񈇇                                                                                  $! )&,*-*6420   󇆆 󇆇     󆇇 ꆇ  򆇇           󈇈              򉈉                     !  %% &$)6/-.,1     .+      *p􇆆 􇆆퇆􇆇  . 툇        󈉈 􊉊  򉊊/  򊋊        񍌍             &       .9>                                        ! !#"'%-,/,.),                  󅆆 򆇆         􇈈        􉊊                                 ! " "(%%$++'),-,                                        􂃂   򂁂                             􀁀                                                                                                                                                                                                                                                                                                                             ~~~~}~}~~}~} }|}||~~~~~~}~~}|}}|}}|~~ ~}~~}~~}~}}~~}}|}}|}|~~ ~}~~}}~ }|}}| ~~~~~~}~~}~}~~}~} }|}|}||~~~~~}~~}~}}~}}|}||}~~~ ~}~}|}|} ~~~}~}}~~}~}~}}~}}|}|}}||}|}~~~ ~}~}}|}|}~ ~}~}}~}}|}||}||} ~~~}~}}|}|~~~~~~}~}~}~~} }|}||~ ~}~~}~}}~~}|}}|| ~~~}~}~}}~} }|}|}||}~~~ ~}~}}~}|}|}}|}|}||~ ~}~}~}}|}}|}|}|| ~~~~}~}~~}~~}}|}}|}|}||~~~}~}}~}}~} }|}| ~~~ ~}~}}|}}||~~~~~~}~~}~~}~~} }|}}||}|~~~}~}~~}}~} }|}|}} ~~~}~~ }|}}|}}|}||}|~~~~~}~}~}~~} }|}~~~~}~}}|}|}|~}~}}|}| ~~~~}~~}~~}~}}|}|}|}|}||~~~~~~~}~}~~} }|}|}||~~~~~}~} }|}|}|| ~~~~ }|}}|}|}||}}||~~~~~~~}~}}|}|}}|}|~~~ ~}~} }|}}|~~~}~~}~ }|}||}|| ~~~~}~~}~}}~} }|}||}||~~~}~}~}~}}|}}|}}||}||~~~~}~}~}}~}}|}}||}}||~~ ~}~}~}}|}||}|}||~~~ ~}~}}~}}|}|}|}||~ ~}~~}~}}~}}|}}|}||~~~ ~}~~}~}}|}}|}|}}|}}||~~~~}~}}~}}|}}|}}|}~~~~~~~~}~~}~~}~~} }|}|~~~}~}}~}}~}}|}}||}|}|| ~~~~~}~}}~} }|}||~~~~~~~~}~~} }|}|}|}||}|| ~~~}~~}~}}|}}|}||~~~}~}~} }|}|}||~~~~~~~}~~}~}}|}}|}|| ~~}~~}~~}}~} }|}||}||~~~~~ ~}~}}|}||}||}||~~~~~~}~~}~}~}~}}|}|}|}|| ~~~~}~}~}}|}|~~ ~}~~}}~ }|}| |{~}~} }|}|}||~~~~}~}}~}}|}|}}| |~~~~~~}~~}~~}~~}~}}|}|}| ~~~~~}~~}}~}|}}|}}|}|| ~~~~ }~}}|}}|}|}||~~~~}~}~}}|}||}}||}|}||{~~~~ ~}~}}~}}|}|}|}||{| ~~~}~~}~} }|}||~~~~}~}~~}~~}}~}}|}}||}| |{~~~~~}~~}~}}|}}|}}||}|}|}||~~ ~}~}}~}}|}}||}|}|}||{|~~~~~~}~}~}}~}}|}||}|}||{|{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }||{|{|{{|{{zyxwvutsrqpon|{||{|{{|{{zyxwvuutstssrrqqpqpponnmn||}||{|{||{|{ {zyxwvutsrqpopoonn|}||{|{||{|{|{{yxwvwvvuttsrsrqrqqppopoonn}|}||{||{{|{|{{zyxwwvutsrqpon|}}||{||{ {zyxwvwvvuttsrqonm|{|{||{{|{ {zyxwvwvvutssrqponm|}}||{|{ {zyxxwvutsrqponm||{|{|{|{{zyxxwvututtsrqrqpqpponnm|}||{||{||{|{{|{{z{yzyxxwvutsrqponm| |{|{{|{{zyxwvuvuutssrqpqpopoonnm||{||{||{|{{|{{zyyxwvutsrqqponm||{|{|{{z{zzyzyyxxwwvtutssrrqpon||{|{{|{|{|{{zyxwxwvvututtsrqqpon||{||{|{{|{{zyxyxxwwvututtrsrrqpponm||}||{|{||{|{ {zyxwvuvuutssrqponnm||{||{| {zyyxwwvusttsrrqppon| |{|{{||{z{zzyzxyxxwvvutsrqqpon|}||{||{|{{zxwvutsrqpopoon|{|{{|{||{|{{zyxwvutustsrrqpon||}||{|{||{|{{zyxwvutsrqpon |{|{|{{|{zyxwvuvuttsrrqpon||{||{{|{ {zxyxxwwvutssrqpoonm||{||{|{||{|{{|{zyyxwvututssrrqpqpoponn|}||{|{{|{{|{zyxwwvvutsrqpqpoon||{||{|{|{|{{zyxwvuutsrqrqqpoonm||{||{|{{|{|{{zyyxwvvutsrsrrqqpqpoonn||{|{||{{| {zyxwvuvuttsrsrrqpponm|}||{||{{|{||{{zyyxwvuttsrqpon||{|{zyzzxxwxwvvutsrsrrqqponmn||{|{|{|{{zyyxyxxwwvvutssrqppon|{|{{| {zyxwvuvuutsrsrrqppon||{|{||{|{{zyxwvutsrqponnm|{||{||{{||{|{{zyxwvuvuttssrsrrqqpopoonn| |{|{{|{{zyxwvutstssrqponm||{|{{|{{zyxwxvvutsrqpononn||{||{|{{zyxyxwwvuvuttsrqqrqppoponn||{|{||{|{ {zyxwvuutsrsrrqqponmm||{||{{|{zyxwvutssrqponm|{||{|{{|{|{{|{{z{zyyxwwvutsrqqpon||{||{|{{|{{z{{zzyxywwvutstsrrqpononm||{{|{|{{|{ {zyxwvutsrqqponm||{|{|{{z{yyxwvututssrssqqponmn||{|{|{{|{{z{{zzyxxwvvutsrqpopoon||{||{|{|{{zyxwvutsrrqpon|{||{|{{|{{zyxwvutsrqpononmn|{||{{|{|{|{{zyzyxxwvutsrqponmn{|{|{{|{{|{{zyxwvutsrsrqqpon||{|{{|{|{{z{{zzyyxwvwvuutsrqrqppoonm||{|{{|{|{{zyxwvutssrqpqpoonm||{||{ {zyxwvutsrqpopoon||{|{|{|{{zyxwvuvuuttssrqrqppon{|{{|| {zyxxwvwvvuutsrqponm|{|{|{||{zyxwvutsrqponm|{|{|{{zyxwvwvvuutsrsrqqppon||{||{|{z{{zzyyxxwvuvuutssrqpqpoonm||{|{{zyyxwwvutsrpon{||{|{{zyxwvuutstssrrqqponm||{||{{||{|{{zywxwwvutsrqppoon|{|{{z{zzyxyxwwvututtsrsrqqpopoonn{{|{|{{zyxwvutsrqpon{{|{zyxxwvutsrqpon{{|{{z{zyyxwvutsrsrrqqpponm|{||{z{{yxwvuutsrqrqqppoononmn                                                                                                                                                                                                         ﴳ쵴 󼽽󾿾 󳲳            󫬫    󨧧 𨩨򨩨 𢣢󧨧 󢡪 󧨨򧨨򧨨 򡢡  򛚚򝞞   򙚚򙚚󙚚   򙚙  󞟟    񑒑 򑒒   򖗖󑒑򑒑𑙘    񐘘ꌍ󉊉      􌍌쏐  󏐏 􏐏                                                                           򆇇      􇈈           󆇇          򆇆  􆇆       􆇇      󇈈                                                                                                          񃄄      􃄃  򅆅􄅄     򄆅  󃄄    􆅅                􄅄     􄅄  󃄃 􆅆                                                                                                                                              򂃃         񂃃    􁂁   񂃃                      򀁁 􁂁  󃂂򁀁                                                                                                                                                                                                                                                                                                                       ~~~~~}~~~~~ ~}~~~~~ ~ ~~~ ~ ~~~~~~~~}~~~~~~ ~~~ ~~~~~~ ~~~~ ~~~~~~~~~~}~~ ~~~~ ~ ~~~~~~~~~~~~~}~~ ~~~~~ ~ ~~~~ ~ ~~~ ~~~~ ~}~~~~}~}}~ ~~~~~}~~}~ ~~~~~~~~~}~}~~~~~~~~~~~}  ~~~~}~}~~~~~~~}~}~~~ ~}~~ ~~~~~~~}~~~~~~~ ~}~} ~~~~~}~~~~ ~}~~~~~~ ~} ~~~~~}~ ~~~~~~ ~ ~ ~}~~  ~~~~~~~~~~}~~ ~~~~~  ~~~~~~~~~~~}  ~ ~} ~~~~~~ ~}~~~~~~~ ~~~~~~ ~}~~~~ ~~~~~~~~~~~}~~~~~~~~}~}~~~ ~}~~ ~~~~~~}~~~~~~~~}~} ~~~~~}~~}~  ~~~}~~}~~~~~~~~ ~~~~~~~~~}~~~~~~~~}~}~~}~~ ~~~~~~~~~}~~~~~~~~ ~}~~}~} ~~~~~~~~~ ~}~~~~~~~~~}~}~~} ~~~~ ~~~~~~~~~ ~~~~~~~~~}~} ~~~~~~~ ~~~~~~~ ~  ~~~~~~}~} ~~~~ ~} ~~~~~~~~}~~}~~~~~~~~ ~}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                󨩩 򭬭              ҹҹҹӹӺӺӹӹӹӹӺӺӺӹӺӺӺӺӻӻԻԻԻԻӺӺԻԺԺԻԻԻԻԻջԻ+*+****)))****))))()))))('((''(('&'&'''&''&&%%&%%&%%&%%%%$%$%$%$nmnnooppqrqrrsstmnnonoppqrssmnnoppqrsrrssnmnoopqrstnnopqrsstnnopqrstmnopoppqrstmmnnoopqpqqrrsnopqrstmnnoopqrsmnopqrstsnmnoopqrqrrssttnopqrsrsttmnnoopqrstnnonoopqrsrssnmmnoopqrstnmnnopqrstsmnopqrstsmnnoopqrstmnnopoppqrsrssttmnnopqrsststnnopqpqqrrsrsstnnopqrstmnoopqrsrtsstmnnopqrqrsstmnnoopqrsstumnonoppqrstnopqrsrsttnnopqrststunmnnoppqrsrssttunnoopqpqqrrstunmnonopoppqqrsstnoppqrstnnopqrstmnnonoopoppqrsrssttumnonoopqrstmnonoopqpqqrqrsrststtnnopoppqrqrrstunmnoopqrstnnopqpqqrrstunnopqrsstunnonnoopqrsrrttmnnopqrstutmmnnoopqrstumnopqrtsttuumnonoppqrqrrsttutmmnoopqpqqrsstummnnopqpqrrsrsstumnnoopqrqsrsstumnnopoppqrstutunnopqrsrsstuumnnoopqrstumnnoopqrstunnopqpqqrststtuummnnopqrstuttumnnopqrqrrststuumnopqpqqrststtunopoopqqrststuummnnoopqrqrrststuunopqrqqrrsststtuvmnopqrsrsststtumnnopqrststtunmnnooppqrststtuvnnopqrsttu+**+*+))*))))*)()(()(())((''(''(''&'&&''&''&%&&%%&&%&&%%%$%$%$%$                                tuvwxyzyzz{{|{|{{|{|{||}|}||ttutuuvvwxwxxyyz {|{{|{{|{||{||}|}sttuuvuvvwxwxxyyz {|{|}tuvwvwwxxyz{z{{|{{|{|{||{||}ttuvwxyz{z{ {|{|{| |}|tuvwvwwxxyz{z{{z{{|{||{|{| |}||}|}ttuvwxwwxyyz{|{|{|{| |}||tutuuvvwvxxyz{z{ {|{|{{|{|{||}|sttuvwvwwxyz{|{|{{|{{|{| |}|}}|ttuuvuvvwxyzyzz {|{||{|{||{||sutuuvwxzyzz{z{{|{|{|{|{||}||}|}|}}|tuutuuvvwxyz{z{{|{||{||{ |}|}|}}|}ttuuvwxyzyzz{{|{{|{|{||{||}||}|ttuvvwvwwxyz{z{{|{{|{{|{{|{ |}|tuuvwxyz {|{||{|{||}|}}||}ttuuvvwxyzyzz{{|{{|{|{|{||}|tuuvwxwxxyz {|{{||{|{||{||{||}||}|}ttuuvwxyzyzz{z{{|{||{{||{|{||}tutuvvwxyz {|{{|{||{||{{| |}|ttuuvuvvwwxyxyzzyzz{{|{|{|{{|{||{| |}||}tuuvwxyz{|{{||{||{|{||{||}|}tuuvwxwxxyyz{|{|{|{||{{|}||}||}|}tuuvuvvwwxyz{z{{|{{|{{|{||{||}||}||}||}}ttuuvvwxwxxyyz{|{|{|{{|{{||{|{| |}||}||}uuvwxyz {|{|{||{||}||}|}uvwvwwxyz {|{||{ |}|}|}}tuuvwxxyxyyzyzz{{|{||{||{{||{||}|}}||}||}|tuuvwxyzyz{ {|{{|{|{{|{{|}|tuuvvwxyz {|{|{||{||}||}uvuvwvwwxyzyzz{{|{{|{|{||}|}}|tuuvuwwxyzyyz{ {|{{|{ |}||}||}||uvwxyz{|{||{{|{{||{||{||}|}||}||}tuuvuwwxyz{z{{|{|{||{||{||{||}|}|}||}||}tuvvwxyz {|{||{{|{| |}||}||}uuvwxyz {|{{|{{|{{||{| |}|}}||}uuvuvwwxyz{{z{|{{|{|{{||{||}||}||}uvuvvwwxxwxyyz {|{{|{||{|{||}||}|}}uuvvwxyxyyzz{|{|{||{||{{|{||}|}|}}|}|}tvvwxyz {|{||{||{||}|}|}||}uvuvvwxyz{|{{|{||{||{||}||}|}}|}}uvwvwwxyz {|{{|{|}|}||}|}}uvwvwxwxyyz{|{{||{||{||}|}}|}|uuvwxwxxyyz{z{z{{|{|{||{||{||}||}uvvwvwwxwxxyzyzz{ {|{|{{||{{||{||}||}||}|}}|}uuvvwwvwxxyxyyzz{z{z{{|{{|{|{||{||{||}||}}|}|}|}}uvwxyz{zz{{|{{|{{|{{|{|}|}uuvvwvwwxyz {|{|{||{||}||}||}}|}|}|}}uuvvwxyz{|{|{||{||{|{| |}|}|}uvvwxyz{z{{|{{|{|{||}|}}||}uvvwxyxyyzz{|{{|{{|{|{||{||}|}}|}|}}|vvwxyz{z{{|{|{{|{||{{|{| |}||}||}uvvwxxyz{z{z{{|{{|{|{|{|{|{||}|}}|}|}|}uvuvwwxyz {|{{|{||{| |}||}||}||uvwxxyxyyzz {|{|{{|{| |}|}}||}|}|}}uvwxyz{ {|{|{{|{|{| |}|}||}}uvwxyz{z{{|{||{||{{||}|}uvvwxyyzyzz{{z{ {|{|{{||}||}||}uvvwxyxzz{z{z{{|{||{{||{||{||}||}||}|}}uvwwxyz {|{{|{| |}||}|}}|}vvwxyz {|{||{||{{||{|{}||}|}}|}}uvvwwxyxyzyzz{|{||{||}||}|}||}||}||}}vuvvwwxyzyz{{|{{||{|{{|{||{|{||{||}||}}||}||}|}}vwxwxxyyz {|{{|{| |}||}|}}|}||}|}|vvwvwwxyxyzz {|{{|{|{||}|                                                                                                                                                                                                                                                                                                                                                                                                                                                    }|} }~}}~}~}~ ~~~~|}}||}~}~}~~}}~~}~~~~~~ }|}}~}}~}~}}~ ~~~~~~|}|}|}|}}~}} ~~~~~~~~~~|}}|}|} }~}}~}~~}~ ~~~~ }|}~}~~}}~}}~~~~~~}|}|}}|}}~}}~}~}}~}~~~~~~~}|}|}}|} }~}~}}~~}}~~~~ }|}}|}~}~~~~~~}}|}|}}~}~~}}~}~~}~}~ ~~ }|| }~}}~~}~}~~}~~~~~~~|}|}}~}}~}~~}~~}}~~~~~~~}|}|}}|}}|}}~}~~}~~}~}~~}~~~~~~~~~~}~}~}~}~}} ~~ |}}|}|}}~}~}}~}~}~~~~~~~~}|} }~}}~}}~}~}}~~~ }|}|} }~}}~}}~}~~~}|} }~}}~~}}~~}~}}~}~ ~~~~|} }~}}~}~}~}~~~~~ }|}}~}~}~}~~}~ ~~~~~} }~}}~} ~~~~ }~}~}}~}}~}~}~}~~}~}~ ~~~}|} }~}~~}~~}~~~~~~~~~|}}~}~}~~~~~~~~|}}|}}~}}~}~}~}~}~ ~~~~}|}|} }~}~}~ ~~~~} }~}~~}~}~}~}~ ~~~~ |}}|}}~}}~}~~}~ ~~~~~~|}|}}~}}~~}}~}~}~~}~~~~~~~|}}|}}~}~}}~}~}~~~~~~ |}}|}}~}}~}~~}~~}~ ~~~~~~|}}|}}~}~}}~}~~}}~~}~}~ ~~~~~~}| }~}~}}~~} ~~~~ || }~}}~}~}~ ~~~}}|}|}}~}~~}}~}}~}~ ~~~~~}|} }~}~~}~ ~~~~~}|}~}~}~~}~~}}~~}~ ~~~}|}}~}~~}}~}~~}~}~~~~~~~|} }~}~}~~}}~~}~}}~~~~~~~~~ |}}|}}~}~~}~}~}~~~~~~~ |}}|}}~}~}}~}~~}~~~~~~~~ }|} }~}}~~}~~}~~~~~~~~}|}}~}~~}}~}~}~~~~~ }|}}~}~}~}~ ~~~~ }~}~}~}}~~~~~~~~~~||} }~}~~}}~}~ ~~~~~ |}}|}}~}}~}}~~}~}~}~~}~~~~~~~|}}~}}~}~~}~}~~}~~~~~~|}||}~}~}~ ~~~~~~~~~}||}}~}~}}~}~}} ~~~~~~~~}}~}}~}}~}}~}~~~~~|}|}}~}~}}~}~~~~~~|} }~}}~}}~}~~~~~~~ }}|}}~}} ~}~~}~~~~~~~~~|}}~}}~}}~~}~~}~~~~~~~ }}||}}~}~~}~}~~~~~~~~ }~}}~}~}~ ~~~~~|}}~}}~}}~~}~~~~~~~~}}~}~}~~}}~}~ ~~~~|}}|} }~}}~~}~ ~~~~~ }~}~}~~}}~~}~}~ ~~~~~~~ }}~}~~}~~}|}~}}~}~}}~}~~}~ ~~~ }|}}~}}~}~}}~}}~~}~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ꂁ          􂁂 󂁂  􂁁 􁀁           󀁁򂁁               񂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               򄃃       󃂂 󄃄   􃂃          󅄅         򅄅   񃂃   􅄅        􅄅                                                                                                                􆅅      􆅆      􇆇        􇆇                  􈇇       􆅅  􆅆                  􈇇                                                           ")&)%)-%% &#'*''(&)*-)),+))3,&*''')))'+)4)), '.)0+-/ (0+0)*1/*2030- 񈇈      󍌍               􇈇  󉊊        "$"" &!") ( ( $ (*),#&$ % (% ), $ $ -)'( '+(/ *+& (-&& -0(&'-+'00)./5*--/*+/-+/   󕔕    쎍  󕔕        𙘙    󢡡󠟟    񤣤 򤥤񡠠룤               󩨩  󭬬           󮭭      ﴵ 򱰰  ɴȴɴʵʵʵʴʵ˴ʵ˵˴˴˵˵켽̵̵붵̵̵̵˵̵󺹺̵Ͷ𾽾̵͵͵Ͷεζζεεε϶==<===<;;;:;;;9:::99987787676756655444544344mmmnmnnmnmnnmnmnnnnmnnomnnnnonnmnnonmnnommnonnnonnomnnommnononnomnnopmmnonopnmnnoopnmoopnopnmnnoopnmnonoopnnonopnnoppmnnoopopmnnopnnoppopmnnopmnnoopnonooppnnopnopoqqmmnnoopopqmnnonooppqqmnnopqnnopq==<===;;<;:;:;::::99888778776665565444454344                      mnnoopqrstuvwxyxyyz{z{{|{{nnopqrstuvwvwxxyxyyz{|{{|nmnnopoppqrsrsstuvwvwxxyxyyzyzz{ {|{{mnnopooppqrrststtuuvwxwxyyz{|{{|nopqrqrrststtuuvwxyz {|{||{mnonooppqrsrsstuvwxyz{z{{|{mnonopoppqrststtuvwxyyz{|{nnoopqrsrsstuvuvvwwxyz{mnopqrststtuuvwyz {|{{|{mnnopqpqqrrstuvwxwxxyz{z{|{{|{{mnnoopqpqqrststtuvwvvwwxxyyz{z{{|{{|{{|{mnonoopqrstuvwxyzz {|{|{|nnoppqpqrrststtuuvwxyzyzz{ {|{{||{mnonoopqrstuvwxyxyyzz {|{||{{nnonoopqrstuvwxyz{z{{|{{|{||nnonoopqpqrrstuvwxwxxyzyz{zz{z{{|{{|{||{||mnnopqrrstuvwvwwxyzyzz{|{||{nnopoppqqrstuvwxyzyz{z{z{{|{|{{|{nmnoopqrstuvvwvwxwxxyz{z{{|{|{{|{||nopqppqqrststtuuvwxyz {|{|nopqrsrssttuuvwxyz {|{|{{|nnoopqrstvwvwwxyzyzz {|{||{||nopqrstuvuwvvwxxyxyyzz{|{{|{{|{{||nopqrsstutuuvvwvwxwxxyyz{|{{|{{||{noopoppqrstuvwxyz{z{{|{{|{{|{noopoppqrstuvwxwxxz{z{ {|{||{|noopoppqqrstuvwxyz{z{ {|{|{||{{||opqrsstutuuvwxyz{z{{|{{|{|{{|{{|{nooppqrstutuuvwxwxxyz{z{{|{{|{|noopqrsrttuvwxyz{ {|{{|{{opqrstuvwvwwxyz {|{{|{|{{|{oopqrstuvwxyz {|{{|{{||opqrststuuvwwxyzyzz{z{{|{{|{{|opqrstuvwxyz{z{{|{|{{|{|{||opqrsstuvwxyz{z{{|{|{{|{|{||opoppqrsrsststtuuvvwxyz{z{ {|{|{||oppqpqrrstutuuwvwwxyz {|{|{{|{||{opqrststtuvwxyz {|{|{||oprqrrstuvwxyxyyzz{{|{|{{|{{|{||oppqrstuvwxyz {|{|{{|{||oppqrsrssttuuvwvwwxwxxyz{|{{|{||{|{|oppqqrsrttsutuuvwxyyz{z{{|{{|{{|{|{|{||{{||ppqrstuvwxyz{z{{|{||{||{|{{|{||{||ppqrqrrsstuvwxyxyyz{|{{|{||pqrststtuuvwxyxyyzz{z{{|{|{|{{|{{|{||oppqrststuuvwvwwxyyxyzz{|{|oppqrstuvwxyz {|{|pqqrststtuuvwwxyz {|{|{||{{||pqqpqqrsrsstsutuvuuvvwwxwxxyyz {|{|{||{||{|ppqqrstuvwvwwxyzz{z{{|{{||{{|{||{||pqrstutuvvwxwxyyzyz{ {|{||{||{|{||pqrstuvwxyzz{|{{|{{||{| |pqrstuvwxyz{|{|{||qpqqrrstuvwwxyz{z{{z{{|{||{{||{||}pqqrsrsttutuvuvvwwxyxyzz{|{{|{||qrqrrststtuvwwxyz{z {|{{||{|qrqrrsststtuvwwxyzyzz{z{{|{{|{{|{||{||qrstuuvwxyzyz{{z{{|{{||{||{| |pqrqrsrrsttutuuvvwxyz{z{{|{|{|{||}qqrqrrsstuvwxyz {|{{|{|{{|{||}qqrsrstsutuuvwxyz {|{{|{{||{|{||{|}qrrsrststuuvuvwvwxwxxyz{|{{|{{|{{|{||qrstuvwvwxxyzy{ {|{{|{{|{{ |qrrstuttuuvvwvwwxwxxyyz{z{{|{{|{{|{||{||                                                                                                                                                                                                                                |{{|{|{||}| }~}}~}}~}~~}~~{|{{||{|{||}|}|}||}|}|| }~}~~}~}}~~}}~|{{|{ |}|}}|}|}}|} }~}~}~~}~~}~~}~~|{{|{{|{||}||}}|}}||}|}}~}~~}~}~}~~|{|{{||{||}||}|}||}}~}}~}~}~~|{|{||}||}||}}|}}|} }~}}~~}}~}~~|{| |}|}}||}||}|}}~}~}}~}~~|{||{|{||}|}|}|}}|}}~}}~~} ~|{ |}|}}|}~}~~}~}}~ ~|{||{|}||}|}|}|}||}|} }~}~}}~}~~{| |}||}|}||}|}}|} }~}~}~~|{||{||}||}||}||}}~}}~} ~|{||}|}}|}|}|}||}}|}}|} }~}~}~~}~~{|{| |}|}}|} }~}~~}~~}}~}~~}~~|{{|{||}||}|}}|}}~}}~}~}~}}~~|{{| |}||}}||}}~}}~}}~~}~}}~|{ |}||}|}}|}}~}~}}~~}~}~ ~{|}|} }~}}~}}~}~~}}~~}~~~~|{{|{||}|}}|}}~}~}~~}~}~~}~~{||}|}||}|}||}}~}}~}~}~~}~~}~~}}~~~~|{| |}|}|}|}|}}|| }~}~}~~~~{||{||}|}|}|} }~}~~}~}~}~~ |}||}|} }~}~}}~}} ~~||{|}||}|}||}|} }~}}~}~~}~ ~~|{||{||}|}|} }~}}~}~~}~}~}}~~~~|{|{||}||}|}|}}||}}~}}~}~~}~}~~}~~~|}|}}|} }~}}~}}~}}~~~~~~{| |}|}|}}|}}~}}~}~~||}|}}||}}|}}|} }~}}~}}~}~}~~~||}||}||}|}|}}|}}|}}~}}~}}~}}~~~~~|{||}|}}|}||}}|}|} }~}}~}~ ~~~||}|}|}|}||}|}}|}}~}~}~}~}}~~~||}||}|}}||}| }~}~~}~~}~~}}~}}~~~~~{||}||}|}|}|}|}}~}}~}~}}~}~~}~~~~~~ |}|}||}|}}|}}~}}~}~}~~}~~~~~~| |}|}}|} }~}}~}~~}~~~~ |}|}||}|}}~}}~}~}~~}~~~~~||}|}}||}~}}~}~~~~~~~||}||}|}||}}|}~}}~}}~~}~~}~~}~~~~~~||}|}}||}| }~}~~}~~}~ ~~~||}||}}|}|}~}}~}}~}~}~~}}~}~~~~~~||}|}|}}|} }~}}~}~ ~} ~~~| |}|}}|}|} }~}}~~}~}~~~~~~ |}||}}|}}~}~}~}}~}~ ~~~~||}||}||}||}|| }~}~}}~}}~}~ ~~~~||}||}|}}|}~}~~}~}~~}~~}~~~~~~~|}||}||}||}|}|}}|}}~}~~}~~}~~~||}||}||}||}}|}}~}~}~~}}~}~~~~~||}||}||}}|}~}}~}~~}~~}~ ~~~~||}||}|}}|}}|}}~}}~}}~}~~}~~~~~~~|}|}||}|}||}|}}~}}~}}~}~~}~}}~}~~~~~~|}|}}|}}|}}~}}~}~}~ ~~~~||}|} }~}}~~}~~}}~}~~~~~~||}|}}||}|}||}}~}}~}}~}}~}~}~~~~||}|}|}|}}|}}~}}~}}~}~}}~} ~~~~~~~||}||}|}||}}|}}~}~~}}~}~~}~}~~}~}~~~~~~~~~||}|}}|} }~}~}}~}}~}}~}}~ ~~~~~||}|}||}~}~}~}~~}~~~~~~}|}||}||}|}|}}|} }~}~~}~~~~~|}|}}|}|}|} }~}~}~~~~~~~~~|}|}}|}||}~}}~}}~~} ~~~~~~|}||}||}|}}|}~}}~}~~}}~~}~ ~~~~~|}}|}}|}}|} }~}}~}}~}~}}~~~~~|}||}|}||}|}}||}}~}}~}~ ~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ~~~~~~~~~~~~~ ~~~~~~~  ~~~~~~~~~~~~~~~~~~~~󁀀~~~~~~~ ~~~~~  ~~~~~  ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~ ~~~~~~ ~~~~ ~~~~~~  ~~~ 󀁀~~~~~  ~~  ~~~~~~~  ~~~~~~~~~~  ~~~  􀁁~~~~~~ ~~~~~ ~~~~~  ~~~~~~ ~~~~ ~~ ~~~~ ~~ ~~   ~~~~~~ ~  󁀀~~~~   ~   ~~~~  ~~  ~  ~~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    󂁁    򃂂  􂃂                 󄃄       򄃂       􂁂                                                                                                                                                   􃄄 񅆅           񆅆          򅄄               􅆅   󆅅 􆇄                                                                                                         ! $ " $#&  " ""(           􇈇     􈇈  񈇈        󈇈  򈉉           񈇇   􈉈            󋊊                                        #!  !"!  &#  ' !% $2.89<;@ {          󍌌 퉊    󑒒  򔓓  /=:9:9:{    𐏏            ꕐ      󕔕           .-300/1524155577756797:8<<9::9;::;:;::;;;;;;;;;<<=    񑐐𐏏 򓒒풑 񑐐򔓓 󕔔 앓 떕 𗖖뗖 񙘗잝 {}~쥦nz|䥦s{mup頻ꧨ񯰱ܝ媫۞驪ٟ쫬ן՟ꫬԟ笭Ҡ嬭ѠѠ󤣣竬Ϡ믰Π謭////2112113555668979898899<::::9<:<:<:;;:;:;; ; ; <<=                            􀁀~~~􆅅 ~~~~~ ~~~~~ ~~ ~~~~ ~􇆆 ~~~~~~ ~~~~~~~~~ ~~~~~~~~~~~}~~~~}~~~~~~~~}~~}~~~ ~}~~~~~~}~~}~}~~}~~}~}} ~~ ~}~}~}~}}~~~~~}~}~}}~~~~~~~~}~}}~}~}}~} ~~~ ~}~~}~}~}~}}~~~~}~}~}~}}~}}~~~~~}~}~}~}}~}~}}~}} ~~~~~~~~~}~}~~}~} }|~~ ~}~~}~~}~}}~}|~~~~~~~~~~~ ~}~~}~}}~} }|}}|}} ~~~}~~}}~~}}~}}~}|}}|}||}~}~~}~~}~~}~}}~}~}~} }|}||}|}{{}|}}~}}~}~}~}~~}}~~}}~~}}|}|}}||}}||vz{||}||}}~}}~}~~}}~}}~} }|}}|}|}}|rvz{{|}||}|}}|}}|}}||}}|}|}|osvy{||{||}||}}|}}|}|}||}}||}}|}|}||psvy{{||}|}}|}|}||}||}|}|}||nqsvxz{{||{||}||}|}|}|}}|}|}}|}|}}||}||{|{|nrtvxz{{||{|{||}|}||}||}||}| |{pqtuxy{z{{|}||}}||mpqtvwxzz{|{|{||{| |}||}| |{||{||{||{mprtvwxzz{{|{|{{|{||{|{{|{{nqrtuvwxzz{{|{{|{||{{||{|{|{||{||{|{nprsuuwxyyz{{|{{|{{|{|{||{||{{|{||{|{{|{oprsuuvxxyzz{{|{|{{||{||{|{|{||{||{{|{|{oqrstuvwwxyz{ {|{{|{||{|{|{{|{{||{|nopqrttuwwxxyyzz{z{{|{{|{{|{|{|{{|{{|{{mopqrstuvwwxxyzz{{z{|{{|{|{ {                                                                                                                                                                                                                                                                                                                                                                                                      #                                 ~~~~~~}~}}|}||}|{|{|{{~ ~}~}}~}}~}}|}||{||~~~~ ~}~~}|{|{{|{{||~~~~~}~~}~~}}|}||}}|}||{||~~~~~}~~}|}}|}|}}|{|{~~~~~}~~ }|}|}}|}}||{||{{|~~~~~}~}~~}|}}|}| |{||{|{{~~~~~}}~~}~~}~} }|}||{||{|{~~~~}~~}~}}~}}|}}||}|}|}}|}}||{|{|{|{{|~ ~}~}}~~}~}}|}|}}||}|}||}||{||{~~~~~}~}~~} }|}}||}| |{|{||{{|{{~~}~~}~~}~}~~}}|}|}}|}}|}||{||{|{|~~~~}~~}}~ }|}||}||}||{|{{~~~}~}~~}}~}~}}|}}|}}|}||{||{|{|{~~~~}~}~}~}~~ }|}||{|{|{{||{~~~}~~}~~}}|}}|}|}||{||{||{|{{~~ ~}~~}~} }|}}||{|{{~~~~}~~}~}~}}~}}|}}|}||}||{|{||{|{{~ ~}~}~}}|}|}||{|{{~~~~}~ }|}}||}|}}||}| |{|{||{{ ~}~}}|}}|}||{|{{|{|{{~}~~}~}}~}}|}|}|}||{||{{|{{||{{z~ ~}~}~}}~}}|}| {z{~~}~~}~}~~}}|}|}|}||}| |{|{|{{ ~}~}~} }|}|{|{{|{||{{~}~~}~}~~} }|}||}||}||{|{||{|{|{{z~}~}~}}|}||}||{||{||{{||{{z}~}~~}}~}}|}||}| |{| {z{zy}~}~}}~}~~}}|}||}}||}||{||{|{|{ {z~}~}~~}~~}}|}||}}||}||{||{|{{|{{z{zyy~}~~}|}|}||{|{|{|{|| {zyx~}~~}~}}~}}|}}|}||{|{|{||{{z{{zzyyx~}~}~}}~}}|}||}|}}||{||{|{{|{{zyx}~} }|}||}}||}||{|{{|{{||{||{{z{zyyx~}}~} }|}||}||{|{||{{|{zyx}~}}|}}|}|}||{||{|{|{|{{|{{zyxw}}|}}|}}||{|{{|{||{{zyxw} }|}|}|}| |{|{||{|{|{||{{zyxw }|}||}||}|{|{|{|{||{{|{{zyxwvv}}|}}|}||{||{|{||{|{{z{{z{zzyxw|}|}}|}|}|{||{|{{|| {zyxwv}|}}|}||}||{|{|{||{|{{|{{zyxywwv}|}}|}||{|{||{|{{|{z{z{{zyyxwvu|}||}|}|}| |{|{|{|{{|{{zyxyxxwvuvu}}|}}| |{||{||{|{ {zyzyyxxwxwwvvuvuu|}||}| |{||{{|{||{|{ {zyzyyxwvu}|}|}||{||{|{||{zyxwvutt}|}|}||}||{||{|{{|{{z{{zyyxwvututut}| |{||{{|{|{ {zyxwvwvvut |{||{||{|{{|{ {zyzyyxxwwvuts |{|{| {zyxwvututtss |{||{{|{|{{z{{zyxwxxwwvvuvuutstssr|{||{|{|{||{{|{{zyxwvvutsr|{|{|{{|{{|{|{{z{zzyxwvututtssr|{|{|{{|{|{{z{zyxwxwwvutsr{|{|{||{{|{{zyxyxxwwvutsrqrq|{||{{|{{|{{|{{z{{zyxyxxwwvuvuutsrqp{|{|{|{|{{|{{|{z{{zyyxwvutsrqrqqp{{|{{|{{z{zz{zyyzyyxxwvwwvvutsrqp{zyzyyxwvutsrqp|{|{ {z{z{zzyyxwvututtsrqrrqqpqppo|{{|{{z{{zzyxyxxwvuvuutusttssrqpo{z{{z{zzyxwxwwvwvvutstssrqpo{zyzyyxxyxxwxwwvutsrqpqppopoo                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ""##$%'''))*+,-//11336778;<|{{|{zyyxyxxwvuutsrqponm{|{||{||{{zyzyyxxwvutstssrrqqponm{ {zyxwvutstsrrqponm{||{{zyxwvututtsrsrrqpqpoonm{{||{|{{zyxyxxwwvutsrqrqqpoppoonn{{|{{|{{z{zzyyxyxxwvutsrqpon{||{{zyxwvutstssrqpon{|{|{{zyxwvuvuuttssrsrqqpqppononn|{{|{z{{zyzyyxxwvutsrqponm{|{{z{{zyxwvututtssrqpqpponm{zyxwvututtssrqponm{|{{zyxyxxwvutrsrrqqppon{|{{zyxwvutsrqponm{z{zzyyxxwvututtssrqpon{{zyxwvwwvvuuttstssrqrqppononm{zyxwvuutsrqpoponn{zyyxwwvutsrqponm{zyxwvutstsrrqpqpoonnonm{{zyxwvutsrqponmz{zzyxwwvwvvuuttsrqrqppomn{zyxwwvutstssrrqponm{zzywxwwvvuutsrqpqpoonm{{zyyxwvuvuutstsrrqpoonzzyzyyxxwxwwuvuutustssrrqpoonmzyzyyxxwvwvvuuttsrqpoppoonnmzyyxwvuutsrqrqpponmyzyyxxwvwuutsrqponmyyxxwvutssrqpoonyxyxxwwvututtssrqpqpponmxyxxwxwvvutstsrsrqqrpponxxwvuttssrqpononmxwvutsqponmxxwwvvututtsrqponmwvutsrqrqpponmxwvwvvuutsrqpononnwvuvuuttssrsrqqpononmnwvvuvuututssrqponwwvvuutssrqrqqppoponnvuttsrqqponmvvuututtssrqpononnvuuttutssrqppopononnvututssrqpqppoonuuttsrsrrqqponuttstssrsrrqponttsrqpqppoontssrqponmstsrrqponnmntssrqpqpponsrqpqpoponnsrsrqrqqponmsrrqqponmrqrqpponrqponmqqpononnmqqponmqpponpqpoononnmpponmmoppoonnmnpoonnmnonmonnmnnnn        !"#$$&'''()*+--.001336779;<򹸹  񺻺򴳳  񳴴  󳴴   󰱰  󰱰  󩪩   󩪪       󤥥    𠟟񢡠     왚 󠟟   󚙚              }?<{?==}<=7:95t67>   򉊉 󍎎􋌋􉊊  󈉉  􊋊      }<>|><:<=z}9z;;yz=;=99;8<77                                                        򇈇񆇆             򅆆            􇆇      󅆆       􅆅        󆇆                                                                                                               􅆅     񄅅 򄅅        􅄄     􃄃                    􂃃    􄃄                                                                                                        􂃃            񀁁    򂁂 󂃂     󁂂   큀    󂃃􁂂     􁂂   􀁁􂁂                                                                                                                                                                                                                                                                                                                                                                                                                                          ~~~~~~~~~~~~}~~~~~~~~~}~}~~~~~~~}~}~~~~~~~~~}~}~~}~ ~~~~~~~ ~}~}} ~ ~}~}~~ ~~~~~~~}~~}~~~~~~~~~}~}~}~ ~~~~~~~~}~~} ~~~~~~~}~~~~~~ ~}~~~~~~~~~~}~ ~~~~~~}~~}} ~~}~~~~~~~~ ~}~ ~~~~~~~ ~~~~~~~~~~~}~}~~ ~~~~~}~~}~~~~~~~}~~}~~~~~~~~~~~}~}}~~~~~~~~}~~}~~}} ~~~~~~~~~~~~~~~ ~}~~~~~ ~}~~}~~~~ ~}~}~~  ~~~~~}~}~}~}~ ~~~~~~~}~~~~~~ ~}~} ~~~~~~~ ~}~~~~~~~~~~}~~}~~~~~}~~}~~}~~~~~}~}~~}}~ ~~~~~~~}~~}~~}~}~~~~~~~~}~~}~~}~ ~~~~~~}~~~~~~}~}~~~~~~}~~}~~}~~~~~~ ~}~~}}~ ~~~~~~~ ~}~~}~~}~~~ ~}~}~~~~~~~~}~ ~}~~}~}} ~~~ ~}~~} ~~~~~~~~}~~}~}}~}~~~~~~~ ~}~~}~~~~~}~~}~}~~}~~~~~~~}~~ ~~~~~~~~}~~}~}~} ~~~~}~}~}}~ ~~~~~ ~}~~}~ ~~~~~~}~~}~}~~}~~} ~~~~}~}~~}~~~~~~ ~}~}~}~}}~~~~~~}~}~~}~~}~~}}~~~~~~~ ~}~}~~~~~~~~}~~}~}~~~~~~~}~}}~} ~~~}~}~}~~~~}~}~}~}}~~~~~~}~}~}}~}~~~~~~~~~}~~}~}} ~~~~~~~}~~}~}}~}~~~~~~~~~~~~}~~}~}}~}~}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     񭬭      󰯯    󮭮              񻼼 󳲳򷸸ﷶ 鶵 ջԻջռջջռջռռռռּּּּּּֽֽֽֽսּּּֽֽֽֽ%$#$$#$#$$$##$#"#"#"""""""#"#""!"!"!!""!"!!"!"!"!"  !!!! ! ! !! mnnopqrqrrstumnoonooppqrrstummnnoopqpqrrststtunopoppqqrsttunonopopqqrstummnnoopoppqpqrrststtumnnoopqrstunonnopoppqpqrqsrsstunnopqrstuvmnnoopqqrsstssttuunopqqrstuvmnnonopopqqrqrrstunopqrsuvnnoopqrsrsttuvnmnnooppqrstuvnopqrqrsstuvmnnoqpqqrststtuuvvnopqrsrssttutuuvnnopqrstuvvmnonoopoppqqrstutuuvmnnopqrstuvuvmnnoopqrqrsststtuvnnopqrqrrssttuvunopqrsrsstuvunmnoopqrsrrsstutuuvvnnopqrsrssttuvuvmnnopqrrqrrsstuttuvvmnonopooppqrstuvnnpqpqrrstuvmnnopqpqqrrststtuuvumnoopqrqrsstuvnmnnoopqpqrqrrsttuvmnnopqrstuvmnnoopqpqrqrrsttuvnnoqpqqrrststtuvnopqrststutuuvvmnnopqqrqrrstuvuvmnnopqpqqrrsststtuvuvvmnopqrrstutuuvmnnopqrsrsstuvwnnoopoppqqrstutuuvnnopooppqrstuvwnopqrqqrrsstutuuvvnonooppqrsrsttuvmnoonooppqrstuuvnnopqrstuttuuvmnonoopqpqrrstutuuvvnnopqrstuvnopqrqrsrssttuvnnopqppqqrrsstuvmmnnopqrstuttuuvwnopopqqrststtuuvwmnnoopoppqqrstuvnnopqrstuvmmnnoopooqppqqrrstuvwmnnopqpqrrststuuvnnonoppqrqrsstuvmnnonopoopqqrstuvnnoppqpqqrrstuvmnnoopqsrsstuvmnnonoopqrstuvmnopqrstuvuvvmnnonooppqrsstutuuvvwmnopqrrststtuuv%$#####$#$$###$##"""""#"#######!""""!!!!""!!!""!!"  !!        !                                             vuvvwxyyz {|{{|{|{| |}|}|vvwvwwxxyz{{z{|{{|{{|{|{|}|}}|vvwxyz{z{{|{{||{{||{{|{||{||}||}||}}|}}vvwxwyyz{|{{|{{| |{|}|}|}}|}||}}vwvwwxwyxxyzz{z{{|{|{{|{||{|{||}||}||}}|}|}}vwxyz{|{||}|}vwxyyz{{z{{|{|{{|{||}|}}uvwvwwxxyyz{z{{|{{|{{|{||{| |}|}vwvwwxwxxyyz{z{{|{|{||{{|{| |}||}}||}|uvwwxyz{z{{|{|{|{|{{ |}|}||}}||}|}}||}}vwvwwxyxyyzz {|{{||{{||}|}||}|}}|}}vwxyz{|{|{| |}|}|}}|}||}vwxwwxyxyyzz{|{||{{||}||}|}|}}|vvwxwxxyyz{|{|{{|{|{|{{|{||}||}|}}||}}|}}vwvvwwxxyz{|{{|{{|{|{{||{||}||}}|}}|}||}vwvwwxwxxyyz{|{|{{|{{|{|}||}|}||}}vwvwxxwxyyz {|{{|{{| |}||}|}vwxyz{z{{|{|{ |}||}|}}vwxwxyyz{{z{{|{|{{|{{|}|}||}vwxyxyyzz{z{{|{|{|{||{{ |}|}||}|}|}vvwxyz{zz{{|{|{{||{|{||}|}|}|}||}vvwxxwxxyzz{|{{|{||{ |}|}|}}|}}vvwwxyz{zz{{|{{|{|{|{||{||}|}}||}|}}|}wvwwxyzyz{ {|{|{|{|{||{||}||}|}}vwvwxxyz{|{{|{{|{{|{||{|{||}||}|}}vwxyz{z{{|{|{||{||}||}|}}vwwxyxyyzz{|{{|{||{||}||}||}}|}}vwxyz {|{||{||{ |}||}|}|}|vvwwxyz{|{{|{{||{{| |}|}|}}|}}vwwxyz{|{{|}|}||}|}|}}|}}vwxyxyzyyz{z{ {|{|{||}||}|}||}vwxyz{zz{{|{{|{||{||}||}|}|}||}}vvwwxyz{z{{|{{|{||{|{| |}|}|}}wvvwwxxyz{|{|{{|{||{||{||}|}|}}wwxyz{z{{|{ {|{||{||}||}}|}|}}|}}wvwwxxyzz{z{{|{{|{||}|}|}|}}|}}vwxyxyyz{z{{|{|{||{||{||{| |}|}|}}vvwxwxxyzyz{z{{|{{|{{|}|}||}}|}||}}vwxyz{|{{|{|{{||{|{||{| |}||}}|}|}}vwwxyz {|{|{{|{||{{| |}|}||}|}}vwwxyzyzz{ {|{||{|{{|}|}||}|}}vwwxyz{z{{|{|{{|{||}|}}|}}vwxxyz{|{|{{||{||}|}|}||}}|wwxyz{zz{|{{|{||{||{ |}|}|}|}|}|}}wxwxxyyzyz{z{{|{|{{|{{||{|{{||}|}}||}}vwxxyxyzz {|{||{||{||{| |}|}||}|}}wxyz{z{{|{{|{||{| |}||}}|}}vwwxyz{z{{|{||{||{||{|{||}|}}||}||}}wxyzy{z{ {|{{|{ |}||}|}|}||}vwwxyz {|{{|{||{|{{||{||}||}||}|}}||wvwxxyz {|{||{||{|{| |}|}|}}|}|}}wxyxyzz {|{|{{|{|{{||}||}wxyxyyz{{z{{|{|{||{||}||}|}|}}wxyz{z{ {|{|{||{|{||{||}|}||}|}|}|}}wxyzyz{ {|{|{|{|{|{{|{|{| |}|}}|}}wxwxxyyz{|{{|{{|{{|{||}||}|}||}|}}|}wwxxyxyyzyzz {|{||}|}|}||}wyz{z{{|{ |}|| }vwwxxyz{z{{|{{|{{|{||{||}||}|}}wxyz{z{{|{|{{||{{|{||}||}||}|}}|}|}}|}|}}vwxxyz{z{ {|{{|{{|{| |}|}||}wwxyz {|{|{{|{|{||}||}||}|}}vwxxyz {|{||{|{||{|{| |}|}}|}wwxwxxyyzyzz{|{||{{||{|{||{| |}|}}|}||}|}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             }|} }~}~~}~ ~~~~~}}~}}~}}~}}~}~~~~~~ }~}}~}}~}~}~}~~~~~~~~ }|}}~}}~}~~}~~~~~~~~~}}~}}~~}~~~~~~~}|}}~}~}}~}}~}~ ~~~~}}~}}~}~}~~}~~~~~~~ }}~}}~}}~~~~~~~|}}~}~}~~~~~~~~|}}~}}~}~}}~}~}~ ~~~~~}}|}}~}}~}~~}~}~}~~~~~~~~~~}~}~}}~}~~}~~~~~~~~~~}|}}~}}~}}~}~ ~~~~~  }~}}~}~~}~~~~~~~~~~|}}~}~}}~~}~ ~~~~~~}}~}}~}~}}~}}~~~  }~}~~}}~}}~~~~~~~~~ } }~} ~~~~~~~~}~}}~}~}~~}~}}~~~~~} }~}}~}~~}~~~~ } }~}~}~}~}~~~~~~~~~}}~}}~}~~}}~~~~~~} }~}~}~}~}} ~~~~~~ } }~}~}~~}~~~~}~}~}~~}~~~~~~~ }}~}~}~~}~~~~~~ }~}~}}~}~~~~~~~~ }}~}}~}~~}~~~~~~} }~}~~~~~~~~~~ }}~}~}}~}~}}~ ~~~~~~}}~}}~}~}~~}~}~~~~~~~~}~}~}}~}~~}~~~~~~~~}}~}~}~}~~~~~~ |}}~}}~}~}~~}~}~~~~~~~ }}~}}~}}~~} ~~~~}|}}~}~~}~}~~ ~}}~}~~}~}~ ~~~~~}}~}}~}~~}~~}~~~~~~~~~|}~}~}~~}}~}~~}}~~~~~~~~  }~}~}~~}~~~~~}}~}}~}~}~~}~~}~~~~~~~~ }}~}~}}~}}~~}~~~~~~} }~}~}~~~~~~  }~}}~}~~~~~}|}}~}~}~~}~}~ ~}|}}~}}~}~}~ ~~~~~|}}~}}~} ~~~~ }}~}~}}~}~ ~~~~~ }}~}}~}}~}~~}~~~~~~~~~~~}}~}}~~}}~~}}~ ~~~~~~~ }}~}}~}}~}~}}~~~~~~~~~}}~}~}~}~}~~~~~~~~ }}~}}~~}}~}~}~ ~~~~  }~}~}}~~}~ ~~~~}}~}~}}~~}~~}~ ~~~~}}~}~}}~~}~ ~~~~~~~}~}~}}~}~~}~}~ ~~~~~~~~}}~}}~}}~}~~~~~~}}~}~}}~}~~}~} ~~~~~~~}~}~}~}}~~}~~~~~~ }}~}~}}~}~~}~~~~~~}}~}}~}~}~~~~~~ } }~}~~}~}~~~ }~}}~}}~}~ ~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        󁀁   򂁂    􂁂         󁂁              򁀀 󂁁   􂁁    󃂂             󁀁    􂁁    󁀀                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            򃂃       􄅂񅄄           鄅            􄅄 󃄃􃂃 󅄄    򄅅􂃃   󅄅     􃂂                                                                                                                                             򇆆         􇆆  􆅅 􆅅          󇆆   󆅆     򇆇    󆅆                  􆅆                                                                     /,22/-2,-+21/+1-,:14.4//3/1.,-/./00-<.57031505.408026/4/20827042 󈇇        񎍍                    􍌌   2/ 5,-///0--1815+,.+4.1//32.0,20./2205/423/.649344/-131<9.6.24207   󏎏    򐏐       򓔔  񖕕   Ꙙ    𜛜󜝝 󜛜  񞝞       𥤥     󥤤         𧨨 񨧨򩨩          󫪫𪫬  𯮮         ϶϶϶϶ϵ϶϶϶жжж󺻺϶жϷжжжзз콾ѷѷѷѷѸѸѷзѸиѷѸѸѸҸҸѸҸ432323222210010100//00/0/..//...-..-..,-,-,--,,++,++++,+**++**+*nmoopoppqnmnnoopqmnnopqmnnopnnopqmnnopqmnnopqrnnopqprnnopqnonoopqnonoopqrmnnopqpqqmnopqprqnpoppqqrnnopqrmnnopqqrmnonnooppqrnnonooppqrnnonoopqqrnmnnoopopqpqqrmnonoopqrmnnpoopprqrnnonoppqrnopqrnonoppqrnnopqpqqrrmnnoopqrnopoppqrmnoopqrmnnoopqrsmnnopqqrmmnnooppqrmnnonooppqqrqrrmnoopqrsnoppqrssnmnnoopopqqrssnnopopqqrsnopqrsmnoopqprrsrnopqrsmnnonoopqrqqrssmnnoopqrsnmnoopqrqrssnonoopqpqrrmnonoppqpqqrrsmnnopoppqrqrrssnopqrsmnnopqrsnonoopoppqrsmnnoppqrqrrsnopqrtmnoopqrsmnnopqrsstnmnoopqrsnnopqppqqrrsmnnopqpqrqrrsmnopqrsnnopqpqrqqrrsstnnopqrrqrrssnopqrsnnopqrqrssnnopqrsmnnopqpqrrstnopqrst432222211220111110/0////./../...----.-,,,-,,,-+,+,+++,,,++*++**+                              qrstuvwxyz{|{{|{|{{|{||{{||qrstuvwxyz {|{|{||{|{||{||}|qqrrstuvwwxwyyz{z{ {|{{|{||}|qrrsrsstuvwxyz {|{||{|{| |qrrsttuvwxyz{z{{|{{|{{||{|qrrsrsstuvwxyz {|{|{||{|{{||}||rrsrsstuvwxyxyzz{|{|{||{||}|qrrstuvwxwxxyz {|{|{{|{{| |}qrrststtuuwvwwxyz{z{z{{|{{|{{|{ |}|qrrsrststtuuvwxxyz {|{|{{||{{||{||rstuvwyxyzzyzz {|{||{||{||}||}rrssrsttuuvwxyzyz{{z{{|{|{{ |}|rrsstuvuvvwwxxyzz {|{||{||{||}rrsrtsttuttuuvvwvxwxxyz{|{|{{|{||{| |rsrssttuvwxyz {|{||{|{||}qrsstuvwxyz{z{{|{{|{||{| |}|rrsstuvwxyyzyzz{z{{|{{|{{|{{||{||{||rsrsttutuuvwvwxxyz{|{{|{||{{|{||}|}rsrssttuvwxyz{|{{|{{||{| |}||}srsstuvwxyxyyzz{|{|{{|{ |}|rsstuvxyz {|{|{||{| |rsstuvuvvwwxwxxyzz {|{{|}|rsrsttuvwxyz{z{{|{|{|{|{||{{||{||}||}}sstuvwxyz{zz{{|{|{|{{|{|{| |}||rsrsttuuvwxyz{z{{|{{|{{|{|{||rstuvwxyz{|{| |}|}||rstuvuvwvwwxyz{|{{|{||{||{|{{||}||}sstuvwxyz{|{ |}ststtuvuwvwxxyxyyzz {|{||{{|{||{|{||}|rsststuuvwxyzz {|{|{|{||{| |stutuvuwwxyyzyzz {|{||{||}||}|rsttuvwxyz{|{|{||{|{| |ststutuuvwxyz {|{{||{||{|{||}|}ssttutuvvwxwxxyz{|{{|{{||{|{|{||}||}||}||ssttuvwvwwxyz {|{|}|stuvwxyxyyz{z{{|{{|{||}|}ssttutuuvvwxyz{z{{|{{|{{|{{||{||}|}||}}stuuwxyz{z{{|{|{||{|{||}||}||ststtutuvvwxyxzz{z{{|{{|{||{|{{|{||}||}|ssttuvwvwwxxyxyyzz{|{||{||}|}||tuvwxyz {|{|{{|{|{|{||}||}|}ssttuuvwxwxyyz{|{{|{|{|{| |}stutuuvvwwvwxxyz{|{{|}||}sttuvwxwxxyzz {|{||{||}||}||}sstuvuwwvwwxyyz{|{{|{||{{|{|{{||{||}|tuvuvvwxyz {|{||{{||{{||{||}||}|}||tssttuuvuvwvwwxxyzyzz{|{|{|{||{||}||}||sttuvvuvvwwxxyz {|{|{|{{||{||{||}|}|}||tuvwxyz{z{{|{{|{||{||{||}|}|}}|sstuuvwxyz{z{{|{{||{{ |}||}|}ssttuuvwxwxxyyz{|{{||{||{|{||{||}||}||}|sttutuuvwwxyz{{|{{|{|{{|{|{||{| |}||}ttuvwxyxyyzz{|{{|{||{{||{||}|}|}|ttuvvwxyxzz{z{{|{|{||{||}|}|}|}}||ttuvvwxyzyyzz{{|{{||{{||{|{| |}|}sttuuvwxyzyz{z{{|{|{{||{{|{||{||}|}tuvwvwwxyz {|{|{{|{||{|{| |}|}ttuvwxyz {|{|{{|{| |}|}tuvwxwxyyz {|{|{||{||{||}|}|}||ttuuvwvwxxyz {|{|{{|{||{||}|}||}|}ttuvuvwwxyz{|{||{{|{||{||}|}}|}ttuuvwvwwxxyyz {|{{|{|{||{||}||}|}ttuvwxyxyyz{ {|{{|{|{||{||}||}||ttuvwxwxyyz{|{{||{{||{||{||}|}                                                                                                                                                                                                                                                                                                                                                                                                                                   |}||}|}}|}|}}~}~}~}~~}~~}~ ~~~~~}|}|}|}|}|}}||} }~}~}}~~}~~}~ ~~~~~~||}|}|}}|}}~}~}~~}~~}~}}~~~~~~}}|}|}||}|}}|} }~}~~}}~}~ ~~~~}||}}||}|}}|}}~}}~}~}~~~|}||}|}}|}}|}}~}}~}~~}~}~~~~~~||}||}|}}|}}~}}~}}~}~~}~~~~~~~}}||}||}|}}~}}~}~}}~~~~~~|}|}|}}||}}~}~~}~}~ ~~~|}}||}|} }~}}~}}~}}~~~~~||}~}~}~~~~~~~}|}||}}|}}|} }~}~~}}~~~~~|}|}|}|}}|}}~}}~}~~~~|}}|}|}}|}|}}|}~}}~}}~}~}~~~~~~~|}|}}|}||}~}}~}}~~}~~}}~~~~~ }||}|}|}}|}}~}}~}~}~~}~~}~~~~~}|}|}}|}}|}}~}}~}}~}~}}~~~~~~~}|}}|}|} }~}~}~~}~~~~~~~~|}|| }~}}~}~}}~}}~~}~}~~~~~~~|}}|}}|}}|} }~}~}~}}~}~~~~~~~~~}||}}|}|} }~}~}~~}~}~ ~~~~~|}}|}||} }~}}~~}}~}~}~ ~~~~|}|}}|}~}~~}~~}~}~ ~~~~~~|}}~}~}~}}~}~}~~}~~~~~~~}|}}|}}|}}~}}~}}~}} ~~~~}||}}| }~}~~}~~}~~~~~~~ |}||}~}}~}~~}~~}~~~~~~| }~}~}~~}~~}~~~~~~~}|}}~}~}~~}~~}~}~~~~~ }||}}|} }~}} ~~~~~|}}|}}|}~}~}~~~~~|}|}}|}}~}~}}~ ~~~~}|}}||}|}}~}~}~~} ~~~ }| }~}~}}~}~~}~}~ ~~~~}}|}|}|}}~}~}~~}~~~~~~~~~~|}|}}~}}~}}~}~~~~~~~ }|}}|} }~}~~}}~~~~~~|}}|}}|}}~}~}~ ~~~~~}|}}~}~~}} ~~~~|}||}|}}|}}~}}~}~}~}~~}~~~~~}|}|}}~}~}~~}~~}~~~~~~|}|}}|}}~}}~}}~}~}~~~~~ }|}|| }~}}~}~~}~~~~~~ }||}|}|}||}}~}}~} ~~~~}|}}~}~}}~}~~}~ ~~~ }}|}|}}~}~}~~}~}~}}~}}~~~~~~~~|}||}}~}~~}~ ~~~~~~| }~}~}}~}}~}~~}}~~~~~~ }|}}|}}~}~}~~}~~~~~~~~~||}}|}}~}}~}}~}~~}~ ~~~~~~~~~}}||}}|}}~}}~}~~}}~~}~}~~~~~~ }}|} }~}~}~ ~~~~~~~}|}|} }~}~~~~ ||}|}}~}~}}~~~~~~ |}}||}}||} }~}~~}~~~~~}|} }~}~}~}~~~~~ }|}~}~}}~}~~}~~~~~~~~~ |} }~}}~}~ ~~~~~~|}}|}}~}}~}~}}~}} ~~~~~}}|}}~}~~}~}~ ~~~~~~}}|}~}~}~~}~~}~ ~~~~~~~~}|} }~}}~}}~}~ ~~~~~|}}|}||} }~}~~~~~~~|}}|} }~}~}}~}~~}~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 􂁁       򁀀􁂁                󂁁񂁂  􁀀򂁁          񂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    􃂂  󂃂                     􃂂  􅄄  󃂂              􅄄   턅񅄅                                                                                                                                            􆇆              􆅅   񆇇    􈇈  񅆆      􆅅           󇆆  񆅆                                                               ( *'+&( * (0), ,/'* +.-4.(+*/.,30 /1:50/313.5087801696:84385>;t8=8:?6  鉈   󋊋򎇇􎇇󎇈 쎍   󊉊󎍎  򌎍   󋊊     􋊊     "$%# ( ( +('*%,. 1& '(+ ./-**0/,3512113494243550343384<1:;4<6:95<9>5;<    옗򣢢򜛜󛚛͠򥦥譮̡믰ˡⴶˡ곴ʢɡ𳴴ɡ鰯Ȣ𳴴Ǣ谱Ƣ񶸹ƢﵶŢţ𳴴ţ󵶶ģﶷã󪩪󶷹ã򴵵¤򶸹󸹺󵶶𶷹󱲲       !#&). 3< @nopqqrstvvwxyyz{z{ {|{{nnpprrsttuvwwxxyz{zz{zz{z{{z{{z{mnppqrsstuuvwwxxyzyzz{zz{z{{z{z{znooppqrsttuuvvwwxxyxyy z{zzyzyzynopqqrssttuvwxwxyyxxyzyzyzzyynoppqqrrsttvwvwwxwxxyxyxyyxyxxynnoopqrsstuvwxwxxwxxwxxwxxmnnoppqqrrssttutuuvwvwwnoopprqrrststtutuvvwvwvwvwvwwvvnnoppqrqrrssttuvuvvuvvnnoopqqrstunmnooppqrststststtuttututtuttnnopqrsrsrsstststtstststmnnooppqrsrs snnoopqrqq rsrsrrsmnnonoopqpqqrqrrqrrmnno pqpq qnnopoppqpqqppmnnonnonoopopoppoppopnmnnononoopoommnnonoonnoonnnmnnmnmmn߿徿὿ཾ缽ݼ꽾廼ں庻繺빺캻׹ַԶ鵶жежϵ󷸸󷸸ʴʴ򺻼dz         $&* -3; @      ! # ). x{zyzyxyyxxwwvutsrsrrqpqqppoonon{{zzyxwxxwwvuvuutsrsrrqpqpopoonmzyzyyxyyxwvutsrqponzyyxwvutsrqpqqpopoononnyxwxwwvutsrqpqqppoonmxxwxxwwvuvvuutsrqrqqponmxwwvutsrqrrqqppqqpponvwwvvwvvuvuutstssrsrrqrqqpponmvuvuutstssrqrrqrpqppononnmvuuvvuututsrsrrqpononmnuttuutsttsrsrrqponmnutsttstssrqpopoonnonntsstsrsrrqrrqqpopoonoonnmmsrssrrssrrqrqqpoppoonmnmmsr rqrqqpqppopoonmqrrqrqrqqpqppopponmnmqpqqpqpponmnpqppqppqppopopoononnmpopopopponononnmnnmpoopoonoonnmnmnnonoo nmnnmnmnmmnmn                    !#)- yn𻼻󽾽            򳴴򮯯񭮮                      񦧦       󨩨󣤫󨩨     롢     񡢢  뤣񢣢     𜝝򛜛  󗘗  񘗘󘗖   󛜜      뎏     򎖖        󓔔   t<99676326246353/-43145526/617,2,+/),,1-./,+',-+&'-*%(()& *"'+ ')   󇈏      슋             􌍌       󈇈 󇈈󇈇   󈇈   394962:52=27041/64403/8.080-./0-,0.,3*/.110+ * +,',*$-) ' ) &% %&( "% $                                                                          솅       񅆆   󆇆                                    󆇇                                                                                                                   􄅄         􂃃󂃃   򄅄      򂃂      򂃂􃄄     򂃂      񂃃      僂 󄅄  󃄄 򅄅􂃂  􃂂   󃂂                                                                                                               򁂂          􁂁              󀁁     򁂁       󁂁󀁀              􁂂􂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ~~~~ ~}~}~}}~~}}~~~~~}~~}}~~}~}~~~~~~~~}~}}~}~~~}~}~~}~}}~}~~~~~~~}~~}~}} ~~~~~~~~~~~}~~}}~~}~}}~}}~~~~~ ~}~}~}~}~}}~}} ~~~~ ~}~}~~}~~}~}~~~~~~~}~}~}}~}~}~~}~}}~~~~~~~}~}~~}~~}~}}~~}} ~~~ ~}~~}}~}~}}~~~~ ~}~~}~}}~}~ ~~~ ~}~~}}~~}~}}~~~~~~~}~}~}}~}}~}~~~~~~~~~}~~}~}~~}}~} ~~~~~~~~~~~}~}}~}}~}} ~~~~~~~}~~}}~}~~}}~~~}~~}~~}~}}~~ ~}~}}~}~~}~~~~~~~}~~}}~}~~}}~}~}}~~~~~~~}~~}~~}~}~~~~ ~}~} ~~~~~~ ~}~}}~~}}~}}~~~~ ~}~}~}}~}~}}~}}~~~~~~~}~~}~~}}~}}~}~}} ~~~~~~ ~}~~}}~~}}~~}} ~~~~~~ ~}~~}~}}~}~~ ~}~~}~~}~~}~}} ~~~~~~~}~}~~}~~}~}~}} ~~~~~~~}~}~~}~~}}~}}~~~~~~~~~~~}~}~~}~}}~}~}}~}}~~~~ ~}~~}~}~~}~}}~~~~~~~~}~}}~}}~}}~~~~~~~~}~}~~}~}}~}~~~~~~~~}~}}~}~~} ~~~~~~~}~~}~} }~}}~~~~~~~~~}~}~}~~}~~~~}~}~~}~~ ~}~}~}}~}}~}}~}}~~~~~~}~~}~}~} } ~~~~~ ~}~~}~}~~}~~}~}}|~~~~ ~}~~}~~}}~}~~}}~~~~~~~~}~~}~}~~}~}}~~~~~~~~}~}}~}}~}~}~}}~~~~~~~~~~}~}~} } ~~~~~~~~}~}~~}~}|~~~~~~~}~}} ~~~~~ ~}~}~}}~}~}}~}}~~~~~~~}~~}~~}~}}~}}|~~~~~~}~~}~~}~~}~} }~~~~~~ ~}~}}~~}~} ~~~~~}~~}~~}}~} }~~~~~~}~}~}}~~~~~~~~~}~~}~} }~~~}~~}~}~}}~}|}~~~~~}~~}~}~}}~~~~~~~~~}~~}~~}~}~}~}} ~~~~~~~}~~}~} }| ~~~ ~}~~}~~}~~}~}} ~~~~~~ ~}~~}~}~~}}~}}~~~~~~}~}}~ }~~~~~~~~}~~}~~}|~~~}~}}~}}~}}|~~~~~~~~~}~~ }|}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               󰯰    񮯮 𯰰   񨩨  񺻺  򲱲󶵶󵴴󽰰   񽰰񽰱   ֽֽֽֽֽֽ׽ֽֽֽֽ׽ֽ׽ֽ׽׽ֽ׽׽ֽֽֽ׽ֽ׽׽!! !  ! !!!                           mnoopqpqqrqrsrsttuvwnmnonooppqrstuvwmnnopqpqqrrstuvwmnnopqrqrsststtuvwnmnnopooppqqrqrsrssttutuuvwnopqpqqrrststtuvvwmnoopqrstuvuvwwmnnoopqrqrrsstuvwmnnonooppqrqsstuvwmnonoopqrstuvwnnonooppqrstuvuvvmnonoopqrsttstuuvwnnopqpqqrrstuvwnnopopqqrstuvwvmmnnonoppqrsrttstutuuvvwmnnoopooqqrqrssrssttuuvwmnnopqppqqrrstuvnmnnoopqrstuvwmmnnopqrstutuvuvvwnnopqrsrsttuvwmmnnoopqqrstuvuvvnmnnopqrstuvnopqrstuvwmnnopqrsstuvwnmnoopqrsrsstuvmnoonoppqpqqrstuvwmmnnoopoppqqrqrrsstuvnmnnoopoppqrrstuvwnopqrstutuuvwwmnnopoppqrstuvwmnnopqrsrsstuvwnopqpqqrrststutuuvvmnoopqpqqrrstutuuvwmmnnooppqpqqrrstuvwmnnonoppqrqrrstuvwnopqqrqrsstssttuuvwmnnoopqrstssttuuvwmmnnooppqpqqrstutuuvmmnnooppqprqrrstuvvwmnnoprqrrsrsstuvwnopqrstuvwvmnopqrsstuvnnopprqrrstuvwmnnopqprrstuvwnnoprqrrsstutuuvwmnopqrstuttuuvvwvmmoopqrstuvwnnopqrstuwvmonnoppqrststtuvuvvwnmnnoopopqqrststtuvwmmnoopqrrsttuvwmnnopoqpqqrqrsstuttuvvwvnmnnoopqpqqrrstuvwnopqrstutuvvwnnopqpqqrststtuvuvvwnmnonoppqrqrsstutuvvwnmnnopoppqqrstuuvwmnnopopqqrsrssttuvwnmnoopqrstuvwmmnnoopqpqqrrststtuuvwwnopoppqqrstuvmmnnoopqrqrrsstutuuvwwnmnnoopqrqrsstutuvvwnopoppqqrstuvw!!  !      !!!                                                                      vwwxxyyz{|{|{{|{|{{||}|}}|}|}}|}}wxyxxyzz{z{{|{{|{||{{|{|{| |}|}|}||}}vwwxxyz{|{|{{|{| |}|}||}}|}}wxyxyyzz{|{{||{{|{|}|}|}}|}}|}}wxyz{|{|{{|{{|{|{| |}|}|}}|}||}}wxyz{z{{|{|{|{||{||}|}||}||}||}}|}wxyyz{ {|{|{{||{|{| |}|}}|}|}}wxyz {|{||{{|{{ |}|}}|}|}}||wwxxyz {|{{|{|}||}|}|}}|}}wxyz{{z{{|{||{||{{||{||{||}|}|}}|}}||}|}}wxyyz{z{{|{{|{||{|}||}|}|}}wxxyxxyyz{z{{|{{|{{||{||{ | }wxxyz {|{{|{| |}|}|}}|}}wxwxxyz{z{{|{{|{|{||{|{||}||}|}wxxyz{{|{{|{||{||{|{||}|}}|}}wxyxyyzz {|{|{{| |}|}||}|}}|}}wxwxxyyz{z{ {|{|{|{{|{|{||}||}||}|}}|}}|}}|}wwxxyz{ |}|}|}}|}|}}||}}wxyz{|{|{{||{||{||{{|}|}|}|}wxyzyzz{|{||}||}|}}wxwxxyyz{z{{|{||{||{{||}||}|}|}}wxyz{|{{|{{|{|{|{|{||{||}||}}||}||}|}}wxyz {|{|{{|{ |}||}||}|}}|}}wwxxyxyzyyz{{z{{|{|}|}}|}||}||}|}}wxyzyz{{|{{|{|{{|{{| |}||}||}|}}||}|}wwxyxyzyz{z{ {|{|{|{||}||}|}|}}|}wxxyz {|{|{{|{|{| |}||}}|}||}}wwxxyxyyz{ {|{|}||}|}}|}}|}}wxxyz{z{{|{||{||{||}||}}|}}|}|}||}}|}}wxxwxxyyzz{z{ {|{{||}|}|}|}}||}wxyz{z{ {|{{|{|{||{||}|}|}||} }wxyz {|{{|{{|{|{||}|}}|}||}}|}}wxyxyyzz{z{{|{{|{|{| |}|}}|}}|}wwxxyxyyzz {|{|{{|{||{||{|}|}|}wxyyzyzz{z{|{{|{|{|{{||}||}|}|}|}||}}wxxyz{|{{|{||{ |}||}|}|}|}}wxyz{|{{|{{|{|{||{|{| |}||}||}|}}|}wwxxyxxyyzz{ {|{||{||{| |}|}}|}wxyz{|{{|{|{{|{||}|}|}}||}wxyz{z{{|{|{{|{{|{|}|}|}}wxyz{z{ {|{||{|{||}|}||}||}|}}wxyxyyz{z{{|{{|{|{||}||}||}wxwxxyyzz{z{{|{||{{|{{|{|{| |}|}|}}|}|}}wxxyz{|{{|{{||{| |}||}|}wxyz{z{{|{{|{||{||}||}|}|}}wxyz{|{{||{{|{|{|{{|}||}||}}|}}wxxyxyyzz{z{ {|{|{|{||}|}||}|}}||}}|}}wxyz {|{||{{|{|}||}}|}|}||}wxyz{|{||{|{| |}||}|}||}}|}|}wwxyz{z{{|{|{{||{|{||}|}||}wxyz{z{{|{|{||{|{||}||}|}|}|}}wxwxxyyz {|{ |}|}|}||}}|}wwxxyz{|{{|{||}||}}|}|}}|}}wxxyzyzz{z{z{{|{||{|{|{| |}|}}|}}|}wwxyyz{{z{{|{|{|{{|{|{||}||}||}wxyz{z{{|{{|{{|{{|{{| |}||}|}}||}||}}wxwxxyyz{z{ {|{{||{||{||}||}||}|| }xwwxyyz {|{{|{ |}||}||}|}wxyz{zz{ {|{{|{||{|{||}||}|}}|}}wxyz{|{{|{{|{{|{{| |}|}|}|}}wxyz{z{{|{|{||{{|{| |}|}|}|}}|}|}|}}|}wxyyz{z{{|{|{{| |}||}|}}|}|}}|}}wxxyxyzz{|{{|{|{{| |}||}|}|}}wxyxyyzz{z{{|{{|{|{{|{||{||{| |}|}}|}}|}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     }~}}~}}~~}~~~~~~~~  }~}~ ~~~~~~~}}~}~}}~}~~}~~~~ }}~}}~~}~~}~ ~~~~~~~}}~}~}~~~~~}}~}~}~}~~~~~~~~~}}~}}~}~}}~~~~~~ |}}~}~}}~~}~~}~~}~~~~~~~~~}}~}}~}~~}~~}~~~~~~~~~}~}}~}}~}}~~~~~~~~}}~}}~}~}~}}~~}~~}}~~~~~~~~~}}~}}~}~}~~}~~}~~~~~~~~}}~}~}~~}}~~}~~~~~~~~~ }}~}}~}}~}~}~~~~~~ |}}~}~~}}~}~~ }}~}~}~}~}~}~~}~}~~~~~~}}~}}~~}}~~}~~~}}~~}~}}~}}~~~~~~}~}~}~~}~~~~~~ }}~}}~}}~}~}}~~~ }}~}}~~}~~}}~~}~~}~~}~~~~~~~}}~}}~~~~~~~~~ }}~}}~}~~~~~~~}}~}~}}~}~}~}~~}~~~~~~~~~ }}~}}~}~}} ~~~~~~~ }~}}~}}~~}~~~~~~ }}~}~}~}~}~~}~}~}}~~~~~~~}}~}~}}~}~~~~~}~}~}}~~~~~~~~~}}~}}~}}~}~}} ~~}}~}}~~}}~}~~~~~~}}~}}~}~~}}~ ~~~~~~~}~}~~}~~}~}~ ~~~~}}~}~}~}~~}~~~~~}~}}~}~~}~}~}~~~~~~~} }~}~~}~~}~~~~~~~~ }~}}~~}~~~~~~~~~}}~}~}~~}~ ~~~~~~~}~}}~}}~}~}}~ ~~~~~~~ }}~}~}}~}~~}~~}~~~~~ }~}~}~ ~~~ }}~}}~}~~}} ~~~~~~~~}}~}~~}~~}~ ~~~~~}}~}}~~}~~~~~~~~~ }}~}~~}~ ~~~~~}}~}~~}~}}~}~}~~~~~}}~}~~~~~ }~}}~}~~}~~}~ ~~~~~ }~}~}}~}~~~~~~~}}~}}~}~}~ ~~~~}~}~~}~ ~~~~}}~}~}~}}~}~}~~~~}}~}~}~}}~~}~~~~~~~ }}~}}~}} ~~~~~~~}~}~}~ ~~~~~~}~}}~}~~}~}~~~~~~ }}~}}~}~~~~~}~}~}~~}~~~~~~~~}}~}~}~~}~~}~ ~~~~~} }~}~}}~~}}~~~~ }}~}~~}~~}~}~~~~~}}~}~}}~}}~}~}~ ~~~~~~~~ }}~}}~~}~~} ~~~~~~ }}~}~}} ~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       񂁂      󂁂   􁀀􂁂                              󂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       􅄄 􄃄 󅄄􃂃       򄃄     텄                 򄃃 􅄅                                                                                                                                                        􇆇      񆅅 􈇈     􈇇      󅆅      숇   򇆇 󇈅 򈇈      􈇈 􆅅    􇈇򆅅     􈇇                                                                    1/022-35526/085.445807214529225536756530461~36327330532118/2430            򉈈       󌋋 튉            2314431621111244584755443355423337840583641303564569564501324226   񐏏      򖕕򔓓󔓔    򘙘  򛚛  󞝝           󞟠 󟠟   򠟠       󧨨      򨧨﨧   򩨨       𳲳   󶵵   ҸҸҸҸҸҸҸҸҸҹҹҹҹҹӹҹӹӹӹӹҸҹӸӹӹӹҹӹӹӹӹӹӹӹӹӹ+*+*))***))**))****))))))))())())))())))))))))))))(((()))))())()mnnopqrsrstmnnoopqrsmnnoopqpqqrrstmnnoppqrstmnnopqqrstmnonoopopqqrstnmnnoopqrstmmnnoopqrqqrsrtssmnnoopqrsttnnonopoppqpqrrsrsstmnnopqpqqrststmnnopqrsrssttmnnoopqrsttmnnoopqrqrrstmnnopoppqqrstnnopqpqrqrrstnopqrqrrsstnmnooqpqrrstmnonoopqrstnnopoppqqrrstmnnopqrststnmnnoopqrstmnnopqrstnonooppqpqqrrsstnnopqpqqrrsstmnnopoppqqrststmnnopopqqrsunnopqrsstmnopooppqqrsrssttnonoppqrstmnnonooppqpqqrrsstsstmnnopqrqrrststnnopqrrsrsstnopqqrstnopqpqqrstmnoonoppqrstmnnoopqrqrrststtmnnopqrqrsrssttnopqrststnnopqpqqrrststtnopqrsrsttnopqrsrsstnopqrstunopqrstnnonoppqrsrssttnmonoopqrstunnonoopqpqrrstnnopqrstmnnopqpqrrstmnnooqrstnnopqrststnnopoppqqrstmnnopqpqqrrstmnonoopqrsrsstmnonnooppqrstnnoppqrqrrssttmnonoopopqqrststtnopqrstmnnooppoppqrsrsstmnnopqrsrsststmnoopqrsrsstmnoppqrqrsrssttmmnnoopqpqqrrsrrssttmnoopoppqqrstt+++)**)))))*))*))**)))))()(())))())))()()()())(()()())))(())((()                                           tuvwwxwxxyzyzz {|{{|{|{|{{||}|}||}tuvwxwxxyyz{z{{|{|{|{||{||}||}|}|tuuvuvwvwwxyzyzz{|{||{||}||}}||}ttuvvwxyz{|{|{{|{||{||}|tuvwxyxyyzz{|{{||{{|{|{{||}|}||}tuvuvvwxxyz{z{{|{{|}||}|}}ttuuvuvwvwwxyz {|{{|{{|{||{| |}|}|tuuvwxyz{z{{|{{|{{|{||{|{||}|}||}}|}|}ttuvwxwxyyz{|{{|{||{||}|}}tuuvwvwwxyz {|{||{| |}||}||}|}|}ttuuvvxyzz{z{{|{{|{||{|{||{|{||}tuvwxwxxyz {|{|{{|{||}||}||}utuuvvwxyz {|{|{||{||}||}||}|}|}tuuvwxyz{z{{|{{|{{|{||{{||{||}||}|}}|}tuuvwxwxxyz {|{|{||{||{||}|}}|}tuuvwxyz{|{{|{ |}||}||}|}ttuuvwxwxyyz{|{||}|}||}||tuuvvwxyz{|{{|{{||{|{| |}||}tuuvwwvwwxyyz {|{|{|{|{{||{| |}|}}tuvwvvxwxxyz{z{{|{|{| |}|}}|tuuvwxxwxyyz{z{{|{|{{|{{||{| |}|}}tuuvwvvwxwxxyyz{{|{{|{|{||}|}ttuuvvwxyz{z{{|{|{{||{||{||}||}}||}}|uvwvwwxyyz{|{{|{{|{||}||}|}||}ttuuvvwxyz {|{|{||{|}||}|}}tuvwvwwxyz{|{{|{|{| |}|}}|}ttuuvwxyz{|{|{||}||}|}||}|}tuuvwxyz {|{|{||{||}|}||}|}uuvwxyxyyz{{|{{|{|{{|{||}||}}||}|}}tuvwxyz{|{|{|{|{||}|}||}||}tuuvwxyz{z{{|{{|}|}}|tuvvwxyz{|{|{{|{||{{||{||}|}}||}|}|}}tuuvuvvwxxyz {|{{|{|}||}|}|}}||}}uuvwxyz{z{{|{{|{{|{||{| |}||}}||tuvwxyz{|{|{||{||{{|{|{||}||}|}utuuvwvwwxxyxyyz{z{ {|{||{{|{|{||}|}|tuvwvwwxwxyyz {|{||{| |}||}}uvwxyzyz{z{{|{{|{{|{{||{|{||}|}||}uuvwxwxxyyz {|{{|{|{| |}|}}|}|uuvwxwyyz {|{{|{||{|{||}|tuuvwxyzyyzz{{z{{|{{|{||{||{||}|}||}||}}tuvwxyz {|{|{|{|{|{| |}|}|}tuuvwxyz{|{||}|}}|}||}}tuuvwxyz{{zz{{|{||{||{||{|}||}|}}uuvwvwxwxxyyzyzz{z{{|{|{{||{{|{{| |}||}||}||tuuvwxyz{z{{|{{|{{|{|{|{| |}|}|}}|tuuvwxyz{z{|{{|{{|{||}||}|}||tuuvvwvvwwxxyz {|{||{|{{||{|{||}||}}|}|uuvwxyz{z{{|{{|{||}||}||}}tuuvwxyz {|{{|{||{||{||}||}||}}uvwxyzyzz{{|{{|{{|{{||{|{||{| |}|}}|uvwxyz{|{{|{|{{|{|{| |}|}}|}tuuvvwxyz{z{{|{|{||{||}|}|}}tuuvvwvwxxyz{z{ {|{||{||}||}|}utuvuvvwxyxyyzyz{{|{|{{|{|{|}||}||}|}ttuuvvwxyz{z{{|{||{{| |}||}}||}tuuvwxyz {|{{|{||{| |}|}}|}}|utuvuvvwxyz {|{{|{ |}|}||}|uuvwxwxxyxyyzz{ {|{|{||}||}||}tuuvwxyz{zz{{|{{||{|{||{||{||}||}||}|ttuvvwxwxxyz {|{|{||{|{| |}|}|}||}}uuvwxyzyz{z{z{{|{|{|{||{|{||}|}|tuvvwxwxxyyzyzz{|{|{{|{||{||{||}|}}|}tuuvwvwxxyxxyzz {|{{|{|{||}||}||}                                                                                                                                                                                                                                                                                                                                                                                                                           }||}|} }~}~~}~ ~~~~~~ |} }~}}~}~}~ ~~~ }|}}~}}~}}~}~ ~~~~~~~}|}}~}}~}}~}~}}~~~~~~~~}}|}}|}}~}~}}~~}~~}~~~~~~~~ }}~}}~~}~}}~~}~~}~~~~~~~}}|}|}}~}}~~}~ ~~~~~}||} }~}}~}}~~}~ ~~~~~~|}}||}}~}~}}~}~}~~~~~~~~ |}|}}~}}~}}~}~}~~~~}|}|}}~}~~}~~~~~~~|}|}|}}~}~~~~~}}|}}~}~~}~}~~}~ ~~~~~~}||}}~}~}}~} ~~~~~~~ |}}|}}~}}~}~}~}~~}~ ~~~~~}||} }~}~~}~}~~~~~~~~~~}|}}|} }~}~~~~~~~ }||}|}}~}~~}}~}}~}~~}~~~~~~~|}}|}}~}}~~}~} ~~~~ }|}}~}}~}~~~~~~}||}~}}~}}~~} ~~~~~~ }|}}~}~}~~}}~}~ ~~~~~|}}~}}~}}~}~~}~}~~ }}|}|}}~}}~}~}~~~~~~~~ }}~}~}}~}~ ~~~||}}~}~~}}~}~}~~}~~~~~~~~~ }|}}||}}~}}~}}~}~}~~~~~~~ |} }~}}~}~~~~~~~~~}}|} }~}~~}}~ ~~~~~ } }~}~~}~}~~~~~~~  }~}~~}~}~~}~~~~~~}}||}}~}~~}~}}~~}~~}~~~~}}|}}|} }~}~ ~~~~~~~|}}~}}~}~}~~}~ ~~~~~~~ }}||}}~}}~}~}~}}~}~~~~~~~~}}|}}~}~}~~}~~~~~~~~~~~}}|} }~}~~}~~}~ ~~~~~~~~ ||}}|}}~}}~}~}~~~~~~}|}~}}~} ~~~~~~|}}~}}~}~~}~~}}~~~~~~~~~~|} }~}}~}~~~~~~}}~}~}~~}~~}~~}~~~~~~~ } }~}~}} ~~~~~~ |}|}|}}~}~}}~}}~~}~~~~~~~  }~}~}}~}~~}~~}~}~~~~~~}|} }~}}~}~}~~~~~ }|}}~}~~}~}}~}} ~~~~ |}}|}}~}}~}~~}~~}~~}~~~~~~}}||}}~}}~}~}~ ~~~~~} }~}~}~}~}}~ ~~~~~ |}}|}}~}~~}}~~}~}~ ~~~}}~}}~}~~}~}~~}~~~~~~}|}}|}}~}}~~~~~~ }|}}~}}~}~ ~~~~~ }}|}}~}~}}~~}~}} ~~~~~~~~}}~}}~}}~}~ ~~~~~~}}|}}~}}~}~}~}~ ~~~~||}}|}}~}~~}~~~~~}|}}~}~}} ~~~~~ }~}~}~~}}~~~ }~}~~}~~}~ ~~~~||}}~}}~}~}}~}}~~}~ ~~~~~ |}}|}}|}}~}~}~~~~~~~~ |}~}~}}~}~~}}~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               󁀀                 󁀀  򁀀  􂁂     򂁂  򁀀    􂁂            􁂁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     􄃄     􄅄 󃂃󃂃    􄃃                   󆂂                                                                                                                                     􇆇        􆅆    􈇇󅆆   􇆆􇆆              󇆆  񇆆         􆅅    򈇈                                                                :6869zz88;:8?6:>;>:;}:;|<{=}@9x9=@:=}|=7=?;:=<8=><􊉉    􌋌     􎍍  􉈈   􋌋򏎏{>9;:=99::599>w>:;}@8}:=<=:|::;>|?9;<;C<;>|<=79::>8   񚙚𖕕퓒𜛛򡢣򢣣򞟟񪩪 dzƳųij򶵶²󻼼       󳲲  ﲳ      𱰱                          𶵶񶵶 󵴴#   #ﴳ           󵶶                񴵴                         򶵵  󯰰     򮯮                      񪫫        󩪩    󩪩 󫬫            󦥫               򢣢      񠡡      𛜛򜝝              󗘗򖕖 򘗗󙚙      򔕕 􏐏򏐏 򒓒􍎎 󍎍   򌍌     폎  & % & $ ! * " '%  !  $  #                           凈                                        􆇆 򉈈 򆇆      􆇇  󇈉%" "#"'"  #    "                                                                                                     󇆆                  񇆇 󅆇                                  􅆆                                                                                                                                     򄃄                􃄄           󃄃򂃂          򂁂􁂁  򂁁 􄃄  񂁂                                                                                                                                                     ~  ~    ~   ~  ~  ~~ ~~ ~~񀁀~~   ~  ~~    ~~ ~~~ ~~ ~~~  ~~~ ~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ~~~~~~~~~~~~}~~}~}~~}}~}~}~}}|}}|}~~~~~~~}~ ~}~}~}}|}~~~~~~~~}~~}~}~}~}~}~}~~}}|}~~~~ ~}~~}~~}}~}}|}|~~~~~~~~}~}}~}~}~}}~}}|}~~~~~~~}~~}~~}~~}~}}~}}|} ~~~~~ ~}~~}}~} }|}| ~~~~~~~~}~}|} ~~~~~~~}~}}|}| ~~~~~~~~}~~}~~}~}}~}}|}}~~~~~~ ~}~~}~}~}~}}~}}|}}|}|~~~~~~~ ~}~}~}}~}}~}~} } ~~~~}~}~}}|}}|}~~~~~~~}~}}~~}~}}~}~~}~} }|}}||}~~~~~ ~}~}~}}|}~~~~~ ~}~}}~}}~}~~}}|}}|}|~~~~~~~~}~}~~}~~}|~~ ~}~}~}}~}~}}|}}|}|}|~~~~~~~}~}~}~~}~}}|}||}|~~~~~}~}~}~}}|}|}}~~~~~~~}~~}~}}~}}~}|}}~~~~ ~}~~}~}~} }|}|}~~~~~~~~}~~}~~}~}~}~}}|}}|}|}}|~~~~ ~}~~}}~}~}}|}|}}|~~~~~~}~}~}}~}}~}~~}}|}}|}~~~~~~~}~~}~~}~}}|}}|}}||~~~~~~~~~~~~}~}~~}}~}}~}}|}}|}}||}|}~~~~~~~}~}~~}~}|}}|}||~~~~~~~}~~}~}}~}}~}}|}|~~~~~}~~}~}~} }|}||}}|~ ~}~~}}~~}~} }|}}|}}|}|}~~~~~~}~~}~}}~}~} }|}||}||~~~~~~~~~ ~}~}~}}~~}~~}}|}}|}||}~~~~~~~~~~~}~~}~}}~~}|}}|}~~~~}~~}~~}~~}}~~}~}}|}}||}}|}|}}|~~~~ ~}~~}~}~~}~}}~}}|}|}|~~~~~~ ~}~~}}~}}~}}|}|}||~~~~~~}~}~~}~}}|}}|}}|}||~~~~~~~~}~~}~~}}~~}}~}}|}||}~ ~}~}~~}~}|}|}|}|~~~~~ ~}~~}~}}~~ }|}}|}|}||~~~~~~}~~}~}~}~}}|}}|}||}|}||~~ ~}~~}~~ }~}}|}}|}}||}}|}}||}~~~~}~}~~}~}~}}~}}|}|}|}||~~~~ ~}~~}~}~~}~}~}}|}}|}}|}|~~~~~~~}~}~}~~}~}}|}|}|}||~~~~~~~~~}~~}~}}~}|}||~~~~~~~}~~}~}}~}}~}}|}|}}|}||}|}}||~~~~~~~~~}~~}~}~} }|}}|}||}|}|}}||~~~~~~~~} ~}~}}|}||}||}|}||~~~~~~~}~~}~}~}~} }|}}|}||}||~~~~~}~~}~~}~}}~}}|}|}}|}}|}||}||~~~~~ ~}~~}~~}}~ }|}|}}||}}||}|~~~~~~}~}}~}}~}~}}~}}|}}|}|}|}}|~~~~~ ~}~}~~}|}||}|}}||}||~~~~~}~~}}~~}~}}|}}|}||}|}|~~~~~~~~}~}~~}~~}~}}|}|}|}||~~~~ ~}~~}~~}~}}~}}|}}|}|}||~~~~~~~}~}~~}~}~~}~~}~}}|}}|}|}||~~~~~~ ~}~}~~}}~} }|}||}}|}||}||~~ ~}~}~~}~~}}~}}~}}|}}|}||~~~~~~}~~}~}~~}}~}}|}}|}|}}|}}||}||~~}~}}~ }|}}|}|}}|}||~~~~~~~~}~}~}}~~}~}~}}|}}|}|}}| |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򰯰       񮯮󯰨򯮯  󳲲𵶶  𺹺 ⶵ   𹸹񲱲   ֽ־׽ֽֽ׽׽ֽ׽ּּּּֽֽֽֽֽֽֽֽֽֽռּּּֽֽֽֽռֽսּֽս         !! !!  !!  ! ! ! !!! ! !! !!!"!""!!!"!"!mnnoopqrstutuuvwvwmnoppqrstutuuvvwnmnonoppqrqrrstuvwvnmoopqrsstuvwmnnoppqrstuvwmnnopoppqqrqrsststtuuvwnmnnoopqrrqrsrrssttuuvuvvwmmnnoopqrstuvwwmnnopqrqrrsrsstuvwmnnopqpqqrrstvwnmnnonooppqpqrrstutuuvvwnmnonooppqrststuuvwvmnonoopoopqpqqrrsstuvnmnnoppqrststtuuvwmnnopqrsstutuvvwnopqrqrrstuvwmnopoppqrqrrstuvwmnnopqrstuvwmnnopqpqqrrsrsstuvnopqrstssttuuvuvvmnopqrstuvwmnnopqrqrrsttuvwnnonoopqqrststtuvwmnnoopqrstuvuvvwnnoopoppqqrsttvmnonooppqrsrststtuvmnnoopqrqqrsrssttuuvuvvmnoopopqpqqrrstuvuvvmnnopqrsstuttuvuvvwnnoopqrststtuvvnnopoppqqrsrssttuvnopqrstuvwnpoppqrstuvmnnoopqrqrsstuvnnoonpoppqrstuvmnnonpoppqrstuvnmnoopqrqrrstutuuvvwwnopqrqrsstutuuvnonoppqrsrsttuvnnopqrstuvwvmnnoppqpqqrqrsrssttuvuvwmnnopqqrqrrstuvuvvnnopqrstuvuvwmnoppqrstutuvvwmnnopqrststtuvuvwmnnopqrststtuuvmnopqrsrtsttutuuvvnopoppqqrstuuvmmnnoopqrstuvuvvwmnnopqpqqrstutuuvvmnnonopoppqpqrrsrssttuvnonooppqrstuvnnonoppqrstuvnnopqrsrssttuvvwmnonnoppqrstuvuvvmnnopoppqrstuvmnnopqpqrrstuvwmmnnoopqrsrsstuvnopopqpqqrsrssttuvwmnnopqrstuvnopqrstuvmnnopqpqrrstuvmnnopqrsrrssttuuvwnopqsrsstuv           !! !  !  ! !! !  ! !    !  "!"!"""""""!                                            wxxyxyyzz{{zz{{|{||{||{|{||}||}||}}|} }wxyyz {|{{|{|{|{||}||}||}||}wxyz{z{{|{|{{|{|{|{||}||}|}|}}|}}wxyz{z{{|{{||{||{|{{|{||}|}}|}|}||}}wxyz{|{|{{|{||{||}|}||}|}}|}wwxxyzz {|{{|{{||{|{||{||}|}}|}|}}|}}wxxyz{zz{{|{{|{| |}|}||}|}|}|}}wxyzyzz{{|{{|{{|{{|{||{| |}||}|}}|}|}|}|}wxxyxyyzyz{ {|{{|{||{| |}||}|}||}}|}wxwxxyyzyzz{z{{|{{|{|{{|{{|{| |}||}|}}|}}wxyz{z{{|{{|{||{ |}|}|}|}}wxwwyyxyzz{z{{|{{|{||{|{| |}||}|}}|}|}}wxyz{z{{z{{|{{|{|{|{{| |}|}}|}}|wxyz{z{{|{{|{ |}|}}|}||}|}}wxxyz {|{|{{|{||}|}|}}|}}wxxwxyyz{|{{|{|{|{||{||}||}|}wxyxyyzz{zz{{|{|}|}|}}wxyz {|{{|{|{||}||}|}|}|}|}}|}}wxwxxyzz {|{|{{|{||{||}|}}||}||}}||}wxyz{z{ {|{||{||}|}||}|}}wxyz{z{{|{{|{{|{|}|}||}|}}|}|}}||}}wxwxxyxyzyzz {|{||{||{||{|{||}||}||}}|}}|}}wxyzz {|{{|{||}|}||}}|}}wxwxyyz{|{{|{{||{{|{| |}||}||}}|}}wxwxxyzz{zz{z{ {|{|{||{{||{||}||}||}|}}wxxyz {|{{||{{||{{|{||}||}||}||}}|}|}}|}wxwxxyz{z{{|{{|{{|{|{||{| |}||}|}}wxwxxyyzyz{{|{{|{{||{| |}|}||}|}}vwxxyz{zz{{|{ |{||}||}||}wxyz{|{|{||{||{||}||}|}|}|}}|}}wwxyz{{z{ {|{||{| |}|}||}}wxyxyyzyzz{|{{|{|{||{||{||}|}}||}|}|}}wxyxyyzz{|{{|{||{{||{{|{| |}||}|}|}}|}}wwxxyz{|{ {|{| |}||}|}}|}|}vwwxyzyzz{|{{||{{|{{ |}|}||}|}}wxyyz{|{{|{|{{|{| |}|}}||}|}}wxxwxxyz{z{{|{{|{{|{{|{|}||}|}||}}wxyxyyzz{|{{|{ |}|}||}}|}}wxyz{z{{|{|{{||{{|{{|{||}||}}|}|}|}}wwxyz {|{|{|{|{| |}|}||}}vwwxxyxxyyzz{{z{|{{|{|{|{{|{| |}||}||}|}wxyz{ {|{{|{||}|}||}|}|wwxyzyzz{|{||{||}|}||}||}vwwxyz{|{{|{||{||}|}||}}|}}|}}vwwxxyzyzz{z{{|{{||{||{{|{|{|{||}|}}||}}||}}wxwxxyyzz{|{| |}|}|}}|}|}}wxwxxyyz{|{||{{|{||{| |}| }wxyz {|{{||{|{||{|{{| |}|}}|}}|}}vwwxyxyyzz{z{{|{||{|{||}||}||}}|}}vwxwxxyzyz{ {|{|{|{|{{|{|{||}|}|}||}|}vwwxxyz{|{{|{{|{||{||}|}}|}}vwwxyxyyzz{ {|{|{{||{|{||{| |}|}}||}||}|}}vwwxxyz{z{{|{{|{{|{||{| |}||}|}|}}vwwxyz{z{{|{|{|{{|{| |}|}|}}|}}|}}wwxxyxyyz{{z{{|{{|{|}|}||}||}|}}|}vwxxyz{z{{|{{|{||{|}||}||}}wxyzyzz {|{|{{|{{||{||{||}||}|}}wvwxwxyyz{|{||{{|{|{||}||}|}}|}}|}wwxwxyxyyz{|{||}||}||}||}vwwxxyz{|{|{{||{|{||}|}||}vwwxxyxxyzz{|{{|{||{| |}|}|}}wxyzyzz{{|{{|{{|{|{| |}||}||}|}|}}|vwwxwxxyyzz{z{{|{|{||{|{|{{||{| | }vwwxyz {|{|{||{||{||}|}|}||}||}|}}|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               }~}}~}~}}~}~ ~~~~~~~}}~}~}~~}~~~~~~}}~}}~}}~~}~~~~}}~}}~}~}}~}~~}~~~~~~~}}~}~~}~~}~~~~~~~~|}}~}~~}~}~}~}~ ~~~}}~}}~}}~}~~~~~~~~}~}~}~}}~}~}~~~~~~ }}~}}~}}~}~~}~ ~~~~ }~}}~}~~}~~~~~~~}}~}~}}~}~~}~}}~~~~~ }~}~~~~~~~}}~}~}~}~~}~~~~~~~~}~}}~}}~}~~}~~~~~~}}~}}~}~}~~}~~~~~~~}~}}~~}~}}~}~~~~~ }~}~}~~}~ ~~~~~}~}~}~}~~~~~ } }~}~}~~~~~~}}~}}~}~~}~~~~~~~~ }~}~~}~ ~~~~~~}~}~~}~}~ ~~~~~~~~ }}~}}~}~~}}~}~~}~}~~~~}}~}~}}~}~~}~ ~~~~ }~}}~}~~}~~~~~~}}~}}~}~ ~~~~~~}}~}}~}}~}~}~}~~}~~~~~~~~~~~~}~}}~}}~}~~}~ ~~~~ }~}}~}}~}}~}~~~~~~~~~~~~}}~}}~}}~}~~}~~}~~~  }~}} ~~~~~~~~~~ }}~}}~}~ ~~~ }}~}~~}}~}~~}~~~~~~~~~} }~}~~}~~~~~}~}}~}~~}}~}~~~~ } }~}~~~~~~~~ }~}}~}~~}}~~~~ }}~}~}}~~}~}~~~~~~~~~~}}~}}~}~~}}~}~}~~}~~~~~ }}~}~}}~~}~~}~~~~~~~~ }~}}~}}~~}~}}~~}~ ~~~~ |}}~}~}~}}~}~}}~~~~~~~~~~~~~}}~}~~}~~}~~~~~~}~}~}~}~~~~~~~~}}~}}~}~}~~}}~~}~~~~~~~~}~}~}~}~}}~}}~~}~~~~~~~~~}}~}}~~}}~}~}~}~}~~~~~~~~~ }}~}}~}}~~~~~~~~~}~}}~}~}~ ~~~~~}}~}}~}~}~~}~ ~} }~}~~}~~}}~ ~~~~~~}}~}}~}}~}}~}~~}~~~~~~}}~}}~}~~}}~}}~~}~~~~~~~~~}}~}}~}~}~}~ ~~~~~|}}~}~~}}~~}~}~~}~~~~~~~}}~}}~}~~}~~~~~~~}|}}~}}~}~~}~ ~~~~~~~~}}~}~}}~}~~}~}~~~~~~}~}~~}~~}~ ~~~~~~}~}~}}~}~}~~}~~~~ }}~}~}~}~}}~}~~}}~ ~~~~~}~}~}~}~~~~~~~}}~}}~}}~~}}~~}~ ~~~~ }}~}~}~}~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     򁀁񂁂  򁀀                      󁀁     󁀀   􂁂             󁀀       򁂂       󂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        󄃃  򅄄    􅄅􃂂        󄃄􃂃            򄅅      񂃂 򅄅   􅄄      􅄅                                                                                                                                                      􆅅              􇆇  􆅅       􇆇    􇆇󆅆 󆅆                                                                      5183136/52;911570:04<1=1/44.=4581730.9341-0037211374-61130086/11      􉈈         󉈉          󉈉         .4<60631:4222;40214081/3504113342:412749531/08<5411/2594.3.4.588󔓔  򐏏󎏏󕔕  󖕖 񖕖   񘗘򞝞󘗘    󜛜      󢡢󣢣 񥦦 񧦧   󞟟 󤣣쥤       󭬭                 󲱲      ӹҹ򺻺󸹹ҸӸ󸹹ҹҸҹҹҹҹҹҸҸѹҸҸҸҸҸҸѸѸҸѷѸѷѷѷѸѷѸѷзѷ))()(()(()()((*)**)*))))))*))*++*+*++*++++,+,+,+,+,---,-,,,-----nopqrstmnopqprrsrssttnopqrstmnnopqrstmnnopqrqrrssttmmnoopqrqrsstmnnoopqrstnopopqqrstmnopoppqrstmnnoopqpqqrststmnopqrrstnoppqrstmnnoopqrsrrssttmnnopopqpqqrqrrsstmnnooppqrstnnonpoppqrqrrstmnnoopqpqqrrstsmnnopqrsrsstmnopqrrstnnpoopqpqqrstnnonopopqpqqrrsstnnopoppqrstmnoopqpqqrrstmmonoopqrstnopqrstmmnnooppqrstnmnoopqrstmnnoopqrqrrsstmnnonoppqrstmnnopqpqrrstnmnoopqrqrsrssmnnonoopqrsstnmnnooppqrstsmnnopqpqrrstmnnoppqrqrrsrttnnoprqrrsmnnopqrsrsstmmnnoopqrstnnopqpqqrstnmnnoopqrsrssmnnonoopqpqqrrsnnopqrrstnonopopqpqqrrsnmnnoopqrsnmonoopqrsmmnnooppqrrsnmonooppqrsmnnoopqppqqrrsmnnopqrrsnopqpqqrrsmnnopqrssnopqqrsmnnopqrsnnopqrsmnnopqrsnnopqrsmnnoopqrsrmnnopqrrsnmnnooppqrsnopqrsmnnopqrssmnonnooppqrsnnonoopqrrsnopopqqprrs))))())(()))(()***))*)**))))))****+*+*+**+,,,,,,++,,,,,-,,,-.-.-                                  uvwxwxyyz {|{{|{||{||}||}|}||}tuuvwwxyxyzzyz{z{{|{{| |}||}uuvwxyxyzz{|{|{{|{{|{{|{||}||}|}}uvwxyz {|{{|{|{{|}||}|uuvwvwxxwyyz{zz{{|{{|{||{{|{||{||}|}|}|}}utuuvvwxyz{|{|{{|{|{||{||}|}|}}|uuvwxwxxyzz{|{|}||}|ttuvvwxyyxzyyz{{z{{|{|{||}||}|}|}|}|uuwxyz {|{{|{|{||}||}}|}|}}utuuvwxyz {|{||{||}||}|}|utuuwvvwxwxxyz{|{||{|{{||{||}|}|ttuvuuvwwxyz{|{|{{|}||}}|uttuvvwvwwxxyz{|{{|{{|{{|{{|{||{||}|}}|}||}||}}uuvwxyz{z{{|{{|{||}|}||}|tuuvwvvwxxyzzyz{zz{{|{{|{|{{|{| |}||}||}utuuvwwxyzyz{ {|{|{{|{|{||{||}||}|}|}}||}tuuvwxyzyzz {|{{|{||}||}||}|tuuvuvvwwxyxyzz {|{{||{| |}|}||}uttuuvvwxyxyzz {|{{|{||{|{|{{||}|}tutuvvwxyxyyzz{z{{|{ |}||}|}|}}tutuuvvwxxyzz {|{||{ |}|}|}}|}}tuuvwxyz {|{{|{||{||{||}||}}tuvuvvwxyz {|{{|{|{{| |}||}||}tutuuvvwyxyyzyzz{|{{||{{|{{ |}|}tuvwvwwxyz{z{{|{{|{|{ |}|}tuuvuvwwxwxxyz{z{{|{{||{{|{{||}|}|}tuuvwxyzyzz{{|{{|{||{|{||}|}|}}tutuuvwxyz {|{{|{{|{| |}||}||tuuvwxyz{z{{|{{||{||{||}|}|}||ttuuvwvxxyz{z{{|{{|{|{{||{{||}||}||tuvuvwwxyz{zz{{|{{|{|{||}||}||}||}tuuvwxyzyzz{{|{|{|{{||{{|{|{||}||}tuvwxyz {|{|{||{||}|}sttuuvwxxyz{z{{|{|{||{| |}||}tuvwxyyz{z{{|{{|{{||{||}||}|}||tuvwxyz {|{{|{{||{{||{||}||}|}}||tuvwxyz{{z{z{{|{{|{| |}||}||}}sttuuvvwxwyyxyzyz{z{z{{|{|{{|{|}|}}tuvxwxyxyyzyzz{{|{|{{|{||{||}|}}||}}||ttuvwxyxxyyz{z{ {|{|{|{{|{| |}|}ttuvwxyzyzz{z{{|{{|{{|{|{| |}|}||}}sttuuvwxwxxyyz {|{| |}||}||}ttuvuwvvwxxyz{|{||{| |}||}}ttuvwxyz{|{{|{||{|{{|{|{||{|{||}||}}|ttutuuvwxxwxxyzz{|{{|{||{|{||}|}|sttuvwxwxxyyz{z{{|{{|{{|{|{| |}||}||}sstutuvuvwvwwxyxyyzz{{|{{|}||}}sttuvwxyz{z{{||{{|{|{| |}|}|}|tsttuvwxxyz{{z{{|{{|{{|{|{|{| |}|sttuuvwxwxxyyz{|{|{| |}||sttuvwxyzz {|{{||{{|{{| |}|}|}tsttuvwxwxxyyzyzz{z{{|{{|{{|{ |}|}|}}sttuvwvwwxxyyzyz{z{{|{|{|{{|{|{||{| |}|}ststtuuvwvwxxyz{|{||}stuvwvwwxyzyzz{{|{|{{|{{||{||}||}|sstuvuvwvvwwxxyyz{z{{|{{|{|{|{{|{|{|{||}|}||}ssttuvwvwwxxyz {|{{|{| |}|}}|sttuvwxyxxyyzz{z{ {|{||{|{{||}||}|}|}|sstuuvwxyz{|{{|{|{|{||{||}||stuvwxyyzyzz{{|{{|{|{|{||{||}||}||}}||sttuvwvwxxyxyzz{|{{|{|{| |}|stuvwxyzyzz{|{{|{{||{||{||}||}stuvwxyxyzyzz{|{|{{||{||{| |}||}ststtuvwvwxwxxyz{|{|{||{||}||}                                                                                                                                                                                                                                                                                                                                                                                                                         |}}|} }~} ~~~~~||}}~}~~}~~~~~}}|}}~}}~}~~~~ |}}|}}~}}~}}~}}~~}}~ ~~~~~ |}}~}~~}~~~~~~~~~~|} }~}~~}~~~~ }|} }~}~~}~~~~~~~~}}|}}||}}~}}~}~ ~~~~~~|} }~}~}~~}~~}~~~~~~~~~}|} }~}~}~~~~~~~}| }~}}~~}~}~~~~~~ }}||} }~}}~~}~}~~~~~}|}}|}}~}~~}}~}}~}~~~~~~~~ |}}|}}~}}~}}~~}~ ~~~~~~~}}|}|}}~}~}~~}~}~~~~~~~~|}}|} }~}}~}~}}~ ~~~~~~|}||}}~}~}~~}~}~~~~~~~~ |}|}}~}~}~ ~~~~}||} }~}~}~~}~~~~~|}}|}}~}~}}~}~~}~~~~~~}|}|} }~}}~~}~~}~~~ ~} }~}}~}~}~}~~}~}~~~~~~~~~}|}}~}~~}}~~}~~}~~~~~~~~~~}}|}}|}}~}~}~}}~~}~ ~~~} }~}~}~}}~~}~~}~~~~~~~~~ ||} }~}~}}~ ~~ }|}|}}~}}~}~~}~}~}~~}~~~~~~ } }~}}~}}~}} ~~~~~~|}}|}|} }~}~~}~~~~~}||} }~}}~}~~}~~}~~}~~~~~~~~~~ }~}}~}}~}~ ~~~~~~~}~}}~}~ ~~~~~~ | }~}~}}~}~~}~ ~~}~}}~ ~}~~~~~~~~~}|}}|}}|} }~}~~~~~~~~}|} }~}~~}~~}~ ~~~~}}~}}~}}~ ~~~~~~}|}}~}~}}~~}~}~ ~~~~~~~|} }~}}~~}~~~~ }}|}|} }~}~~}~}~~}~~~~~~~~~}|}}|}}~}}~}~}~}~~}~ ~~~~}|}}|}|}}~}~}~}}~ ~~~~~~ |}}|}}~}}~}~}~}~}~}}~ ~~~~~~~ |}|}}~}}~}} ~~~~~~~~~~ }|}}|}}~}~~}~~~~~~~~~~ |}~}~~}}~}~~~~~~~~ }|} }~}~~}~~~~~~~~}| }~}~}}~}~~~~~~~~~}| }~}~}}~}}~}~~~~~~~~~~~}||}}|}}~}}~}}~~}~~}~~}~~~~~~~~| }~}}~}~}~}}~}~}~~~~~~ |}~}~~}~~}}~}~~~~~~}|}|}||}}~}~~}}~}}~~~~}|}||} }~}~}~~~~~~~~~}|}|}}~}}~}}~}~~}~~~~~ }|}|}}|}~}}~}}~~}~}}~~}~~~~~~~~~~}~}~}~}~}~~}~~~~~~ }}|}}|} }~}~~}~~~~~~|}}| }~}~~}~~}}~~}~~~~~}|}}~}}~}}~}~~~~~~}||}||}}|}}~}}~}}~~}~}}~~~~~~~~~~|}|}||}}|} }~}~}~~~~~~||}|}}~}~}~~}~~}~~~~~~~}|}}||}~}~~}}~}~~}~}~ ~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                􃂂             񁀀    񁀁                      󁀀󂁂                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 󅄅  󃂃  򄃃􄅅   􄅅                   􄃄􂃂􄃃   󄃄    󄃃                                                                                                                                                                􇆇    􈇇        􈇈                񆅆                                                                     9=:<7;;?89<6;<88876:4887<93858;:35<43827091/201024/.2+**-3//.,-.  񋊊   󊉉   􍌍     􌋌      񎍍  􎍍    ;:=7;7:<6?:999;89>98:<:<:793<:27<89200504023/32/0.-//.01-,//4,- )񘗘񖗗     󑐑  򜛛   񞝝 󡘙       򡠡     󠟠藍 򬫬          򫬬                              󩨩      񤣣 񧦦    򰱱  򱰱*    -󮯮     $  򮭮 ! 󭬭 쬭򬫫  󫬫  )  ꫪ  諪          򨧨򨧧񰱰 󮯮  񮯮         򮯯       󭮮  𫬫񫬫  󫬫         󪫪             󧨧𦧦  򭮮    󪫪 򫬫                                 󤥤                  񥤤     𥤤                 藍   򡢡                               󜛜   󘙙 󕖕   򘙘  𖗖   𓔓             𒓓 􏎏 􏐏 鍎   {@><<6<;9:4;:8;7798624500-.1(+1,5 &% )*-,(" , '   􊋊      󊋊       􈉈          ~|{y<:x@::9:248/:708652-4/,-.-), ( (*( ($$ '" +                                                              􆇇    􆇆               򆇇 􆇇        􆇇 񇈈      􈇇  ꅆ 񆇇  􆅆      􅆅 󅆆                                                                                                                    񃆆 􄅄          󄃃                    􃄃                                                                                                                                                   󂃃                    􂃃      􂃂   􁂂          򃂃         񁂂 􁀁    򁀀                                                                                                                                                                                                                                                               ~~~ ~~~ ~~~~  ~~~ ~~~ ~~~~~~~~~~򁀁 ~~~~~  ~~~~~ ~~~~ ~~~~~ ~~~ ~~~~ ~~~~~ ~~~~~򁀀~~~  ~~~~~  ~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~  ~~~~~~~~~~~~~~~~~~~~~ ~~~~ ~~~~~~~~~~ ~~~~~~~ ~~~~~  ~~~~~~~ ~~~~~ ~~~~~~~~~~~~~~~~~ ~~~~ ~~~~~~~~~ ~~~~~~~~} ~~~~~~~~ ~~~~~  ~~~~~~~}~~  ~~~ ~ ~~~~ ~  ~~~~~~~ ~~ ~~~~~~~~~~}~~~~~~~~~~ ~~~~~ ~~~~~~ ~~~~~~~}~~~~~~~ ~}  ~~~~~~ ~}~ ~~~~~~~~ ~ ~~~ ~~ ~ ~~~~~~~}~~}}~~~~~~~~~~~~~~}~~} ~~~~~ ~}~}}~~~~~}~}~~}~}~ ~~~~~~~~}~}~~}~}~}~~~~~~~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ~~~}~~}}~}~}}~}~ }|}} |~~ ~}~}}~~}~~}~}}~}}|}||}||}||~~~~}~~}}~}}~~}}~}~}~}}|}|}|}}|}||}||~~~}~~}~}~}~}}~}~~ }|}|}|}|}||}||~~~~~}~~}~}}~}}|}|}}|}}||}|}}||~~~~~~} ~}~}~} }|}}|}||}||~~~}~~}~~}~}~}}|}|}|}||{~~~}~~}~}~}~} }|}}|}||}}|}|}|}}|}||~~ ~}~}}~~}|}|}|}||}||{~~~ ~}~}~} }|}|}|}||{|~~~~}~~}~~}~} }|}}|}}|}||}}|}|| ~}~}~}~}|}|}|}||}}||{~ ~}~~}~~}~}}~}|}|}| |~~~}~}~}}|}||}||}||}||}| | ~}~~}~~}~}}~~}}|}}|}||}}|}|{|~~}~~}~}}~}~~}~}}|}}|}|}}|}|}||~}~~}}~}}~} }~}}|}}|}}|}|}||{||{~~~~}~~}}~}~}}~}}|} |{||~}~~}~~}~~}}~}~}}|}}|}}|}|}||}|{~~~~}~}~}~}~}}|}}|}||}}|}||}||{|{||~~}~~}~}~~}~}}~}}|}}||}|}|}|}|}| |~}~~}}~~}~}}~}}|}}|} |{|{|~~}~~}}~}~~}}~}|}|}}|}||{||{|~~}~~}~}}~}}|}}|}||}}|}| |{||{{~}~}}~~}}~}}|}|}}|}||}||{|~ ~}~}~~}}|}}|}||}}|}| |{~~}~~}~}}~}~}}|}|}}|}|}| |{||{|{~~}~~}~}~}~}}|}||}||{|{~~}~}}~}}~~}~}}~ }|}|}||}}|}||{||{ ~}|}||}}|}|}}| |{||{|~ ~}~}}~}~~}}~}}|}}|}|{~}~~}~~}~}}|}||} |{|{~~}~}}~} }|}||}|}|}||{||{||~}~~}}~ }|}}|}|}|}|}} |{||{||{~~}~~}~}~~}~}}|}}|}}|}||}| |{|{~~}~}~} }|}|}|}}||}||}||{||{||{|~~}~}~}~}~}}~~}~}}|}}|}}|}} |{||{||{|~~}~}~}~}}|} |{|{||{{~~}}~~}~}}~}}|}}|}|}|}|{||{{|{|{||{ ~}~}~}}~}}|}||}}|}|}||}}|}}||{|{||{||{|~~}}~~}}~ }|}}|}}|}}|}}||}||{||{|}~~}~}~~}}~}}~}}|}|}|}|}} |{||{||{||{|~~}~~ }|}}|}}|}}||}| |{|{{|~}~}~}~}}~~}~}}|} }|}||{||{||{{||{{||~}~~}~~}~}}~}}|}||}|{||{|{||{{~}~~}}~}~~}~}}|}}|}}|}| |{||{|{|{{|{|{{|{}~~}~~}~}~}}~}|}|}|}|}}||}|}| |{|{||{}~}~~}}~}~~}~~} }|}|}}||}|}||{|{||{||{~}~}~} }|}}|}||}| |{|{{||{{~}~}~~}~~}~}}|}|}}|}||}|}}|}||}||{||{|{|{|{{~}~}~}}~} }|}}|}}|}||}||}| |{|{|{||{|{{~}~~}}~}~}}|}}||}|}|}||}}||{|{||{~}~~}~}}~}~} }|}|}||}||{|{|{{|{~}~}~}}~}}~} }|}|}||}||{|{||{}~}~~}~}}~} }|}||}|{|{{|{|{{}~~}~~}~~}}|}|}}|}||{||{|{||{|~~}}~~}}~} }|}|{|{|{||{|{|{}}~~}|}|}}|}||}}|{||{{||{|{{|{|{{}~~}~~ }|}}|}|}||}| |{||{{|{{|{||{~}}~}}~}}~} }|}|}||}} |{||{|{||{{}~}~}}~}~} }|}|}||}|}||{||{|{{|{||{{~}~} }|}}|}||{|{||{|{{|{{}~~}~}}~}}|}|}|}}|}}||{|{{|{||{|{}~}~} }|}}|}|}}|}|}}| |{|{{|{|{{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ﰯ  󮭮          񵴵򻼼     󳴴  󳴳  񵶶ּռּּռռռռռռռռռռռռջռջռռջջռջ񾿾ռԼջԻԻԻԻԻԺԻԻԻԺԻԺԻ""""!!""#####"""#"######$####$#$$#$#$%%$%%%%%%$%%&%&&&&%%%&&&'&&mnnoopqrstuvmnopqrqrsrssttuvnnonoppqrrsttuvnmnonooppqrsrssttuuvmnnopopqqrstsuutuuvnopqpqqrrststtuuvvmnnoopqrstuuvnnopqrtuvnnopqrstuvnmnoopqrqrrstsstuuvuvmnnopqrsrssttutuuvmnnopqrststtuvmnnopqrstuvnnopopqqrrstuvnoppqrststtuuvmnnopopqqrrstunonooppqrstuvnnopqrstuvmnnopqrstutuuvnnopqrrstumnnopqrstsstuumnnopoppqrstuvnmmnoopoppqqrstumnnoopqrsrsstuvumnnopqrsttunmnnoopqrstuvvmnnoopqrstuvnnopqrststtumnoopoppqrstunopqqpqqrrstutuunopqrqrrsstutuumnopqrstuvmnnoopqrstumnopqrstuvmnnopqrqrrsstunmnnopqrstunonnpooppqrststuunopqpqrqrsrssttutuvmnopqrsrsttunopqrqrrstunnopqrststuuvnnopqrstuvmnoopqqpqqrstssttuunopqqrqqrrsststtunopqrstunnonoopqrqrsstumnnopqpqqrsrssttunmnonooppqrqrrstumnmnoopqrqrsstunopqrsrststtumnnoopqrsttunopqrqrrsstuumnnopqpqrrssrssttutunmnoopqrqqrsrsstumnopqrstunnopqrstunnopqpqqrrststuttnmnoopoppqrstumnnopqrqrsststtumnopqrstunmnooqpqqrrsrsststtunonopoppqpqqrsrtsstuumnoopqrsstutmnnopqrsttu"!""""!"#####""###"#######$##$#######$%$$%%%$%%%$%&&&&&%%&&%'&&'                                               vwxyz{z{{|{|{||}||}||}|vvwxwxyyzyyzz{ {|{{|{||{||{||}||}|}|}}|}wwxyz{|{|{||{||}||}}|}||}}|}wwxyyz {|{{|{|{||}||}}|}|}}||}vwwxyzyz{z{zz{{|{|{|{|{{||}|}||}|}}vwxxyz{|{{|{|{||{||{| |}||}|}wwxyxyyzz {|{|{| |}|}}|}||}}vwyz{z{{z{{|{|{|{||{{||{||}|}}|}|}}vxwwxyyz{|{{|{||{|{||{||}|}|}|}}|}vwwxyxyyzyz{zz{ {|{{|{||}|}}|}||}|}}wxwxyyz {|{{||{|{||{|}|}|}}|}}|}}vwwxyz {|{|{||}|}}|}}|}||wvvxxwxxyz{|{{|{{|{||{|}||}|}|}}vwxyzz {|{||{||{| |}|}}||}}|vvwwxyxyyzz {|{{|{|{{|{| |}||}|}}|}}vwxyz{z{{|{{|{|{||{{|{||{||}|}}||}|}}||vwxyz{z{{|{ |}|}||}|}vwwyxyyzz {|{|{|{{||{| |}||}|}|wvwwxxyz {|{|{||{|}|}|}vwxyz{ {|{{|{|{{||}|}||}|}vwwxyxyyz {|{||{|{{|{{| |}|}|}||}||}}|}|vvwwxyz{z{{|{{|{{||{{|{| |}||}||}||}|}vvwxwxyyz{|{|{|{{|{{| |}||}||}}uvvwwxxyz{z{{|{{|{{|{||{{||{||}||}}|}}||}|}uvvwwxyz{|{{|{||{||{| |}|}}|}}uvvwwxxyzyzz{|{{|{{|{||{||{| |}|}}|}}|}}vwxyz{|{||{{|{{|{|}|}|}||}vwxyxyyz {|{|{|{||{||{||}||}||}|}}vvwxyz{|{{|{|{{| |}|}||}||}}||}}||uvvwwxxzyzz{zz{{|{{|{{|{{|}|}||}|}}uvvwwxyzyzz{{z{ {|{||{||}||}||}|}|}}vwxyzyyzz{{|{{|{{|{|{{|{||{||}||}|}||}|}vvwxyz{z{{|{{|{|{||}|}vwxyz{|{|{{|{||{ |}||}|}}|uvvwwxyxyyzz{z{{|{{|{{|}|}}vwxyz {|{{|{|{||}||}|}}vvwxyz{ {|{{|{{|{||{||}|}}|}uvwxyz{|{{|{|{{||{{|{||}||}|}uvvwxyz{z{ {|{|{|}||}|}}|}}uvvwwxyz{zz{{|{{||{{|{{|}|}}||}}uvvwvwwxxyz{z{{|{||{| |}|}}||}|}}|}||}|uvvwxxyxyyzyz{{|{{|{||}|}||}vwyxyyzyz{ {|{||{|{|{| |}|}||}|}}|}uvvwxyz{z{ {|{{|{{|{|{{||}||}|}||}|vuvvwwxyzyzz{{|{{||{|{||{|}||}}||}||}uvvwxyzyzz{z{z{{|{|{{|{{|{|{{||}||}|}uvwwxyxyyzz{z{{|{|{|{{||{|{||}|}}|}||}|}||}|}uuvwvwwxxyz{z{{|{{|{||}||}||}}|}}|uvvwxyz{|{{||{{||{|{||{| |}||}|}vvwxyzyzz{{|{||{{|{{|{||}|}||uvvwvvwwxxyz{z{{|{{|{||{|{|{||}|}||}||}|uvwvwwxyz{z{{|{|{||{|{||}||}||}||}|}uuvvwwxxyzyyz{{zz{{|{|{|{{|{| |}|}}|}|}|}}uuvvwwxyz{z{ {|{|{{|{||}|}}|}||uuvvwxyz {|{||{| |}||}}|}}|}}uvvwvwwxxyz{|{|{{|{|{{|}||}||}|uuvvwxyz {|{||{|{||}|}|}||}}|}uvwxyz{|{|{{|{{|{||}||}||}}|}}uvuvwwxyz{z{ {|{{| |}|}||}|}}|}|uvvwxwxxyyz{|{{|{{|{|{||{||{||}||}|}}|}uuvvwvvwxxyxxyyzz{z{ {|{{|{{|{||}|tvvwvwxxyz{|{{|{|{||{||{||}||}|}uuvwxyz{|{|{|{||}|}|}|}|uuvwxyz{|{{|{{|{{|{|{||{{||}||}||}||}                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }~}}~}~}~~}~~}~ ~~~~~}}~}}~}~~}}~} ~~~~}}~}~~}~~}~~~|}}~}~}}~}}~~}}~~~~~~ }~}}~}~~~~~}~}~}}~}}~ ~~~~~~~  }~}~~}~}~~}~}~}~~~~~ } }~}}~}}~}~~}~}~~~~~~ }}|}}~}~~~~~~~}}~}}~}~}~~}~ ~~~~~}|}}~}}~}~}~~~~~~ }}~}}~}~~}~}~}~~~~~~}~}}~}~}~ ~~~~~~~~|}}~}}~}~}~ ~~~~~~~} }~}}~}~ ~~~~~~|}~}~~}~}~~}~~~~~~~~}|}}~}}~}}~}}~}~~~~~~~}~}~}}~}~~}~}~~~~~~~~~~}~}}~}~}~~}}~~~~~~~~~ }~}}~}~~}~}~~~~ }}~}}~}~}~~}~~~~~~~ |} }~}~}}~~}}~~~~~~  }~}~}}~ ~~~~}}~}~}}~}~~~~~ }}~}}~}}~~}~}~~~~~}~}}~}~~}~ ~~~~~ |}}~}}~~}~~}}~ ~~~~~~~  }~}}~}~ ~~~~~~~~~~|}}~}}~}~}}~~~~ }}||}~}}~}~}~~}}~}}~~}}~}}~~~~~ }~}}~} ~~~~~~}|} }~}}~~}~}~~}~ ~~~~~~~}|}}~}~} ~~~~~~}}|}}~}~}}~}~~~~~~||}}~}~~}} ~~~|}}~}}~}~~}~}~~}~~~~~~~~~}~}~}~~~~~~~~~~ }}~}~}}~}}~}~}}~~}~~~~~~~~~~}|}}~}}~}~}~~~~ }|}}~}}~}}~}~}~}~ ~~~~}}~}}~}}~}}~~~~~~~}}~}}~}}~}~~~~~~|}|}}~}~}}~}~~~~~~}~}~}~~}~~}~~~~~~~~~~}|}}~}}~}~~}~}~ ~~~~~|}}~}}~}~}}~~~~~~~}}|}}~}~}}~~~~~~~~~} }~}}~}~~}~~}~~~~~~~~}||}}~}}~}~}~~~~} }~}~}~}~~~~~~|} }~}~}~}~~}~}~ ~~~~~ }~}}~}~~~~~|}}~}}~}~~}~}~ ~~~~~ }}|}}~}} ~~~~~~}}~}~}~}}~~}}~~~~} }~}~~}~}}~}}~~~~~}}|} }~}}~}~}}~~~~}}|}}~}~}~~~~~ }|}}~}}~}~~}}~}~}~ ~~~~ |}}|}}~}~}~~}~}~ ~~~~~~~ }~}}~}~~}~ ~~~~~  }~}}~}}~~}~~~~~~~~ }||}}|}}~}}~}}~}~}~}~~}~ ~~~~~}|} }~}~}}~ ~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              󂁂                                       󁀁        쁂    󁂁      􂁂                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        򄃄    􅄄      򄅄       񄅅 􅄅  󃄄     􃂂󄃄    󄅄  􅄅  󅄄     򄃃                                                                                                                                   텆󇆆        󈇈         􆅆                             􆅅                                                                ..713/.2.-+..50-0,0+/+26..0/01--0-./1/+/-(//,)*5*1*-/-(--&).,)&*  􍎎                      񌍍  􊉊񎍎    򎇇򎇇 􊉊  񍌍   򌋌򍌍3.-01/47/,+0-1,0/0+10 +.150 .,5+-6/ ,,20*2* +-.*, *+-)-. -,.-,) +*) -'1- 󐏐       󒓓󎍎   󞝞    󝖖  񝜜                 񞝞   󨧧    񪩩 쵴   󶵶         󱲳         зззѷ󶷷з϶жжжζ϶ϵζ϶򽼽ζζεεζεεͶͶ͵͵͵..-/..././000/0/00101001222122333344443544455655577677878788899:nnonoopqrmnnopqrmnnopooqpqqrmnoopqrsnopqrnnopqrnopqppqrqsnnopqrnopqrnopqrmnnoopqpqqrmnonoopoppqrnnopqrqqnnopqrmnnopqrqqmnnonoopqrnnopqpqqmnnonoppqrnopqnopqnnonoopqmnnonoopqrmnopqnnopqrmnnonoppqrnopqrnnopopqqpqnopqnopqnmnnopqnopqmnnoopqpqmnnoopopqqnnpoppqqmnoopqmmnnooppqmnnopoppqmnnopmnnopnnoonppopqnopnopqmnnopmnopmnonpoppmmoonooppnmnnoopmnnopnnopnonopmonooppmnnonnopmmnoopmnnonomnnomnnoonomnnomnomnoonno.......////////0010001121122222332344444555456555667678888888899                   stuvwxyxyzz{z{{|{{|{|{| |}|}||rssttuvwxyxyzz{|{{|{{||{||{||{| |}sstsuuvuuvvwwxwyxyyz {|{||{| |}|}}rssttuvvwxyz {|{{ |{||}|}|}sstutuvuvvwxyz{z{{|{|{{|{|{{|{| |}|}sststtuvwxyxyzyz{{z{{|{{|{|{|{| |}||}|}sstuvwxyyz{|{{|{||{||{|{||}||}rrtssttuuvwxxyz{z{{|{|{||{||{||}|}||stuvwxyzzyzz{{|{{|{||{||{| |stuvuvwvwwxxyz{|{{|{|{|{||}|}|}rsstuvwxyzyzz{{z{{|{{|{|{||srsttutuvvwxyz {|{|{|{||{|}|}||rsstuvwvwwxyyz{|{|{||{| |rsstuvuvvwxy{z{{|{|}||rstuvwxyz{|{{||{||{|}|}|}|rssutuuvwxyxxzz {|{{|{|{| |}rrsstuvuvvwwxwxxyzyzz{|{{|{{|{||{| |rssrststtuuvvwxyyzyzz{|{{|{{|{| |}rstuvwxyzz{|{{||{{||{|{||rsstutuvvuvvwxyxxyyz{{|{|{||{{||}|}|rrsststtuuvuvwvwwxxyxyyzz {|{{|{||}|qrsstuvwxyzyzz{|{|{{||{||}||rststtuuvwxyz{z{z{{|{||{{|{ |rstuvwxyz{|{{|{||{||}qrrststtuuvwvwwxyxyyz {|{|{{|{||{|{|}||}rrststtuuvwxyz{z{ {|{{|{||{||}||rqrrssttuvwxyz{zz{z{{|{|{|{||{{||{||qrrsrssttutuuvvwxyz{z{z{{|{|{|{{|{||}||rrsttuvwxyyz{|{|{{|{|{|{|{||{|{||}||qrstuvuvvwwxyzyz{z{{|{{|{{|rqrrstuvuvvwxwxxyz{|{|{{||{||{||qrsttuvvwxyzyzz {|{{|{{||{||qrrsrssttuuvwvwxwxxyyz{z{{|{{|{{|{|{||{||}qqrrstutuuvwwxyz {|{{|{{ |qrstuvuvvwvwxxyz{z{ {|{|{|{||qrsttuvvwvwwxxyz{{z{{|{{|{|{||{{|{|qrsststtuvwxyzz{|{|{{|{|{| |qrqrrsstuvwxyyz{|{{||{{|{{||{|qrstuvwxwxyxyyz{z{{|{|{||{{|{|{||pqrrsrsstuvwxyxyzz{z{{|{||{| |pqqrrstuvwxyz{|{|{{|{{|{||qrsrssttuvwxyzyyzz{|{|{||{{||pqqrqrrssttutuuvvwxyz{z{{|{{||{{|{||{||pqqrrsttuvwxyzyzz {|{{|{|pqqrstuvwxyz{z{{|{|{||{{|{||{||pqqrqrrstuvwxyz {|{|{{|{|{||{||pqrstuvwxwxxyyzz{z{ {|{|{||pqpqqrrsrssttuvwxyxyzz{z{ {|{|{||{||pqrstuvwxyxyzzyzz{{z{{|{|{{|{|{||pqprqrrsttuvuvvwxyxyyz{ {|{{|{||{|{||pqpqqrsrsstuvuvwvwxwxxyxyzyz{z{{|{||{||{|{||pqpqqrrstuvuvvwwxxwxxyzyyzz{{|{{|{{|{{|{|{||pqppqqrstuvuvvwwxyz{|{{|{{|{||{||pqrstuvwxyz {|{|{{||{||opqqrsrssttuvwvwxxyz{|{|{|{||{||pqpqrqqrrsstuvuvvwxwxxyz{z{{|{||{{|{|ppqrqrsststuuvwxyzyzz{z{{z{{|{|{{||{{||{{||opqrstutuuvvwxyz{z{{|{{|{{|{|{||ooppqqrstutuuvuwvvwwxyyz{|{{|{|{{||pqrstuvwxwxxyz{z{z{{|{{|{{|{||{||{ooppqrstuvwxyz{|{|{||{||ooppqqrstuvwvwwxwxxyyz{zz{z{{|{{|{||opqrststutuvuvvwwxyz{|{||oppoqpqqrrstuvwxwxyxxyyz{z{{|{||{|{|{|{{                                                                                                                                                                                                                                                                                                                                                                                   }|}}|}}||}}~}}~}}~}~~}~}}~~~~~~|}}|}}|}}~}~}}~}}~}~}~~}~ ~~~~~~}|} }~}~}}~}}~~}~~~~~~~ |}}|}}|}|}}~}}~}}~~}~~}~~~~~~ |}|}}|}}|} }~}}~~}~~~~~ |}|}}|}|} }~}~}~~~~~~|}|}|}~}}~}}~} ~~~|}}||}|} }~}~}~~}~~~~~~}||}||}~}}~}~}}~}~ ~~~~~|}|}||}}|}}|}}~}~}}~}~ ~~~~~~~|}}|}}||}}~}~}}~}}~}~ ~~~~~~|}|}||}|}}~}~}}~}~~}~}}~~~~~~~|}||}|}||}}~}~}}~}}~ ~~~~~}}||}|}}|}|} }~}}~}~~}~~~~~~~~~~|}}||}|}}|}}~}~ ~~~~~~|}}|}}~}~}~ ~~~~~~~|}||}|}}|}}|}}~}~}}~}}~}}~~}~}~}~~~~~~}|}||}}|}}|}}~}}~}}~~}~}~ ~~~~~~}||}|}}~}}~}}~}~}~~~~~~~|}|}|}~}}~}~}} ~~~~~}||}|}|}|}}~}~}~}~}~}~}~}~~~~~~~~|}|}|}}~} ~~~~~~~||}|}}|} }~}}~}}~}} ~~~|}||}}|}||} }~}}~}~}}~ ~~~~~|}|}|| }~}~}}~~}~}}~~~|}|}}|}}||}|}}|}}~}}~}}~~~~~}||}||}|}}~}}~}~~}}~}~~}~ ~~~~~~~|}||}|}}|}}|} }~}~}}~}~~}~~~~|}|}||}|}}~}}~}}~}~}~~}}~ ~~~|}|}}|}}|} }~}}~~}~}~~~~~~~~}|}||}|}}|}}~}}~}}~}~~}~~}~~~~~~~~~}||}|}|}|}}~}~}}~}}~~~~~|}|}||}}| }~}~}}~}~~~~~~|}|}|}}|}~}}~}~}~ ~~~~~~||}| }~}}~}~}~~}~~~~~~~~}||}||}|}||}| }~}~}}~~}~~~||}||}~}~~}~~}~ ~~~~~~|}||}|}}~}}~}~}~~~~~}||}|}|}}|}}|} }~}~~} ~~~~~~|}||}|}}|}}|}}~}~}}~}~}~}~~~~~~~||}|}|}}~}~~~~~~|}|}}|}}|} }~}}~}~ ~~~~~|}|}}|}||}}|}}||}}~}}~}~~}~ ~~~~||}}|}|}|}}|} }~}} ~~~~~|}||}|}}|}||}|} }~}}~}~~}~ ~~~~||}|}||}}|}}~~}}~}~~}}~}~~~~~}|}|}|}||}|}}|}}~}} ~}~~~~~~~~~||}|}~}}~~}}~~}~~~~~~~~~||}|}||}|}}~}}~}}~}}~}~~~~|}|}|}|}}|}|}}~}}~}}~}}~~}~~}~~~~|}||}|} }~}~}}~~}~~}~~~~~~~|}||}}|}}~}~}} ~~~~~||}|}}|}}|}}~}}~~}}~}~ ~~~~~||}||}||}||}|}}~}~~~~||}||}|}|}|}}~}}~}~}~}~~~|}|}|}|}}|}||}}~}}~}~~}~~}~~}~~~|}||}|}|}}|}}|}}~}~~}}~}~~}~ ~~~~|}||}||}||} }~}}~}}~}~~}~~}~~~~~~~~||}||}||}~}}~}~}}~}}~}~~}~~~~||}|}|}|}|} }~}}~}}~}~ ~~ |}|}}|}||}}||}}~}}~}~}~~~~~~||}|}}|}|}||}|} }~}~}~}~~~~|{| |}|}}|}}~}}~~}}~}~~}~~~~|{||}||}|}}|| }~}}~}~~}~}~ ~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               񂁂    􂁂    񁀀񂁁     􂁂  񂁁 ~         ~ ~  ~  ~  ~ ~ ~   ~  ~~  ~  ~~ ~~ ~ ~~~~ ~~~ ~~~~~  ~  ~ ~~~~~~  ~~~~ 삁~~~~~ ~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             탂    򄃃     󃂃   􄃃   񃂂      􃄄  󄃃􃂂         􄃄􃂃󁂁       򁂁                                                                                                                                 􆅆 򇆇   򇆆  􅄅􆅅         񅄅      򇆇       놅􆅆   񆅆󅆅텄     􆅅                                                               +(.' *(%&'',)& &+)(% $%' " !! '& (  !!    "!                    󋌍  􈇈󌋌󊉊        񈇇   񈇇      񋊊         򊉊      *(.* * **((*-%&' # $$ %()"&# !#& "  #   "!                  򑐑             󎍎       􌋌          󙚚           Ꙙ       󒓓             󢡢                                     򦥦          𤣤                    󡠠 젟  񠟠   򟠟                먧  $ꦧ   &     # 򤣤   񣢣񣢢  󡢡 !𡠠   $󠟟$         ꥦ     拉𥦥   󣤤 򥤥 󤣤󤥤    𤣤  𢣢    𡢡  󢡢       񟠠                         󟠟   񟣣          򠡡                                    󡢡         󛜜             󜝝                                                                   󓒒   쑒󎏔򒓓򐏏        ~>=8{5997721660      􌋋        􋌋            􋊋 {>;;2:5284:1"! ! "     %                                           􇈈       􆇇    􈇈       􆇇󇆇     􆇆   􇈇    􆇇   󇆇   􅈇     $#     (    #                                                                                                            򄅅              󄅅                        􅆅                                                                                                                  󂃂      􃂂      󃄃 􃂃           󂃂              􃄄         󁂂                                                                                                                 󀁀      񁂁        􁂁                    􀁀􂁂   򁀁      󀁀          􁀁  ~   ~󀁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ~~~~~~~~~~~}~~}~~}~~~~~~ ~}~~}~~~~~~~~}~~}~~}~~~~~~~}~~~~~}~~~~~~~~~~~} ~~~ ~}~}~ ~~~~~~}~~}~~ ~~~~~ ~}~}~~}}~~~~~~}~}~}}~~~~~}~}~}~~}~ ~~~~~~~~~~}~}~~}~~~~~~~~~}~~}}~~}~}~~~~~~~}~~} ~~~~~ ~}~~}~~}~}}~~~~~~~}~}~~}~}~~}}~~~~~~ ~}~}~}}~~~~~~~}~}}~}} ~~~~~~~~}~~}~~} ~~~~~~~~ ~}~}~} ~~~~~~~~~~}~}~~}~}}~~~~~~~~ ~}~~}~}~~~~~~}~}}~}~}}~}~}}~~~~~~~~~}~~}~}~~}}~}~} ~~~~}~}}~~} ~~~~~~}~}~}}~}} ~~~~~~}~~}~~}}~}~~} ~~~~}~~}~~}~~~~~~~}~~}~~}~}~}}~}~}}~}}~~~~~~~~~~ ~}~}}~}}~~~~~~}~}}~~}}~}}~~ ~}~~}~}~}}~}~~~~~~~~~~}~~}~~}~}}~}~~~~~~~~~~}~~}~}~}}~}} ~~~~~~~~}~}~}~~}~}}~}~}}~}}~~ ~}~~}~~}}~}} ~~~~~~~~~}~~}~~}~}~}} ~~~~~~~~ ~}~~}~~}~~}}~}~}}~}} ~ ~~~}~~}~~}~}~}}~}}~}}~}}~~~~~~~ ~}~~}}~}}~}~}}~~~~~~}~}~}}~}~~} }~~~~}~~}}|}~~~~~~~~~}~}~}~}~}}~}}~~~~~~}~}~~}~~}~~ }|~~~~~}~}~}} ~~~~~ ~}~}~~}~}}~} }~~}~~}~}~~}~} }|}|}~~~~ ~}~~}~}}~}}~}}|}} ~~~~~~~~}~~}~}}~}~}}|}} ~~~~~~}~}~}}~~ }|}}|~~~~ ~}~}~}}~}}~} }|}~~~~~~ ~}~~}~~}~}}~~}~}}~}|}}|}~~~~~~~}~~}~~}~~}~}}~}}|~~~~~~~}~~}~}}~}~}~}}|}|}}~~~~~~}~~}~}~}}|}}|~~~~~~~~}~~}~~}~~}~}~}}|}~~~~~~~~ ~}~}|}}~~~~~~~~~}~~}~}}|~~~~~~}~}~~}~}}|}}|}}|~~~~~~~}~~}}~~}}~}~}~}~}}~}}|}}|}~~~~~~~ ~}~~}}~}~}}~}~~}~} }|}||~~~~~~ ~}~~}~~ }|}|}|}~~~~}~}~}}~} }|}|}~~~ ~}~~}~}~}}~} }|}}|}|}|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }|}||}|}|}}|}||{|{|| {}~}}~}}~} }|}} |}| |{|{||{{|{}}~}~}}|}|}|}||}|}||{|{||{|{||{{}~}}|}||}|}||{||{||{||{{||{{|{{}|}|}}|}|}||}| |{|{{||{{||{{|{{~}~~}~} }|}}|}||}}||{|{|{||{|{{}~}}|}}|}|}|}}||}||{||{|{|{||{|{{}~}}~}}|}|}}||{||{|{||{{~}}~}}~}}|}|}}||}||{||{|{|{{|{}~}}~~}}|}}|}}|}||}||}}||{||{|{||{|{||{{ }|}}|}||}|{||{z}~} }|}|}|}||} |{|{{|{|{|{{|{{ }|}}|}}|}|}| |{||{|{|{{|{{~} }|}||}|}}|{|{|{{|{{|{{|{{}~}~}}|}|}|}}|}||{|{|{||{|{|{ {}~} }|}|}}|}||}}| |{|{|{|{||{{|{{}~}}|}}|}|}||}||{||{|{{|{{z}~}~}}|}|}}|}}|{||{||{{|{{|{{z} }|}}|}}||}|{|{||{||{|{{}~}}|}|}}|}|}|{||{|{{|{|{{|{{z{{} }|}||}|}||}}||{||{|{ {|{{z}|}|}}|}|}}| |{|{||{|{|{{z}|}}|}}|}|}||{|{|{|{|{{|{ {z~}}|}|}}||}||}||{||{|{|| {z}|}}|}|}}||}|}| |{||{|{|{{|{{z{{zz}|}|}}|}}|}| |{|{|{{||{|{{|{{zy}}|}|}}|}}||}|}||}||}||{||{|{|{ {z}|}}|}||}||}||}|}| |{|{|{{|{{|{{|{{zy} }|}||}|}| |{||{||{|{||{{z{{zzy}}|}|}}|}}|}|}| |{|{{|{||{{|{zyz}}|}}|}|}}|}} |{||{|{{zyzy}}|}|}||}}||}||{||{||{|{|{{z{{yzzyy}}|}}||}|{|{|{{|{||{{|{{|{{z{zzyy}|}}|}|}|}|}|}|}||{|{||{|{|{{|{|{{z{{zyzyx}}|}}|}|}}|}}|}}||{||{||{|{{|{ {z{zzyx|}|}||}}|}||}||}||}||{||{||{{|{|{|{|{{|{{zy}|}|}}||}||}| | {|{{z{{zzyzyyxyx}}|}}||}||{||{|{|{{||{{|{ {zy}|}|}||}||{||{|{{|{{||{{zyx}|}|}|}||{||{| {zyx}|}|}||{|{||{|{{|{{z{{zyx|}}|}|}||}||{||{|{|{|{{z{zzyx}|}}||}|}||}||{|{|{{z{{zyx}|}}|}|}}||{||{|{{|{|{{||{ {zyzyyxw|}|}|}||}||}||{|{{||{||{|{{|{{zyxyxww}}|}||}||}| |{|{||{|{|| {zyzyyxw}|}}|}||{|{{|{|{ {zyxwxww||}}|}|}| |{||{||{|{ {zyxv}||}|}||}||{|{|{|{{|{{|{{z{zzyxw}|}}|}|}||}|{|{|{{zyxw|}||}||{||{z{zzyxyxxwv}}|}||}||{||{|{|{|{ {z{zzyyxwvwv||}||}| |{|{{|{{|{|{{|{|{{zyxwvw|}}||{|{||{|{|{ {zyzyxyyxxwvwv}}|}||}|{||{|{|{{||{ {z{zzyxwvwv}||}|}}| |{|{||{| {zyxwv|}|}||}||}| |{|{|{||{zyxwv|}||{|{{|{{|{||{{z{zzyzyxyxwxwwvu|}}|}| |{||{|{|{|{||{ {zyxwvuv||}|{||{|{{|{{|{{|{|{{|{{zyzyyxyxxwvwvv|}}|}||{||{|{|{{|{{|{{zyxwvvwvvuu}||}}||{||{|{{|{|{{|{||{ {zyxwvu}|}|}||}||{|{||{zyxyxwxwwvuvvu|}}||}||{||{|{||{|{{z{{z{zzyxwvuvuu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򮭮𫪫 񫪫     򨧨       񺯰 󵶶ﰱ򶵶󱰱 𲱱󰱱  ԻԺԻԻӺӹӺӹӺӹӹӹӺӹѸҹҸҹ𾿿ѹ򼽾ѸѸѸѸѸѸѷѷ''&'&&(''(('('(((())())(*)))))*))****+++*,,,+,,+---,-,--.--..../mnnopqrsrsstumonoopqppqqrrsststtmmnoopqrsrssttunnonooppqrststtmnnopqrqsrssttunopqrsrsststtnnopopqqrststumnnopqrstnnopqrststtmmnoopqrsrssttmnnoopoppqrstumnnopqrstnopopqqprqrrsrssttmnnopqqrstmnnonooppqrrstunnoopqrststtnnonoopqrstmnnoppoppqrstmnnopqrststmnoopoppqqrrstmnnoopqpqqrqrrstnopqrstmnonoopqrtstnmnnoopqrqrrsstnmnoopqrsrsstmnnonooppqrsstmnonooppqrstmnnopoppqrstnopqrsnopoppqpqqrrstnopqrsmnnopqrqrrssttnopqpqrrqrssnopqrstnnopqrsnmnoopqrsnnpqrsmnnopqqpqrrsnmnnoopoppqqrrsrssmnopqpqqrrsmnnopqpqqrrsrrsmnnonooppqqrstmnoopopprsnnopqrrssrsnnopqrsnopqrqrrssnnopoppqpqrrsnopqrrsnopqrssrmnnopqrqrrsrnnopoppqrnmnnopqrnopqpqqrrmnnoppqrssnmnnooppqrqrrsmnnoopqrqsrnnoopqrqrsmmnnoppoppqqrnnopopqqrsrmnnopqrsnopqqpqrrnmnnoopqrsnmnnoopqrnopqr'&&&'''((('((('))))))(((*))))*))*******++,,,++,+,,-,-,,,---...-.                    tvvwxyyxyzz{z{{|{{|{|{||{||}||}|uuvvwxyz{|{{||{||{{||{|{{||}|}||}uuvwxyzyzz{z{{|{{|{||{|{||}|}}tuvvwxyz {|}||}}uvwxyzyzz{z{{|{{|{{||{||{||{||}|}||}}uvwxwxxyzyzz{ {|{| |}|}|uvuvvwwxyz{|{||{|{{| |}||}uuvwwxy{z{{z{{|{||{|{{|{||}||}tuuvvwxwxxyyz{|{{|{||{||{{| |}|}}uuvwxyz {|{|{||{||}||}|utuuvwxyxyyz{z{ {|{|{||{||}||}||}tuuvwxyz{z{ {|{|{{||{|{||}||}}||}|uuvwvwxwwyxyyz{|{{|{{|{{|{| |}|}}|}uuvwxyz{z{{|{||{|}||}}|utuvvwxyzyzz {|{|{|{{|{||{| |}utuvuvwwvwwxxyz{|{{|{|{||{| |}|}}|}}|tuuvwxyz {|{|{|{|}||}||}}|}tuuvuvwwxyz{z{{|{{|{|{||{||{||}||}|}|}}ttuuvvwxyzyz{{|{|{|{{| |}|}||}tuuvwxy{zz{ {|{{|{|{|{||{{||}||}||}|}|}|}ttuvvwvwwxxyz{z{{z{{|{||{|{|{{| |}||}||}tuvuvvwxwxxyz{z{{|{{|{{|{||}||}|}}tuuvwxyz {|{||{||{||{||}|}||}|}tutuuvvwxyz{|{{|{{|{||{||{||}||}}|}tutuuvwvwxwxxyz{z{{|{|{| |}|}|}}tuuvwxwxxyyzyzz{|{{|{{|{|{| |}|tutuuvwxyzyz{z{z{z{{|{{||{{|{||}|}ttuuvuvwvwwxxyyzyyzz{z{{|{{|{{|{|{{||{ |}|tutuuvwvxxyz{|{{|{|{ |}|}||tuvwxwxyxyyz{|{{|{|{||{||{|}||}stutuuvwvwxxyzyzz{|{|{|{||}|tutuuvwwxyz{|{|{|{|{{|{{|{||{| |}|ttuuvwxwxxyyz{z{{|{||{|{{|{||{||}|}||}}ttuvwvwwxyz{|{{|{{|{{||{|}|}||}ttuvwxyz{zz{|{{|{| |}||}||}|ttutuuvvwxxyzyzz {|{|{||{|}||}||}|sttuuvwxyxyyz{|{{|{||{|{||{|{||}||}ttuvwxwxxyz{|{{|{{|stuutuuvwxyz{|{{|{{|{||{{||}ttuvwxyxyzyzz{|{|{|{{|{||}|}|}|}}||sttutuvvwxyz{|{|{{|{|}|ttuvvwvwwxyz {|{{|{||{| |}||}|}ttuvwxyz{|{||{{|{| |}tutuuvwxyzyzz{{|{{|}|}}sttuvwxyzz{{z{ {|{|{| |}|sttvuuvvwwxyz {|{|{|{||}||stuvwxwxxyxyyzz {|{||{||{|{|{||}||}||}sstuuvwxyz{|{|{| |}||sttuvvwxyz {|{|{|}||}sttuvwxyxyyz{|{{|{|{{||{ |}sttuvuvwwxyxxyzz {|{{|{|{||{||}||}||sttstuuvuvvwwxyxyyz{|{{|{{|{|{||{| |}sststtuuvwxyz{|{{|{|{||{| |}stuvwxwwxxyyz{z{{z{{|{|{{||{|{| |}|}sstutuuvwvwwxxyz{|{{|{||{||{|}||stuvwxyz {|{|{|{{||{||{||}|sstvuvvwxyzyzz{|{|{||}||stuvuvwwxyxyyzyzz{ {|{|{{|{||}||stuvwxyz {|{{||{{|{| |ststuuvwxyz{z{{|{{|{||{||ststtuvwxyxyyz{|{||{{|}|srssttuvvwxyz {|{||{||{|{| |}stuvuwvwwxxyz{z{{|{{||{|{ |rsttuvwxyz{|{|{{|{|{||}||                                                                                                                                                                                                                                                                                                                                                                                                                                          |}|}|}}~}~}}~}~}~~~~~~~~~}}||}|}|}}~}~}}~~}~}~~~~~~~~}}|}}~}}~}}~}~~~~~~~~~ |}|}~}}~}~}}~}~}~~~~~~}|}}|} }~}~ ~~~~~~~~ }|} }~}}~~}~~}~~~~~~~~}~}}~}}~ ~~~~~~~~}~}~}~}}~}}~~~~ |}}~}~~}~}~~~~~~~~~|}|} }~}}~}}~}~~~~}|} }~}~}~}~~}}~~~ }~}~}~~}~~}~ ~~~~}|}}~}~} ~~~~~~}|}}| }~}~}~~}~~~~~ }}|}}~}~}}~}~}}~}~}~~~~~~~~|}}|} }~}}~}}~}~ ~~|}|}}~}~}}~}}~~}~~}~~~~~~}|}}~}~}}~~}~ ~~~~~ |}}|}}|}}~}~}}~}} ~~~~~~~|}||}}~}}~~}~ ~~~~~~~|}||} }~}~}}~}~}~}~}~ ~~~~~}|}|} }~}}~}~}~~}~}}~~~~~~~}|}}|}}|}}~}}~~}} ~~~~~~~~}}|}}~}}~~}}~}}~}}~}~~~~~~~}}|}}~}}~}}~}}~~}}~ ~~~~|}}|}}~}~}}~}~}}~}~~~~~~~~}||}}|}}~}}~}~~}~~~~~~~~}|}}|} }~}~}}~~}~~}~ ~~~~|}|} }~}~}}~}~}~~~~~~~~~}~}~}~ ~~~~ |}}|}}|}~}}~}~~}}~~~~~~|}}|}~}}~}~~}~~}}~}~ ~~~~~~~~~}|}}~}~}}~}~~}}~~}~~~~~~~}| }~}}~}~~} ~~ }|}}|} }~}}~}}~}~~~~~~~~}}|} }~}~}}~}~}~ ~~~~~|}}|}}||}~}~}~}~}~}}~}~~~~~~ |}}|}}|} }~}} ~~~~~~~~~}|}|} }~}~}~~~~~~}|}}|}|}}~}~}~}}~}~ ~~~~~~~}|}||}}|}}~}}~}~}~}~~}~}}~~~~~~~|}|}|}}~}}~}}~~}~ ~~~~~}|}|}}~}~}}~}~}~~}~~}~~~~~~~}||}}|}~}~~}}~~}~}}~~}~~~~~~~~}||}|}}|}}~}}~}~}}~}~~~~~~|}||}|} }~}}~}~}}~~}~ ~~~ |}|}~}}~}~}}~}~ ~~~~~|}}||} }~}~}~}~}~~~~~~~~~}|}}||} }~}~}~~}~~}~}~ ~~~~~~~}|}||}}~}}~}~~}~~~~~|}|}|}||} }~}}~}~}} ~~~~~~~}|}}|}}||}}~}}~~}~~~~~~}|}|} }~}}~~}~~~~~~~~}|}||}|}}||}}~}~~}~~~~~~~~~~~|}|} }~}}~}~~}~ ~~~~~~~~}|}||}~}}~}~}~~}~}}~~}}~~~~~~~~~}}|}|} }~}}~}~~}~~~~~~~|}|} }~}}~}}~}~~~~~~~~~|}||}}|}}|}}~}~}}~}~~}~~~~~~|}}|}}|}}|}}~}}~}}~}}~}~}}~}~~~~~~~~~|}||}}|}}|} }~} ~~~~~~|}|}}|}}~}}~}~~}~~}~}~~~~~~~}||}||}|| }~}}~}}~~}~ ~~~~~||}||}}|}}~}~}}~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     􁂁     􁂂        󂁁 􁀁  򁀀   󁀀 򁀀       󂁂 􂁂 񂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              􃂃  󄃃  󄃄 􂃂  턃          󃂂򅄅                򄃄   򃂂           􄃃 򄃄     򄃄  􃂃                                                                                                                󆅅       􆅅             󇆇 񆅆  􆅆           􇆆 􆅅   􇆆󄅄  񆅆  􅄄󅄅 󄅄                                                                         &*&&-+,'/().**% .+& )+(%# (' , %('#)*/!$ +"%'(% & ( %% +"" & % !" ( !  &  "  􊉊錋􈇈 󊉉     덌󋌌       򊉉                 + *4, %.+(&. &*1'( *.', #- ''. %*$&%$'& ( #& ( $#%*! " ( *$ !#$##   #  ! "!#   !񕔔 򒑒   􏎎       󘗗 񚙚         򥤤          򬭭              쵴              𸷸̵̵󽼽̵̵̵󵶵˵˵˴˴˴ʴɴʴɵʵɴ𶵶ɴɴɵɴɴɴ ɴȴȴȳǴǴdzƴǴǴƳƳ:9:;;:;;;;<=<=>=== nonmnnomnonmmnnmnnnmmnnmnmnnnnnmnmnmnnmn:::;::<;;<<=<=>===                         opqrsstvwxwxxyz{z{{|{{|{|{|{||oppqrstuvwxyxyyzz{|{|{{|opqrstutuvvwxyz{z{ {|{||{||{{nooppqpqrqrrsstuvwxyz{|{|{{|{|{||noopqrstuvuvvwwxwxyyz{|{|{{||{||{oopqrsrssttuuvwxyxyzzyz{z{{|{|{{|{||noopopqqrstutuuvvwxwyxyyz{z{{|{||{{|{{||{||{nnooppqrsrssttuvwvwxxyxyzzyz{z{{|{||{|{onooppqrstutuuvwxwxxyz{|{|noopoppqqrstuvwvwxxyz {|{{|{|{||nopqrrstutuvuvvwwxyyz {|{{|{|{{nopqpqrrsrrsstsuuvwxyz {|{|{|nnoopqrsrsttuvwxyxyyz{|{{|{{|nonooppqqrstuvwxyz{z{{|{{|{{|{|{|{{noopqrssttsttuvwxyzz {|{{|{|nnopqrsrsstuutuvvwxwxxyz{z{ {|{{||{nnonoopqrstuvwxxyzyz{ {|{|{||mnnoppqrstuvwxyz {|{|{|mnnopoppqqrstuvwxyzz {|{{|{||mmnnopqrsstutuuvwxwxxyz {|{|nmnnoppqrstuvwvwwxyz{|{{|{||nnopqrststtuvwxyz{|{{|{{|{{|{mnnopopqqrsststuuvwxyz{z{{|{{|{|mnnoprsrssttuvwxyyz {|{{|{||nmnnopqrstuvuuwwxyzyyzz{|{{|{nopqrqrsrssttuvuvvwvwxxyzyz{{z{{|{{|mnoopoppqqrstuvwvwxxyzz{|{{|{|{mnnoopqrstuvwxyz{zz{{|{{|{||nnonooppqrqrsststtuuvwxyz {|{{|mmnnopoppqrstuvwxyz{z{{|{|{mnnonoppqrststtuvwxwwyyz{z{{|{mnnopqrstuvwvwxxyz{z{{|{{|nmnonoopqqrqrsrsttuvwxyxyyzz{z{{|{{|{{nopqrsrsststtuuvvwxyz{|{|{|mmnnooppqrqrrsrsstuvuvvwwxwxyxyyzz{z{{|{||mnnoopqrsrsstuvwxyz{{z{ {mnnoppoqqrstuttuvvwxyz {|nnopqrstuvwxyzyyz{ {|{{mnnopqqrqrrsstutuuvwxyzyzz {|{{nopqrststtuuvwxyxyyz{z{{|{{|mnopopqqrstuvuvvwxyzz {|{{nnopqrssrssttuuvwwxwxxyyz{z{{|{nmnnoopqrsrststtuvwxyz{z{{|{|{||nopoppqrstuvuvwwxwxyyz {mmnnoopqrqrrstuvwxyzyzz{{z{{|{nopqrstuuvwxyz{z{ {nmnnonoppqrqrrsstuvwxyxxyzz{|{{|mmnnopqpqqrstuvwxyz{z{{nmonoopqrsrrtssttuuvwxyz{z{{|{{noppqrsrsttuvwvwwxyz {nmnnopqrstutuuvvwxyz {|mmnonooppqpqqrstutuuvwxyz{{|{nmoopqrststtuvuuvvwwxyz{|{{nnonoopqpprqrsrsstsstutuuvvwxyz {mnoopopqpqqrrstutuuvvwvwwxwxyxyzyzz{|mnnonnooppqrststtuuvwxyzzyzz{{mnopqrstuvwxwxxyyz{nnopqrstuvwxyz{mnnonoppqrstuvwxyz{z{{mnnonoppqprqrrstuvwwxwxxyz{nmnnoopqrstuvuvwvwxwxxyzyzz{mnnonoopqpqqrrstuvwxxwxyxyzzyzz{{z{{nmnnoppqrstuvwxyz{nopqrsrsstuvwxyz{z{{                                                                                                                      |}||}}|}|}|}}~}}~}~~}~ ~~~||}||}|}}|}}|}|} }~}}~}~}}~~~~| |}|}|}||}||}|}}~}~} ~~~~{||}|}}|}}|}}|}|}}~}~}}~~}~~}~~~||}|}|}|}}|}|}|}}~}~}~~}}~~||}|}|}|} }~}}~}}~}~~}~ ~~~||}|}}|}}~}~~}}~}~ ~~~~{||{||}|}||}|}||}|} }~}}~~}~}~~~||{||}|}|}}|}}||} }~}}~~~~||}||}|}|}}~}~~}~}~~~~~||}||}||}||}|| }~}}~}}~}~~}~~{| |}|}|}|}|}}|}}~}}~}}~}}~}~~}~~}~~~~|{||}|}|}}|} }~}}~}~~}~}~}}~ ~||{||}|}||}}| }~}}~}}~~}~~}}~~}~~~|{||}|}}|}||}|}|} }~}~}}~}~~}~~| |}| }|}}~}}~}~}}~}}~}~~{|{| |}||}}|}}~}~}~~ |}||}|}||}|} }~}~~}~~}}~~}~}~~}~~|}| }~}}~}}~}~}~~~~{{||{| |}|}|}||}||}}~}}~}~~}}~}~~}~}~~~~|{||}|}|}}|}}||}}|}}|}}~}}~}~~}~~~|{| |}|}~}~}}~}~~{||}|}}||}||}|}}|} }~}~~}~~~~|{{|}|}|}||}}|}}|}}~}}~}~}~~{{|{||}||}}|}}|}}~}}~}~~}~~{|{| |}|}}|}}|}~}}~}~~}~~}}~{ |}||}|}}|}}||}}|}}~}}~}}~}~ ~|{{ |}||}||}}|} }~}}~}~~}} ~ |}|}|}}||}}||}}|}}~} ~|{||{||}|}|}||}|}}||}}|}}~}}~}~}~~}~~{|{|{|{{| |}|}||}}|} }~}~}~}~}~~{|{{|{|{||}|}||}}|}|}||}}~}}~}}~}~~|{|{{|{||}||}|}||}}|}|}}|}}~}~}~}}~}~~|{{|{||{||}||}|}}|} }~}~}~~}~~|{|{||{||}||}||}|}}|}}|}|}}~}}~}~}~~}~}~~}|{|{||{|{||}||}||}}|}}~}~}~{||{{ |}|}||}|}}|}||} }~}~}}~~}~}~~{||{|{|{||{{||}|| }|}}~}~}}~~}}~~}~}~}~{|{||{||{| |}|}|}||}}~}}~}}~}~}}~~}~|{{|{|{||}|}|}}||}}|}}|}}~}}~}~}}~}~{|{||{|{| |}|}}|}}~}~}~~}}~}~|{||{||{| |}|}|}|}|}|}|}}~}~}~~}}~~}~~{|{||}|}}|}|}|}}~}}~}~~}~}~~}{|{|{|{{|{||}||}|}}|| }~}}~}~~{||{|{||{||{||}|}||}|}}~}}~}}~}~}|{{|{|{{|{|}||}||}}| }~}}~}~}}~~{|{||{||{||}|}||}}|}}||}}|}}~}}~}~~}~~{|{ |}||}|}}~}~}}~{|{|{||{| |}||}||}|}~}~~{|{|{|{|{|{||}||}||}}|}}||}|}}~}}~{|{||{||{| |}||}|}~}~}~~{{|{{|{| |}|}}|}||}||}}|} }~}}~}~~}~}~}}||{|{||{||}||}||}|}}|}|} }~}~{{|{||{|{||}||}||}|}||}|}||}|}}~}~}}~}~}{{|{|{|{{|{||{||}|}||}|}|}}|}}~}~~}~{{||{{|{{||{||}|}||}|}|}|}}~}}~|{||{{|{|{|{{|{| |}|}|}|}||}}~}~}}~}}~{{|{|{||}|}}|}}~{|{{|{||{||{||{| |}|}|}}~}~}~}~{{|{||{||{|{||}|}|}|}|}}~}~}}~|{{|{|{{||{||{||}|}||}||}|}}~}}~~}}{|{{|{||{|{||}||}||}||}|} }~{|{|{{|{{|{{ |}||}||}}|}}|}~}~}}{ {|{|{||{| |}||}|}||}|}|}}~}~}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ~~ ~ ~~  ~~~~ ~~~~~~~~~~ ~~~~ ~~~~~~~~~  ~~ ~~~~~~~~~ ~~~~ ~~~~~ ~~~~~~~~~~ ~~~~~~ ~~~~~~~ ~~~~~ ~~~~~~~~~~~~ 􁀀~~~~~ ~~~~~~~~~~~~ ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ ~~~~~~ ~~~~~~~~~~~~~~ ~~~~~~~ ~~~~~~}~ ~~~~~~ ~ ~~~~~~ ~}~~~~~~~~~  ~~~~~}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ ~}~}~~~~~~~~ }~~~~~~~ }~ ~~~~~ ~}~}~~~~~~~~~~ ~~~~~}~ ~~~~ }~~}~~~~~~~}~}~ ~~~~~~ ~}~~~~ }~}}~ ~~~~~~~}~ ~~~~ }~}}~}}~ ~~~~~ ~~~~~~~~ }~}~}~ ~~~~~~~~~}~~}~ ~~~~~}~~}~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    􂁁             􃂃 񃂃         񂃂  󃂂  􁂂         򁂁                                                                                                                                                                                                                                                     膅       醅ꆅ               󄃃 󄃄 􅄅     􃄃񄃄􅄄􄅅                                                                                                                                򉈉   뇆  󇆆      􇆆                􈇇    񇆇               򆅆    򅆅   􅆅                                                                            {A;>4=<41;52<170.4.0)(2*(+#*'#"                               􌋌    鋊        ~?9===?6578<;33318+/2)+(+)) &(*+) &!" " # )   򑐑      򌍎 򒑒         󑐐  􍎎  􍌌                     򖕖           򒓓       󔓔 򓒒       󜛛           󛚚              򙖖              𖕕                휝񝜝 *𜛛      񚙙     󘙙   虘  񗘘 󘗗ꗖ  󖗗"𞝞     򜝜 񛜛       򚙚  򙚙󚙚   ꘙ 򘙙   񘗘      񗖗 $                   𙚚                    򖗖 񔕔      󕔔                    򔕘       򖗗          񒓓                󏐒 󑒒             󓒑      󏐐          󍎑    󏎎     󏎎      <<;8982<-1-14   󏐏       󎍎      􎍍             󋌋񉊊          ~>85>:3/8300/3.1+,4.+)(-+#('+#&!                                            쇈          􇈈   󆇇  󆇆   󆇆 􇈈    솇    󇆆󇈈󆇇􆇆􆇆 񇈇 4..-1(+-1.(% % $" "  #                                                                          􇈈  򆅅 󅆅 􅆅 򆅆      񆇆   򅆅 󇆆񆅅  񅆅      􅆆 􇆇    񆇇   󄅄  􄅄     󆅆󄅅   􄅅   򅆆 󄅄񄅅    􅆅   􅆅  􄅅                                                                                                                                     󃄄񄅅     􃄃    򃄃  􄅅            􃄄􂃃 򃄄    샄         񃄄􂃃                                                                                                                              񂁂 󁂁    􂃂      򁂁         􂃃        񁀁         󁂂 󁂁     􀁀 񁂂쀁     򂁁  󁀁    􀁁                                                                                                                                                                                                                                                                                                                                        ~  ~~ ~~~ ~~ ~~~~~  ~ ~~~ ~~~~~~  ~~~~ ~~~~~~~ ~~ ~~~~  ~~~~~~ ~~~~~  ~~~~~~ ~~~~ ~~~~~ ~~~~~~~~~~ ~~~~~~ ~~~~~ ~~~~ ~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~ ~~~~~~~~ ~~~~~~~~~~~ ~~~~~~~~  ~~~~~~~~~} ~~~~~~~~~~~~~~~~~~~~ ~~~~ ~ ~~~~~ ~~~~~~~~~~~~~~~~~~}~~~~~~ ~~~~~~~ ~~~~~~ ~} ~~~~~~~~~}~ ~~~~~~~~}~~ ~~~~~~~}~~~~~~~~~~~~~~}~~ ~~~~~}~~~~~~~ ~}~~~~~~~}~~~~~~~~~ ~}~~ ~~~~~~}~}~ ~~~~~~~~~ ~}~~}~~~~~~~~~~}~}~}~}~~ ~~~~~ ~}~}}~}~~~~~~~~}~~}~}~}~~~~~~~~~~~~~~~~}~~}~~~~~~~~~~}~~}~~}~~}}~~~~}~~}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ~~~~~~~~~~~}~~}~~}~}|}|}|~~~~~~ ~}~~}~}}~~}~~}}~}}|}}|}|~~~~~~}~}}~}}|}}|}|}}||~~~~~~ ~}~}}~}}~}}~} }|}||~~~~~}~}~~}}~}}|}}|}|~~~~~~}~}~~}~}}|}|~~~~}~~}~}}|}}||}||}||~~~~~}~}~~}~}}~}}~}}|}}|}|}||}|}|}~~~~~}~}~}}|}||}||~~~~~~~~}~~}~~}~}~~}}~}}|} }|}}||}|~~~ ~}~~}~}~} }~} }|}}|}||}|~~~~~~~ ~}~}~}}~}}|}}|}}||}}|}||}||~~~ ~}~~}~~}}~~}~} }|}}|}|}|~~~~~}~}~~}~}}|}|}||}|~ ~}~~}}~}}~}}~}}|}}|}|}|}||}}|}}||}|~~~}~~}~~}~}}~}}~}}|}}|}||~~~~~~}~~}}~}}~~} }|}}|}}||}|}||~~~~~}~~}~}~~}~~}~}|}|}}|}|}|}||~~~~}~}}~~}~}~~} }|}|}|}|~~ ~}~}~}}~}~}~~}}~}}|}}|}}||}}||}}||~ ~}~~}~~}~}}~}}|}}|}}|}|}}|}||}~~~~}~~}~} }|}}|}}|}|}}||}||~ ~}~}~}}~}|}}|}}|}|| ~}~~}~~}~}}~}}|}||}|}|}|}||~~ ~}~}~}~}}~}}|}}|}|}| |~~~}~}~~}~ }|}||}||}|}|}|| ~}~}~}}~}}~} }|}||}||}|}||}||~~~}~}~~}~~}}|}||}| |~}~~}~~}~}~~}~}~}~}}|}|}}|}|}||{~~}~~}~}~}}~}~} }|}|}}|} |{|~ ~}~}}~~}|}}|}||}|}}|}| |{~ ~}~}~}}~}}~}}~}}|}}|}|}}||}}||}||~}~}~~}~}|}}|}||}||{||~~}~}~}}~~}~}}~}}|}}|}|}| |{|{|~~}~~}~}~} }|}|}||}||{~~}~}}~}~~}}~~}}|}||}}||}}||}||{|~}~}~}~~}~}}~} }|}}|}}|}| |{|{|~~}~}}~}~}}|}}|}}|}||} |{|{~ ~}~}~}}~}}|}|}|}}||}||}||{|{||~}~}~}}~}}|}}|}}|}||}}||}| |{~}~~}~~}~}~~}~} }|}}|}||}|}|}||{||{|{~~}~}}~}}~}~~}}|}||}|}||{||{||~~}~}~}}~}}~}}|}|}|}||}|{||{{|{}~~}~}~}}|}}|}}||}|{||{||~~}~~ }|}}|}}|}}|{||{|{|~~}~~}~~}~}~}}~~}~}}|}}|}|}||}||}||~}~~}~}}~}~} }|}}|}|}|}|}||{|{{|{||{~}~~}~~}}~}~ }|}||}}||{||{|{{}}~}}~}~}~}}~}~}~}}|}|}||}|}||{||{|{|{{~}}~~}~}}~}}|}}|}|}|}| |{||{|{|~~}~}~~}}~}}|}}|}}|}||}| |{||{|{|{|~~}~}}~} }|}}|}}|}|}|}||{||{|{|{}~~}~}~}}|}||}|}}|}|}}|}| |{|{||}~~}}~}~~}~}}~} }|}||}||}}| |{||{|{|{{|{~}}~}~}}~~}~}}|}}|}}||}}||{|{|{|{|{|{{ }~}}~}}|}}|{|{|{|{{|{}~~}~} }|}}||}}|}|}}|}| |{|{|{|{{||{~}~~}~} }|}}|}||}}|}}| |{||{|{|{{|~~}}~}}~~}}|}}|}||}|}}|}||}|}||{|{||{}}~}~}}|}}|}}|}||}||{||{||{{|{|{{}~~}~}}~}}|}}|}|}|}|}| |{||{|{|{|{{~}~} }|}|}||}||}|{|{|{{|{{~}}~}}|}||}|}||}||{||{||{||{||{{}~} }|}}|}|}|}||}||{||{|{||{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |{||{| |{||{|{{zyxwvwvvu|}| |{|{|{|{{z{{zzyxyxxwwvut|}||}||{|{|{{|{ {z{zzyyxwvwwvuvuutt|}}||{||{||{||{{|{|{{|{{|{{zyxwvut| |{||{|{|{{|{{zyxwvut|}|}||{|{|{{|{ {z{zzyyxwvut |{|{||{|{{|{{|{|{ {zyxwxwwvwvvut}|}||{|{||{||{{|{{zyzyyxxwxwwvvuvutuutt||}|}| |{||{|{{|{{|{{z{{zyxwvututt |{|{|{|{|{|{ {zyxwvuts||}||{||{||{{|{{|{ {zyxyxxwvuts}}|}||{||{|{|{ {zyxwvuts}||{||{|{|{{|{||{ {zyxyyxwxwvwwvvuuttstss||{||{|{||{{|{{zyxwvuts|{|{||{|{{||{|{{zyzyyxyxxwwvuts|{||{{||{|{{|{|{{|{{zyxwvuvuutsr||{||{||{|{{|{{zyxwvwvvuuts |{||{|{{|{ {zyxyxxwvuttsrs||{||{|{{|{{||{{|{{z{zyzyxxwvuts|{|{z{zyyxwvutstssr|{||{|{|{ {z{zyyxwvutsr|{||{|{|{|{{|{{|{{z{{yyxwvutsrsrr|{||{|{{|{{z{zzyxwvutstssrq||{|{||{{|{{|{|{{|{zz{{zyxwvutsrq||{||{|{ {zyzyyxwvutsrqrq||{||{|{|{ {z{{zyxwvwvvuvuttsrqr||{{|{{|{{|{||{ {zyxwvuttsrsrrq||{|{||{|{{|{{|{{z{zzyxyxxwwvutstssrq{||{|{|{|{{|{ {zyzyyxwvustssrsrrq|{||{||{|{|{||{{|{ {zyxyxxwvutsrq|{||{|{{|{z{zzyxwvuvvuttsrrsrqq|{||{|{|{{z{{z{zzyxxwxwwvvutsrqrqqp{{|{|{{|{|{ {z{zzyyzxxwxwvwwvvuuttsrqp||{||{|{{|{{|{{z{{zzyxwvwuuvuututstssrqrqqpp|{{|{|{||{ {z{zzyyxwvutuuttssrqpqpp||{||{|{|{|{{|{{zyxyxxwwvutuutsstssrrqrqpqpp|{||{{|{|{ {zyyxwxwwvuvuuttstssrqrqqpp{|{|{|{{|{ {zyzxyyxxwvuvuututssrqpo{|{||{|{{|{{zyzyxxwvwvvutsrqrqqpop|{{|{|{|{|{{|{{zyxwvutsrqpop|{{|{|{{|{{z{zzyxwvuutsrqrqqpopo|{{|{ {z{{z{zzyxwvwvvuusrqrqppo{|{{|{{z{z{zzyxwvuvuutstsrrqpn|{|{||{ {zyzyyxwvuvvututtsrrqpon||{|{ {zyzyyxxwxwwvuvuutstssrrqpon| {z{{zzyxwxxwwvwvvuututtsrqpqppoon{||{ {z{yzzyyxwwvuvututtsrqpopoo{|| {z{{z{{zzyxwvwvvutsrqpqppoon{|{{||{z{zzyxwvututssrsrrqqpononn||{{|{{z{z{zzyyxwvutsrqrqqpon|{|{ {zyxwvuvuututstssrrqpon{|{{z{{zyxwvutsrsrrqrqpqppoon{|{{|{|{{zyxyxwxxwvwvvutsrqpqpoonm| {zyzyxyxwwvutsrqpopnoonnm{|{ {z{zzxyxxwvutsrqponm{{z{{zyzyyxwvutsrqponm|{|{ {zyzyxyxxwvututtsrsrrqpopoonn{|{zyzyxxwvwvvutsrsrrqpqqpopoonnm{ {zyxwvuvuuttsrqrqrqqpon{z{z{zzxyxxwvuvvututtstssrsrrqpqppononnm{ {zyzyxyyxxwwvutstssrrqpqppoononn{|{{zyxwxwwvutustssrqppqppoon||{{z{zzyzxyxxwxwwvututtssrqpqqppoon{{z{zyzyyxxwvutsrqqponm                                                                                                                                                                      󨧧   󨧨򨧨 񬫬 񱰰    󳲳󵴴      󳲲ѸѸз򾿿иззиззз콾ж켽ж϶϶϶϶϶϶ϵ϶϶϶εͶεζ󸷸ζ͵͵͵͵Ͷ͵͵/.////00/000/110010121112233333434343455554665666776778777788989mnooprqrrnnopqrnonooppqqrnmnnoopqrmnnopqpqrqrmnnopqrnnoppqrmnoppoppqqrrnnopoppqrnopqrrnopqrrmnnonooppqrmnnonoopoqqnonppqpqrrmnnonooppqrnopqnnonoopqpqqmnnonooppqrmnonoppqrnnopqnonoopqnonoopqqmnnopqqmnnoopqmnnopqnopqmnnoopoppqqnnonooppqnmnnonoppqmnnopqmnnonopooqqnnopqmnnoopqpmnnopmnnopopqnnopqmmnnoopnnonoppnopnnopmnnoopmnopnopnnonoopopnnopnnopmmnnoopopmnnopnopnnopnnonnopnnopomnnopnopmnonoomnonoopnmnoommnoononpnnonomnnoomnnonomno/..././0//0/0100000222222233332443443554554565565676668787778898                             rststtuuvwxwxxyyzyzz{|{{|{|{{|{| |}rsstuvwxyz{z{ {|{||{|}||rstuvuvvwxyxyyz{ {|{||{{|{||{{|{||}sstuvuvvwwxyz{|{{|{|{{||{||{||}||}rsstuvwvwwxwxxyyz{z{{|{|{||{{ |}rrssttuvuvvwxwxxyzz {|{{||{||{|{||}|rrsttutuuvvwxyz{z{{|{{|{{|{||{|{||rstutuuvvwxyz{z{{|{ {|{||{|{||}||rstuvwvwwxyyz{|{{|{|{{|{{||rstuvwxwxxyxzyzz{ {|{|{||{|{{||}rrsttuvwxyz {|{||{||rstuvwvxxyz{z{{|{|{||{| |qrrsstuvwxyxyyz{|{{|{||{{||{| |}rrsststtutvvwxyzyyzz {|{|{||{||}||rstutuuvwxyz{z{{|{{|{|{|{||rstuvwxxwxyyzyzz{zz{{|{|{||{{|{||{||rstsutuvuvvwxyz{z{{|{|{||{| |rsrssttuvwxwxyxyzz{|{{|{{|{{|{||rstuvuvwvvwxxyz{|{| |}||rqrrssttuvuvvwxyzz{|{{||{{|rqrrsststuuvwxwxxyxyyzz{zz{|{||{||{{||rststtuuvuvwvwwxxyz{|{{|{||{||}|qqrsrsstuuvwxyz {|{|{||{||{||qrstuvwxyz{|{{|{{|{||qrrststtuvwxyzyz{z{z{{|{{|{{|{{|{|{{||qrststtuuvuvvwxyz{z{{|{{|{{||{||{||}|qqrrsrsstuvwxyz {|{|{|{{|qrsrsstuvuvvwxyz{|{{|{{|{||{||{||qrststtuuvwxy {|{||{||{|{||qrsttuvwxyz {|{{|{||{|{{||}|qqrrstutuvvwxyz{|{|{{||{{||{|{||qrstuvwwxyz{z{|{{|{|{{|{||{||qrstuvuuvwwxyxyyzz{zz{|{{|{|{||{||qrqrrstutuvvwxyz{|{{|{|{||{||qrstutuvvwxwxxyxyzz{z{{z{{|{{|{||{||qrststtuuvwvxwxxyz{|{|{{|{|{|{||{||qrrqrsstuvuvvwwxyzyzz{z{{|{{|{||{||{|qrstuvuvwwxyzyzz{{|{|{||{|{|{||qrqrrsstuvwxyz{z{{|{|{|{||{|{|{||pqqrrststtuvwvwwxyz{z{ {|{{|{|{||qrsttuvwvwwxyz{z{|{|{|{{||{{|{||{|qrssrssttuuvwxyz{|{|{|qrstuvuvwwxwwxyyz{|{{|{{|{|{{||qpqqrsrsstuvwxyxyzz{|{{|{{|{|{||qrststtutuvvwxwxyyzyz{{|{|{{|{{ |pqrstuvwvxwxxyz {|{|{||pqqrstuvwxyz{|{{|{{|{|{||qpqrqqrsstuttuvuvvwxxyz{|{|{{||{||{||{||ppqrqrrstuvwxyz{z{z{{|{||{|{{|pqrstuvwvwwxyz {|{|{{||{{||{|ppqrsrsttuvwxwxxyz {|{{|{|pqrstuvwxyz{|{|{{||pqppqqrrststtuvuvvwxyz {|{|{|{|{|{{||opqqrsrsstuuvwvwwxyzz{z{|{{|{|{{|{||{||{|ppqrrqrrsstutuuvuvvwxyxyzzyz{{z{{z{{|{|{{||{|pqpqqrsstuvvwxwwxyyz{|{{||{{|{|oppqqrstutuuvvwxwxxyz{{z{{|{ |opqqrstuvwxyyz{z{{|{{|{||{||{oppqqrqrrssttutuuvuuvwwxwxxyyz{|{{|{||{|{||oppqqrstuvwxyz{zz{{|{{|{|{||{||poppqrqrsrststtuuvvwxyz {|{{|{||{{|{|{||{oppqrrstuvwxyxyzyzz{z{{|{|{||{|{||oopqrstuvwxyz{{|{|{{|{{||oppqsrssttuvwxyzyzz{ {|{|{||{                                                                                                                                                                                                                                                                                                                                         }|}||}}|}}|}}~}~}~~}~~}~}~~~~~~~~~~|}||}|}}~}}~} ~~~~~~|}|}}|}}~}}~}~}~~~~~|}}|}|}||} }~}~~}~}~~}}~ ~~~~|}|}|} }~}~}~}~}~~}~~}}~ ~~~~||}|} }~}}~}}~}}~}~~~~~~~~~|}|}}|}}|}}~}}~~}}~}~~}~~~~~~~~~~|}}||}}|}}~}}~}}~~}~~}~ ~~~~|}||}|}}||}|} }~}~~}~~~~~~}||}|} }~}~}~}~}~ ~~~~~~~}}||}|}}|}~}~}}~}~~}~~~~~~~~~||}| }~}}~}~}}~}~ ~~~~||}}|}}|}}|}}~}}~}}~}~~~|}||}|}}|} }~}~}}~ ~~~|}|}|}|}}~}~}~}}~}}~ ~~~~~~~~~}|}||}|}}|} }~}}~}}~}~~}~~}~~~~~|}|}}|}|}|}}~}~~} ~~~~~~~|}|}}||}|} }~}~}}~~~~~~~||}}||}|}}|} }~}~}}~}}~}~}~~}~~~~~~~||}|}}|}}~}~}~}~}~}}~}~~~|}||}|} }~}~}}~~}}~ ~~~}||}||}||}}|}}|}}~}}~~}~}~}~~}}~~}~~~~~~~~~~}||}||}|} }~}~~}~~~~~~~||}|}|}}|} }~}~}~}}~}~~}~~~~~~~}|}|}}~}}~}~~|}||}}||}|} }~}}~}~~~~~~}||}|}}|}}|}}||}}~}~}}~}~~~~~|}|}||}||}}|}}|} }~}~~}~}~~~~~|}|}}|}||}}|} }~}}~~}~}}~~}~~~~|}||}}||}}|}|} }~}~ ~~~~~~~|}|}}|}}|} }~}~~}}~}~~~~~}||}||}|}|}~}}~}}~~}} ~~~|}}||}|}|}}||} }~}}~}~}}~~}~~~~|}|}|}}|}|}|}}|}|}}~}}~}~~}~~}~~~~~~~~|}}|}}||}|}}|} }~}}~}~~}~~~~||}|}|}|}}|}~}~~}}~}~}~~}~}~ ~~~~||}|}||}|}}~}~}}~}~}~}~ ~~~~~||}|}}|}}~}~}~~}~}~~~~~~|}|}||}|}}| }~}}~}~~}~~~~~||}||}}|}~}~~}~}~~}~~~~|}||}}|}|}}|}}~}}~}}~}~}~~~~~||}||}|}|}}~}}~}}~~~~~~|}||}|}}|}||}~}~ ~~~~||}||}||}}|}|}|}}~}} ~~~~|}|}|}||}~}}~}~}}~~}~}~~~~~~~||}|}}|| }~}}~}~~}~ ~~~~~|}|}||}}|} }~}~}~~}}~~~~~~~|}||}|}|}}|}}~}~}~~} ~~~~~||}|}|}}|}}|}|}}~}}~}}~}~~}~~}~~~||}||}|}}~}~~}}~}}~~}~}~~}}~~~~~~||}||}}|}|}}|}}~}~~}~~}~ ~~~~||}|}}||}|}|}}|}}|}}~}~~}}~}~}}~ ~~~~{||}||}|}||}||}|}}~}~}~}}~}~~}~ ~~||}|}}|}| }~}}~}~}~~~~~~||}||}||}|} }~}~}}~}}~}~}~ ~~~| |}|}|}}|}|}}~}~~}}~}~~} ~|}||}|}}|}}||}|}~}}~}}~~||}||}|}||}}|}||}}~}}~~}~}~~} ~~~~~||}||}||}}|}}|}||}}~}~}~}~}~~}~~~~| |}|}}|} }~}}~}~||}||}||}}|}~}}~}~}~}}~~}~~~~~~||}|}|}|}||}||}|}}~}~}~~}}~}~~}~~~~~||}|}}||}}|}}|} }~}}~}}~}~~}~~||}|}|}|}}||}}|} }~}~~}~}~~}~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ~󁀀   ~󁀀  ~􂁁~~    ~  􁀁   ~~    ~ ~  ~ ~򁀀~ ~~ ~~ ~~ ~      ~~~~  ~  񀁀 ~~~  ~~~ ~~~ ~ ~~ ~ ~~~ ~ ~~   ~~  󀁀~~~~~~~ ~~~~~ ~~~ ~~  ~~~񁀀                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           􃂂                  􄃃               󃂂       񃂂 􃄁     񃂃     򃂃 򃄂  񄃃                                                                                                                               󆅆󇆆   懆    솇  쇆     􇆆􇆇 򆅅󅄄   󅄄򆅆 򅄄                            􅄅                                                             "  # " ""  !  ""   !               򈇈           󈇈         ꊉ    􊋋                􋊆   󊉊   "        #                 񒑒     󐏐        󔕔     򘗗  򡠠    򞝝   󞝞      񜛛       򥤥󫪪      󤣤  먧 󲳲    󲱱        ų뻼ų򹸺ijųųijŲIJij³òò쾽ò²򹸹²  󶵵  ׿׿ֿ־־־ֽվսս   ! "!!#"$#%$&%'''mnnonooppqpqqrqrrssttuvwxwxxyz{z{{mnnoopqpqqrrststtuvwxyz{mnnopoppqqrsrsttuvwxyz{z{{mnnopqrstuvwxwyyz{nnopqrststtuvwxyxyyzyzz{{mmnnoopoppqqrssrssttuvuvvwwxwxxyxyyz{zz{mnnopqrstuvwvwxxyz{znopoppqqrqrrssttuvwxyz{zmnnopqrststuuvuvwwvwwxyzyzz{nnopqrsstuvuvvwwxyz{nopqrstuvwxxyxyyz{mnnopqpqrrqrsstuvuvvwvwwxxyxxyyzz{{mnnoopqrstuvuvvwwxyznopqrqrrstuvwxyxyyzz{nmnnopqrstuvwxyzyzzmnnopqrrqrsrssttuvwxyxyyznonnooppqrsstuvwvwwxxyxyyznopqpqqrrsrssttuvwxymnnopqrstuvwxyznnopoppqpqqrrsrssttuvuvvwwxwxxyymnnoopqrrstuvwxymnnopqrststtuuvwxyyxyymnnopqrqrrstuvwxyxyynnopqrstuvwxwxxyxynopqrqrsststtuvuvvwvwxwxxyymnnopqrsrsstutuuvuvvwwxymnnopoppqrqrrsstuvwxyxmmnoopqrqrsstuvuvwwxymnnopqrstutuuvwxnopqrststtuvwxymnnoopqpqqrrstuvwxnopqrstuvwxxnopqrqrrsstssttuuvwvvwwxmnnoonpopqqrstuvwxmnopqrstuvwxnnopqrsutuuvwnopqrststtuvwvwwnopqrststtuvuvvwwxmnopqrstuvuuvvwnopqqrqrrsrsstutuuvwwmnnonooppqpqqrstuvwnmoopqrsrsstuvwnopqrsstutuvwmnnopqrqrrstuttuuvvwwnnopqrststtuvvwnonooppqrststtuuvvuvwmnnopoppqrqrsstuvnnonoopqrsrtsttuvmnopqrsrssttuvnnonopoopqqrststtuuvnnonoppqrstuvnopopqqrsrsttutuuvnmnnoopqrstummnoopoppqrstutuunnopqrsrsttutuumnnoopqrststutumnnonoopqrsttumnnopoppqqrsststtunmnnoopqrstumnnonoopqrstunnonoppoppqrstnonoopqrsrsstmnoopoppqqrrstnnoqrqrrst   ! """#"$#$$%%'''                                    {|{{|{{||{ |}|}|}}|}||}|} }{|{{|{{||{|{||}||}|}|}}|}}|}}~}}~{|{{|{|{|{{|{{||}||}|}|}}|}}|} }~{|{|{{|{||{|{| |}||}||}|}}~}}~{z{{|{{|{||}||}|} }~}~{{|{|{| |}||}||}}~}}~{ {|{||{||{||}||}||}|}}|} }~}{|{{|{||{{|{{|{|{||}||}||}|}}~}~}zz{{|{|{{|{||{{||}||}||}~}{ {|{|{ |}|}}|}|}}|}}|}}~}}~~{z{{|{{|{|{{|{ |}||}||}|}}|} }~}~}}~{{|{{|{|{||{||{| |}||}||}||} {|{||{||{| |}||}||}|}|}}|}}~}}~z{{|{|{|{||}||}||}}|}}|}}|}|}}~}}{z{zz{ {|{|{| |}|}}|}||}|}}||}}|}}~}z{{z{{|{{|{|{||{||}||}||}|}}|}}~}}zz{z{{|{{|{||{{||{| |}||}|| }~}z{ {|{||{{||{|{||{||}}||}|}||}|}}|}}~zz{|{{|{|{||}||}|}|}|}|}|}}~~}~}zz{|{{|{|{||}|}|}||}}|}}|}}z{|{|{||{|{|{||{||{| |}||}||}}|}||}}z {|{{||{||{|{||{| |}||}|}}z{z{{|{|}|}||}||}}|}}yz{{z{{|{{|{{|{| |}|}}|}yzz {|{|{|{||{||}||}|} }yz{z{{z{{|{{|{{||{{|{|{| |}||}||} }yzyzz{ {|{|{{||{|{ |}||}}|}}|}|}}|}}yz {|{{|{{|{{||}|}||} }yz{z{ {|{|{|{|{||}||}||}|}}xyyzz{z{{|{{|{{|{||{| |}|}}|}yz {|{|{|{|{{|}|}||}}|}||}xyyz {|{|{||{| |}||}||}|}}xyyz {|{{|{{|{|}|}|}|}}yxxyzyyzz{|{{||{{|{{|{|{||{{||}||}||}|}}xyz{|{{|{|{|{|{|{||{| |}|}||}}wxyyz {|{|{|{||{{|{|}||}||}||}}|}}wxxyyz{z{{|{{|{{|{|{|{{||}|}}wxxyzyzz{ {|{|{||{|{{|{||}|}||}|}|xxyxyyz{|{{|{|}||}||}}|}||}}|}xxyz{|{|{{|{{|{||{||{||{||}||}|}wxyz{z{ {|{{|{|{||{||}|}||}}|}}wxwxxy{|{|{|{||{||{| |}|}|}}|wwxxyz{z{{|{||{||{ |}||}|}vwwxxyyxzyzyzz {|{{|{||{|{||}||}|}wwxyz {|{|{||{||{||{| |}|}}wwxyz{|{{|{{|{||{||{||}||}||}|}|wvwwxxyxzz{|{{|{{|{|{{|{||{ |}|}||}}wxyz{z{{|{{|{||{{||{||{||}|}||}|}||}wvwwxyz{z{{z{ {|{{||{{||{|}|}|}||}vwvwwxxyz{z{{|{||{{|{||{|{{||{{| |}||}}|vvwwxyz{z{{|{{|{|{||{||}||}|vvwxxwxxyxyyzz{z{{|{{|{|{||{{|{||{| |}|}}uvvwxyxyyzz{z{{|{{|{{|{||{|}||}|}uvvwxyzyzz{ {|{||{|{{||}|uvuvvwxyz{z{{|{|{{||{|}||}|}|}uvvwvwwxyz{|{|{||{{|{||}|uvuvvwvwwxxyz{ {|{{|{||{||}||uvuvvwxyzyzz{ {|{|{||{||{||}||}|uuvwxyxyyzzyzz{|{|{|{{|{||{||}||}tuuvwxyzyzz {|{{|{|{{|}|uuvwxyxyzyzz{z{{|{|{||{|{||{||}||uvwxyzyzz {|{{|{|{{|{||tuuvwxxyxyyz {|{{|{{ |}||tuvwvwwxwxxyz{z{ {|{||{||{{||}|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     }~}~}~}~ ~~~~~}~}} ~~~ ~}~~~~~~ }~}}~}~ ~~~~~~~~~} ~~~~~~~ }~~}~}~~~~~}~~~~ ~}~}~~}}~}~~~~~~}}~~~~~~}}~~}~}~~~~~ }~}~ ~~~~~}~}~ ~~~~~~~}~}~~}~}~~}~}~~~~~~}~}}~}~}}~}~~}~~~~~~ ~}}~}~~}~~}}~~~~~~ }~}~~}~ ~~~~~~~~~}~}}~~}~ ~~~~}}~}~}~}~~}~~}~~~~~ ~}}~~}}~~}~~} ~~~~~~~}}~}}~}}~~}~ ~~~ }}~}~}~~}}~~}~~}~}~~~~~~~~~~}~}}~}}~}~}~~~~~}}~}~~}}~~}~~~~~~ }~}~}~~}~}}~~~}~~}}~}~}~}~~~~~~~~~~}~}~}}~~}~}~~} ~~~~ }}~}}~}}~}~ ~~~~~~ }}~}}~}~~}~}}~~~~~~~}~}}~}~~~ }~} ~~~~~~~~~ }}~}}~}~~}~}}~~}~}~~~~~~~~~} }~}~}~~}~~~~~ }|}~~}}~}}~}~~}~ ~~~~~~ }|}}~}}~}~~~~~~~~~~~|}}~}}~}}~}}~~}~ ~~~}~} }~}}~ ~~~~~~~~|}}~}}~}~}}~}~~~~~~|}}~}}~}}~}~}}~}~ ~~~~~~~ }}|} }~}}~~}~}~~}~~~~ }}~}}~}~}~~}~}~~~~~~~~}|}|}}~}}~}~}~}~~~~~~~~~}}|}}~}}~}~}}~}~~}~~~~~~~~~}||}}~}}~}~}~~}~~}~}}~~}~ ~~~~~}|}}~}}~}~}}~}~~}~ ~~~~~~}|} }~}~~}~}~~}}~~}~ ~~~}|}}~}}~}}~}~~~~~~}|}|}|} }~}~~}~}~}}~}~~~~~~| }~}}~}}~~}~~~~~~~~}|}~}~}~}~~~~~~~|}|}}|}|}}~}}~}~~}~~}~~~~~~~~~~~|}|}}|} }~}}~}~~}~~}~~~~~~~|} }~}~}~}}~}~~}~ ~~~~}||}|} }~}~}}~ ~}~~~~~~~~}|}|}|}|}}|} }~}~~} ~~~~|}}|}}|} }~}~}~~}}~}~~}~~~~~~~}||}|}}|} }~}}~~}~ ~~~~}|}|}}||}|}}~}~}~~} ~~~~~~~~}}|}|}}|}}|}}~}}~} ~~~~~~~||}}|} }~}}~}}~}}~}} ~~~~~|}|}}|}}~}}~}~}~ ~~~~~|}}||}}|} }~}}~~}~}~ ~~~~~}}|}}|}}|}}|}}~}}~}~~}~ ~~}||}|}|}}|}}~}~}~}~}~ ~~~~~|}|}||}~}~~}~~}~~}~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     󂁂         򂁂  󁀁       􀁀􂁁      򁀁 񁂂 􂁁        쁀           ~~    ~~~ ~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            􄃄 􄃄 񄅅  􅄅򃂃 񅂂     􂃃               􄃃         򄃃       򄃄           򃂂                                                                                                                             󆅆   󅄅             􆅅  􅄄    􅄄          󅄄  􆅆   󆅆             󄃃􅄅 􅄄                                                                                                   󈇇      􉊊     󇈇       򈇇󈇈        񈇇        󇆆  򇆆񆅆 􇆇򇆆                                                      <};987 0805,-.-.%%.(                   돎                              􋊈   󇈇   󉈉 􈇇􈇇        >;>777/45+,8*/'%+! '!          @              򐏏  􌍎     󏐌                񌍌      󉈉:   𕔕         铔  򓒓           񑐑  󒑒  󐏐         񏎎     􏎏    򎍎   󎍎       #   ݕ 񔕕򕔔   񓔔  * 𒓓   󒑑 𒑑񒑑  $    󐏏 񐏏􏐐!   񍎎    $   # 󓔓 𓔓񔓔   𓒒  1   󒑒    󐑐     􏎎   # 󍎎 𕔔  󔓓     쑒     󒓓  󒑑 񐑑                  쏐                     󋌌  󍌍 󌋌      􏐏                 󍎍  򍎎    񏐐􏎎 ፎ   󍎎   񎏏 퍎     򍎍                         <}>2;@,11.*)(! %           􋌌   򎏏       󊋊                                􇈇    񈉉   ~|9@yA9132-)*%%" ()$ "     3,.*()&! !                                           󈉈򇈈     򈇇      󇈇   򆇇񆇆  ކ 釆         񆇇 3,&. ') %! $  !                                                                             􇆇 򅆆憇   􅆆  򅆆  񆇇򅆅􅆅       􅆆  󄅅         󅆆  򅆅                                                                                                          􄅅 󄅄   􄅅          󃄄        􂃂  􂃃 񄃃   􂃂   탄򂃃                                                                                                           񂃂  쁂 󃂃        񁃃 񂃂            󂃃    􂃃  􃂃     󀁀  􁂂          񁂁                                                                                                                                                                                                                 􀁀        񀁀            􀁁~   󀁀~~ ~~ ~~~~~ ~~~~  ~~  ~  ~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ ~~~~~~~~~~~~~~~~  ~~~~~~~~  ~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ~~}~}~~}~~}~}~}~} ~~~~~~~~~ ~}~~}}~~}~~~~~~~~~}~}}~~~ ~}~}~}~}~~}}~~~~~~~~}~}~}}~}~ ~~~~~~~~}~~}~~}~}~~}~~~~~~~~ ~}~}~} ~~~~~~~~~}~~}~~}~}~~}~~~~~~ ~}~}~~}~~}~}}~}~ ~~~~~~~~ ~}~}~~}~}}~}}~}}~~~~~~~~~~~}~~}~}}~}} ~~ ~}~}}~}}~}~}}~~~~~~~~~~}~~}~~}} ~~~~~}~~}}~}}~}~}~~}~}} ~~~~~~ ~}~}~}~}}~}}~}~}}~~~~~~~~~~}~~}~}}~~}~~}}~} ~~~~~~~~}~}~~}~}}~} }~ ~}~}~~}~~}~}}~}}~~~~~~~~~~~}~~}~}}~}~~}}~}}~~~~~~~~~~~}~}~}~~}~}}~}}~~~~~~~~~}~~}~}~~}}~}}~}~~~~~ ~}~}~~}~~}~} }|}~~~~~~~~~~~~}~}~}}~}}~}} ~~~~~ ~}~}~}}~} }|}~~~~~}~~}~~}~} }|} ~~~}~}~~}~}}~}~}}|}}~~~~~}~}~}~}~~}~~}}~}}~~~~~ ~}~}~}}~~}~~}}~}}|}|}~~~~~~ ~}~}~~}~}}~}~~}}|}}~~~~~~~~~}~~}~}}~}}~~}~}}~}}|}|}}~~~~~~~~}~~}~~}~}}~}}~}}|}}|~~~~~~~~}~ ~}~ }|}}|~~~~ ~}~~}~~}~}}~}}~}}|}}|}~~~~~~}~~}}~}~}}~}}|}~~~~~~}~}}~~}}~}}~}|}}|}}~~~~~~~~~~~}~~}~}~~}~}~}}~}}|}}|}}||}~~~~~~~ ~}~}}~}}~}~}}|}|}}||}~~~ ~}~~}~}~}}~}}~~}}~}~}}|}}|}}|}~~~~~~~}~}}~}~}}~}}|}|}~~~ ~}~~}~}}~}}~}}~}|}}|}||~~~~~}~~}~~}~~}~}~}}~}|}||}||}||~~~~~~~~}~~}~}~~}~ }|}||~~~~ ~}~}}~}}~}}~}~}}~}}|}|}}|~~~~~~}~~}~~}~}~}}|}}|}|}}||}~~~~~}~~}~~}~}~}}~} }|}|~~~~~~}~}~~}~~}~ }|}|}}|}}||}~~~~~ ~}~~}~}~}}|}|}||}|}}~ ~}~~}~~}~}~}~~}}~} }|}}|}}||}||}|}~~~}~}~}~~}~}}~}}|}}|}|}}||}~ ~}~}~}~}~}}|}}|}||}|~~ ~}~}}~~}~~}~}}~}}~} }|}}|}||~~~}~~}~~}}~}~}~~}}|}}|}||}|~~ ~}~~}~~}~~}}~}|}}|}}||}||}||~~}~}~~}~~}~~}~}}~}}~}}|}|}}|}|}}|}|}||}||~~}~}~}}~}}|}}|}}|}|}|}||}| ~}~~}~}~}}|}|}}|}|}|}|}||}~~~~}~}~}~~}~}}~}~} }|}}|}||}||}}|~~~}~}}~}}~}~}}|}||}||}||}|| ~}~}~~}~}~}}~}}|}}|}}|}||~}~~}~}~~}~~}~}}|}}|}}|}}||}||}|}}|~}~~}~~}~}~}}~}}|}}|}}|}|}}|}||~}~~}}~~}~~}~}~~}}~}}|}}|}||}}|}}|}}||}|~}~~}~}}~}~~}}~}}|}}|}||}||}||~}~}~~}~} }|}|}||}||                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 }~} }|}||}||}| |{|{{}~ }|}}|}|}||}} |{||{||{|{{}~}}|}}|}|}||}|}|}|}||{||{||{||{|{{|{{~}}~}}~} }|}|}|}|}||{||{|{{|{|{{|{{ }|}}|}}|}|}|}| |{|{{|{{|{{|{|{{~} }|}|}|}||}||}} |{||{||{|{||{|{{}|}|}|}}|}||{||{|{{||{}~}}|} |{||{{|{||{| { }|}}|}}||}||}}|}||{||{|{||{|{{|{{z}}|}|}|}|}|{||{|{ {}|}}|}|}|}}||}||} |{||{|{{|{{}|}}|}||}}|}||{|{||{|{||{||{}|}}|}||}|}|}||}} |{|{|{ {}|}}||}|}}||} |{|{|{z{{}|}|}||}|}|}||}||}|{|{|{|{|{||{{|{ {}|}|}}|}}||}||{||{|{|{|| {z}}|}}|}}|}|}}||}||}||{||{||{|{||{{|{{|{{z}|}|}}|}|}}|{||{|{|{||{|{|{ {z{}}|}|}}|}||}| |{|{|{|{ {z}|}}|}||}|}|}||}| |{|{{|{{| {zy}}|}|}||}||}||}||{||{|{|{||{{|{|{{z{zzy}}|}}|}}||}||{|{||{|{| {zy||}|}}||}|}| |{||{||{{||{|{{||{ {zy}|}}||}||}||{|{|{|{||{|{|{{|{{zy}|}}|}||{|{||{|{ {z{{zzyy}|}|}|}||}||{||{||{|{|{|{{|{|{{z{{zyy}|}}|}||}|{|{||{|{{|| {zy|}}|}|}||}|{|{||{||{|{ {z{{zzy}|}|}|}||}}| |{|{||{{| {zyx}|}}|}|}}||}||{||{||{|{{z{zzyx}|}||}|}}|}| |{|{{|{||{|{ {zyx}|}||}|}}||}||{||{|{|{|{{zyxyxx}|}||}|{||{{|{{|{{|{|{{|{{z{zzyyx|}}||}||}||}||{|{||{|{zyxyxw|}||}||{||{|{|{{|{ {zyx}|}||}||}| |{|{|{{|{z{{zyxwxw}|}||}| |{||{|{|{{|{|{{|{ {zyxyyxxw|}|}}||{|{||{||{|{{zyzyyxwxwv}|}}|}||{||{{|{{zyxwxxww|}}|}| |{| {z{{zzyzzyyxwxwwv||} |{||{||{|{|{{z{{zyxyxxwwv||} |{||{|{{||{z{zzyyxwvwv}||}||{||{||{|{{|{{|{{z{zzyxyyxxwvwv}}|}| |{||{||{{|{|{|{|{{z{zz{zzyxwv|}||{||{||{||{{|{|{{zyyxyxwwvu| |{|{||{|{||{{|{ {zyxwvu||{| |{||{|{|{{|{{zyxyxwwvuv||}||{||{|{|{{||{{||{||{|{{zyzyyxwvuvuu||{|{{|{||{|{{zyxyxxwvu||}||{||{|{|{{|{||{{z{zzyyxwvuvvuu|}||{|{|{|{|{|{|{{|{{||{{|{{z{{zyzyyxxwvuuvuu|{||{|{{|{|{{|{|{|{ {zyzzyyxwxwwvwvuut||{|{|{||{|{|{{||{{|{{z{{zzyxwvutu||{||{|{{|{{|{|{{||{{zyxyxxwvwwvuvuutt|{||{|{{|{{|{{|{ {z{yyxwvut|{||{||{|{{|{|{{zyxvwwvvuvuutt|{||{||{||{|{{|{{z{{zyxwvutst||{||{||{|{||{{|{|{{zyxwvuvuututss|{|{|{||{|{|{|{{zyxyxxwwvvuts|{||{||{||{{|{|{{zyxvwvvututts||{|{|{{|{||{||{||{{|{{zyxwxwwvvututts |{|{|{|{{|{{z{{zyxwvutsttss||{||{|{||{|{ {zyzyyxwvutstssr{{||{|{||{{|{ {z{{zyzyxyyxwwxwwvvutsr                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   !!"##$%$%&'()(***,{zyxyxxwvutstsrsrrqponm{zyxwvwvvuutsrqpopoonnm{{zyxwvuvvututtstssrrqrqqpon{zyxwxwwvutsrqrqqpon{zyzyxyxxwxwwvuvuututtsrsrqqpqppononnm{{zyzyyxwvututtsrqrqqpqpponoonn{zyxwvuvuusrqpqqpponmn{{z{zzyzyyxxwvwvuvuutsttssrqpononnm{zyxyxxwxwwvututstssrqpqqppon{{zyxwvutssrqponmn{zyxwvwvvuututtsrqpon{{zyxwxvwvvuutsrqrqqpponmnz{{zyyzyyxxwvvututtsrqponm{zzyzyxxwvwvvutsrsrrqrqppopoonm{zzyzyyxwvwvuvuuttsrsrqqpqpponoonnmzyzyzyyxxwvutsrsrrqrqqponmzyxwvwvvuututtstssrqpqppoonmzyzyyxyxxwwvututstssrsrrqqpoponoonnzyyxwxxwwvwvuututtsrqponzyyxwxwvwvvutsrqrqppqppopoonmyyxwvwuuvuuttsrqpqopoonyyxwvvutsrssrqrqqpoppoonyyxwvutsrqrqqpponmxyxxwxwwvutstssrqqpoopoonnmyxxwvwvvuvuutsttssrrqpqqpponmyxxwvututtssrqpononnyxxwvvuvvuttutstssrqrqqpponmxwxxwwvutsrqpopoonnxxwvutsrqponmwxwwvutsrqpponmxxwwvwuvuutsrsqrqqponwxwwvutsrssrrqpponwvutsrqpononnxwvvwvuuvuuttsrsrrqqponmnwvvuvutuutssrsrrqrqqppoopoonwvutsrqqpqpopoonmnmwvvutsrqrqqoppononnmvwvvututtssrqpopoonvuvutuutssrqpqppononnmvvututtssrqpopnonnmvuvvuutsrqponmvuutsrqpqpponmnvuvuttsttssrqponututstssrrqppqpponvuutsrqponmuutsrqrqqppopononnmuututtsrqponuttstssrqrqqppopoonuttsrqponuttstssrqrqqpponttsrqpononmttsstssrrqpqpponmttssrqrqqppopoonnmmtssrqpopoonmnsttrrsrrqpoononnmmssrsrrqrqqpoonmsrqpnononmmsrqrqqpopoonsrrqponsrsrrqrqqppoonoonnmrrqponmrrqpqpponmrrqpononmmrqqrqpqppopoonm            ""#$$%%&&'()))**, 񬫫  񫬭      󨧨   򫬭                𱰰    ͵͵͵͵͵̵̶˵̵̵̵̵˵˴ʴ˵˵ʴ˵˵ʴʴʵʵʴ񷶷ʵʴʴʴ羿ɴɵɴɴɴɴ𷸷ɴȴɳȴȴȴ9::::::;::;;;<;;;========= nmnononnonnonnononnonmnonnonmoonmnonmnnonnmnnnmnnnmnnmnmnmnnmnnnmnm99:::9::;;:<;;<;;<<=<>====                     opqrqrrsstuvwxwxyxyzyzz{|{|{||{|poppqqrstuuvwxyz{|{{|{|{{|{||opqrqrrsstutuuvwxyxyzz {|{||{||{|oppqrsrststtuvwwxyz{|{{|{||{||{|ooppqrqrrstutuuvvwxyz{z{{|{{|{|{||{||opopqpqrqrsstutuuvvwxyz{z{{|{||{||noopqrstuvwxyxyzyzz{|{{|{{||{|{{|{|{opoppqrstuvwxwxyxyyzz{{z{{|{{|{||{||opqrstuvwxyz{|{|{|opqrstutuuvvwxyxyyz {|{{|{{||{{|{|oopqrrstuvvwxyz{|{|{{|{|nnoppqrrstuvwwxyz{|{{|{|{{|{|{{noopoppqqrststuuvwxyzyzz{{|{||{noopqsrsstuvxwwxxyyzyz{zz{{|{|{{|{{|{||nnooppqrqrrsrsstuvvwxyz {|{|{||noopqqrstutuuvvwxz {|{{|{{||{nonopoppqqrqsststuuvwxyxyzz{|{noopqrqqrrsttuvwxyz{{z{{|{|{{||{|{{nnoopqpqqrstuvuvwwxyz {|{{|{|{{nopqpqqrrsststtuuvwvwwxyz{z{{|{|{{|{{||nnoopopqpqqrrstuvwxyz{|{|{|{||{nnopqppqrrststuuvwxyyz{z{ {|{{|{||{nnopqqrstutuuvwxyz {|{||{||{||mnnoopqrstuvuvwwxyxyyzz{{|{{|{{|{mnnopqrsstuvwxyz{|{|{{||{|{{|{nmnoopqrsrssttuvwxyyz{z{{|{|{|{{nnonooppqrstuvwxyz{z{{|{||{|nopopqqrqrrsrsststtuvwxxyz {|{||{|mnnonooppqqprqqrrsststtuuvwwxyz{|{{|{||mnonooppopqqrsrttuvwxyz {|{||mnnopqrsttuvuwvwwxxyzyzz{{|{{|{{|nnopopqpqqrststtuvwxyyz{{|{||mnoopqrststuuvwvwwxyz{|{||nnopqrststutuuvvwvwwxyxyyz {|{{|{{|mmnnoopqrstuvwxyzyz{z{{z{{|{{||mmnoopqppqqsrsststtuvvwvwwxwxxyz {|{{|{{mnnonoopqqrstuvwvwwxyz{zz{{|{{|mmnnopqrststtuuvwxyz{z{{|{||{|{{|{|nmnnoopqrsrrsttuvwxyz{z{{|{||{{||mnnoopqpqqrrsttuvwxwxxyz{|{mnnopoppqrstuvwxyzyz{zz{{nmnoopoppqrsrsstsutuuvwwvxxyz{z{{|{{|mmnoopqpqqrrstuvwxwxxyz{z{{|{{|nnopqpqrrqrrsstuvwxwxxyz {|{{nnopqpqqrrssrsttuvwvvwwxyz {|{{|{nopqqrstuvwxyxyyz {|{|{|mmonoopqrrstuvwxyz{z{{|{{nonooppqrststtuvwxwxxyz {|{{mnnopqprrstutuuvwxwxxyyz {|{||{mnoopqrqrrsstuvwxyzyz{ {|mnnopqrstuvwxyz{z{{|{|{{nmnnoopqrstutuuvwxwxxyzyzz{z{{|nnonoopqrstuvwxyxyzz{|{{|mnnopqrststtuuvwxyz{z{{|{nnopoppqrstuvwxyz{zz{{|{|{{mnnopqrstutuuvwxyz{z{{|{|{nopqrststtuvwxxyxyzyyzz {mnonoppqrstuvwxyz {mnnoopqrstuvuvvwxyz {monoopqrsttuvuvvwwxyz{z{{|{mnoopqpqqrsstuvwxwwxxyyz{ {|{|mnnopqpqqrstuvuwvvwwxxyz {|nnopqrqrrssttutuuvwxyz{zz{{|{|nnoppqrqrrsstuvwxyz{z{{|{                                                                                                                   |}||}|}}|} }~}~}~}~ ~~~~||}|}||}||}|}}|}}~}}~}}~~}~ ~~| |}||}}|}|}}~}~}}~}}~}~~}~ ~~{||}|}||}|}||}|}|}}~}}~}~~}~}~~~~||}|}||}}|}|} }~}~~}~~}~}~~~~| |}|}|}|}}|}}~}}~}~~}~~}}~~}~}~~ |}|}|}}|}}|} }~}~}}~}}~~}~~}~ ~||{| |}|}|}}~}}~}~~}}~}}~ ~~~~~||}|}}|}}|}}|}~}}~}~}~}~}~~}~~~~~||}|}}|}}|}||}|}|} }~}~~}}~ ~}~~~~~ |}||}}|}}|}}~}}~}~ ~~~||{| |}|}}|}}|} }~}}~}~}~~}~~~~|}||}|}~}~~}~||}||}}||}||}}|}}~}~}}~}}~~{|{||}|}}|}|}}|} }~{| |}|}}|} }~}}~}}~}~}~~~~|{| |}|}|}}|}}~}}~}~~}}~}}~~}~ ~~|{||{||}||}|}}|}}|}}~}}~}~~}~} ~{||{||}|}||}|}| }~}}~}~}}~}}~ ~{|{||}|} }~}}~~}~}~ ~{||}|}|}}~~~{||}|}|}|} }~}}~}~~|{| |}||}|}}|}}|}|}}~}}~}}~}~}}~ ~||}|}|}||}}|}|} }~}}~}~} ~{||{| |}||}|}|}}|}}~}}~}}~}~}~~~~{||{||}|}|}|}}|}~}}~}~}~}~}~}}~~~~|{||}||}||}|}}~}~}}~}~||{||{||}||}|}}~}~}}~}~}}~}}~~}~~}~~~|{||}|}|}}~}}~~}~}~~}~~~||{||{||}|}~}~}}~~}~~{{|{{||}||}||}|}}||}|} }~}~~}~~}~~|{|{{|{||}|}| }~}~}}~~}~}}~}~ ~{|{{||}|}|}}~}}~}}~}~~}~{{||{|{||}|}|}}||}|} }~}}~}~|{||}|}|}}|}}|}}|}|}}~}~}~}~}~~}~ ~{{|{||{||}||}|}|}||}|}|}}~}~}~}} ~|{|}|}|}}|}|| }~}}~}}~~}~ ~{|{||}||}}|}|}}~}}~}}~~}~~{|{|{{||}|}|}|}||}}|}}|}}~}~}}~}~~}~~|{||{||{||}|}|}}|} }~}}~}~}~}~~}~}}~~{||}||}}|}|}}~}~}~}~}}~|{|{{||}|}|}|}}|}}|}}~}}~}}~~}}~~}~~}~~|{|{||{||}|}|}}|}|| }~}}~~}~}~~}~|{|{||{| |}|}|}|}|} }~}~~}~~}~~{||}|}|} }~} ~|{{||{||}|}}||}|}}|}}~}}~~}~~}~~|{| |}||}||}|}||}|} }~}}~}~~}~~{|{||}|}}|}}|}}~}}~~}}~}~ ~|{|{||{||}||}|}||}|}}|}}||}}~} ~{||{||}|} }~}~}~~}~~}}~~|{|{||}|}||} }~}~}}~}}~~}}~~{||{|{||}|}||}}|}|} }~}~}~}~~{|{||}|}|}}|}}|} }~}~~}~~}~~}~}}~~|{||{| |}||}||}|}|}}|}}~}~~}~}}~}}~}~~|{|{| |}||}|} }~}}~}~~}~{|{||{| |}|}|}}|}}|}}~}}~}~}}~}~{|{{|{| |}|}}||}}~}~}~}~}}~~}~~{|{||{{||{| |}|}}|}| }~}}~}~~}~}~~{|{|{||{||{| |}||}}|}||}}|}}~}}~}~~}~~}~~{|{||{||{||{||}||}|}|} }~}~}}~}}~}~~}{||{||{||}|} }~}~}}~~}~~}~~{|{{|{||}|}||}| }~}~}~|{{|{|{|{||{||}||}}|}}|}}|}}~}}~}}~~}~}{{|{||{||{|{{||}||}|}~}}~}~}}~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ~~~~~~~ ~~~~ ~~~~  ~~~~~~~~  ~~ ~~~~~~~~~큀~~~~~~  ~~  ~~~~ ~~~~~~~~~~~ ~~~~~~~~~~ ~~~~ ~~~~򁀁~~~~~~ ~~~~~~~~~~~~􁀀~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ ~~~~ ~~~~~~~~ 􁀀~~~~~~~~~~~~ ~~~~~~~~ ~~~~~~~~ ~~~~~  󁀀~~~~~~~ ~~~~~  ~~~~~~񁀁~~~~~~~~~~~~~ 􁀀~~~~~~~~~~~󁀀~~~~~ ~~~~~  ~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~~~~~~ ~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  ~ ~~~ ~~~~~~~~  ~~~~~~~~~ ~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                򃂃 􃂂                            킁  󂁁     􃂃                                                                                                                                                                   􆅅       􅄅     򄅄                                     􃄃         󅄅 󄃃                                                                                                                         򆇇 󈇈             􉈉      򈇇       󈇇   􈇇                             󇆆                                                                   >           򎍎          =   󘒒  񔓓      񘗘     🞞     󞝝  󞟟  🞟   🞟󞝞  󛚛󟞟   󦥥        򦥥   󭬬     󰯰              򫪫  񵷶    򴵴ﴳ 򴵴   񲱲򵴴   սԽԼӼԼӼӻһӻӻһҺҺѺѺѹѺѹѹиϹϸϸϷϷϷζζͶͶͶ͵˶󸹸ʶ˵ʵʵ()()*++,,-,--/.//112223435566787899::;;=<>=?nopqrsnnopqpqqrsmnnoopqrsnmnonooppqrsrsnmnonoopopqqrqrrsrsnopqpqqrsmnnonoopqpqqrsrrnnopqrqrrsmmnoopqrnopqrmnopqrsnnonoopopqqsnnopqpqqrnonoopoppqqrmnnopqppqqrmnnonooppqrmnnopqqrmnopoppqqnopqpqqnmnnoopqppmnnopqnmnoopoppqmnonoopnmoopnnopmnnopmnnopmnnpmnmnnooppnmnnoomnomnnonomnnomnnoommnnmnmnnomnnmnmnnn(((**++,,-,-..//011213233455668789::;:;<===?                      tuvwxyxxyyzz{z{ {|{{|{||}||tuvwxyxyzyzz{z{ {|{|{{||{| |}|}ttuvwvwwxxwxyyzyz{z{ {|{||{|{||{|{||{||tstutuuvwvwwxxyz{|{|{{||{{|{||{||{{|{||stuvwvwxwxxyyz{z{{|{|{| |{||stutuuvvwxwxxyyz{|{{||{{|{|{|{||{||stuvuvvwwxwxxyyz {|{|{|{{|{||{||stuvwxyzyzz{|{{|{{|{{||{||stutuuvwxwxxyyzyyzz{{|{||{{|rstuvwxyz{z{|{|{|{|{||{{||{||stuvuvwwxyzyzz{ {|{|{||{||{||{||{||rsttsttuvwwxyz{z{{|{{|{{||{||{||{||rststtuvwxyxyyzyz{{|{|{||rsstuvwxyz {|{{|{{||{||{|rstuvwxyxyyz {|{{|{||{|{|{||rstuvuvwwxyzz{z{{|{{|{{|{|{||rstuvwxwxyxxyyz{|{ {|{{|{||{rqrrsrsttutuuvwxyz{z{ {|{{|{{|{|{||{||rsttuvwvxxyzyz{ {|{|{||{{|{||qrsrssttuvwxyz{z{{|{{|{{||{|{{|qrstutuvuvvwwxyz{z{z{{|{{|{|{{|{{|{||pqqrrstuvwvwwxxyz{z{{|{|{||qrsrrsstuvuuvvwxxyz{|{||{||{|qrstuvwxyxyyzyz{zz{ {|{||pqqrqrrsstuvwxwxxyyzyzz{z{{| {|{||qqrsstuvwxyz{|{{|{{|{{|{||pqpqrqrrstuvwxyzz {|{|{||{ppqrstuvwxyzyzz{z{{|{{|{||{||opqpqqrqrrsststtuuvuvvwxyzyzz{{z{{|{{|{{|{|ppqrstuvwxyz{z{{|{||{|{|ppqrststtuuvuvvwxyz{zz{ {|{||{||{ooppqrsrsttuvwvwwxyxxyyzz{z{{|{{|{{|{|ooppqqpqqrsrsttuvwxyxxyyz{zz {|{{|{{opqpqqrstuvwxxyzyz{z{ {|{{|{{||{oopoppqqrstutuuvwxyz{z{{z{{|{{|{|oopqrstuvwxyz {|{|noopqrqrrsrsttutuuvvwxyzzyzz{ {|{{|{{noopqrstuvwxyzyzz{z{ {|{noopoppqrstuvwxyxyyzz {|{{|{noopqpqqrststtuvuvvwxyyzyzz{z{ {|{{nopqrstuvvuvvwxyz{nopqrqrrstuvuvvwxyz {|{|{mnnopqrsrsstuvuvvwwxwwxxyz {|{||mnnopqrstuvwxyxyyzyzz{|{{nopopqpqqrsrsstutuuvwxyz {mmnnopqrstuuvwxyz{z{{|{{nopqrsrssttuuwvwwxxyz {nopqpqqrststtutuuvvwvwwxwxxyz{|{{mnnonooppqpqqrstutuuvuvvwvwwxyzyzz{{z{{|mnnonoppqpqqrrststutuuvwxyxyyzz{|{{nmnnoopqpqqrqrrstuvwvwwxxyzyzz{{z{{|mmnoopqpqrrqrrststtuvwxyz{z{{|mnnopqrstuvwxwxxyz{z{zz{{nnopqrstuvwxyxyyzz{z{{mmnnopopqqprrqrrsstuvwxyz{z{mnnoopqrstuvwvwwxyxyyzyzz{z{{nonooppqpqqrsrrtssttuvuvuvvwwxwxxyyz{z{{nopooppqrsrsstuvwvvwxwxxyz{z{nnopqrststtutuuvwxyz{mnmnoopqrstuvwvwwxyxxyyz{z{{nnonnooppqrsrsstutuuvwxyxyyzz{mmnnopqrststtuvwxyyz{nmnnoopqrsrtsttuuvwxyz{z{{mnnopqrrstuvuvuvvwxyz{                                                                                                                                                                                         |}|}}|}}|}~}}~}~}}~~~~|}||}}||}||}~}}~~}}~}}~}~~}~~~~~|}}||}|}|}}|}}~} }~}~ ~~~~|}||}|} }~}}~}~}}~}}~ ~~~|}}|}|}}|} }~}}~~} ~~~~}}|}|}|}}|}|}}~}}~}~~}~~}~}~~}}~~|}|} }|}}~}}~}~}~ ~~~~|}|}||}|}~}~}~}~~}~~}}~~~~~~|}||}|}}||}|}}||}}||}}~}}~}}~}}~}~~}~~~~~~}||}|}||}}|}}|}|}|} }~}~~}~}~ ~~|}||}|}||}~}}~}~~}~}}~~}~ ~~~|}||}||}|}}|} }~}}~}}~~}}~}~~}~~~~~||}|}}|}~}~}}~}}~}~~}~~}~~~||}|}|} }~}}~}~~}}~~|}||}|}|}}|} }~}~}}~}}~}}~~}~ ~|}|}}||}| }~}~}~~}~}}~}}~}~ ~|}|}||}||}|} }~}}~}~}~}~~}~}}~~|}|}||}|} }~}}~}~~}}~~}}~~}}~~}~~|{| |}||}| }~}~}}~}~}} ~||}||}||}|}|} }~}~}~}}~}}~ ~|}||}|}}||}||}}~}}~}~~}}~}~~}~~{| |}|}||}|}}|}}~}~}~~}} ~ |}||}|}}|}}~}}~}~~}~}~}}~~|{||}|}}|}}|}}|}|}}|}}~}}~}~}~}~}~}}~~}~~{||}||}|}|}}|}}~}~~}~~}~}~}~~ |}||}|}|} }~}}~}}~}}~}~~}~~}~~|{| |}|}|}}|}}~}~}}~}~~}~}~~}~~|{||}||}||}|} }~}~~}~}~~}~}}~||{{||}||}|}|}|}|}}~}~}~}~~}~~|{||}|}}||} }~}}~}~}}~}~~|{| |}|}|}|}}||}}|} }~}~}}~}~}~~}||{|}||}|}}|}|}}|}}~}~}~}~~}~}~~}~||{|{{| |}||}| }~}}~}~}}~}~~{||{| |}|}|}|}}|}||}}~}}~}~~}}~~}~||{| |}||}|}}||}}||}}|} }~}}~}~}~~}}~~}|{{|{| |}||}}| }~}}~~}~~}~|{|{||{||}||}|}|}}|}|}}|}}~}}~}~}~~}~{||{||{||{||}|}|}}| }~}}~}}~~}~~{{|{||{||}||}|}|}}|}|}}~}~}{|{|{||{||{||}|}||}|}||}}|}}|}}~}}~}}~}~{|{||{|{||{| |}|}||}}||}|} }~}}~}}~}|{{|}||}|}}|}}~}}~{|{||}|}|}||}|}}|}}~}}~~}}~}~~}}~{{|{{||{|{|{| |}||}|}||}}|}}~}}~}{{|{|{{||{|}||}~}~{|{{||{|{||}||}|}|}}~}{{|{|{||{||}||}|}}|}|}|}}|} }~}}|{{||{||{|{{||{||}||}||}||}|}|}|| }~}}~}{{|{|{||}||}}||}}|}|}}~}}~}}~{|{|{|{||{||}||}|}|}}~{{|{||{|{|}|}||}|}}|}}|}|} } {|{||{||}||}|}}|}|}}~}}~}}~{{|{{|{|{|{|{{||{{||}||}||}|}|} }{|{{|}|}}{|{|{||{{|{||}||}||}|}}||}}|}|} }{|{{|{||{{|{||{||}|}||}|}|}}|}}||}}|}}~}} {|{{ |{| |}||}}|}|}}|}}~}{|{{|{||{||{||}|}}|} }{|{||{{||{{|{{||{||{||{| |}||}||} }~}}~{{|{{|{||{||}|}|}}|}}|}}|}}|}}{|{|{|{||{||}||}||}||}|}}~}{{|{|{|{||{||{||}|}|}|} } {|{{||{||{||{||{||}||}|}}||}{|{{|{{|{|{{||{{| |}|}||}}|}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ~~  ~~ ~~ ~  ~~ ~~~  󁀁~~~~~~~ ~~~~~~~ ~~~~ ~~~~~ 򁀀~~~  ~~~~ ~~~~ ~~ ~~~~ ~~~~~   ~~~~~ ~~~~~~  ~~~~~~~~~~~~ ~~~~~~~~~ ~~~~~~ ~~~~~~~~ ~~~~~~ ~~~~~  ~~~~~ ~~~~~~~~  ~~~~~~~~~~~~  ~~~~~  ~~~~~~  ~~~~~~~ ~~}~~~~~~~~~}~}~~~~~~~~~ ~ ~~~~~~~~~ ~~~~~~~~~~~}~~}}~~~}~~~~~~~~~~}~~}~~~~~~~~~~~~~ ~~}~ ~~~~~~~~}~~}~~~~~~~~~} ~~~~~~~~~}}~}~~}~ ~~~~~ }~}~}}~~}~ ~~~~~~~}}~}~~~~~~~~~~}~~}~~}~}~~~~~~~~~~~~~}~}}~}~~~~~~~~}}~}~}}~}~~~~~~}}~}~~}~ ~~~~}}~}~~} ~~~~~~~~~}}~}}~}~~}~~~~~~ }~}~~}~}~}~ ~~~~~~~~~~~}~}~}~}}~}~}~~}~ ~~~~~~~~}}~}~}~~}~}}~~~~~~~~ ~}}~}}~~}}~}~}~~}~~~~~~~~~~~~ }}~}}~}}~}~}}~ ~~~~~~}}~~}~}~}~~}~~}~~~~~~~~~~~ ~}}~}~}~}} ~~~~~~ ~}~}}~}~}~}}~}~}~~~~~~~~ }}~}}~~}~}~}~~}~~}~~}~~~~~~~~~}~}~~}~~}}~}}~}~ ~~~~~~~}~}~}~}~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    󃂃􂁂       郂 򂁂  􂁂 󂁀   򃀀 烂     􁀀   􁀁 􂁁 󁂁 􂁁􂁁        􁀁󂁁                                                                                                                                                                                                                                                                                                                                                                                                                                                󄃃 񄃃         􅄄        򄃄       􃂂     􃂂   񃂃   󄃃      􂃃 􂃂  􂃃                                                                                                   󆅆􇆆           󇅄      񅄄톅     򄅄      򅄅        󄅄   􃄃 󅄄                                                                 #             񇈈          󇆆 񇆇    醇󇆆 򇆇    񅆅       񅆅 󆅅                                       }<0// 1(."1!                "#     󉈈       퇈  󈇇   쇈       󇆆         冇    <z751'8).*""                      668),+     &$2            􌋋    񋊋     󋊋  늉   􈉉       򈇈  󈇇򇈇 󇈈툇 򇈇     󈇇 /  C6..51* '                .3         * 󎍍 2   쌍 􍌍򍌍 􌋌􋌋   񊋋   񊉊􊉉* 􉈈   **   􇈇 򇈇󇈈   >9>;             '   z6&            ! *  쌍򍌍    쌋  󊋋      􊉉   '󈉉     E,    򇈇 򇈇􇈇􇈈  8v/          ,(%  =,)')        .        񊋌      񉊊       񈉉 񈉉󇈉      ( 򇈇쇈 򇈈򇈇󈇈 􈇇   >;7=4$)3(       )$  }6;E721+-.&% "                       󉊉      򉈉    󇈇򈇈  􇈇   򇈇󇈇   􆇈         񆇆  8=4F5r?,/*)"      !                  &       $                        쇈  􇈈 󇈈 􇆇󇈈     􆇆􇆆    􆇆 񆇆  臆 򅆆腆 񆅆􆅆 腆  񅆅 􅆆  􅆆                                                                        쇆  񇆇   􅆅􆇆     놅  􅆆 󅆅    􆅆 􄅄 󆅆􄅄 ㄅ񅄅       򄅄      ꃄ                                                                                 􅄅     􄅅  􄃄򃄄󅄅    􃄄      􃄃    􄃄  􂃃                                                                                                                 򃂃    􁄄   􁂁   񁂁 񂃃  򂁁  遂                    ꁂ 􂁁       􁂂   򀁁򂁂 􁀁                                                                                                                                                                                                 󁀁󁂂      􂁂         򀁀               ~~~    ~ ~  ~~~ ~~ ~~~ ~ ~~ ~~ ~~~~~~~ ~~~~ ~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ~~~~~~~~~~~~~~~ ~ ~~~~~ ~}~~~~~~~}~~ ~~~~~~~~}~~~~~~~}~~~~~~}~~~~~~~~ ~}~~~~~~ ~ ~~~~~~ ~}~}~~~~~ ~~~~~~~~~~~ ~}~~ ~~~~~~~}~~}}~~ ~~~~}~~~~~~~~~~~~~}~ ~~~~~~~~~}~}~}~~}~~}~~~~~~}~~}~~}~ ~~~~~~~~}~~}~}}~~~~~~~~}~~}~~ ~~~~~~~~}~~}~~}~~}}~} ~~~~~~ ~}~}~}~~}~~}~~~~~~~}~~}~~}}~~}~~~~~~~}~}~}} ~~~~~~~~}~}~~}}~~}~~~~~~~}~}~~}}~~}~}} ~~~~~~~~~~ ~}~}~}}~}}~~~~~~~~~~~~}~~}~}}~}~}}~}~~~~~~~~~ ~}~~}~}}~~~~~~~~ ~}~}~}}~~}~}~~~ ~}~~}~}}~~}~~ ~~~~~~~ ~}~~}~~}~}~~} ~~~~ ~}~}~~}~~}~~}~}~}~}}~~~~~~~~ ~}~}~~}~} }~~~~~~~~~~~~~~}~~}~~}~}~~}~}}~~~~~~~~~ ~}~}~}~~~~~~ ~}~}~}~}}~~}~}~}~}}~~~~~~~~~~~}~~}~~}~~}~~}~}} ~~~~~~~~}~~}~}}~}}~}~~}}~}}~~~~~~~~~~}~}}~}~~}~}~~}~}}~~~~~~~ ~}~}~~}~}}~} }~~~~~~~~~}~~}~}}~}}|}~~~~~~~~~~~~~ ~}~}}~~}~}~}}|~~~~~~~}~~}~~}~}~} }~~~~~~~~~~}~}}~~}}~}}~}~} }|}}~~~~~~~~~}~~}~~}~}~~}}~ }|}~~~~ ~}~~}~}~}~}}|}}|}~~~~~~~~~}~}~}}~}}~}}|}~~~~~~~}~~}~}}~}}~}}~}}~}}|}|}|}|~~~~~~~ ~}~~}~}}~}~}~}}~}}~}}|}}|}}|}||~~~~~~~~~}~~}~~}~}~} }|}|}}~~~~~}~~}~~}~}~}}~}~}}~}}|}}|}}||}~~ ~}~~}~~}~~}~}}~}|}}|}||}}~~~~~}~}~}~~}~~}~}~}~} }|}}|~~~~}~~}~}~}~~}~~}}~}}~}}|}}|}}|}~~~~~~}~}~~}~}~}}~} }|}}|}~~~~~}~ ~}~~}}~}~}}~}}~}}|}}|}}|}}~~ ~}~~}~~}~}~}}~}}~}}|}}|}}|}||}|~~~ ~}~}~}~}}~~}~} }|}}|}||}||~~~~~}~~}~~}~}}~}}~} }|}}|}}|}||~~~~}~~}~}}~~}~}~}~~}~~ }|}}|}}|}}|}||}~ ~}~}~}~}~~}~}}|}||}|}||~}~}~}~}~} }|}|}|}}||}||                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ~}~}~~}~~}~}~~}~}~} }|}|}|}|}||}}| |~}~~}~~}~}~}}~}~}}|}}|}}|}}|}}|}| |~}~}}~}}~~}~}~}}~}}|}|}}||}||}||~}~}~~}~}}~~}|}}||}|}||}} |{||~~}~}}~}}~}}~} }|}||}|} |{~}~~}~}~~}~~}|}|}}|}||}}| |{||~~ }~}}|}}|}|}}|}||}||}||{||~}}~~}~}}~} }|}|}}|}}||}||}||{||{||~}~}~~}~}~~} }|}}|}||{|{{~}~}~}}|}}|}}|}|}| |{||}~~}}~}~}}~}~}}|}}|}}|}|{||{~}~~}~}~}}~}}~} }|}}|}}|}|}||}||{|{||~}~}~~}~}}~~}|}}|}||}|}||{||{|~}~~}|}}|}}|}||}|}}|}| |{||{|{~~}~}~}}|}}|}|}}|}||}||}}||{|{||{||}~~}~}~}~} }|}}|}||}||}||}||}||{|{||{|{||{}~}}~} }|}||}||}|}}||{||{||~}}~}}~}}|}|}|}|}||{||{|{|{||{|~~}~ }|}|}}|}||}}||{|{~}}~} }|}}|}|}||}||{||{||{||}~~}}|}|}|}|}}|}}|}}||}|{||{|{||{{|}~}}~} }|}|}|}||}||}||}| |{||{|{{}~} }|}||}||}||}||}||{|{||{|{{}~}~}}|}|}||} |{||{||{||{|{{|{~}}|}|}||}|{|{{||{}~}}~}}|}|}|}}|}||}}|}||}||{||{||{||{|{{}~} }|}||}||}||}| |{|{|{|{|{{}}|}}|}}|}|}||}|{|{|{{}}~}}|}}|}}|}}|{||{{||{||{{|}}~}}|}}|}|}}||}||{||{|{{||{|{|{{}}|}}|}|}}||}|}||{||{||{{|{{|{{|{{ }|}}||}|}| |{||{||{|{{|{|{{|{{~}~}}|}}|}}|}| |{||{{|{|{{|{||{}|}}||}}|}||}||{|{||{||{||{{|{{}|}}|}|}}|}||}||{||{||{{ }|}}||}||}|}||}||{|{||{{|{{|{{|{{}|}}|}}|}|}||}||{||{|{|{{|{{}|}}|}||}}|}|}| |{||{||{|{{||{|{{z{{}}|}}|}|}||}||}||{|{|{||{}|}}|}}||}||{|{{|{|{{|{|{|{ {}|}}|}}||}||}||{||{||{|{{| {z}}|}}|}|}}|{||{|{|{{z}}|}|}||{|{|{{||{{}|}|}||{||{|{{|{{|{ {z}}||}}||}}|}||}||{||{||{||{|{{|{||{|{ {z}|}}|}||}||}| |{||{{||{{|{{|{|{{|{{|{{z}||}|}| |{||{||{||{||{|{{z|}|}}|}|}}||}| |{|{||{|{{|{|{{z{{zz{zzy|}}|}||{||{||{|{|{|{{|{ {zy|}}|}||}| |{|{|{|{{z{{zyzzy}}||}|}||}||}| |{|{|{{|{{z{{zzy|}}||}|}||{||{|{{|{{|{{|{{z{{zyzzy|}|}}|}||{|{|{{z{z{{zzyx}||}|{|{|{||{|{||{||{{z{{zzyzyyxx|}||}}|}||{|{|{{|{|{{|{{z{zzy}|}| |{||{|{{| {zyx|}||}|}|}}||{||{|{|{|{{zyx|}||{||{|{{|{|{ {z{zzyzyxyxxwx}||}| |{||{|{{|{||{z{zzyxwxw||{||{|{||{|{{|{|{{z{{zzyzyyx|}| |{||{||{|{||{|{{|{|{{z{zyzyyxw|}||{|{|{{|{{z{{zzyzyyxxw |{||{||{{||{{|{||{ {zyxwv||}| |{||{|{|{{|{{|{|{ {zyxyxww                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |{|{{|{{|{{|{ {zyxwvutsr|{|{{|{|{|{{||{|{ {zyxywwxvwvvutsrsr||{|{|{z{{z{zyyzyxxwvuvuttstssrsrr||{|{|{ {zyxwvuvuututtssr|{|{|{ {z{{zyzyyxyyxxwvuvututtstssr|{|| {z{{z{zzyyxwvutsrq{|{||{{|{{|{{|{{zyxwvutsrsrrqqr|{||{|{z{zzyxwvwvvututtsrsrrq|{|{{|| {z{z{zyzyyxwvwvvutsrqrqq{|{{||{{|{{z{z{zzyxwxwwvutsrq|{{|{|{|{{|{{z{zzyxyxwwvutsrqp|{|{|{||{ {z{zzyyxywwvwvvuutsttssrrqpq||{|{|{{|{{z{zzyxwvutuuttstssrqp|{|{{||{ {z{zzyzzyyxxwwvwwvuutsrsrrqqp{|{{|{{z{zzyyxwxwwvutstssrsrqrqqp{|{{||{||{{||{{z{zzyxyxxwvuvuututstssrrqpqppo|{|{{|{ {zyxywxwwvwvvuvttsrqpqppopp{||{|{{z{zzyxwvuvututtsrqpo{|{{z{{yxwvuvvutsrqpopp|{ {z{{zyxwvututtstssrsrrqpqppoo{|{{|{{z{{zyxyxxwvutuuttstrrsrrqrqqpopoo{||{{|{{zyxwvuvuutstssrrqpopoon||{{|{{z{{zyzyyxwvuvuutsrsrrqponon{ {z{zzyxyxxwvutsrssrqrqqppqpopoon{|{{z{{zzyxwxwwvwvvutstssrqppqpoon {z{zzyxwvuvvuutsrsrrqpon {zyxwwvuvuututtssrqqponm|{{z{{zyxwvutsttssrrqrqqponmn|{{zyzyyxyxxwwvututtsstsrsrrqponoonn||{{zyzzyxyxxwvuvvuutstssrqpopoon{{zyzzyxyxxwvwwuutuutsrqponononnm{{z{zzyxwvutstssrqrrqqponm{{z{zzyxwvuvuutstsrrqpqpoon{z{{zzyxwvutsrqpoppoonm{z{{zyxwvuvuututtsrqpopoonnm{{zyxyxxwxwvvutsrqrqppoppoononmm{{zyxwvwvvututtsrqrqpqpponmnz{{zzyxwvuvuututssrqponmn{{zyxyxxwvututtsstssrqrqqponm{zzyxwvuvuututssrqpononnz{zzyxyxxwxxwwvvuvuutsrsrqqpqppononnmzzyxwxwwvutsrqponmn{zzyxyxxwxwwvwvvuutsrqponzyxwvutsrssrrqrqqpopoonnzyxwvwvvutstsrrqponzzyyxwvwwvuutsrqrqqponmzyyxwvutsrsrrqpononnyyxyxxwwvututtssrqponyxwvutsrqponyxyxxwwvututtsrqpqpponmyyxxwvutsrqpopoonnyxxwvutsrsrqrrqqpoonmxxwvwwvvututtsttssrsrrqponmxwvutsrsrqrqqponoonnmxwxwwvwvvutstsrsrrqponmxwwvuvuuttsrqrqqponwwvutsrqpqpponoonnmwwvuvvutsrqpqppopoonmwwvwvvutsrqpopoonmwvvutstssrqrqqpqpponmwvvututtsrqponmwvvuututtsrqpononmnvutstssrrqpononnmvvuututtsrqrqqpopoonnonn                          ,,./.001132445676899::;;== ~rqponrrqqpopoonmnrqqpopoononmnrqqponrqqpqoppoonqpqpponmqponmqpponmqppopoononnmpopoonmqpponmpponmonmmppoonmoonmppoonmoonnmnononnonnmonnmnmnnmnmnnnnnmnnmm---/./10232344666889:;;;== ~  򥤤  򪩩 𪩪򨧧 𦥦  𰱱         ﮭ  dzǴ 񸷸ƴǴǴ󶵵򴵵ƳƳƳ𹸹ųųijųųų Ųųij ijIJIJijijòó  òó ò ²²²²                      mnnopopqqrstuvwxyz {nonooppqrqrrstuvwxwxxyyz{z{{|mnnopqpqqrststtuuvwxxyxyyzz{z{{|{mnnoopqrstuvwvwwxyz {nnonooppqpqqrrstutuvuvvwxyz{z{{nopqppqqrrsrsstuvuvvwvwwxxyz{|{mnnopqrstuvwxxyz {mmnnoopoppqrststuuvwxyz {nopoppqrstuvwxyzyz{{|mnnonoopqrstuvwxyxyzyzz{|{{mnnopqrqqsrsstuvwvvwxxyz{z{{nopqrqsrrsstutuvvwxwxyyxzz{z{{nonoopqqrsuvwvwwxyzyzz{nopooqqrstuvwxyz{z{{mnopqpqqrsrsststuuvwvwwxxyzyz{{z{{mmnoopqrsrssttutvvwxyz{nmnoopqpqqrrstutuuvvwxxyz{zz{{nnonooppoppqqrrqrrssttuvwvwwxwwxyyz{z{{|nmnnopqrstuttuvvwxyzyz{{mmnoopqrqrrstuvwxyzyzz{{nmnoopqrrstuvwvwxxyzyzz{z{{nmnnopqrstutuuvvwvwwxxyz{mnnopqpqqrrstuvwvwwxxyxyyzz{z{{nnopqpqrrsttsttuvwxyyxyzyzz{{mnnoopopqqrsrsstutuvuvvwxwxxyxyyz{nnopqpqqrstuvwxyzyzz{mmnnoopqpqqrsrssttuvwvwwxxyz{nonooppqrstuvwvwwxwxyxyyz{zz{{mnnopqprqrrstuvwxyz{nnopqpqrrstuvuvwvwwxyxyyz{z{z{mnmoopqrstutuuvuvvwwxyz{nonoopopqppqrrstuvwvwxxyzyzz{z{{nopqrsrsstuvwxyz{mnnopqrstuvuvvwxwxxyz{nnopqrrstutuuvwxyxyyz{z{nnopqrstuvwxyz{{nmnoopqrsrssttuvuwwvwwxyznnonooppqrstuvwxyzyz{{mnopoppqrstutuuvvwwxyz{mnnopqrqrsrsststtuuvwxyz{nnopqrstutuuvvwxyz{nnoppqrstuvwvwwyxyyz{nnopopqqrqrsstuvwxyzmonnooppqrrstuvwxwxxyyz{zmnnopoppqrstutuvvwxwxxyznnopqrstuvwxwxxyyz{nopqrqrrstuvwxyz{zmnnoopqrstuvwxyznnonoppqrstutuvvwxwxxyyzmnnopqrsrssttutuuvvwwxyzmnnopqrstsstuuvuvwwxxyznnopqpqqrstutuvuvwvwxxyznopqrqrsstuvwxwwxxyzzmnnopqrstuvuvvwwxyzmnnopqpqrqrsststtuvwxyxyyzmnnonooppqrstuvwxwxyyzynonpoppqqrsrsstssttuuvuvvwxyzymmnnopoopqqrststtuvwvwwxxyzmnoopopqpqqrstuvwxymnnopopqpqqrststtuvwvwwxynopqrqrrstuvwxyxyynnoopqrstuvwxynnopqrstutuvuvvwxymnnopqrstuvwxy                                                                      |{|{{|{|{{|{||{| |}|}}|} }~}~~}~}~~|{||{|{||{|{||}||}|}}|} }~}}~}}~~|{{|{||}||}~}}~~}}~{|{|{||}|} }~}~}~~{|{|{||}~}~~}}~}~~}{{|{{|{{|{{|}||}||}}|| }~}}~}}~~}}~~{|{{|{||}||}|}}|}|}|}}~}}~}}~}~~}~{{|{|{||{|}|}||}|}}|}}||}|} }~}~}~~{|}||}|}|}}|}~}}~~}~~{|{|{| |}||}|}||}}|}|} }~}~}}~}}~{|{|{{||{||{||}||}||}}|}|}|}}~}}~~}}~}~~{{|{|{|{|{{||{||}||}||}||}}| }~}}~}}~}~|{{|{||{| |}|}}|}}|}}~}}~}}~}~~{|{{|{||{||{||}|}|}}|} }~}~}~~}}~}}~}{{|{|{|{||}|}}|} }~}}~}~{|{{|{{|{||{||{||}|}|}}~{|{{|{{|}||}}|}|} }~}}~{|{|{{|{{|{||}||}|}|}}|}}~}~}}~}~{|{{|{{|{||{||{||}|}|}}|}|}}| }~}}~~}}~}~{{|{|{||{{|{| |}|}|}}|}}~}~}{|{||{{|{{|{{|{||}|}|}~}~{|{||{|{||}||}|}|}}|}|}}~}~}}~~}{|{{|{{|{{||{| |}|}|}||} }~}}~}}~}~~}{{|{{|{{ |}||}|}|} }~}~}~}}~{|{{|{|{{||{|{||{||}|}}||}}|}}| }~}{{|{ |}||}|}}|}~}{|{|{{|{|{|{{||{||}|}||}|}}|}}~}}~}~{{|{||{||{| |}|}}|}}|}}~}}~}}~{{|{|{{|{{||{||{|{| |}|}}~}}{|{|{{|{{|{|}||}||}|}}~}~}~{{|{{|{||{{||{| |}|}}|}~}~~}~{{|{{|{{ |}||}||}||}|}}~}}~}~{{|{{||{{|{||}||}|}|}}~}}~}}~}{{|{{|{|{||{|}||}||}|}||}}~}~{|{||{|{||{||}||}|}|} }~}~{{|{{|{|{||}|}||}}~ {|{| |}|}}|}}|} }~}~}~~}{{|{{|{|{||{||{||}||}|}}|} }~}}~{{|{{|{{|{| |}||}||}|}}|} }~}}~{{|{|{||{||{| |}|}|}}|}|}|}}~}~}}~~{{|{{||{|{|}||}|}|}|} }~}}~{{z{{|{{|{|{||{||}|}||}}|}||}|}|} }~}~~}}{{|{|{||{||{||}||}}|}}|}}||}}~}~}}{|{|{|{||{|{||}||}||}|}~}~{{|{|{|{{||{| |}|}|}}|}|} }~}}z{{|{{|{||{||{ |}|}|}||}||}|}|}}~}~~{ {|{|{{|{||{|}||}||}|} }~}~}{ {|{|{{||{||{||}||}||}|}}|}}~}{{z{|{{|{|{ |}|}}|}}|}||}|}}~}~~}{{|{{|{{|{|{|{|{||}|}||}|}}|}~}~{{z{||{{||{{|{|{|{||{| |}||}|| }~}}~~zz{ {|{{|{{|{{||{||}||}| }z {|{{|{||{||{||}|}||}||}|}}|}}|}}z{z{{|{||{||{| |}|}||}|} }z {|{|{{||{| |}||}| }~}zz{|{{|{|{|}|}|}|}}| }z{|{{||{{|{||}||}|}}|}}~zz{z{{|{{|{|{{||{| |}||}|}~}}z{z{{|{|{{||{ |}||}|}|} }~yz{z{{|{{|{||{|{||{||{||}|}}||}}||}|}}|}}z {|{|{{||{|{||}||}||}|}|} }z{z{{|{||{|{|{||{| |}|}|} }z{|{|{ |}||}||}|}}|}|}}~}yzz{|{|{||{| |}|}|}}|}|}}~}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ~}~~~~~~~ ~}~~~~  ~ ~~~~~~}~~~~~~~ ~ ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~~~~ ~ ~~~~~  ~}~~~~~~~~~~~}~~~~~~~~}~~~~~~~~~ ~~~~~~ ~~~~}~~~~~~~ ~~}~~~~~~~ }~~}~~~~~~~~~~~~}~}~~~~~~~~~ ~}~}~ ~~~~~ ~~~~~~~~}}~~~~~~~}~~~~~~~~~} ~~~~}~}~~~~~~~}~~~~~~~~~}~}~ ~~~~~~~~  ~~~~~~ } ~~~~~~~~~ }~}~}~ ~~~}~}}~~~~~~~}~}}~~}~~~~~~~}~}~}~~}~ ~~ }~~}~~~~~~ }}~~}~~}~ ~~~~}~}}~}}~ ~~~~~~~~}~~}~~~~} ~~~~~~ }}~}~~~~~~~~}~ ~~~~~~}~~~~~~~~} ~~~~~~~}~}~~}~~~~~~~ ~}~}~}~~~ ~~}~~}~~}~~~~~~~~~~~ }}~}~}~}~~~~}~}~}}~ ~~~~~~~ }~}}~~~~~~}}~}~~}~ ~~~~~~~}}~}}~}~}~}}~~~~~~~}~}~}}~~}~}~~}~}~}~ ~~~~~~~~ ~}}~}~~}~~~~~~~~~~}~}~}}~}~}~}~ ~~~~~~ }~~}~~}~~}~}~~~~~~~ }~}}~}~}~~~~~~~~~~}}~}}~}~~ ~}~}~~}~}~~}~ ~~~~~}~~}~~}~}~~}~~~~~~~~~~~ }~}~}}~ ~~~~~~~~~ ~~}~}}~}~}~~}~~}~~~~~~}}~}}~}}~}~~}~ ~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ヂ  󃂂     񂃃  󀁁     󁀁         󁀁                                                                                                                                                                                                                                                                                                                                                                                                                                          􆅆   򄃄     􄃃       󅄅  􃄄  󅄅   󅄄 򄃄  򄃄          􅄅  󅄄           􂃂 򅄄                                                                                                                                  󇆇􇆆       򇆆 􇅆   􆅅       󅆅   􈇇􆅆  󈇈       򈇇      􇆇      톅 􅄄                                                          ==};7=6>8u=;><8=;=5719437953;144/7/01/./+01-,*)--),- ')',        󋊋                     󉈉?>=x9z<?::89;;77;4772889830/2172..5.-100.-*/ //.-,&+,'-',,                       񙘙  󚙙       򜛜󚙙   󘗘 ꡠ     򟞞 𤣣    󤣤         󮭭    󥤥     򪩪    񪩪  󩪪 󲳲       򱰱   򱰰ﲱ鱰     ȴǴƴƴ 𻺻ƴƴųŴų쾿ijĴó³򵶶²²²󴳴  볲򺻻 ӿԿӽӽѼҽҼ     !!!#$#%&'&((*)*,-,-.001233456667mnnopqrstutuuvuuvvwvwxxyzyyzz{mnnopqpqqrrststtuvwxyznopqrqrrstssttuvuvvwvwxwxxyxyyzz{mmnnopooppqrssrssttuvuvvwxyxyyzmnnopqrststtuvwxyzmnnonnooppqrstuvuvvwvwwxyzyymmnnopoppqqrqsrsstutuvuvvwxyznnonooppqrsrsstuvwxwyxyyzznnonooppqqrqrrsrsststtuvuvwwxyzmnnopoopqqrqrrsstuvwvwwxxynnonoopqrststtuuvwxynnopqrstuvwxwwxxymnnonnoopqrstuvwvwwxxynnoppopqpqqrstuvwxynnopqpqqrstuvwvwwxmnnopqpqrrstuvwxmnnopqrstssttuuvwxwnnopoppqqrsstutuvuvvwvwxxwmmnnoopqrststtuvuvvwxmnnopqpqqrrtsttuvwnnopqpqqrstuvuuvvwvwmnnopqrstutuuvvwvnopqrstsuutuuvwwnonoopqrstuvwnnopqrstuvwnopqrstuvuwmnnoopqpqqrstuvuvmmnnopopqqpqqrqrrsstuvuvmnnonooppqrstuvnopoppqrsrsstumnnopqrqrrstuvmnnopqpqqrqqrrsrstsstutuunnopqrstunmnonnooppqppqqrrstumnnopqrststuumnnopoppqrqrrstumnnopqrstmnopqrsrsstmnnopoopqqrstnnopqrqrrstnnopqrqrrsrssmnnopoppqrsmnnopqrsnmnnonooppqpqqrsnopooppqpqqrmnnopqrsnmnnopqqrqrrmnnoopqrnnopoppqrqrmmnnopqpqqrmnnopopqpqqnmnnoopqmnnonoopqnmmnnoopqpmnnonnoopqmnnopnnopoppmnnonoopmnnopommnononopomnonoomnnoomnmnnomnno     !!!#$$%%''((**+,---.000134345677                                  {z{{|{||{|{||{| |}|}}||}|}}|}{z{{|{{|{{|{{|{||}|}||}}||}}|}}|}}{z{{|{|{||{ |}|}}|}}|}} {|{|{|{|{{||{{|}|}|}||}|} }z{z{ {|{{|{|}|}||}}z{{z{{|{||{||{{||{{||}|}|}}|}z{|{{|{ |{||}||}||}yzz{|{||{|{{||}||}||}|}yzz{z{{z{{|{{|{||{|{{|{||}|}||}|}|}}yz{|{|{|{|{{|{|{{| |}|}||}|}|}}yyzz {|{|{{|{||{||{{||{||}|}||}|}|}|}}yz{|{||{{ |}|}|}}|xyyz{z{ {|{{||{|{||{||{| |}||}||}|}}yz{z{ {|{|{|{||{||}||}||}||}||xyyz{z{ {|{|{{|{||{||}||}||}|}xyxyyz{z{{|{{|{{|{{|{||{|{{||}|}||}|}}|}}xxyz{|{{|{|{|{|{|{{|{||{||}|}}|}||}}||}||xyxyyzyzz {|{{|{|{||{| |}|}||}||}|xxyz{z{z{ {|{{|{{||{|{{| |}||}|}xxyz{z {|{|{|}|}||xwxxyz{z{{z{{|{{|{{||{||{|{||}||}|}|wwxyzyyzz {|{{|{||{||{|{{|{|{||{|{||}||}||}|wwxyz{|{{||{{|{|{||{ |}|}wxwwxxyyz{z{{|{{|{|{|{{ |}||}wxwxxyz{z{{|{|{{|{|{{|}||}||wxyzz {|{{|{ |}||vwxyz{zz{|{{|{{|{|{||{||{||}||}}|}}|vvwxyz{z{ {|{|{{|{||{{|{||vwxyz{z {|{||{{|{|{{|{{||{| |}vvwvvwwxyz{z{{|{{|{|{{||{|{|{{||vxwxwxyyz{z{{|{|{{|{{|{|{||{| |vwvvwwxxyxyyz{|{|{{|{|{||}|uvvwvwwxwxyyz{|{{|{||{{||{||{||}||uuvwxyz{zz{{|{{|{{|{{|{||{||{|{| |uvwvwwxxyz{ {|{|{{|{|{|{{|{||uvwxwxxyxyzyyzz{ {|{|{|{{||{||{||{||tuvwxyz{z{ {|{|{{|{{||{{||{|{|{||tutuuvuvvwxwwxxyz{z{{|{{||{{|{{|{|{|{||tuvuvwwxyz{|{|{{||{|{||{||tuvwxyz {|{{|{|{||{||sttuvwxwxxyz{z{ {|{{|{||{|sttuvwxyzyzz{|{{|{|{||tuvwxyz{zz{z{{|{|{|{|{{||{|{|sstuvwxyzyzz{z{z{{|{{||{|{|{||stuvuvvwwxwwxxyz{z{ {|{|{||{{||{|{||stuvuvvwwxyxyzyzz{zz{ {|{{|{|{||{{|{rssttstutuuvwxwyyz{z{{|{|{|{||{{||rststtuvuuvvwxyzyzz{z{|{{|{{|{||rsrsstutuuvwxyxyzzyzz{z{{|{{|{{|{|rstsuttuvwvwwxwxxyz{z{ {|{{|{{|{|rstuvwxwxxyzyzz{z{ {|{|{|{||{|{qqrsrrssttuvxwwxxyxxyyz {|{{|{||{||{|{||{qrrststtuvuvwwxyxyyz {|{{||{|qqrrsrrssttuvwvvwwxyz{|{{|{{|{||{{|{||qrqqrstssttutuuvwxwxxyzyz{{z{{|{||qpqqrqrsstssttutuuvwxyxyzzyzz{z{{z{{|{{||{{|{{|{{ppqqrqrrstuvuvvwvwwxwxxyzzyzz{z{{|qpqrrststutuuvwxxwwxxyyz{z{{z{{||{{|{pqpqqrstuvwxyxyyz{z{{|{|{{|ppqpqqrqrrstutuuvuvvwwxyxyyzyzz {|{{|{{popqpqrrsrsttutuuvwxwxxyyz {|{{|{|{ppqrstuvwxwxxyz{z{z{{|{{|{{oppqrstuvwxyzyzz {|{{|{{ooppqpqqrrstutuuvvwxyz{z{ {                                                                                                                                                                                                                                                                                                                                                                            }~}}~}}~}~}~}~~~~~~~~~~~}~}}~}}~}}~~}}~~}}~}}~~}~~~~~~~~~~}~}~}}~}}~}~~}~~~~~~~~~}}~}~}} ~~~~~~~~~~ }~}~~}~}~}~~}~~}~~}~~~~~~~~~ }~}~}}~}~~~~}~}~}}~}~~}}~}~}~ ~~~~~~ }~}~~}}~}~}~}~~}~ ~~~~~}|}}~}~}}~}}~}}~}~}~ ~~~~~~}|}}~}~}~}~~}~~~~}~}~~}~~}~ ~~~~~|} }~}~}}~}}~}~}~}~ ~~~~~~~~~|}||}}~}}~}}~}~}~}}~~}~~}~~~~~~~|}|}}~}}~}~}}~~}~~~~~~~~~~||}}~}~}~~}~}}~}~~~~~~~~}||}|}|}}~}}~}~}~}~~~~~||}|}}~}~}}~}~}~~~~~~~~~~}|}}||}}|}}~}~}~~}~}}~}~}~}~ ~~~~~|}}| }~}}~}~}}~}}~}~}~~~~~~~~}||}|}|}}|}}~}}~}}~~~~}}|}}|}||}|} }~}~}}~}~~~~~|}|}}|} }~}}~}~~}~~}~~}~~~~}||}|}}|}}~}}~}~}}~}}~~}~}~~ ~|}||}|}|} }~}}~}}~~}}~~}~~}~ ~~~}}|}}||}|}|}}~}}~}~}~}}~}~~~~||}}||}|}}|} }~}~}}~}} ~~|}}|}||}}|}}|} }~}}~}}~}~|}|}|}||}|}|}|}}~}}~}~~}~~~~||}||}|}|}}|}}|}}~}}~}~}~~}~~~~|}||}}|}|}}|}|}~}}~}}~}~~}~}~ ~|}||}|}|}|}}~}}~}}~}}~}}~}~~}||}||}|}||}|} }~}}~}}~}}~}~~}~~}~~~~~||}|}||}|}~}~}}~}}~}~~}~~}~~}||}||}| }~}~}~~}~~|}|}|}|}||}|}}||} }~}~}~}}~}~~~~||}|}|}}|}}~}~}~}}~}~}~~}~}~}~~}~~|}|}}||}}|}}|}}|}}|}}|}}~}~}~~}}~~|}||}}||}|}|}}||}}~}}~}~}}~~}~ ~}~~||}||}|}|} }~}}~}~|}||}|}|}}|}|} }~}~}} ~|}|}}|} }~}~}}~}}~}~}~}~~|}||}|}}|}|}}~}}~}}~}~~}}~}}~||}|}||}|}|} }~}}~}}~}}~~}~~}~~|{||}||}}||}|}}~}}~}~~}~}~~}~|{||}||}|}|}}|}|}}|}|}}~}}~}~}}~}}~}~~}~~ |}|}||}||}}|}||}|} }~}~}~~}}~||{||}|}|}||}~}~}~}~}}~ |}||}|}|}|}|| }~}}~~}}~}~}~||{||}|}|}|}|} }~}}~}}~}}~}}{| |}||}|}}||}}|}}|}}~}~}}~~}~}~||{{| |}||}|}}|}||}}|} }~}}~}~|{| |}||}|}|}~}}~}}~}}~~}| |{||}||}|}|}}|}|}}~}}~}~}}~}~~|{{||{||}||}||}|}}|}|}|} }~}}~}~}}|{||{||}|}}|}|}}|}|}}~}}~}~~||{||}||}}|}||}|}|}}|}|}}|} }~}}~|{||}||}|}|}|}}|} }~}}~|{|{|{||{||}||}}|}||}}|}}|}}|}}~}}~~}{|{{||{|{||}|}}||}|}|}|}|}|}||} }~}{{|{||}||}|}}|}}|}}~}~}}~}~}|{{||{||{||{||}||}||}||}}|}||}|}}~}{|{{|{{|{||}||}|}|}}|}}|}}|}}||} }{|{|{{|{||}||}}|}}|}|}}|}}|}}~}}{|{{||{|{||{|{||{||}||}|}}||}||}|}}| }~}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ~  ~~~ ~  끀~~~~~~~~~~~~ ~~~~~~~~  ~~~ ~~~~~~~  ~~~~~ ~~~~~ ~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~ ~~~~~~~~~~}~ ~~~~~~  ~~~~~~~~~~}~~}~~~ ~~~~~~~~~~~~~~~~~}~~}}~~~~~~~~~~~~}~~}~ ~~~}~~}~~~~~~~~}~~}}~~~~~~ ~~}~ ~~~~~~~}}~}~~}~~}~~}}~~~~~~~~}}~~~~~~~~~~~~~}~~}~}}~}~~}~~~~~~~~~ ~}~~}~~~~~~~}~}}~~}~~}~~}~ ~~~~~~~~}}~}~}}~~}~~}~~~~~~~~~ }~}~}}~}}~~}}~}~~}~ ~~~~~~~}~}~~}~~}~}~}~~~~~~~~~~~ }~}~}~}~~~~~~~~~~ }~}~}~}~~}}~} ~~~~~~~}~}~~}~ ~}~ ~~~~~~}~}~}}~}~}~~}~~}~~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  񂃂     򂁂 낁 񂁂          􂁁  聀                 񁀀  񁀀                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          򃄄򄃄     􄃃샄 󃄃 󄃃􂃃󄃃        󂃂 򃂂                                                                                                       솅놅   ꅄ     󅄄         񄅄   񄃃     񃄂򃄃  񃂂  򃂃 􃂃                                                           󇆆 ꇆ􅆆  􅆆   񅆆􆅅!      󆅆  􅄅񄅄   􅄅     􃄃                                     !   !                 $ $"        &   񆇇   򇆇 & 󇆇     򅆅ㆅ󆅆 󆅆 톅!  톅 $󅄅   񄅄 년 󅄄!      -       !                )       $ 4&&!         $PF8        . 5 %    ׇ       8- 򅆅󆅅  􆅅   4;7  󅄅񄅅 􄅅􅄄򅄅     '$A +       % GH   "      ("    +         %D  1      ) -C #      􈇈  " ) 򆇇 솇܆򆇆󇆇񇆇     5-      􅆆慆놅󆅅 􆅆󆅅    2& )   􄅄   󄅅      /               +   &  M&     #  '      $            󆇆膇        -􅆅#   􆅅􆅆󆅆񆅆   *#   񄅅焅􅄄  煄񅄅􄅄             !        ,%  ##               ""       "       򅆅       򆅆 򅆅 ꅆ󅆅     턅 򄅅   󄅅       񃄄󃄃턃             !           "           !                             &   ݄ "턅       􅄄    򃅅          󃄃 􃄄      邃   򂃂򂃂􂃂                                                                           񃄄  􃄃                󃂂󂃄ꂃ󃂄    􃂂  󃂃      񂃃 򁂁                                                                                       􂃂 삁    􁂁񃂃     󁂂     󁂁 􁀀 󀁀񁀁  􂁁     􀁀    뀁 󀁀                                                                                                                                                                                                                                                                                                           񁂂        򁀁                  ~  ~~~~ ~ ~  ~~ ~~~~ ~~~ ~~~~~~ ~~~~~~~~~ ~~~~~~~ ~ ~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~  ~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ ~~~ ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~ ~~~ ~~~~ ~ ~~~~~~~~ ~~~~~~~~~~}~ ~~~~~~~~ ~~~~~ ~}~~ ~~~~~~~ ~~~~~~~ ~} ~~~~~~~~~~~~~~}~~~~~~}~~}~~}~~~~~~~~~~~ ~}~ ~~~~~~~}~ ~~~~ ~}~}}~}~~~~~~ ~}~~}~}~}~~~~~~~~~ ~}~~}~~~~~ ~}~~}~~}~ ~~~~~~~~ ~}~~}~}}~}~~~~}~}~~}~~~~~~~~ ~}~~}~}}~}~~~~~~}~~}~}}~}~~~~~~~~~~~}~~}~~}~}~}}~}}~~~~~~~~~}~}~}~~}}~~~~~~~~~ ~}~~}~}~}}~~~~~~~~~~~ ~}~~}~}~~}~}~~}~~~~~~~~~ ~}~~}~}~~}~}}~}~}~~~~~~~~~~}~~}~~}~}}~~}}~}}~}}~~~~~~~~}~}~~}}~}}~~}~}}~~~~~~~~~~ ~}~~}~~}}~}~}}~~}~}}~~~~~~~~}~}}~}~}~~~~~~~~~~~}~~}~}~}}~}~}}~~}}~~~~~~~}~~}~~}~}~}~~~~~~~~~~ ~}~~}~~}~}~~}~~}}~}}~~~~~~~~~~}~}~~}~ }~~~~~~~}~~}}~~}}~}~}}~}~}}~}}~~~~~~~~~~~}~}~}~~}}~}}~}}~}}~~~~~~~~~}~ ~}~}~~~~~~~ ~}~}~~}~~}~}}~} }~~~~~~ ~}~~}}~~}~}}~}~} }~~~~ ~}~~}~~}}~}}~} }~~~~~~~}~}~~}~~}~}}~} }|}~~~~~~ ~}~~}~}~}~~}|}|~~~~~}~~}~}}~}}~} }|}}~~~}~~}~}~}}~}}~~}|}}~~~~}~~}~}}~}|}|~~~~~}~}~~}~}~} }|}}||}~~~~ ~}~~}}~}~}~}}~}~}}~}}|}}|}}|}}|}~~}~}~}~}}~~}~}}~}}~}}|}}~~~}~~}}~~}~}~}}~}}~} }|}||}}~~~}~~}~~}}~}}~}|}|}}|}|~}~~}~}~}~~}~}}|}||}}|}}|}}|~~~}~}~~}~~}|} }|}|}}|~~~~}~}~~}~}}~}~}}|} }|}}||}~ ~}~}~}~}}~}~}~~ }|}||}|}}|}~ ~}~}}~}~}}~~}}|}}|}}|~}~~}~}~~}~}}~}~} }|}|}|}||}~~}~~}~}}~}~} }|}|}}|}~~}~~}~~}~}~~}~}~}~} }|}|}}|}}|}|}||~~}~~}~}}~~}~}}|}|}|}}|}||}|}||                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ~}~~}~~}~}}~}~}}|}|}||}|}|}||~ ~}~}~~}~}}~}~}}|}}|}|}}||}|}||}|}||~~}~~}~~}~~}~} }|}|}|}}|}||}|| ~}~~}~}~~}}~~}~} }|}||}|}|}||~}~}~~}~}~} }|}||}}|}||}}|~}~~}~}}~ }~}|}}|}}|}}|}||}||~}~~}}~}}~}~}}~}}~} }|}|}||}|}~~}~}~~}}~}~~}~}}~}}|}||}|}}||~}~~}~}~}~~}}~}}~~}}|}|}||}||}|}}|}|}|}||~}~~}~~}~}~}}~}}~} }|}||}|}}|}||}||}||}||~}~}}~}~~}}|}||}||}|~}~}~~}~~}}~}}|}}|}|}|}|}|}}||}||}||~}~}~}}~}}~}}| }|}||} |}~}~~}~}}~}}~}}|}||}|}}|}|}}||}||}~~}~}}~}}~}}~}}|}}|}||}}|}||~}~~}}~~}~}~}}~} }|}}|}||}||}~}~}~}~}|}}|}}|}||}||}||}~}~} }|}}|}}|}}||}|}||}| |~}~}~}}|}}|}|}| |{||~}~}~}}|}}||}}|}}|}||}|}| |{|}~}~~}~}}~}}|}|}}|}}|}}|}||{||}~ }|}}|}|}||}|}}|}||}||{||{|{|{|}~}}|}|}||}|}|}|}}|}||} |{|{{||}~}}~} }|}}|}}|}||}|}||}| |{|{|}}~} }|}}|}}|{||{|{{|{|{}}|}|}}|}||}|}|}}|}||}| |{|{||{}}~} }|}|}}| |}||{||{|{{}~}}|}}||}}|}}|}||}}|}|}| |{|{||{{|{||{{}~}}|}}|}||}}|}|}||{|{|{{||{||{{~~}~}~}}|}|}}|}}|}}|}|{||{||{|{|{}}|}}||}}|}}||}| |{|{|{|{{||{|{|{{ }|}}|}|}}|}| |{|{|{{||{|{|{{||~}~}}|}}|}|}}|}}||}||}| |{||{|{{|{{|{{} }|}|}||}|}|}| |{|{|{|}}|} }|}|}}|}}|}||}||{||{|{|{}}|}}|}}|}}|}|{||{|{|{{}|}}|}}|}|}}|}||}||}| |{||{|{{|{{}|}}|}}|}| |{||{|{|{{}|}}|}|}||}||}||{||{|{{|{|{|{{||{|{{|}}|}}|}}||}}|}|{|{||{||{|{{|}}|}|}}|} |}|}||{||{{|{|{{|{|{||{|{}}|}}||}|}||}||}}||}||{||{||{||{|{|{ {}|}}|}|}||} |{||{|{|{{|{{|}}|}|}}|}|}}||{|{{|{{||{|{ {}|}}|}||}|}| |{||{|{|{{|{{|{{|}||}}|}|}| |{||{||{|{|{||{|{{|{{}|}|}|}}||}||}||}| |{||{|{||{{|{|{{|}}|}|}|}|}||}| |{||{|{{|{ {|}|}}||}}|{|{|{{|{|{ {}|}|}||{|{{||{|{|{z||}||}||}|}| |{||{{|{|{||{{|{{|{{|{{z{{zz{}}||}}|}}||}| |{||{|{{|{||{||{ {z|}|}||}||}||{||{|{{|{{||{||{{|{|{{z{z{z}}|}}||}||}||{|{{||{|{{|{{| {z{zz}|}}|}}||} |{||{|{||{{z{{z|}|}||}||}||{|{||{||{||{||{|{ {z{zzyy}|}||}| |{|{{||{|{|{{z{zy|}|} |{|{|{||{|{|{|{{||{ {zy|}||}||{|{||{|{|{{|{{|{|{ {z{{zyzyxy|}||}||{||{||{{|{{|{||{{zyx|{|{||{{|{{z{{zyzzyyx|}| |{|{||{|{{|{{z{{z{zzyx}||}| |{|{|{||{||{|{{|{{|{ {z{zzyx |{||{||{||{|{{|{|{{|{{|{{z{{zyzyxyxxw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }||}||{||{|{{|{{|{{|{ {zyxwvwv||}| |{|{||{|{{|{ {z{{zzyxwxwwvwv||}| |{|{{||{|{|{{zyxwvwvv}||{||{|{{||{|{|{ {z{zz{zyzzxyxxwwvwvuv| |{|{||{|{||{|{{|{{z{{zyxyxxwwvu||{|{{|{||{|{{|{|{ {zyxwvu}||{|{{|{||{|{ {zyxwvwvvu|{||{||{|{||{|{{|{|{{|{{z{{zzyzyyxxwvu |{|{{||{{|{|{|{|{{z{{zyxwvut||{||{||{|{{|{{|{{|{{|{{zyxwxxwwvwwvvut{||{||{|{||{zyxwxwwvwwvvutut||{||{|{{|{|{{|{{|{{zyzyyxwxxwwvut{|{|{{|{||{|{{zyxwvwwvuvuuttutt||{||{{|{|{{|{ {zyzzyyxwvuts|{|{{||{||{{|{|{{|{{z{zyyxwxxwwvuts|{|{|{{|{{|{{z{zzyxwvutst{||{|{|{{z{zzyzzyyxwxwwvwvvututts{||{|{|{||{{|{{|{{zyxwxwxwwvwvvuvuutsr||{|{{|{{|{{|{{z{{zyzyxyxxwxwwvuvvuttuttsr|{||{|{|| {zyzyyxyyxwxwxwvvwvvuvvuttuttssr{|{|{{zyxwxwwvwvvutsrss{|{{|{{|{{|{z{{z{zzyxyxxwxwwvwvvutsrsr|{{|{{z{zzyzzyyxyxxwwvututtsrsrr|{||{zyzzyyxxwvutsrq{|{{|{|{{z{{zzyxwvwvvuutuuttsstssr|{||{{|{{z{{zyxxyxxwwvwwvvutstssrrqrq{{| {z{{zyzyyxxwvwwvvututtsrq{|{ {z{z{{zzyxwvwwvvutsrq{|{{| {zyxwvuvuutsrqp{{z{zzyzyyxyxxwxxwvvwvuvuutrssrrqp|{{|{|{{z{zyzzyyxxwvuvuutsrqrqqpqpp|{{|{{|{{z{zyzzyyxwvwwvvutsrqp{zyxwvutsrsrrqrrqpqpp|{{|{{zyxwxwxvwwvutsrsrrqrqpqpp|{ {zyxyxxwvwvvuvuutststssrrqpo{{|{{zyxwvwvwvvuvututtsrsrrqqrpqpqppoo{z{{z{zzyzyyxwvwvvutsrqpopo{{zyxwxwwvwvvutstssrsrrqrqqpoppnn{ {zyzyyxwvwvvuvvututtstssrsrrqrqqppo{zyxyxxwvuvuutsrqpon{{z{zzyzyyxyxxwvvwvvututtsrsrqrrqqpoponn{z{{z{zzyxwxwwvuvtuuttsrqrqqppon{zyxyxxwvuvuuttsrqpon{zyzyyxxwxwwvuvtuttsrsrrqrqqpopoonm{{zyzyyxwvutstssrsrrqrqrqqpqpoonmm{{zzyxwvuvuuttuttstsrrqpqpponm{z{{zzyyxwvwvvututtssrqpqpoopoononnmm{zzyzyyxwxwwvutsrqpqppononn{zyzyxyyxxwvwwvuutstssrsrrqponmzzyxwvutsrsrrqrqqpqpponmnzzyxwxwwvwvvutsrsrrqpononnmnzyyxyxxwvwvvuututtsrqponmnnyxwvututtsrqponmnnzyyxwvwvvutsrssrrqpononnzyyxxyxxwwvutuuttsrqpopoononnzxyxxwvutsrqqponoonnmyxyyxxwwvuvvuutsrqrrqqpqqpponmxyyxxwwvutsrqrqpponmxxwvutstssrqponxwxwwvwvvuututssrqqpqpponxxwwvutsrqponxwxwwvvututtstssrsrrqponmxwwvututtsrqpopoonmwwvutsrsrrqqrqqppopnonnm                                                                                                        !"$$%%'(())++--//012344567899:;;=~vuttuttsrqrqqpononnmvuutsrsrrqrqqpopononnutstssrqponmnuutsrsrqrrqqpopoononnmmututtsrqpopoonnmuutsrssrrqpopoonmmuttsrqrqqponmuttstssrqrqqpqppopoonmuttssrsrqrqqponmtsrqpqqppopoonmtstssrqpopoononnmtstssrrqrqpponmtssrqponsrqpopoonmtssrrqrqqpqppoonmrsrrqrqqpopoonssrrqpopoonmnrqrqqpopoonnrqrqqpononnsrrqponmrrqqponmqrqqpopoonqrqpponmrqqpopoonqpqpponmqppopoonnqpponmqpponmpponmpoopoonoonmnpoonopoonoonnpoononmnmoonmoononnmoonnmonmnnmnmmnmnmn  !"#$%$&''(**++--/.01124546778:;;<=~ 𧦦       󩨨       󱰱쮭      󭬭       쯮򫪪²²²񿾿򻼼 󳲳     ﹸ 񼰰 󹸹 񷶷 ؿؿ׾׾־־ֽ־ֽ񽾿սռսռԼӻԼӺӻ   ! !!"###$#$%%%&%%%&''(('((()***+nonpooppqrstutuuvvwwvwxwxxyymnnopoppqqrsttuvwwxwxxyymnnoopqppqqrrstutuuvvwxynmnnopqrsrssttuuvwxynopoppqqrstuvwxymnnopoppqpqrqrsstssttuuvwvwwxynopqrqrrsstuvwxnnopqrststuuvwxnnonoopoppqrstuvuvvwxxymnoopqpqqrrsrsttuvuuvwvwwxwxnmnoopqrstuvuvvwxmnnopqrstuvwxwxmnnopqrqrrsstuvwvwwxxmnmonoopqrsrrsstuttuvvwxmnnopoppqrqrrsstuvvuvwwxmnnopqrstuttuvuvwwxnmnnopoppqrqrrsstuvwmnnonoopqpqqrstuvwxmnnoopqrstuvwnnopqrqsstststuuvwmnonooppqpqqrststuuvwnmnnoopqqrstuvwmmnoopqpqqrrstuutvuvvwwmnoopqrstuvwvwmnnopqqrsrssttuuvuvwwnnonooppqqrqqrsstuvwmmnnopqrsrrssttutuvvnnonooppqpqqrststtuuvmnnopqrsststtuuvnmnnopqrstuvwmnopqrststutuuvvmnnopqrstutuvvmmnnopqrsrststtuuvmnnopqrststtuvmnnoopqrstutuumnnonooppqrstumnonooppqrstuvmnnopqrqqrrstuvnopoppqrstuvmnnopqrststtuvnopqrsrsstumnoopqpqrrqsrrssttumnonoopqrstunnopqpqqrrstutummnoonooqrsrssttumnnopqpqrrqrsstutnnopqrstutmmnoopqrsrsstunmnoopopqqrstunmnnooppqrstunopqqrstnnopoppqrstmnnopooppqqrqqrrsstmnnoopqrstnononooppqrstmnopqrsnmnnoopopprstmnonoppqppqqrrstmnnopqprqrrsrssnopqpqqrrsmnnonoopqrqrssnnopqrsmnnopqrsmnnoopqrsrs !!!!"!##"###%%%&%%&&'''(((()**)**                                             zyz{z{{|{{|{|{| |}|}}|}}yz {|{|{||{{ |}|}|}}yz{z{{|{|{||{{||}||}}|}}|}|}}yz {|{{|{|{{||{|{| |}||}|} }yz{|{{|{{|{{|{| |}|}|}}|}}yz {|{{||{{|{{||{||{||}|}}|}}||}|}}|}}xyyzz{|{|{||{||{||}||}|}yzyzz {|{{||{||{||}|}|}}|}}yz{z{{|{{|{{|{{ |}||}|}|| }xyxyzz{z{{|{{|{|{| |}|}|}}|}}yxyzz{|{|{||{||{|{|{||}||}|}}||}}|}}|}}xyyz {|{{|{|{| |}||}|}|}}|}}|}}xyz{z{{|{{||{|{||}||}|}}|}}xyz{z{z{{|{{|{|{{||{|{| | }|}xxyyz{z{ {|{{|{||{||{||{||}|}}|}}xyz{|{|{||{{|}||}|}|}|}}xyz {|{||{ |}|}||}|}}|}}xyz {|{|{{||}|}}xyz{|{||{||}||}}|}||}}|}xyxyyzz{|{|{||{|{||{|}|}||}|}||}}wxxyxyzz {|{|{{|{{|{||}||}||}||}|}xwxyyz {|{{|{||{||}||}||}}||}}|}}wxyxyyz{|{|{{|{{||{|}||}|}|}}|}}wxxyzyyz{z{ {|{||{||{|}|}|}}wxyxyyz{z{ {|{||{||{|}||}|}}|wwxxyz{z{{|{{|}||}||}}|}wxxyz{z{{|{{|{||}|}|}||}vwwxyzyz{z{{|{|{{|{{|{||{||{|{{| |}|}}|}}|}wwxxyz{z{{|{||{| |}|}|}|}}wxyz{z{{|{|{||{||{||{||}|}}vwxyz {|{{||{{|{||{||}||}|}}|}wxyz{zz{{|{{|{{|{||{||}||}|}|}|}vwwxyz{|{{|{{|{|{||}||}||}|}||}vwwxyyz{z{ {|{|{{|{||{||}||}|}|}|}|}}|}vvwxwyyzyzz{ {|{{|{{|{ |}|}}|}}vwxyyxyyzz {|{|{||{{|{||{||}||}|}|}|}vvwxyzyzz{{|{|{|{{||{{|{{||}||}||}|}}vwxyzyzz{ {|{{|{||{|{||}||}||}|}|}}uvwvvwwxxyz{z{ {|{||{||}vwxyxxyy{z{{z{{|{||{{||{{|{{||}|}|}|}}vvwxyz{|{{|{{|{|{||{| |}|}||uvvwvxwxyxyyzyz{{zz{{|}||}}|}}vwxyz {|{||{||}||}|}uuvwxwxyyz{z{{|{|{|}|}}vvuvvwxyzyzz{{z{{|{{|{|{|{{ |}|}|}|uvvuvwwxyzyz{ {|{|{{|{| |}uvwxyxyyzz{{z{{|{||{{|{|{{|{|{||}||}||}|}}uuvwvwwxxyz {|{{|{{||}||}|uuvwxwxxyyz{z{{|{{|{{|{||{{||{||}|}uuvwxwxxyz{z{{|{|{{|{||{| |}|}}|uuvwxyxyyz{z{{|{||{|{| |}|}tuvwxyzz {|{|{|{{|{| |}|}uuvwxyzyz{z{ {|{{||{|{|}|}|}}||tuuvuvvwxyzz{z{z{{|{{|{{|{{|{| |}|}||tutuvvwvwwxwxxyyz{{|{{|{|{||{|{|{| |}|ttuuvuuvvwxxyz{z{ {|{{|{||{||}|}}|}ttuvuvwwxyz{ {|{||{||{{||}|}|ttuvwxyz{|{ {|{| |}|ttuuvwxyz{z{{|{{||{{||{|{|{|{||}||}|}sttuuvwxyz {|{|{||{||{|{||}||tuvwxyxyzy{z{{z{{|{{|{|{||{||}|ttuvwxyz{|{|{{||{||{|{|{| |tsttuvuvvwxwxxyyzyzz{|{{|{{|{||{|{|}||}||sttuutuvuvvwwxyxyyz{z{{|{{| |{||}||                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ~}}~}~~}~}~~~~~ ~}}~}}~}~~~~ }~}}~}}~}~}~ ~~~~~~~~}~}~}}~~}~~}~~~}~}}~}~~~~~ }~}}~}~~}~~~~~~~~~~ }}~}}~}~~~~~~~~~}}~}}~}~~}~ ~~~~~~~~}}~}}~}~~}}~}~}~ ~~}~}~}}~~}}~}}~~}~~~~~~~~~~}}~}}~}}~}~}~~}~ ~~~~~~~}~}}~}~}}~}~~}~~~~~~~~~~}}~}}~}~~}~~} ~~}}~}~}}~}~}}~~}~ ~~~~~ }}~}}~}~}~~} ~~~~~ }~}}~}~~}}~}~~~~~~~~ }~}~}~}~}~}~}}~~~~~~~~}}~}}~}~}~ ~~~~~ }~}}~~}~}}~}~}~}~~~~~}}~}~~}~~}~}}~ ~~~~}~}~}~}~~~~~~~~~~ }}~}}~}~}~~}~~~~~~~~ }}~}~}~}~~}~~~~~~~~|}}~}~}~}~}}~~}~~~~~~ }~}~~}}~}~~} ~~~~~~~}}~}}~}}~}~}}~~~~~~~~ }}~}~}~}~~~~~~}|}}~}}~}~}~ ~~~~ }~}}~}}~~~~~ }}~}~}}~}~}~~} ~~~~~~~}}|}}~}~~}~~~~~~~~~|}}|}}~}~}~~}~}~~~~~~~ }|}}~}}~}~~}}~~~~~~~}|}}~}~~~~~~~~~||}}~}}~~}~~}~~~~~~~~~}}|}}~}~}}~}~~}~~~~}~}}~}}~}~~}~}~~~~ }|}}~}~~}~}~}}~}~~~~~~~}|}}~}~~}~}~}~~~~~~}||} }~}~}} ~~~~~~~~}|}~}}~}}~}~~}~~}~~~~~~ | }~}}~}~}~~}~~}~ ~~~~}||}}|}}~}~~}}~}~~}~~}~~~~~~~ |}|}|}}~}}~}~}~ ~~~~~~~}}|}}|}}~}}~}~~}~~~~~ |}||}}~}}~}~}~~}}~}~~}~~~~~~~~~|}|}||}}~}~}}~~}~}~~}~ ~~~~~}|} }~}~}}~}~ ~~~~~~~~~ }|}}|} }~}~~}~}~~}~~~~~~~ }|} }~}}~}}~} ~~~ ~|}|}~}}~}}~}~~}~~~~~~}|}||} }~}}~}~~~~ ~}|}}|}}|}~}}~}~}}~~~~~~}|}|}}~}~}~~}~~~~~~~}||}}|}|} }~}~}~~}~ ~~~~~}||} }~}}~}}~}~~}~}~~~~~~~}}|}|}}~}~}}~}~}~~~~~~ }|}||}}|}}~}}~}~}}~}~~}~~~~~~~~~~~~|}||}}|}}|}}~}}~}}~}~~~~~~~}}|}|} }~}}~}}~}~}~~~~~~~~}|}||}~}~}}~}}~~}~~~~~~}|}}~}}~}~}~ ~~}||}}|}|}}~}}~}~~~~~~~||}|}}~}}~}}~}~}~}~ ~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          󂁂        􁂂      򁀀           󂁂    􁂁 󂁁 􁀁  󂁁  򁀀  삁        񁀁 󁀀 󁀀   ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           򅄄   󄃄   󃄃   񄃃    񄃄  􃂂    􃂃    򄃄     󃄄             􄃄                                                                                                                                 󆇇            ꇆ  򇆆  놇 톇         񅆆  򇆇 􆅆       󄅄     򅄅  󅄄                                                                %*& (.%' & &+& $ ($&' !# !   "                          􌇈󊋋󍌇      󈇈      􉈉              􉊉   󉊊    􊉉          , $ '(( & % $&&$% *!(#$   ! ! %                         􎍎 􎍎  󑐑     򍌍󍌍򙘘      󔓔    󔕕󙘙                  񟞟񞝝   򧦧 𪩩     ꧦ  󣢣    󦥦  񢡡           𰯰               󪩪  󧦧                   𲳳    Ѽлк빺ϺϹϹιιι͸͸͸̷𹸹ʵʵɵɶɵɵȵȵȵǵǵǵƵƵƴ𸹹ŴŴ ŵĴĴĴô  뺹³99;;;<=?nomnnommnnnnnmmm99:;;=>?      !"!"$$&'()*++,./001opoppqsrrstststtuvwvwwxwxxyz{z{{|{{opoppqpqrqrrstuvwxwxxyz{z{|{{opqpqqrsrsttutuvuvvwwxyxyyz {nonoopqrqrsrrssttuvwxyxyyz {noopqrststtuvwvwxwwxyxyyz {nopqrstuvuvwvvwwxxwxxyz{z{{|{nnoopoppqpqqrrststtuvvwxyxyyz{z{{|{mmnnopqrstuvuvvwxwxxyz{nnopqpqqrstuvuuvvwxwxxyz{z{{nnopqpqqrsrsstuvwxwwxxyz{zz{{nnmnoopqrststtuvwvwwxyzyyz{z{{mmnnopqqpqqrqrrstuvwvwwxwxxyz{z{{nmnnopqrqqrrstutuuvvwxyzyyzz{z{{nmnnopoppqrstsuutuuvwvwwxyz{nopoppqrstutuuvuuvwwvwwxyxyyzyyz{{zmnnoopqrqqrrsrsststtuvwxyzyz{{nmnoopqrstuvwvvwxwxxyzyz{znopqrstuvuvwvwwxyz{nnonoopoppqpqqrstutuvvwvvwxwxxyzmnmnnoopqrqrsstuvwxyxyyznmnnopqrsrststtuvwvwwxwxyyzmnnopooppqrststtuvwxymnnopqrqrrsrsstuttuuvwvwvwxxymnnopoppqrqqrrsrsstuvuvvwxyxymmnopqrqrrstutuuvwvwwxwxxyxxmnmnnopqrqqrrstuvwxxwxxmnnonoopoppqpqqrqrrstutuuvwvvwwxmnnopqrqrrsstssttuuvwvxxnonoopqpqrqqrsstuvwvvwwxxmmnonoopoppqrststuttuuvuvvwvwxwxmnnonnoopqrqrrsstuvwxmnnopqpqqrrstuvvwvwwnmmnnoonoopqppqqrrstuvwvwmnnopoppqrsrrstuvwvmnmnnonoopqrsrsstuvuvvwwmnnopqrstutuvvwmmnnopoppqrststtutuuvmnnonooppqpqrrstumnnopoppqrstutuunonoopqpqqrrstuvnnmnnoopqrqrrsrrsttunnonoopqrqrrsrsststtunnopqrqrrstnopqqpprrsrststtnmnoonooppqrstnnopqrsrsttnmnnoopqrsrsstmmnnonoopqrqrrstsmmnopqrsmnmnonnoopoppqqpqqrsnopqrqqrrsnmnonoopopqpqpqqrsnnonoopqpqqrqrsrmnmnnopqpqqrnmnnopoppqpqqrrnnopoppqqrqnmnnoopqrqmnnonoopqpqqmnonopoppqrmnnopoopqpqqmnnopmnmnnopqpmnnopmnnopopp      !!"##%%&(()+,--.001                              {|{|{|{{||{|{| |}||}||}|}|}|} }|}}{|{||{||{||}||}||}|}||}||}}|} }~{{|{{||{|{{||{|{| |}||}|}|}}|}}|}}|}}~{|{|{{|{|{{|{||}|}||}}|}|}}|}||}}|}}{|{|{{|{||{||{||}||}|}}||}{|{{|{{||{|{||{||}||}}|}|}|}|}|}} {|{|{||{||}|}|}}||}||}}||}}|}|}}{|{|{{|{{|{||{||}|}}|}|}|}}|}}{|{{|{{||{|{|{|{||}||}|}|}}|}||}}|}|}}{{|{|{{|{|{{|{|}|}|}}||}}|}}{|{{|{{|{|{|{||{||}|}|}}|}||}||}}{|{{|{|{|{|{||}||}||}|}|}|}{{|{{|{{|{{|{|{|{| |}||}|}|}|}|}||}}z{{|{|{{|{{||{||{|{|{||}||}|}}|}|}}|}}||}}|}}{{|{|{|{|{{|}||}||}|}|}}|}{{|{{|{{|{|{{ |{||}||}|}}|}||}||}}|}{ {|{|{{|{||{|{||}|}|}|}}|}|}|}||{ {|{{|{|{{|{||{|{||}|}||}||}|}}|}zz{|{|{{|{|{|{|{||{||}|}|zz{ {|{{|{{|{||{{||}|}|}}|}|}||yz{{zz{ {|{{||{|{{|{|{{|{{| |}||}||}|z {|{{|{|{||{|{|{{|{||}||}||}|}}|}}zyzz{z{{z{{|{|{|{|{||{||{|{| |}||}yzz{z{{z{ {|{{|{{|{|{|{||{||{|}||}|}||}yzzyzz{|{{|{|{{||{||{|{| |}|}}||yzyyzz{{|{{|{||{|{||{||{||{| |}|yxyyz {|{|{{||{{|{{|{||{ |}||}}||}xyyz{z{{z{ {|{{|{{|{||{ |}|xxyyzyzz{z{{|{{|{{|{|{{||{||{||}||}xxyz{z{{|{|{|{||{||}||}||wxyz{z{{|{{|{||{|{{||{||{||}||wxyz{z{{|{|{|wxxwxxyzyyzz{z{z{ {|{{|{||{||{||{| |wxyxyyzyzz{z{{|{{|{||{{ |{|wvwwxyz{z{{|{|{||{|{{|{{|{||{| |}vvwwxyz{zz{ {|{|{{|{{|{||{{||{|vwxyxyyzyzz{|{|{||{|{{| |vwvwwxwxxyzyzz{z{{z{ {|{{|{|{||{||{|{||{|vvwxwxxyyz{z{{|{{|{|{{||{{||{{||uvwxyz{|{{|{|{{||uvwxyxyyz{z{{|{{|{|{||uvvuvvwvwwxxwxyxyxyyzz {|{{|{{|{|{||uvwxwxxyz{|{{|{|{{|uvwxyzyzz{zz {|{{|{|{||{{|{uuvwvwwxyzyz{{|{|{||{{|{||tutuuvwxwxwxxyzyzz {|{|{{|{{|{|{||{ttuuvwvvwwxyz {|{|{||{|{||{||sttuuvwxwxxyzyzz{ {|{{|{|{{||{{||{{ttutuuvwvvwxwxxyz {|{||{|{||{{|{{|{||sttuttuuvwvwwxyzyzyzz{ {|{|{{|{|{{|sstutuuvuvvwwxwxxyz{zz{{|{{stuvuuvvwwxwxxyz{|{|{{|{|{rssttutuuvwxyxxyyz{|{{||{{|{rtstsstuuvuuvvwxyz{zz{{|{{||{{||{|rrsstuwvwwxyxyyzzyzz{zz{z{{|{{|{rstuvuvvwxyyxyyzzyzz{|{||{||rrstsstutuuvwxwxxyz{z{{z{{|{{|{rststtuvwvwwxyxyyzz{z{z{{|{{|{|{qqrrststsuttuuvwxwxxyzyzyzz{z{{|{{qrrsrsststtuvwxwxxyz{|{{|pqqrstssttuvwvwwxyzyyzz {|{{pqqrqrrstuvuvvwxyzyzz{z{z{{qrqrrststtuvuvwwxwxxyxyyz {|{{pqrsrrsststtuuvuvvwxwxxyxxyyz {|                                                                                                                                                                                                                                                                                                                                                                                                   }~}~}~ ~} ~~~~~~~~~~}~}~~}~}~ ~~~~~~~~~~~~~}~}}~}~}}~~}~}~~~~~~~~~~~~~}~}~~}~}}~}~~~~~~~~~~~~}~}}~}~}~}}~}~}~ ~~~~~~~~}~~}~}}~}~~}~~}~}~ ~~~~~~~~~~}~}~}~}}~}~~}~~}~}}~~~~~~~~~}~}}~}~}~~}~}~}~~~~~~~~}~}}~}~~}~~}~} ~~~~~~~~~~}~}}~}~~}~}} ~}~~~~~~~~~ }~}~}~}~~}~~~~~~~~~} }~}}~}~~}~~}~~}~~}~~}~~~~~~~}}~}~}~}~~~~}~}}~}}~}}~}}~}~~}~~~}|} }~}}~}}~}}~~}~}~~}~~~~~~~|}}~}}~}~}~~}~}~}}~~}~~~~~~~~|}||}}||} }~}~}}~}}~}}~}~~|}}|} }~}~}~}~}}~}}~}~ ~~~}|}}~}}~~}~~}~}~~}~~~~~~~}|}}|} }~}~}}~~}}~}}~}~}}~~}|}|}}~}~~}~}~~}~~~~}|}}|}}|} }~}~} }~}}~}~}~ ~~~~}}||}}|} }~}}~~}~}~}~~}~ ~}~}}~~}~}~~}~~|}}|}}|}|}}|}}~}}~}}~}~~}}~~}~~~}|}||}}|}|} }~}}~}}~}}~}~~}~}~}~~}~}||}||}}|}|}}~}}~}~}~}~}~~}}~~}~~}|}|}}|}|}|}|} }~}}~}}~}~~}}~}~}~~}~~}||}}|}}||}|}}|}}~}~}~}~}~~}~~|}|}|}}|}||} }~}}~}}~}}~}~~}~}~~}|}||}|}||}||}|}}|}}~}}~}~}~}~}}~~}~~}~~}~~||}|}|}}||}}|}}|} }~}~~}}~~}}~}~}~~}~~}~~|}|}|}}||}}~}}~}}~}~~}~}~~|}|}}||}|}||}|}|}}~}~}~~}}~}~~|}||}|}||}}|}|}}|}}| }~}}~}~}~}~~|}|}||}|}|}||}||}}|}}~}}~}~}~}~}~~|}| |}||}||}|}}|}}~}}~}}~}~~}~}~}~~}||}||}||}||}|}}|}}|}}~}}~}}~ |}||}|}}||}}|}|}}~}~}}~~}~~}{| |}||}|}||}|}|}}|}}~}}~}}~}~~}}~ |}||}||}|}|}|}}|}}~}}~}~}}~}}~}~}| |}||}|}}|}|} }~}}~}~}~~}}~}} |}|}|}|}||}|}}|}}|} }~}}~}~}}~}~}||{||}| |}|}|}}|}|}}~}~}~~}|{|}||}|}||}|}||}}|}}~}}~}}~}~~}}||}|}|}}||}~}}~}~}~|{| |}||}||}|}}||}}~}~}~}| |}||}|}|}|}}||}}|}}~}{||}||}||}}|}|}}|}}|}}~}}|{||}|}|}}|} }~}}~{||{|{|{||}||}|}}|}|}|}|}|} }~}}~}}|{|{||}||}||}|}}||}||}|}}|}|}}{ |{||{||}|}||}|}|}}||}}|}|}|}}|}|} }|{||{||}||}|}}|}||}}|}|}|}|}}|}{|{| |{||}||}|}|}}|}||}|} }{|{|{{|{||}||}|}}||}}|}}|}}|}|}}|{{||{{|}||}|}||}|}}|}|}}{|{||}||}|}||}|}|}|} }{||{||{||{| |}||}|}|}||}||}}|}}|}}|}}{|{||{||{||{|{|{||}||}|}|}}||}|}}|}}{|{|{{||{|{{||{||{||}||}|}}|}|}}|}}|}}{|{{|{||{|{{|{{||}|}|}|}}|}}|}}{|{|{{|{|{||{| |}|}||}|}|}||}}|{{|{|{|{{||{||{| |}||}|}||}|}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ~  ~~~~~~ ~ ~~~~~~~~~~  ~~~~~~~ ~~~~ ~~~~~~ ~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~ ~~~~~~~~~ ~ ~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~ ~}~~}~ ~~~~~~~~~}~~}~~~~~~~~~~~~~~ ~~} ~~~~~~~~~~ ~}}~}~~~~~~~~~~}~}~ ~~ ~~~~~~~ ~}~~}~~}~~~~~~~~~}~}~ ~~~~~~~~~~~~~~ }~}~}~~~~~~~~~~~~~~}~}~~~~~~~~~~~~}}~}~}~~}~~}~~~~~~~~~~~~~~~}~}~~~~~~~~~~~~}~~}~~}~}}~~}~~~~~~~~~~~~~}}~}~}~~}~~~~~~~~~~~~}~}~}~}}~}~~}~ ~~~~~~~~~~~~}~}~}}~}~~}~~~~~~~~~~~~~~~~}}~}~}~ ~}~~~~~~~~~~~~~~~}~}~~}~~}~}~~~~~~~~~~~}}~}~~}~~}~}~~~~~~~~~~~}}~}}~}}~}~~}~~}~~}}~}~~~~~~}}~}}~}~}~~}~}~~~~~~~~}~}}~}~}}~~}~~}~}~~~~~~~~}~}}~}~~}~}~}~~}~~}~~}~~~~~~~~~}}~}~}~}~~}~~}~~}~~}~~~~~}}~}~}~~}~}}~~}~~}~}}~ ~~~~~~~~~}}~}}~}}~}~}}~~}~~}}~}~~}~~}}~ ~~~~~}}~}}~}}~~}~~}~~}~}~}}~~}~~}~~~~}}~}}~}~} }~}~~}~}~}~~~~~} }~}~} }~}~~}~}}~~}~~}~ ~~~ }~}}~}}~~}~}~~}~}~~}~}~ ~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򂁂򀁁        󁀁          ~  ~  ~~~ ~  ~~~~~~~~~~~~~~~~~~ ~~~~~~ ~~ ~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              󂃂   򃂃􂃃 􃂂  򂃃  􂁁 󂁂      傁  󁂂   ꁀ聀쁀  聀  􁀁 󁀀                                                                                                                                                                                                                                                                                      "                                                            "   %   )􃄃  􄃄 􄃄  󂃃!    񂃂  򃂃   󁂁   䁂   킁  􂁂                  %                                     '          #         '&            +&ꃄ󄃄  섃 򃄃  򄃃( !  􄃃    򂃃  􃂃 󂃃    !  %" )             "#     &             #     6E    ' ( %         % 5%L񅄅󅄅    6        胄󃄄񃄃󃄃䃄   4 0+ : (     􂃃   􃂃     ;            6 6 %       % '0       # "      &7/        (            )]I       FC&(    񃄃񃄃    6;'   򂃃򂃃􂃂񃂂󃂂􃂃򃂃            33&      +L       1:+   "           '  .$     #" # #      $* ''  󄃄 惄 󄃃 󂃃"4  '$    󂃃􂃃􂃂          񁂁􁂁$     ! !'      (         $      !  "    "                  􂃄 󃂃  􂃂          ,􂁂򂁁    􂁁遂   !킁   􀁁             -      !  '"                                                   炃  񃂂  򃂂    􁂁󁂁  󂁂  󁂂  񂁂    󀁀   󀁀          󁀁                                                                                                                                                                                                                                                                                                                                          񁂁񀁁퀁 񀁀    򀁀       򀁀               ~  ~~ ~~~~~~~~~~~~~~ ~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ~  ~  ~~ ~~ ~~~~~~~~~~~ ~~~~~~~ ~~~~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~~~~~~~~~ ~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~ ~}~}~~~~~~~~~~~~}~~~~~~~~~~~~} ~~~~~~~~~~~}~~~~~~~~~~~~~~~ ~}~}~~}~}}~~~~~~~~~~~~~~}~}}~}~}~~~~~~~~~~~~~}~~}~~}~~}~}~~~~~~~~~~ ~}~~}~~}}~~}}~~~~~~~~~}~}~~}~~}~}~~~~~~~~~~~~~~~}~~}~}~~}~~}}~~~~~~~~~~}~~}~}~}~~}~}~~~~~~~~~~~~~}~~}~~}~}~}}~}~~~~~~}~~}~~}~}~}}~~~~~~~~~~ ~}~~}~~}}~~}~~}}~}~}}~}}~~~~~~~~~~}~}~}~~}~}~~~~~~ ~}~ ~}~~}~}}~}~}}~}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ~~~~~~~~~~~}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~}~~~~~~~~~~~~~}~~}~~ ~~~~~~}~~~~~~~~~~~}~ ~~~~~~~}~~ ~~~~~~~~~~ ~}~~}~~~~~~~~~ ~}~}}~}~~ ~~~~~~~}~}~}~~~~~~~~~~ ~}~~}~}~}~~~~~~~~}~~}~~}~}}~~}}~~~~~~~~~~~~~~}~~}~~}~~}~}~ ~~~~~~~~~}~ ~}~~}}~ ~~~~~~~~~~~ ~}~}~~}~~~~~~~~~~~~}~}~~}~~}}~}}~~~~~~~~~~}~~}~~}}~~}}~}~}}~~}~~~~~~~~~~~~ ~}~~}~}}~~}~~}~}~~~~~~~~~~~ ~}~~}}~}~~}~~}}~~~}~}}~~}~~~~~~~ ~}~~}~~}~}~~}~}~}~}~}~}~~}~~~~~~~~~ ~}~~}~}~~}}~}~}~~}}~}}~~~~~ ~~~}~}~~}~~}~}~}}~~}}~~~~~~~~ ~}~}~}}~~}}~}~~}}~}~~~~~~~ ~}~~}~~}}~}}~}}~~}}~} }~~~~~~~~ ~}~}}~~}~}~}}~}}~~ }~~~~~~~ ~}~~}~}}~}~}~}}~}}~~~~~~}~~}~~}~~}~}}~} }~~~~~~~}~}~}~~}~}~}~}~~}~~}}~~}}~}}|}~~~~}~}~}}~}}|}~}~~}~}~}}~}~}}~}}~} }~~~~~}~}~~}~}~}~}}|}}~~~~}~~}~}~~}~} }~}}~}}~~~~}~}}~~}~}}~}}~}}~~}}~}}|}}|}~~~ ~}~~}~~}}~~}}~~}}~~}~}}~~~}~~}~~}~~}~}~~}}~}}~~}}~}}|}|}~~}~}~}~}~}}~}}|}}|}}|}}|~~}~~}~}}~}~}}~}}|}|}|}}|}|~~~ ~}~~}~}~}~~}}~}~~ }|}}|~}~~}~}~~}~}~}}~}}~}}~~}}|}}|}~ ~}~}~~}~}~~}}~}}~} }|}}|}}|}|}~~}~}~~}~~}}~~}~}}~} }|}}|}}|}|}|}~~}~~}~}~}~~}}~}}~}}~}}|}|}}|}|}||}~~}~~}~~}~~}~}}~}}~}}~}~} }|}|}}|}|}}||}|~}~}~}}~}~}~}~~}~}}~}~}}|}}|}}|}|}||}|~}~~}~}}~}}~}~}}~}}~} }|}}|}|}||}|}|}~}~~}~}}~~}~}}~}~}}|}|}|}}|}}|}|}|}||}|}~}}~~}}~}~}~~}~}~}}~} }|}||}|}|}}|}}|}||}||}}~}}~~}}~}~~}}~}}|}}|}}|}|}}|}||}}|~}}~}}~}~~}}~}}~ }|}}|}|}}|}}|}|}}|}|}}|~~}~}~}}~~}~} }|}}|}}|}}|}|}||}~}}~}}~}}~}}|} }|}}|}}||}||}|~~}~}~}~}~}}~} }|}}|}|}||}||}||~}~}~}~~}}|}}|}|}}|}}|}|}} |~}~}~}}|}}|}|}||}||}||}~}}~}}|}}|}|}|}}|}}|}|}|}||~}~}~}~}}~} }|}}|}}|}|}|}||}|}}|}|}|}||~}}~}}~}}|}||}}|}}|}}||}||}~}~}}|}|}}|}}|}||}||} |}~~}}~}}~}}|}|}}||}||}|}||{||}~}}|}}|}|}}|}||}||}}|}||~}}|}}|}||}}|}|}|~ }|}|}}|}|}}|}|}||}||{|{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ~}~}}~}~}}|}||}}|}}||}||}|~~}~~}~}}~}}|}|}}|}|}}|}||}|}||~~}~}~~}~}~}}~}~}}|}||}}|}||}||~}~~}~}}~~}~} }|}}|}|}}|}|}||~}~}~}~}}~} }|}}|}|}||}}||}||}|}||}~~}~~}~}~}}~}}~} }|}}|}}|}|}|}||}||}|}}|~}~}}~}~}}~}}~}}|}|}|}||}||~}~}~}|}||}|}|}||}||~}~}~}}~} }|}}|}|}}|}}|}}|}|}||}~}}~~}~}|}|}|}}|}}|}|}||}}||}||~}}~}~~}~} }|}|}}||}}|}|}|}||}~~}}~}}~} }|}}|}}| |}||{||~}~~}|}}|}|}|}||}|}||}| |{~} }~}}|}}|}|}||}}||}||}||{||{}~}~~}|}}|}|}}|}}|| }~}}|}|}|}|}|}||{|{{||}|}|}}|}}|}}||}||}||}||}| |{|{|}}|}}|}||}||{|~} }|}|}|}||{|{{}~}~}~}}|}}|}|}}|}|}|}|}}|}||}||}||{|{|{{|{~}}|}}|}|}||}|}||}|}||{||{|{||~} }|}|}|}}|}||{||{|{}}|}|}|}}||}||}| |{||{|{{|{|{{||} }|}|}}||}|}}|}||}||{||{|{{|{||{|{||}}|}}|}}|}|}}|}|}|}}| |{||{|{}|}}|}||}||}|}|}||{|{|{||{|{{|{||{{}}|}||}}||}}|}||{||{||{|{{|{{}}|}}|}}|} |}|}||}||{||{||{{||{|{{}|}||}|}|}}||}||}||{|{||{||{{|{}|}}|}|}}|}||}}||}| |}||{||{|{|{{||{|{{|}}|}}||}|}}|}|}|}}|}|}| |{|{|{|{}}|}}|}|}|}||}||{|{||{||{|{|{{}|}||}|}}||}}|}|{||{|{|{|{|{|{{}|}|}}|}}"|{|{ {}|}}|}||}|}|}}||}| |{| |{|{||{||{{|}|}|}|}||}||}||}| |{||{|{{|{{|{{||{|{|{{}|}}|}||}|}||{||{|{{||{|{|{|{{|{}|}|}}|}}||}||}||}||{||{|{|{{||{||{{|{|{|}|}|}|}|}||{|{| {|}|}}|}||}||}||}||{||{||{|{||{{| {}|}}||}|}||}||{||{||{|{|{|{{|{||{ {}||}||}|}||{||{|{{||{|{{||{{}||}|}|}||{||{|{{||{||{{|{||{||{||{ {z{||}|}||{|{|{||{{|{|{{|{ {z|} |{||{||{||{|{{||{z||}|}|}||{||{|{||{{|{{|{{|{{z{{z{zz}|}||}||{|{|{||{|{{z{z||}|{||{||{||{|{{z{{zz|{||{||{|{||{{|{|{ {z{{z{zzyz||{||{||{||{|{{|{{|{{|{{|{|{ {z{z{zz{zz|}| |{||{|{|{|{|{{|{ {zyzyy |{||{|{|{{|{{z{{zy}||{||{|{||{|{|{|{||{|{{|{ {z{zzyyx||{||{|{{||{||{|{{zyxyx| |{||{|{{|{||{{z{zzyx|{||{|{|{{|{z{{zyxyxxw||{||{|{{|{|{{|{{|{ {z{{zyxyxxw|{|{|{|{{|{|{||{{|{{|{|{{z{z{{zyxxyyxxw|{|{|{|{|{{||{{z{zzyxyxxw|{|{|{{||{{|{|{{|{ {z{{zz{zzyxyxxw|{||{||{|{{|{{|{|{z{{zyxwv|{|{||{|{{|{|{{|{{|{ {zyzzyyxwv|{||{||{|{|{|{{|{||{{zyzyxyyxxwv|{||{|{||{{|{|{{|{ {z{z{zzyxwxwwv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |{||{||{|{||{|{{|{{zyxwx||{||{{|{|{|{{|{|{{||{ {zyxw |{||{|{{|{|{ {z{zzyxyyxxw|{| |{|{||{{zyxyxxwv||{||{||{|{||{|{{zyxyyxxwxwwv||{||{|{{|{{|{{zyxyxxwvw||{||{|{||{|{{|{{|{{z{{z{zyyzyxxwv||{|{||{|{{|{{|{{z{{z{zzyzyyxyyxxwvu||{|{|{||{{z{zzyyzyyxwvu|{{|{|{{|{{|{{|{||{{zyxwvu|{||{|{|{{||{|{{|{{zyxwvu|{|{{|{|{{|{|{{|{ {z{{zzyxyxxwxwwvwvvu|{|{{|{|{{|{ {zyxyyxwxwwvut{{||{||{{|{|{{|{{z{{z{zzyzyyxwvutu||{||{|{|{{|{ {zyxyxxwxwwvvutut||{|{|{{|{{|{ {zyxwxwvwvwvvut{||{|{|{{|{{z{{z{{zzyxyxxwvutuuts||{|{|{{|{|{||{{|{z{{zyzyyxwvwvvuts|{|{zyzyyxyxxwwxwwvuts||{{|{|{|{{|{{z{z{{zzyyxwvuts{|{|{|{|{{|{ {zyxwvwvvututtstss{{|{{||{|| {zyzyyxyxxwvwvvuutsr|{|{|{{|{{z{{zyzyyxwxwwvwvvutstssr|{|{|{ {zyxyxyxxwvutsttssr|{|{{|{{zyzyyxyxxwvwvvutstssrr|{{|{||{ {z{{zzyxyyxxwwxwwvuvutuutsttssr|{ {z{{zyzyyxwwvutsrsrrq|{{|{ {z{zzyzzyyxwvwvvuututtstssrq{{|{ {zyxyyxxwvwvvuutuutstssrqrq{{zyxyxxwvuvuutsrsrrqq{|{ {zyxwvuvvuutsrq{|{{z{{zzyxwvwvvuvuutstssrq {zyxwxwwvvwvvuvuvtuutsrqp{z{{zyxyxxwvwvuvuutstssrrqpqp{{z{{zzyzyxyyxwxxwwvvwvvutututtsrqp {zyxyxxwvwvvutstssrsrrqrrqqp{z{{zyxyyxxwxwxwwvvwvvututtsstssrsrsrrqpz{{z{z{{zyzyyxwvutstsrssrqpqppopn{{z{{z{zzyxwvutstssrqrqrqqpopoo{zyzzyyxwvwwvvuvuutstssrsrqqrqppo{zyzyxyyxxwxwwvvutsrqrqqpon{zyxwxwvvuvvuutsrsrrqpon{zyxwvuvuutstssrsrrqqrqqppononnzyxwxwwvutstssrqrqqponzyxwvwvvuvuututtsrsrrqpopoononmmnmzyzyyxwxwxwvwvvutsrsrrqqrqqpopoononnzyxyyxxwvutsrqpoponoonnyzyyxyxxwxwwvwvvutsrqpqpponyyxyxxwxxwwvvwvvututtutsstssrqrqqppqpopoononmnmyyxwxwwvvututtsrqpoopoonoonnmyyxxwxwwvutstssrqpoponoonnmmyxxwxwwvvuvuutstssrqrqqponyxxwwvutsrsrrqrqqpqppononnmnnxxwvutstssrqrqpqqppopoonmxwxwwvuvuutsrqponmwxwwvwvvuvuutstssrqpqppononnxwwvuvuututtssrqrqpoppoonwvwvvuvuuttstssrqponononnwwvuvvuutsrsrrqponmnwvuvuttsttssrqpononnmnmvutuuttsrsrrqrqqppqpponmvutsrqpononnvututtsrqrrqqppononnuvuutsrsrrqrqqpopoonm                                                                                                !##%&''))*+-..0024456789;;=>wvuvuutsrqrqqponmwvvutsrqrqrpqqpononnmwvvuvuutututtstssrrsrrqpqppononnwvvuutsrqrqqpononnmvvuutsrqpqppoononnmmvuutsrqrqqpqpoppoonmuvvuututtsstssrrqponmutsrqrrqqpqpponuututtsrsrrqponmnmutstssrsrrqqrqppqpponmnututtsrqrqqpononnmtuttsrrsrrqpononmmntsrqrqpponoontsrsrrqqpqppononmnmtstssrqponnmtsrqrrqqppqpponsrqponmnssrqpopoonsrrssrrqrqqpponrsrsrrqqpqppononnmrrqponmsrrqponmnrrqpononnmrqqpopnonnmnrqrqqponmnqpononnmrqqponmqponmqppqpponmnnqppopoonqpponmpopopoononnmnpopoonmppoonmopoonnmnoonmonmoonnnonnmnmnmmnmmmnn  "#$%&'()*+,--/0023567789;<=>򼽼 񶵴   𼽼 󳴴𴵴             룢󦥦    򡠡       򧨧     򭬭 򬭮𩨩򫪪  𦧧 򪩪   󵴵  ﶵ򷶷     𵶵      ӺӺӺҺҹҺѹѹѹѹйѸииϷϷϷϷηϷζηζζͶ͵乸Ͷ̵򾽿̵̵̵˵˵ʵ+,,+----..///0/00012123343344556677888888:::;;;;<=====mnnonooppqpqrqrrssnnopqpqqrrsnnopqrssrnopqrqrrmnnopoqppqrqqsrmnnonooppqprqrrmnnopqrnnopqpqqrrmnnoopqpqrqrrnmnnoopqpqqrmnnoopqpqrrnmnoopqrnnopooqqrnopqrmnnopqrmnnoppqnnopoppqqmnnoopooppqmnnopopqqrmnonpoppqqmnnopqpqmnoopqpmnnopqpmnmnonoppqnnopqmnnoopnmnnoopmnnoopnopopmnnpnnopmnnopnonnonoomnnopmnnonoomnnomnnonnomnnommnnoonnmnnomnnmnnomnnnnmnnnmmnnnm+,+,,,,-..//.//0001222223444445557678789999:;;;;<=<=>=                   stuvuvvwxwwxyyzyzz{|{ |{||}||}ststtuuvwvwxwxxyz{z{{|{{||{||{||{||{||}||ststtutuvuvvwwxyz {|{{|{|{|{|{||}||}}sttuvwvwwxyyxyyzyz{{z{{|{{|{|{{|{| |}|sstuvwvwwxyz {|{|{{|{|{| |stuvwwxyz{zz{|{{|{|{| |}rsstuvwvwwxyz{{z{{|{|{{|{||}|rststtuvuuvvwwxyzyzz{|{||{{|{||}|sstuvwxyzzyzz{{|{{||rstuvwwxyzyzz {|{||{|rstsuttuvvwxyz{|{{|{{|{||{||{||rstuvwxyzyz{{|{|{|{{|{||{{||{||rstuvwvwwxxyz{z{{|{|{{|{|{||}|rrstuvwxyzyzz{ {|{|{{|{|{||}|rrsstuvwxyzyz{z{{|{|{|{||{|{||rstuvuvvwxxwxxyyz{z{ {|{|{|{{|{||rstuvuvvwxxyz{|{{|{|{|qrrsstuvwvwwxxwxyyz {|{{|{{|{|qrrsrssttutuvuvwwxyxyzyzz {|{||{|{{||{||qrstuvwxyxyyz{|{||{||qrqrrstuvwxyzyzz{{z{ {|{{|{||{|qrstuvvwvwwxyxyyz{z{{|{|{||{{|qrsrrsstuvwvwwxxyz{z{z{{|{{|{{|{|{|{|qqrstuvuvvwwxyz{z{{|{{|{||{||pqqrrsrrsttuvwxyz {|{|{{||{|{||qrqrrstuvwxyzyzz{|{{|{||pqqrsrrsttutuuvwvwxwwxyyz{z{{|{|{||{|{|{|{||pqrqrrsstuvwxyz {|{|{{|{||pqqrstuvwxyz{z{ {|{{|{{|{||pqqrstuttuuvvwvwwxwxxyz{z{{|{|{|{{|{||{|{||pqrsrtssttuvuvvwwxwxxyz {|{|{|{||ppqrstuvuvvwwxxwyyxyzyzz{ {|{{|{|{{|{{|pqpqqrstuvwxyzyzz{z{{|{{|{||{|{||pqpqqrsrrsstuvwxyyxyzz{z{{|{{|{|{|{||pqrqrrssttsttuuvwxwxxyz{z{ {|{||{|{||ppqrstutuuvvwvwxwwxxyzyz{z{{|{|{{|{|{||oppqqrqrsrsstuvwxyyz {|{{|{|ppqrstuwvwwxyz{zz{{|{|{||{||opqrsrststtuvwxyz {|{|{||{|poopqqrstuuvwvwwxwxxyzyz{z{zz{{|{{|{|{||oopqrstuvwxyz {|{{|{|{||{||{oppoppqrststuuvwxyz{|{|{||{|{{|oopqrqrsststuuvuvvwwxyxyyz{z{ {|{||{{||nopoppqrstuvwxyxyyz {|{|{{|nooppqrsuttuuvvwwxyxyyzz{|{||noopqprrstuvwxwwxyxyzzyzz {|{||{|nnoppqpprqqrsrsstutvvwxwxxyz{z{{|{{|{{||{{|noopqrstuvwvwxxwxyyz{z{{|{{|{|{|nnopqrstutuuvwxwxyyz{|{{|{|{nonoopqprqrrstuvwxyz{ {|{{|{||{nnoopqrqrrstuvuvwwxyz{z{{|{{|{{nonoopqrstuvwxyxxyyz{|{|mnnopopqpqqrstuttuvvwvwxxyxyyzz{|{{|{|{{|{||nnoppqrsstuvuvwvvwwxyxyzy{z{ {|{nnopqrstuvuvvwwxyz{{z{{|{|{|{{|mnnopoppqqrsrsttutuvvwxyz{z{{|{{|{|{nnopqrsrsstuvwxyz {|{|nnopqpqqrqrrstsstuuvwxyz{z{{|{|mnnopqrsrsstuvwvwxxyxxyyzz{z{ {|{nmnnoopqrqrrstuttuuvvwxwwxxyzyzz{ {|{{|nnopqpqrrqsrsstuvwxyz{|nnopqrstuvwvwwxyxxyyz {|{{||nmnnoopqrsrsstuuvwxxyxyyzz{z{z{{|{|{nnopoppqqrstuvuvvwwxyxyzyzz{ {|{|                                                                                                                                                                                                                                                  }|}|}|| }~}~~} ~~~~~~~~~~||}|}|}}~}}~}}~}}~~}~~}}~}~ ~~~~~~~~~||}| }~}}~}}~}~~~~~~||}||}~}~}}~}~}}~}~ ~~~~~~||}|}|}}~}}~} ~~~|}|}}||}}|}|}}~}~~}}~}~}~~}~~~|}||}|}|} }~}~}~}~~}~~}~~~~~~||}|}}|} }~}~~}~~}~ ~~~||}|}|}|} }~}}~}~~}~}~ ~~~~~~}||}|}|}}|}}~}}~~}}~}~}~ ~~~~||}|}|}}|} }~}}~}}~ ~~~~~~|}||}|}||}}|} }~}~~}}~}~}}~~~~~||}||}}|}|}}|}}~}}~}~ ~~~~||}||}|}|}}||}|} }~}~}~ ~~~|}|}||}~}~}~~~~~~||}||}|}|}~}}~}~~}~ ~~~|}||}|}||}|}|} }~}}~}~~}~~~ ~|}||}||}||} }~}}~}~}}~~}~~~|}||}||}||}}|| }~}}~~}~}~~~||}||}|}||}|} }~}}~}}~}~~}~~~~||}|}|}}|} }~}}~~}}~}~}~}~~}~~~~~~~}||}||}||}|}|}}|}}|}}~}~}}~}~~}~~~~|}|}||}||}}||}|| }~}~}~~}~~}~}~~~~~~~||}||}|}||}|} }~}~}~~}~}~}~~~~||}||}|}|}||}}|}||}}|}}|}}~}~}}~}~}~}}~~}~~~~~|}||}||}}|}}~}}~}}~~~||}|}|}|}}|}}|}}~}}~}~}~~}~~}~~||}||}}|}}|}|} }~}~}~}~~}~~}~ ~|}||}|}||}||}}|}}~}}~}}~}~~}}~}~}~}~ ~{||}||}}|}}|}}|}}|}~}~}~}~ ~~~~ |}|}|}}|}}~}}~}~}~~ |}|}}||}|}}|}}~}~}}~}}~}}~}~~~~| |}||}|}}|}~}}~}~~}~~}~~~~|{||}||}|}||}|}}~}}~}~~}~}~~~~ |}||}||}}|} }~}}~~}~}~}~}} ~~||}|}|}|} }~}~}~ ~{||}|}|}|} }~}~}~}~~}~ ~ |}|}||}|}}|}}|} }~}~}~~} ~| |}|}}|}}~}}~}~}~}~~~~{{|{|{||}|}|}|| }~}}~}}~}~~}~}~ ~ |}||}|}~}~~}~~}~~~~||}|}||}|}}|}}|} }~}}~}~~}~~||}~}}~}~~}~~~~{{|{||}||}||}|}}|} }~}~~}~~} ~ |}|}|}}||}|}}~ }~}~}~~{| |}||}|}}|}||}}~}}~}}~~}~{| |}|}|}}|} }~}}~}~}~}~~}~~}~~{|{{|}|}|}}|}|}|}}~}}~}~}~}~~|{| |}|}||}|} }~}}~}~}~~ |}||}|}||}~}~~}~~}}~}~~{||{|{||}||}||}}||}|} }~}}~}}~}~~}~~{|{||{||}||}|}}~}~}~}~}~~|{|{||}|}||}|}||}~}}~} ~{|{ |}||}}|}||}}|} }~}~}~~}}~}~~{|{||{| |}|}}|}|}}~}}~}~~}}~}~{||}|}}||}|}}|}}~}}~}~~}~}~~{||{||{| |}|}||}}| }~}}~}~}~~{|{ |}||}|}|}}|}|}}|}}~}}~}~}~~|{{||{||{||}|}}|}|} }~}}~}}~}}~}~~{||{||}||}||}||}}|}|} }~}~~}~~}~~}~}~~|{|{{||}||}|} }~}}~~}~|{||}|}}|}}|}|}}~}~}~~{|{{|{||{||}||}||}||}|}}|}}~}~}}~}}~~|{{||{|{| |}|}||}|}|| }~}~}}~}~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ~  ~~   ~  ~~ 􁀁  ~~   ~    ~ ~~  ~~~~ ~  ~~~ ~~󁀁~~~~~~~~ 􁀁~~~~~ ~~~ ~~~~~~~ ~~~~~~~~ ~~~ ~~~~~~~ ~~~~~ ~~~~~ ~~~ ~~~~~ ~~~~~ ~~~~ ~~~~~ ~~~~ ~~~~~~~~~ ~~~~~ 󁀁~~~~~~~~~~~~~~~~~~ ~~~~~  ~~~~~~~ ~~~~~  ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~~~~~ ~~~~~~~  ~~~ ~~~~~~~~  ~~~~~~~~~~~ }~}~~~~~ }~~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         􂃂  󄃄񂁁  󃂂       􁂂         񃂂  󃂂           􀁁      肃 􂁁   􃂃    􂃀 􁂁                                                                                                                                                                                     񅄄     􆅆         􅄅   􆅅   򄅄 󆅆  󄃄   󅄅                                                                                                                                  󉈉  􈇈                   􆇇                  􇆇   鈇 􆅆􇈈                                                                   B>>=>=7?:9:<48=780<9:. 81-3.4+0      񐏏  򊉉   􌋌                 >9{;>@9?y<<86:4565:16.3232-4-.,                𒑑󖎏  𕔔                򝜜 󛚛𘗘      󜛛򖗗     󖕖   񢡢         򞝝       򟠠 񪩩            򤥤󤥥     󥤥   󱲲                           󯮮       󹸹     񲱲     򶵵       ӿӿӿҾѽнммϼϼ𽼽λͺ̹˹˸˸˸ʷɷʶɶɶȶǶȵ󷸷ǵǵǵŵŵĵŵ ĵô 346788:;<<> ?mnnmnnoponnonoopnmnnonnonomnnonnonmnnnmmnmnnmm3366889:<<= ?   !##$'())+-./02445799;=>pqrsrsstutuuvwxyzyzz {pqrqrsstuvuvwxwxxyzyzz{z{{z{{pqpqqrqqrrsstuvwxyxxyyz{z{{opqrsrsstuvwvvwwxyzyzz{zz{{opqpqqrsrrsstutuuvwvwwxyxyzyyzz{noopqpqqrstuvuuvvwxyz{z{{nopqrqrrstuvwvwxwwxyz{z{{z{nonooppqrqrsrsststtuutuuvvwxwxxyz{z{{z{ononooppoppqrsrsstuvuvvwwxwwxyxyyz{nonoopooppqrsrsstututuuvvuvvwxyzyzz{nnoonnoopqqpqrrsrsstuvuuvvwxwxxyxyyz{nnonopoopqrsrsstuvwxwxxyznmnnopoppqqpqqrstutuuvwxwxxyzmnnopqrqrrstssttuvwvwwxwxxyzymnnonnoopqrrqrqrrsrsststtuuvwvwwxwxxyxyynopqrqrrsrsrsstuvuvvwwvwwxyxyynonoopqpqqrqrrstutuuvuvvwvvwwxyxyxymnnopqrsstutuuvwxwxxymnmnnoopqppqqrststtutuuvwxynnopoppqrqrrsrsstuttuuvvwxyymnnonoopqrsrsstutuuvvwvwwxxmnnonoopoppqrsrsstuvwxwwxxnmnnopoppqpqrrqrrsrsststtuvwxwmnopoppqppqrstuvwvwwnnopqrqrrsstuvwvvwwnmoonooppoppqppqqrrqrrsstuttuuvwvvwvnopoppqrstutuuvuvvwmnnopqrqsrrstutuuvnnopopqppqpqqrqrrstsstuutuuvvuvmnnopopqpqqrstuvmnmnnonooppqrqrrstutuuvvnnonoopqpqqrrstsunonnopqpqqrstuttuunmnnoopqrstunmnnonnopoppqrststtumnnonoopqqpqqrqqrsrsstunnopqpqqrqrrststunmnnonoopoppqrqrrststsmnnopqrsrssmmnnoonoopqrsrssmnopooppqrsmnnonnoopoppqrsrrsmnnopqpqqrqqrrsnmnnopqpqrrmnnopqpqqrnopoppqqrqrrmnnopoppqpqqrqmnonnopqrmnnopoppqmnmnnonoopoppqmnnopoppqmnnonoopoppmnnopoppmnnonoopmnomnmnnoopmnomnomnnommnnonmnmnnmnnnmn      !#$$'((*+,-/1145579:;<>                         |{{|{|{|{||{||}||}||}}||}|}}|{{|{{|{|{||{|{||{ |}||}||}||}|}|}}|}||{{||{|{{|{|{|{{|{||{||{| |}|}||}|}}|}}||}{{|{|{|{||{{|{| |}|}||}|}|{|{{|{|{|{|{| |}||}||}||}}{{|{{||{{|{{|{|{||{|{| |}||}||}|}}{|{{|{|{{|{||{|}||}||}||{ {|{|{|{{|{|{{|{|{||}|}}||}|{{z{{|{{|{|{|{||}|}||}|}}{z{|{{|{{|{{||{{|{|{ |}||}|}|}}{{z{{|{{|{||{|{{|{||{||{||}|}||}|}}z{{z{ {|{{|{{||{||}||}||{zz{ {|{{||{|{| |}||}|z{z{{|{||{|{|{|{{||{||}||}|}}||z{z{ {|{{|{||{|{||{||{||{||}||}||}}||yzz{|{{|{|{{||{||{| |}|}yyzz{z{{|{|{{ |{| |}|}|yzyzyzz{z{{|{{|{||{{|{|{|{||{|{||xyyz{z{z{z{{|{{|{|{{||{|{{||xyxyyzz{z{ {|{{|{||{|{{|{|{||{| |xyzyz{zz{{z{ {|{|{||{||{{||{| |xyxxyyzyzz{z{|{{||{{|{||{{ |{||xyzyz{z{{z{{|{|{{|{|{||{|{| |wxyxyyz{z{zz {|{|{|{{||{|{|{|{||{|{||wxyz{ {|{{||{{||{|{|{|{{|{||{||{||wwxyzyzz{|{{|{||{{|{||{||{||{|wxyz{z{ {|{|{{|{|{||{||{||vvwxwxxyz {|{|{{|{{|{{|{{|{||{|{||{wvvwwxwxxyxyyzyzz{z{ {|{{|{|{{|{|{|{||vvwxwxxyzyzz{|{{|{||{{||{||{{||vwxyxyyz{z{|{{|{{|{||{||{{|vuvwvvwwxwxxyxyyzzyzz {|{{|{||{||{|{||{{uvwxwxxyzyzyzz{z{{|{{|{|{{|{{||uvwvwwxwxxyz{z{{|{{|{{|{|{{|{|uuvwvwwxyxxyz{z{{|{{|{|{|{||uuvuvuuvwvwwxyz{z{{z{{|{{|{{||{|{||tuvuvvwvwwxyxyyz{z{z{ {|{{|{{|{{|{ttuvwvvwvwwxxyxyyz{z{ {|{||{||{ttutuvvuuvvwvwwxxyz {|{{|{{|tsttuvwxwxxyzyzz{z{z{ {|{{|{{|sstutuuvuvvwwxwxxyzyyzz{z{{|{||{ssttuvuvvwxwxxyz{zz {|{{stuvuvvwxwxxyxyyz{|{srsststtuvwxwxxyz {|{{|{|rrsstuvwxyxxyyzyyz{zz{{rstuvuvvwxyxxyyzyzz{z{zz{ {rsrsstuvuvvwxwxxyxyyzz{z{ {qrrsrsststuttuuvuuvvwvwwxwxxyzyyzyzz{z{{z{{|{{qrqrsrrsstststtuuvuvvwwxwxxyzyz{zz{{|{qqrqrrstuttuuvuvvwxyzyzz{z{z{{z{{z{{qqrststtutuuvuvvwwvwwxwxxyxyyz{zz{{qrstssttuttuuvwxwwxxyzyzz{pqqrsrssrsstuvuvwxyz{z{{pqpqqrsrssttuvuvvwxwxxyxxyz{zppqrststtuuvwxwxyyxyyz{pqpqqrsrsstuvwxwxxyxxyzyzz{zoppoqpqpqqrqrrsrsstutuuvwvwwxyzyzz{oopoppqpqqrrqrrstuvuvvwwvwwxyzyzyyz{oopqpqqrstutuuvwxwxxyzyzzoopoppqrqrrstuttuuvuvvwxwwxxyzyzynnoopoqppqqrsrrsstuvuvuvvwvvwwxwxxyynonooppoppqrqrsrsrssttsttututuuvvuvvwxynopooppqrqrrstsstutuuvuvvwxymnnopqppqqrststuvwxwxxy                                                                                                                                                                                                                                                                                                    }~}}~}~}}~}~~}~}~}~~}~ ~~~|}}~}~~}~}~}~}}~}~}}~~}~~~~~~}}|}|}}~}}~~}~~}}~~}~}~~}~ ~}||}|} }~}}~}~}}~}~~}~~}~}~ ~~||}}|}}~}}~}~}~}}~~}~~}~~}~~}|}|}}|}}~}}~}}~}}~~}~ ~}|}|}}|}}~}}~}~}~}~ ~|}|}|}||} }~}}~}~}~}~~}~}}~}~}~~|}}|}}||}|}}~}}~}~}}~}~}~}~~}~~}|}}|}||}}|}}|} }~}~}~}}~~}}~~|}|}}|}}|}|}}~}~}~}}~}~}~~}~~}}~}~}~}~~|}|}|}|}|}|}}|}}~}~}~~}}~}}~}~}}~~}~~|}||}|}}|}}|}|} }~}~ }~}~|}|}|}}||}||}|}||}}|} }~}}~}~}~~}~}~}}~~}|}|}|}||}||}||}~}}~}~~}~}~~|}||}||}|}~}}~~}}~}}~}~~}~~}}|}|}||}|}||}||} }~}}~}~}~}}~||}|}||}|}||}}|}}|} }~}~}~}~~}||}|}|}||}|}||}}|}}~}}~~}~}}~}~~}||}||}}|}|}||}}~}}~}}~}~}}~} |}|}|}}|}}|}|}}|}}|}}|}}|}}~}}~}}~}}~}~}~~||}|}||}}|}||}|}}|}}|}}|}}| }~}~}}~}}||}||}||}}|}|}|}|}}|} }~}}~}}~}}| |}|}}|}|}||}}|}}|}}|} }~}}~}}~}}||}||}||}|}|}|}||}|}}|}||}}|}}|}}~}}~}}~}}~| |}||}|}|}}||}||}|}||}|}|}}~} }{|{||}||}||}||}|}}|}~}}|}||}|}||}}|}}~}{||{|{||}||}||}||}||}|}}|}||}|}|}}~||{||}||}||}|}|}}|}|}}|}}{| |}||}||}|}|}}|}}|} }|{|{||{||}||}||}||}||}|}||}|}|{{||{||{||{| |}||}|}}||}}|}|}|}}~{{||{||{|{| |}||}}|}||}||}|}|} }|{||{||{||}||}|}}||}}||}||}|}}{|{||}||}|}}||}|}|}}|}}||}}|{|{|{||}||}||}||}|}}|}}{|{||{|{|{{||}||}||}|}}|}|}}|}}|}|}|}}|{||{|{|{{|{||}||}|}}|}|}}{|{|{||{| |}||}|}||}|}||}|}}|}}|}|{{||{|{|{|{{|{||}|}||}||}||}|}}|}}|}{{|{|{{||{|}||}||}|}|}|}}|}|{||{||{|{||{|{|{||}||}|}||}{|{|{{|{|}||}}|}||}|}}|{|{|{|{{||{|{||}|}||}||}|}||{{|{{|{{|{||{||{|{|{||{|}||}|}|}}||}{{|{|{{|{|{{|{||{||}||}||}|}||{|{{|{|{||{{|{{||}||}|}|}{{|{{|{|{{|{{||{|{{||{|{||}||}||}||}||}{{|{|{||{||{{|{||{| |}|}||{{|{{|{|{{||{|{||{|{||}|}}||{|{{|{|{{|{{|{|{||{||{||{||}|}{{|{{|{|{{|{|{||{|{||}||{{|{|{{|{||{|{||{| |}||{|{{|{{|{{|{||{||}||}|z{{|{{|{{||{|{|{|{||{{|{|{|{|{|}{{z{{zz{{|{||{||{{||{|{||{||}|zz{z{{|{{|{|{|{|{|{||{| |z{z{{|{||{||{{|{||{||{|{||{||yzz {|{{|{{|{{|{{||{{|{||{|{|{{||yzz{zz{|{{|{|{||{|{|{{||{||yz{|{||{|{{||{{||{|{|{{|{||{||{||yz{|{{|{{|{|{{|{||{||{|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~ ~  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~ ~}~ ~~~~~~~~~~~~}~}~ ~~~~~~~~~~~ ~~~~~~~~~~~~~~}~}~~}}~~~~~~~~~~~~~~}~}~~}~~~~~~~~~~~~~~~~~~}~~}~}~~}~ ~~~~~~~~~~~}~~}~}~~~~~~~~~~~~~~~~~~}~}~ ~~~~~~~~~~~~~}~}~~}~~~~~~~~~~~~~~~~~}}~~}~~}~}~~ ~~~~~}~}}~~}}~~}~~}~~~~~~~~~~~~~~~~~}}~}~~}}~}~~~~~~~~~~~}~}~}~~}~~}~}~}}~~~~~~~~~~~}~}}~}~}}~}~}~~}~~}~~~~~}}~}~}~}~~}~~~~~~~~}~}}~}}~}~}~~}~}~~~~}~}}~}}~}~~}}~~}}~}~}}~}}~~}}~~~~~~~}~}}~}~}~~}~}}~~}~~~~}~}}~}~}}~}~}}~}}~}}~~}~~~~~}}~}~}}~}~}~}}~}~~~~}~}}~}}~}~}}~}~~}~~}~}~~~ }~}~}}~}~}~}~}~}~}~~}~}~~}~~}~ ~~} }~}}~}~~}}~}~}}~~}~~}~}}~}}~}~~}~}~~}~}~~}~}~}}~}~~}~}~}~~}~~}~}}~}}~}}~}~}~~}~}}~}}~~}~~}~ ~ }~}}~} }~}~}~~}~}~~} ~}|}}|}}~}~}~}}~}~}~~}~}~~}}~}~}~~}~~}~~|}}|}}|} }~}}~}}~}}~~}~}~~}~}~}~~}~}~~}~}}~}}~~}~}}~}~}}~~}~}}~~}}~}~~|}|} }~}}~}}~}~}}~}~~}~~}~~}|}}|}|}}|}}~}}~}}~}~}~}~~}~}~|}}|}}~}~}~}}~}~}}~}~~}}~}~~}~}}~}}~}}~~}~}~}}~~}~|}}|}~}}~}}~~}~}}~}~}}~}}|}}|}}|}}~}}~}~}~~}~}||}|}}||}|}}|}|}}~ }~}~~}~~}~}~~}~}|}}|}}|}|}|}}|}}~ }~}}~}~||}|}|}}|}|}}|}|}}|}}~}}~~}~}~}}~}}~}}~}~~}}||}|}||}|}||}}|}}|}}~}}~}~}}~}~}}~}~}~~|}||}|}|}|}}|}|}|}}~}}~}~~}~}~}~}||}|}|}}|} }~}~~}}~}~}}~|}|}}|}|}}|}}|}~}~~}}~}~~||}|}||}}||}|} }|}|} }~}}~}~}~||}|}||}|}}|}}|}}|} }|}}~}~~}~}}||}||}|}||}||}}|}}||}|}}||}}|}}~}}~}}~~}}|}|}||}|}}||}||}}|}|}||}|}}~}}|}||}|}}|}|}}|}|}}|}|}}|}|}|}}|}|}|}}|}}|}}|}|}|}||}|}|}||}|}|}|}|}}|}|}||}||}||}|}}||}|}}||}}|}|}}|}} |}|}||}}||}|}}||}|}}|}| }|}}|}|}| |}||}||}|}|}}|}                                                                                                                                                                                                                                                                                                                                                                                           &                                                                                                                                       "        ~  ~~~ ~~~~~~~~~~~~~~ ~~~ ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~}~~~~~~~~~~~~~~~~~~~~}~}~ ~~~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~}}~}~~}~}~~~~~~~~~~~}~~}~~}~~~~~~~~~~~ ~}~~~~~~~~~}~~}~}~~~~~~}~~}~}~~}~~}~~~~~~~~~~~}~~}~}~~}~}~ ~~~~~~~~~~}~~}~}~~}~~~~~~ ~~}}~}~}~}}~}~}~~~ ~~~~~~}}~~}~}~~}~~}~~}~~}~~~~~~~~~~}~}~~}}~~}~~}}~}~}~ ~}~~~~~~~~~}~}}~}~~}~~}~~~~}~}~}~}~}~}}~~}~~}~}~~}~~}~~}~~~~}~}~~}~}}~}~}}~}~~} ~}~~}~~~ }~}~~}~}}~}~}}~}~~}~~}~}~~}~~}~~}~}}~}~}~~}}~}~}}~}~}}~}~ ~}~}}~}}~}~}}~}}~}~}~}}~~}~~}~~}~}}~}}~}}~~}~}}~}~~}~}~~}}~~}~}}~~}~~}~~}~}}~}}~}~}~}}~}}~}~}}~}}~~}~}}~}~~}~~}~~                                                                #                                                                                                                                                                                                                                                                                                                               #                                                                                                                                                      + *,#              )    '򀁁    􁀁 񀁀 (          ~"~!~~~ ~~~~~~ ~~~~~~&~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~  ~~~~~~~~~~~~~~ ~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     "                                                                                                                                                                                                                            %                      '                                                  "                                                                                                                                                                                                               &                                                                                                                                            '        9$       낁􂁂󁂁     %    󁀀􀁀  ꁀ   !  0        *~~ ~~  ~~~~~~~~~~~(~~~~~~~~~~~~~~~~~~~~+~~~~~~~~~~~          .               $    &                                                                                                                                                                                                                                                                        %        !                                                                                                                                                 !    $                                                              I=  (           %' $ 4   򁂂ꂁ      }H# '  񀁁󁀁􁀁􁀁  +%>+           4    !       .                                                                                                                                                                                                                                                                 %          ,                                                                                                                                     !                     *^/        f9       󁂂ꂁ    './)   򀁁    o'        !        .3  N                                                                                                                                                                                                                                                                                    , 2 !                                                                                                                                                                    2 <    #    *         ) !                 􁀁􀁀        ).           ~$/  ~~~  ~ ~~~~!~ ~ ~~~~~~~~&~~~~~~~~~~~~~ ~~~          %                                                                                                                                                                                                                                                                                                         !       "                                                                                                                                                                        "              #  (                          %$             "$   +           &       "  ,         ~ ~  ~~~  ~ #~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~  ~ ~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~                                             (                                                                                                                                                                                                                                       )                                                                                                                                                                                                                                                                                                                                                                                   %                   ~ ~~  ~~~~~~ ~~~~~~~~~~~~ ~~~~ ~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~ ~}~~}~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~}}~~}~~~~~~~~~~~~}~}~}~~~~~~~~~}~~}~~~~~~~~~}~}~~}~~}~~~~~~~~ ~~~}~~~~~~~(~}~}}~~~~~~~}~~}~}}~}~}}~~~~~~~~~~~~}~}~}}~~}~}}~}}~~}~~~~~}~~}~~}~~}}~~}}~~}~~}~~}~~~~~~ ~}~ ~}~}~}~~}~}~}}~}~~}~~}~~}~}}~}~}}~}~}}~}~~~~}~ ~}~~}~~}~}~}}~}~~}~}~}}~ ~}~~}~}~~}~~}~~}~}}~}~}~}~}~}~~}~~}~~}}~ ~}~~}~~}~~}~~}~~}~}~}}~~}~}}~}~}}~}}~~}~~}~}~}}~}}~}}~}}~}}~}}~}~~}~~}~}~~}~~}}~~}~~}~}~}~~}}~}}                                                                                                                                                                                                                                                                                                                                                                                                       )                            $                                                                                                            $             ~~~~~ ~~~~~~~~~~~ ~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~~~~~~~}~~}~}~~~~~~~~~~~~~~~ ~}~~~~~~~~~~~~~ ~}~~}~~}}~~~~~~~~~~}~~}~~~~~~~~~~~~~~~~}~}~}~~}~~}~~~~~~~~~~~~~~~~ ~}~}~~}~~~~~~~~~~~}~}~~}~}~}~~~~~~~~~~~~~~ ~}~}~~}~~~~~~~~~~~~ ~}~~}~}~~}~~~~~~~~~~~~ ~}~}~~}}~}~}}~}~}~}~~~~~~~ ~}~ ~}~}~}}~~}~~}~~}~~~~~~ ~}~~}~}~~}}~~}~~}~}~~}}~~~~~~~~~}~}}~~}~~}~}~}~~}~}~~~~~~~}~}~~}~}~~}~}~}~~}}~~~~ ~}~~}~}~}}~}}~}}~}~~}}~~~~~}~~}~}~~}~}~}}~}}~}~~~~~ ~}~~}~~}~}}~~}~}~~}}~~~~~}~~}~}~}~}~}~~ }~~~}~}~}~}~}~}}~}~~} }~~ ~}~~}~}~~}~}}~}~}~}}~~}~}}~}}~}~~}~}~~}~}~~}~}~}~}}~~}}~} }~}~~}~}~}~~}~}~}~~}}~}~}~}}~}}~}}~}}~}~}~}~}~~}~}}~~}~}~~}~}~}}~}~~}~~}~}~~}~}~~}}~~}}~}~}}~}}|~~}~~}}~~}~}~}~}}~}}~}}|}}~}~~}~}~~}}~}~~}}~}}~}}~} }|}~}~~}~}~}~~}~~}~}~}}~}}~~}}~ }|}|}}|~}}~}~}~}~~}~} }~}}~}~~}~}}~~}~~}}~}~}~~}~}}|}~~}~}~~}}~}~}~~}~}~~}~}}|}~}~}~~}}~~}~~}}~}~}}~}}|}|}|}~}~~}~~}~}}~}~~}}~}~} }|}}|}|}|}}|}}~}~}}~}}~~}~}}~}}~}}~}}|}}|}}|}|}||}|}|}|}}|~~}~}~}~}~}~}}|}}|}}|}}|}~}~~}~}}~}~~}}~}~}~}}|}}|}}||}|}~}~}}~}~}~}~}}~}~}}|}}|}||}||~}~~}~}}~}~}~}}~}}~}}|}}|}|}}|}}||}~~}~}~}}~}}~}}|}}|}}|}}|}}|}||~}}~}~}~}}~} }|}|}}|}||}|}~}}~}}|}|}}|}|}}|}||}|~~}~}}~}}~}}|}|}}|}}|}}||}}||}|}||}||}||}~}}~}}|}|}|}}|}|}|}||}}|}|}||}|}||~}}|}}|}|}|}}|}|}||}||}|}||}|}}||}~}|}|}||}|}} | }|}}|}}|}|}}|}}|}|}||}||}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ~~~~~~~}~~}~~}~}}~~ ~~~~}~}~}~}~}~}}~~~~}~~}~}~~}~~}~}}~}}~}~~~~~~~~}~}}~}~~}~}}~}}~}~}}~}}~~~~~~~~ ~}~~}~}}~}~~}~}}~}}~~}~}}~}}~~~~~}~~}~~}~}~}}~} ~~~}~}}~}~~ }~}~~}}~}~~}~~}~}~~}}~}}~}}~}}~ ~}~}~}~~}~~}~}}~~}}~}}~}~}}~}}~} } ~}~}~~}~~}~}~}~}~~}}~}}~~}} ~}~~}~}}~}~~}~}~}~}}~}~~}~~}}|}}~~~}~}~~}~~}~}~}~~}~}}~}~~}~~}~~}~}~~}~~}}~}}~}}~} }|}}||}~ ~}~~}~}~}}~}~}~}~}}~}}~}~} }|}}|}}~}~ ~}~}}~}}~}~}~}}~}}~}}|~~}~~}~}}~}}~}}~}}~} }|}}~}~~}~~}~}~}~}~~}}~}}~}}~}~}}|}}|~}~}~~}~}}~}}~}}~}}|}|}~}~~}~~}~}}~}}~}}~}}|}||~~}~~}~}~}~}~}}~~}}~}}~}~}}~}|} }|}~~}~}~~}~}}~~}~~}~}}|}|}||}|}~~}}~~}~}}~}}~}~}}~}}|}|}|}}|}|}~~}~~}~~}}~}~}~}}|}||}|}|}~~}~}~}~}}~}~}}|}|}}|}|}|}|}||~}~}~}~}~}~}}|}|}}|}|}}||}|}}~}}~}~ }~} }|}}|}}|}|}||}~}}~}~}~}}~} }|}}|}}|}}|}|}|}||}|}}~}~~}}~}}~}|}}|}}||}}||}}|}|}||}||}||~}}~}~}~~}}~}~}}|}}|}|}|}}|}}|}}||}||}~}~}}~}}~}}|}}|}}|}|}||}|}|}|}}||}}||}~}~}~}}|}}|}}|}|}}|}||}| |}||}|}}~~}~~}}~} }|}}|}|}|}}|}|}| |}~}~}}|}|} }|}|}|}||}|}|}}|}||}||}~}}|}}|}||}}||}|}}|}|}}||}|}|}}||}||}|}|}||}}~}}|}}|}}|}||}||}||}||}| |}~}}|}|}|}|}}||}||}||}|}||}}|}|}}|}}|}|}}||}||}| |}|}|}}||}||}}|}|}||}| |{||}|}}|}}|}}||}|}||}||}}|}}||}||}| |{|} }|}}||}}|}}|}} |}||}| |}|}|}}|}|}||}|}||}||{} }|}|}|}|}}||}||}||{||}|}}|}}|}}|}}||}|}|}||}||{||{|{||{||{|}}|}}|}|}|}}|}}|}}|}}||}| |{||{|{||}||}|}}|}}|}||}||}|{||{|{||{|}}|}}|}}||}}|}||}|}}||}||{||{|{||}|}||}||}|}}||}||}||{|{||}|}|}}|}||}||}|}||}||}||{||{|{||{|{||}|}}|}|}||}|}}||}||}|}||{||{|{{||{||{{|{||{||}|}|}}||}|}||}|}| |{||{|{}|}|}}|}||}||}||}||{||{|{{|{|{||{||{|}||}||}|}||}| |{|{||{||{|{{||}|}}|}||}||{|{||{|{|{||{{|{|{{|}|}||}}|}|}||}||}||{|{||{||{|{|{{|{{|{}}|}|}||}|!|{|{{|{{|}|}}||{|{{|{||{||{|{|{{|}}|}||}| |{|{||{|{|{|{|{{|{|{|{{|{|}}|}||}||{|{|{|{{|{{||{||{{ |}| |{||{||{{|{||{|{{|{|{{|{|}|}||{|{|{|{{||{|{{|{|{|{{|{|{{|}||{||{{||{|{{|{{|{ {|{|{|{||{|{|{{|{ {|{|{{||{||{{|{{|{{|{|{{|{{ |{||{|{||{|{{|{{|{||{{|{z{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }|}}|}}|}|}|}}|}}||}||}||{|{|| }|}|}}|}}||}|}|}|}||{||{||{|{} }|}}|}}|}}||}||}}||}||}||}|}| |{||{} }|}}|}||}|}||}||}||{||{|{{|{|~}}|}|}||}|}||{| |{}}|}}|}|}}|}|}|}||}|}| |{||{{||{||{|{} }|}|}||}|}||}|}| |{|{||{|| }|}}||}||}||}|}}|}||}|}|}| |{|{|{||{} }|}|}||}}|}|}||{||{|{|{|{|{|{{|}}|}}|}}|}||}}||}|}||{||{||{||{|{}||}||}|}}||}||}|}}||}|} |{|{{|{|{||{||{}|}}|}|}||}|}|}||}|}}||{|{||{|{{|{{|}|}}||}|}|}||}|}||}}|}||}||{||{||{||{|{|{||{}||}|}||}}|}|}}|}|}|}||{|{|{{|{|{{|{{}|}|}||}| |}||{||{||{||{|{|{||{|{|{{}}||}||{||{||{{||{||{|}}||}|}}|}|}||}}||{|{|{{|{{|{{}|}|}||{|{|{|{|{|{|{|{{|{{|}|}|}}||}}|}||}| |{||{||{|{{|{{|}||}|}}||}| |{|{||{{|{||{|{ {}|}|}||{||{|{||{||{|{|{|{{|{{}|}}||}||}||{|{||{||{|{{|{|{|{|{{|{{|}||}||}| |{|{|{{||{|{{||{|{{|}||{|{{|{{|{{|{{|{{|{{|{{}||{||{|{|{{|{||{{|{{|{{|{{z{{|}||}||}||{||{||{|{|{|{|{|{{|{||{|{|{{|{{z{{|}| |{|{||{{|{{|{{|{|{ {|}| |{|{|{||{{||{{||{{||{|{{z{{zz{||{||{||{|{{|{|{ {z{{z}||{|{||{|{|{{z{{zz|}||{||{||{|{||{|{{z{{z|{||{|{|{|{|{|{||{||{{|{{|{{|{{z{z{{zzy||{||{||{{||{|{|{|{{|{|{{|{{z{zzyzyy||{||{|{||{|{{|{||{|{|{{z{zyzzyyx||{|{{|{||{||{|{|{{|{{|{ {z{{z{zzyyx{||{|{||{|{{|{{|{{|{{z{zyzzyzyxx|{||{||{||{{||{|{{|{{|{zyxyyxx||{||{|{||{|{|{{|{{|{{z{{zzyxyxx|{ |{|{||{{|{{z{zyzzyxyxxw||{|{|{|{|{ {z{{zyzyyxyxxwxxw||{||{||{||{||{|{{z{{z{zyzyyxwxxwx||{|{|{|{|{{|{{|{{|{{z{z{{z{zzyzyyxyxxw|{|{|{||{{|{{z{zyzyxxw|{||{|{{z{zzyzzyxwxxwwv|{||{||{{|{{|{|{|{{z{z{zzyxwv{|{|{{|{{|{{|{|{ {z{z{zzyzyyxxwv|{{|{|{{|{{z{{zyzyyxyxxwvuvv{{|{{|{{|{{z{{z{{z{zzyzyyxwxwwvu{|{{|{{zyzyyxwvwvvuvuu{{|{|{{z{z{zzyxyxxwvuvuu{||{z{{zz{zyzyzyyxyxxwxwwvut{|{||{ {z{{z{{zzyzzyxyxwvwvvut|{ {z{{z{zyzyyxyxxwxwwvwvwvvuvuututt{|{{zyxyxxwxwwvutuuts|{ {z{{zzyxyxxwxwvwvvututtst{{|{{z{z{zzyzyyxwvuvuutsts{{|{ {zyzyyxyxwxwvwwvwvuvvuututts {z{{zz{zzyzyyxwxxwwvwvwvvuvuututtstss{z{zyzyxwxwwvwvvwvvuvuutuuttssrs{{zyzzyzyxyyxyxxwxwvwvvutsrz{{zyzzyxwxwwvwvvuuvuutsrsrsr{{z{zzyzzyyxwvwvvuvuututtsrssrrq{{z{z{zzyxyxxwvwvvutstssrsrrqr{{z yxyxxwwvwvvutstssrsrrq                                                                                                                                                                                                                                                                                                                                                                                           " #%&()|{|{{|{|{||{{|{{|{z{{zz{zzyzyyxwxxwwvvu||{{||{{|{{|{{|{ {zyzyyxwvwvvu{||{||{||{{|{{|{ {z{{z{zzyxwvuvuu|{|{|{|{|{{||{| {z{{z{zzyzyxxyyxwvvwwvu{|{||{|{zyxwvu|{{||{||{|{{|{{|{{|{{z{{zyzyyxyxxwvwvvuvuut{||{|{|{ {zyxwxwxwwvutut|{||{{|{{|{{z{{zyxyxxwwvwvvututt|{{|{{|{|{{z{{z{zyyzyxxwvut{|{z{zzyzyyxyyxwxwwvuvuuts{|{{zyzyyxyxxwxwxwwvututts|{{z{{z{{zzyxyyxxwvuts|{{|{ {zyxyxwwvwvvutuuttsttss {z{{z{{zzyzzyyxyxxwwvutsrsr{|{ {z{{zzyxwvuvuutsrsr{{|{ {zyzyyxwxxwwvuvuutuuttstssr{zyzyyxyxxwvuvuututtstssrsrqrr{{z{{zyzyyxxyxxwxxwwvwvvuvuvuutsrq {zyzyyxyxxwxwwvutututtsstssrsrrqrqq{{zyzyyxyxxwxwwvuvuutsrsrrq{zyzzyxwxwwvwvvuvvuuttsttsrq{zyxyxxwvwvvuvuutuuttsrqrqqpz{{z{z{zzyyxwvwvuvuvuutsttsrsrrqpqp{{zyxyyxxwxwxwwvwvvuvuutuuttsrsrrqpqpp{{zyxwvutusttsrqrqqpo{zzyzyyxyxxwvuvuututtstssrrsrqrqrqqpop{zzyzyzyyxyxxwxwwvuvuututtstssrrsrrqpqppozyxwvwvvuvuutsttsrsrrqpqppozyzzyyxwvuvuutstssrqrqpqqpopoonnzzyxyxyxxwvutuuttsrqpqqpoyxyxxwxwwvwwvvututtstssrqponyyxwxwxwvwwvvutuuttsrqrqqpqqppopoonoonnyxyyxxwxwwvutsrqpqpponmyxxwvwvvutuuttstssrsrrqppopoonmyxwxxwvwvwvvutsttssrrsrsrrqpopoonmxxwxwwvwwvutsrssrqpqppopoononnmxxwvwvvuvuututtsrssrrqrqqponmnwxwwvutututsstssrsrsrrqpqppononnmnnwwvwwvvuvuututtsttssrqrqqpqppoonoonnwwvvwwvvututtstssrqrrqqpoppoononnmwvutuuttstssrqponoonnvwvvuvtuttstssrqpopoonwvvututtstssrqpononnvvutsrsrrqpopoononmmnvvututstssrsrrqponmvutstsrqrrqpqppopoononnmvuutsrqpopoonmvuttsttssrqpqppononnmmnuttstssrsrrqrrqqpopoonononnmntstssrssrsrrqpopoononnmttsrqpqppopoononnonnmmttsrssrrqpoppoonmnmtssrqrqpqqpponmnmntssrssrrqpopoononnmnssrsrrqponsrqpoppoonmsrssrqrqqpqpponsrrqrqpqqppononnmrrqpqpqppopoononnmnmrrqqrrqqpqppopoponoononnmrqqpqqpononnqrqqpopponmqpopoonnonnmqqpopoonoonnm                    "#$%')!"##&''(++-./11246689;=ututuuttsstsrssrrqpopoononnmuuttuttssttssrrqrqqpopoonnmututtstssrrssrrqponmttutsstssrsrrqpononnmntuttsrssrrqqpqppopoonmnnttsrssrqqrrqqpponmnttsrsrrqpqpponmntssrqpqpponnonmnmtssrsrrqpopoonssrrqpqpponmrsrrqrqqponmnsrrqpqppooponnmnnsrqpqqppoppoonmrqpopoononnrqpqpponmqqpopoononnmqpopoonmqpopoononnppqpponoonmnnqpqppopoonmnpopoonmpopponnonnmpopoonpoononomnmnopoononnmnnoononnmonmnnnmnnmnnnmmnnnmmmnm !!##%'()*,,-01234568:;<󹺹󾿾       󴲳                򱲱              󭮮           󠟟      笮                        󳴵 ﴳ󲱲          򮭮 򱲳 𲱲  ʵʵʵʴʴɴɴȴɴɴɵɴȴǴǴǴdzƴų񴵶ų ųijij￾ij ijó ³ò³²²³ ²             nnopqrsstuvwxyz{zz{{|{|{{nmnnopoppqqrstutuuvwxwwxxyyz {|{mnnonoopqrsrsstuvwxyz{|{{|nnopqststuuvuvvwxyz{z{{|{|{{mnopqrqrrstuvwxwxyxyzyzz{|{|{mmnnoopqrstuvwvwxxyz{zz{{|{|{|mnnopqpqrrstuvwxyz{z{{|{mnnopqrstuvwxwxxyyz {mnnonopopprqrrstuvuvvwwxyz{|{{mnonoopqrststutuuvwxyz {|nnopqrsstuvwvvwxxyxyyzz{|{mnnoopqrrsrsstutuuvwxwxxyz{|{mnnopqpqrrststtutuuvwwxyxyyzz{zz{{|{nmnoopqrstuvvwxyz {nopqrstutuvvuvvwxyxyyzz{z{{mnopqrstssttuuvwxyz{nnopqppqqrrstuvwxyxyyzz{z{z{{nmnnopqrqrrstuvvwxyz{nopqrqrrststuuvwxyxzyyzz{nopqrsstutuuvwxwxxyzyzz{z{{nnonoopqpqqrsrssttutuuvwxyz{nmonnoopoppqrrqrsrsststutuuvvwvwwxxyzyzz{z{{mnnoonoppqrstutuuvvwxwxxyyz{nopqrqrrsttuvwwvwwxyzz{z{z{z{nopqrsrrsstutvuvvwxxyxyyz{mnnonoopqppqrrstuvwxyxyyz{nnopoppqqrsrsttuvuvvwxyz{z{{mnnonooppqqprrqrrstutvuvvwwxyz{z{znopqrstuvwxyz{z{{nnopoppqrstuvuvvwxyz{mnnopqrststtutuvuvvwxwxxyz{nmnoopqrsttsttuuvuvvwxyzyzz{{mnnoopoppqqprrsrstssttuuvwxwwxxyyz{mnnonopoppqrstuvwxyxyyzz{mnnoopqrqrrsrsttuvwxwxxyzyzz{mnnoopqrqrrsststtutuuvuvvwwxyz{mmnnopqrstutuuvwxyznmnonooppqrsttuvwvwwxwxxyznnoppqrstuvwxzyz{mnnoppqrstuvwxyxyyzznopqrqrrsststuuvwxyyzmnnoopopqqrstuvwvwwxxyzynopqrqrrssttsttuuvuvvwwxxynnopqrsttutuuvwxxyznnonoppqrststtuvwvwwxynnonoopqpqqrstuvwxyymmnoopqrstuvuvvwxynmnnopopqpqqrstssttuuvwxymnnpqpqqrstuvuuvwwxymnnopqpqqrrstuvwxynopoqpqqrrststtuuvwxynonoopqrstuvwxmnnopqrsrttsttuuvwxymnnopqrqrrstuvuvvwwxnnopoppqpqqrsrstssuutuuvwvwwxxnnopqrsrsstuvuuvwwxnnopqrqrrsstuvwxnnopqrsrststutuuvwxmnopqrqrrsrsttuvuvvwwxnonooppqpqqrstuvuvvwwmnnopqrstutuuvvwmnonooppqrqrrsttuvwvwwnopqrstuvvuvvwnnopqrststtuuvw                                                                             {|{|{||}||}|}||}|} }~}}~}~}~~|{||{|{| |}|} }~}}~~}}~}}~~|{||{|{{||{| |}||}|}|}}|}|}}~}~|{||{||{||}|}|}}|}|}}~}}~}~~}~~{{|{{|{||}||}~}~~}{{||{||{{|{||}||}|}|}}|}|} }~}}~~}~}~~{|{{|{ |}||}||}|}|}}~}}~}~~}~~{|{||{||{||{| |}||}||}||}|} }~}~}}~}}~{|{||{|{||{{||}||}|}}|}|}}|}}~}}~~}~~}}|{|{{|}|}|} }~}}~}}~~}~{{|{{||{|}||}|}}|}}|}}~}~~}~}~~{|{{|{{||{||{|{||}||}|}||}|}}|}}~}~}}~~{{|{||{| |}||}|}|}|} }~}~~}}~}~~{{|{{|{{|{||{||}||}|}}|}|}}~}}~}~}~~}{|{|{{|{| |}|}||}|}}~}~~}{{|{|{{|{{||{|{||}||}|}||}}|}}~}~{|{{|{||{||}||}|}}||}|}}|}|}}~}}~}{|{|{{|{{|{||}|}}||}|}||}|}}|} }~}~{{|{{|{||}||}|}}|}|}}~}}~~}}~{{|{{|{||{{||{| |}||}||}|} }~}}~{||{{||{{|{|{||{||}|}|} }~}}~}~{{|{|{||{{||{||{||{||{||}||}|}}| }~{|{|{|{||{|{| |}|}||}}|}}|} }~{|{{|{|{||}|}|}}~}{{|{{|{||{||{ |}|}| }~}}~}{{|{{|{||{||{| |}|}|}}|}}|}|}}~}}{|{{|{{|{|{|{||{||}||}||}|}}|| }~}~}}{{|{{|{|{|{{|{||}||}|}||}|} }|}}~}} {|{{|{{|{{||{|}||}||}}|}}|}}|} }~}{ {|{{||{|}|}|}}|}}|}||}}|}}~}}{{|{{||{|{{ |}|}|}||}|}|}}||}~}~}}~{z{{|{|{{|{|{{|{| |}|}|}|} }~}~{z{ {|{|{||}||}|}|} }{|{||{||{{||}||}|}||}|}||}}|}}~{ {|{|{||{||{||{| |}|}|}|} }~z{{|{{|{||{| |}|}}||} }~}{{|{{|{|}|}|}|}}~}{z{{z{{|{||{{||{|{| |}|}||}|}|}}z {|{|{{|{||{||}|}|}}|}}|}}z{|{{|{|{{|{|{| |}|}}|}||}|} }z{|{|{{|{|}||}|}|}}|} }z{{z{ {|{|{||{| |}|}}||}|}}| }~zz{z{{|{{|{{|{{|{||}|}||}||}|}}z {|{{|{|{||{||{| |}|}|}|}}z{z{{|{{|{|{|{|{||{||}| |}||}}z{z{{|{{|{{|{{|}||}}|}|}}|}}z{|{{|{{||{{|{|}|}}|}}|}}|}|}}yzyzz{{|{|{|{|{||{||}||}|}|}}|}|}}yz {|{{|{||}|}|}}yz{z{ {|{{|{||{|}||}|}yzyzyz{{|{|{{||{|{||}||}|}}|}}|}}yyz {|{{|{{|{| |}|}}||} }|yyzyzz{ {|{{|{||{||{|{||}||}|}}|} }xyyz{z{ {|{{||{| |}|}}|}|}}|}}|}yyz {|{||{|{{|}||}|}|}}xxyzzyzz{z{{|{{|{ |}|}|}|}||}xyz{z{{|{{|{{|{{|{||}|}}||}|}}xyz {|{{|{{|{|{| |}||}|}}wxyyz{|{{|{||}||}||}|}}xyz {|{|{||{|{{||}|}|}}||}||}}|}}xxyxxyyz{z{{|{{|{{|{||{{||}||}|}}|wxxyyz {|{||{{||{|}|}}||}|}|}}xwxyyz{z{{|{{|{ |}|}||}|}|}xxyz{|{{|{||{{|{|{||{||}|}|}}|}|}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ~}~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~  ~~~~~~~~ ~~}~ ~~~~ ~}~~~~~~~~~ }~ ~~~  ~~~~~~~~~~ ~}}~}~~~~~~  }~}~~~~~~~~~~ ~~}~~~ ~  }~~}~~~~~~~}~~~ ~~}~~~~~~~}~ ~~~~~~~~}~}~}}~~~~~~~ ~}~~~~}~~~~~~~~}}~}~~~~~~~~}}~~}~ ~~~~ ~}~~}~ ~~~~~~~~}~~}~~}~}}~~~~~~~~  }~}~}}~}~~~~~}~}~~}~}}~~~~~~~~~ ~~} ~~~~~~~ ~}~~}~}~~~~~~~~}~}~}}~~}~ ~~~~~~}~}~}}~}~~~~~~}~}~}~ ~~~~~ }~}~}~}~ ~~~~~}~ ~}~ ~~~~~}~}~}~~}}~}}~ ~~~~~~}}~}}~}~~}~ ~~~~~ ~}~}~ ~~~~~~ }~}~~}~}~}} ~~~~~~~~}~~}~}~ ~~~~~}}~}~ ~~~~~~~~~}~}}~~}~}}~ ~~~~~~~}~}}~}~}~}~}~}~~~~~~ }}~}~~}~}~}~~~~~}}~}}~}~}}~ ~~~~~~~~ }}~}}~}}~}~~~~~~~~~}}~}~~}~~}~~~~~ }~}}~}}~}~ ~~~~~~}}~}}~}~~}~~~~~~~~~~~~}}~}}~}~}~}~ ~~~~~~}}~}}~}~}~~}}~ ~~~~~~~~ }~}}~}~}~}~}~}~~~~~~~~~~~~~}}~}~~}}~}~~} ~~~~~~ }~}~}}~} ~~~~~}~}}~}~ ~~~~ }}~}}~}~~}~~~~}~}}~}}~~}~}~}~~~~~~~~}~}~~}~}}~}~}}~}~~~~~~~ }}~}~}~}}~}~ ~~~~} }~}~~}~~}~ ~~~~~}}~}~}}~}~~}~~} ~~~~~ }}~}}~}~}~}~~~~~~~ |}}~}~~}~}}~ ~~~~~ }~}}~}}~}~~}~ ~~~~~~~} }~}~~}~}}~}~~~~ }~}~}}~}~}}~~}~}~~~~~~~ }|}~}}~}}~}~}}~}~~~~~  }~}~}~~}~}~}~}~~}~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򂁂􂁁        􃂃      􁀀        􁀀        􁀀            󁂁       삁                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    􄃄   󄅄        򄅄   셄                              􄃃                                                                                                               񆅅 􇆆                񇆇   󆅅      󆇇 򇆆  򇆆   􆅆  􅆅   񆅆                                                         ,**((,'/#( %#,&## +# !'$$ &  #  !                      􈇇       󈇈             򊉉 􈇈󊉊   􉊇       􇈈 􈇈 񆇆  +-(,-*,'))')&%% + % % "&                             󎍎       􌋌  􍌍    􏐏    󙘙                   񓒓     𝞞             񙘙󛚚                        񥦦           򣢣      򞝞   󭬭                𪩪񦥦                 𯮯    񯮯            񫬫       ´󶵵´                        поξϾϽνͼ̻̺˺ʹɸɷȷȷǷǶƵŶシŵĵĵĵõµ    !"#%'(+,-/134679;<mnnonopoppqppqpqqrqrsrsstutuuvwvwwxwxxmmnopqpqqrsrssttutuuvuvvwvwwxwxmnmnnonoopqpqqrqrrststtuttuuvuvvwxmnnononoopqppqrsrsstutuuvuuvvwvwwxwwmnmnnopoqpqqrsrrsstuvwvwwmnnopoopqpqqrrsrststtutuuvwvwmnnopqpqqrqqrstutuuvuvvwvwmmnnopopqqrqrrsrsststtuvnnmnnononooppoppqrqrsrrststtuvmnnopooppqrsrrststtuttuuvnmnnopqrststtuvumnnmnonoopoppqqpqqrqrrstunnmnnonoopopqqrstutuummnnopoppqrqrqrrsstutumnnopoppqpqrrstummnnoopopqqpqqrsrsststtutnnmnnoopoppqppqqrqrrqrrsstnopqpqqrqrrsrststnnonoopqpqqrsrrssmnmnonoonnoppoppqrqrrsrrssnmnnopoppqqrsrssnmnnopoopqrsrsnmmnnopqrmnmnnonoopoppqpqqrqrrmnmnnonoopqrqqrmnnopqrmnonoonoopqmnmnnonoopooppqmnnonoopqmnnonoopoopqmnonopopoppnmnnonoopoopoopmmnnonnoopomnnonoopononoomnnonmnnomnmnnnmnmnnnmnnm     !"$%')*+..133678;=         !"$'xyyzyz{|{{|{{||{{||{|{||{|{||xyzyzz{z{z{{|{||{|{||{||xyz{zz{ {|{|{{|{||{{|{||{|{{||{|{{|{|xxyzyzyyzz{{z{{zz{{|{{|{{|{|{|{{|{||{{||{|{|xxyxyxxyyz{z{{|{{|{|{||wxyzyz{|{|{|{|{{||{{|{|{|vwwxwxxyzyz{zz{|{|{|{|{{|{{|{|{||wxwxwxxyzyyzz{{zz{ {|{{||{|{{||{{|{{|{{|{|{wvvwxwxxyzyzz{z{ {|{|{{|{||vvwvwwxyxxyyzyzz{z{{|{{|{|{{|{vwxwxxwxxyzyzzyzz{z{{|{{|{{|uvuvvwxwxxyxxyyz {|{{|{{|{|{|{uvuvvwx yz{z{ {|{|{{|uvwvwwxyzyzz{z{ {|{|{{uvuvvwvwwxwxxyxyyz{z{{|{|uutuuvuvvwxyz {|{{|{{tutuuvwvvwwxxwxxyxyyz{z{ {tuvuvvwxwwxxyxyyzyzz{z{{z{{sttuvwxyzyzyy{{z{z{{tuvuuvvwvwwxyxyyz{zz{z{{|{{ststtutuuvwvwwxyz{zz{z{{|{sststtuuttuuvuuvvwxyxyyxyyzyzz {rsstutuuvuvwxwxyxxyxyyzyzz{z{{z{{rstutuuvuvvwxwxxyxxyzyyzz{z{{z{{rrststtuvwvwwxwxxyxyyzyyzz{z{{rststtutuuvuvvwxwwxyxxyyz{z{qqrrsrsststtutuuvuvvwxyxyyzyzz{z{{qrsrsststtuvuvvuvvwxwwxxyz{zz{qqrrsrsstuvuvvwvwxwxxyxyyz{qrqqrrqqrssrsststtuvuuvuvvwxyxxyyzyzyzyzqqrsrsstutuuvuvvwxyzyzzppqqpqqrsrsststtutuuvwxwxxyxyypqrqrrstsstuttutuuvwxwwxxyxyyopqpqqrqrrstuvwxyxoopqpqqpqqrrqrrstuvuvvwvwwxwwxxyxyopoppqrqrrsrsrsststtuttuuvuvvwvwwxwxxyxoopoopoppqppqqrrqrrsrsstuvwxonoopqpqppqqrsrsstssttutuuvuuvvwvwwxwwxoonnoopqpqrqrrsrsstsstutuuvwvwwxnopqpqqrqrrsrsststtstuttutuuvuvvwvwwvwwnonoopqrsrrsstutuuvwnopoppqpqqrqrrstuvuvvwvnmnnonoopqpqqrsrsstsststtuuvuvvwvvmnonnoopoppqrsrrsststtutuuvuvvnnonoopqpqqrqrrststutututuuvuuvnnonopoppqrqrqqrrsrrstssttutuuvmnmnnonnopqpqrqrqqrrsrrstuttuvnmnnopoppqpqqrqrrstsstumnonoopoppqpqqrqrrsrssttsttunnopoppqpqqrqrrqrrsrrsstutmmnnonoopopp qrsrsststtmnnmnnonoopoppqqpqqrsrrstsststnmnnopoopoppqpqqrqqrrstmnmnnonnop qrsrssnmnno pqrqrrsnmmnonoopoppqpqqrsrrsmnnmnnonoopoppqrqqrsmnopqppqqrmnonoopoppqrmnnonoonooppooppqppqqrmmnnonoopoppqrmmnmmnnonoopqpqmmnnopoppqpnmnopoppqpp                            ! #% '                    |{||}||}||}}|}|}||}||}}|}|}}|}}|{|{||}|}}||}||}|}}|}}|}}|}|}}|{||}| |}|}}||}|}||}|}||}}|}}|}}{||{||}||}||}|}|}||}|}||}|}|}}|}}||{||{||}| |}|}||}||}|}|}|}|}}|}}{|{||{||{||}|}||}||}||}|}|}|{||{||{||{||}|}||}}||}|}}|}}||} }{||{|{||{|{{| |}|}||}|}|}||}|}}||}}|}||}|}}{|{{||{||{|{||{| |}||}}||}}|}||}|}||}}|}{{|{||{{|{||{{|{| |}||}||}||}|}||}}|}|{||{|{||{||{|{||}|}||}|}|}|}}|}}||}|{||{||{|{{||}| |}|}||}|}}||{|{||{|{{||{||}|}||}}|}}||}|}|{|{||{{|{|{||{||{||{||{||}||}||}|{|{{|{|{{|{{|{|{||}||}||}||}{{||{|{|{||{{|{{|{||{||{||}|}||}|}{{|{|{{|{|}|}|}||{ {|{|{{|{|{|{||{|{||}||}||{||{||{{|{|{{|{|{||{| |}|}||}|{{|{{|{{||{{|{{||{| |{| |}{|{{|{|{|{{||{{|{||{|{{|{|{{||{{|}||{|{|{|{|{{|{{|{||{|{{||{{|{|{|| {|{{|{|{|{{||{|{||{||{|{|{{| |}||{{|{|{|{{|{|{|{||{|{||{||{|| {| {|{|{{|{|{||{|{|{||{|{|{{|{{||{||{|{|{{|{{|{{|{|{{|{ |{|{|{{|{{|{{|{|{{|{||{|z{z{{|{{|{|{|{{|{|| {|{|{{||{||{{z{{z{{|{|{{|{|{{|{{|{|{{|{|{||{|z{|{|{{|{||{||{{|{|yzz{z{{|{{|{{|{{|{|{yz{z{ {|{{|{||{{||{||{||{||{yyzyzz{z{{|{{|{|{{|{{|{|{||{||{yyzyzz{zz{z{z{{|{||{{|{{|{{|{|{||xyxyyzyyzz{zz{z{{|{ {|{{|{{||{||{|{|{{xyzyyzz {|{{|{{|{{|{|{{|{{|{{|xxyyzyz{z{{z{z{ {|{||{{|{{|{{xyzyzz{z{{|{{|{||{{|{|{{wxxyzyyzyz{{z{{z{ {|{ {|{|xxwxwwxxy z{z{{|{{|{|{{|wxwxxyxyyz{z{z{{z{{|{|{{|wwxwxxyxxyxyyz{z{zz{{|{|{|{{|{|{{vwvwwxwxxyxyxyy z{z{{|{{|{{vvwxwwxwxxyxyyzyzz{z{z{{|{{vwvvwwxwxxyxyxxyzyyzyzz{z{ {|{{vwvvwwxyxyyzyzyyzz{z{{uvuvvwvwwxwwxxwxxyzyzzyzz{z{{z{ {tuuvvuvv wxyzyzz{z{{uttuuvwvvwwxyxyxxyyzyz{tuvuvvwvvwvwwxwxxyxxyxxyzyzz{zz{ {tutuuvwvwwxwxyxxyzyzz{z{sttuvuuvwvwvvwwxyxyxyyzyzyyzz{z{{zsttuttutuvvuvwwvvwxyxxyyxyyzyzz{z{z{sst tuvuvvwvvwxwwxyzyzz{z{zrsstu vwxyxxyzyzz{z{srsstututuuvuvvwvvwxwxyxyyxyyzrsrsststtuttuuvuvvwvvwwvwwxxwx xyzyzzrrssrsrsstsststtuvuuvuvvwvvwwxwxxyxyyzyzzrrststtutuu vwvwwxwxxyxyyrqrrqrrstututuuvuvwvvwwxwwxxyxxyyqrsrrststutuuvuuvuvvwvwwxwwxwxxqrsrssrsststuttuvuvvwxwwxxqrstsstutuutuuvuuvvwvwwx                                                                                                                                                                                                                                                                                                                                                                              #                  }~}}~}~}}~}}~}~}~~}~}~ ~}~~}~}|}}~}}~}}~}~}~~}~}~~}}~}~|} }~}~}}~}}~}}~}}~}~}~~}~}~~}~~}|}}|}}~}}~}}~}}~}}~}}~~}~}~~}~~}~~}~|}}|}}~}}~}}~}}~}}~}}~}~}~}~~}}~}~}|}|}}|} }~}}~}~~}~}}~}}~}~}~~}~~}|}}|}~}~~}}~}}~}~}~|}|}}|}}|} }~}~}}~}}~}~}~}~~}|}|}}|}}|}}~}}~}}~}}~~}~~}}~}}~~}~~}~}~}}|}}|}}|}}|}}~}}~}}~}}~}|}|}}|}}|}}~}}~}~~}}~}}~}~}~}}|}}|}}|}|} }~} }~}}~}}~}~}~}~}}|}}|}}|}}|}}~}}~}}~}~}||}||}|}}|}|}}|}|}}~}}~}}~}|}}|}||}|}||}|}}|}|}}|}}~}}~}~||}||}|}}|}}|}}|}}|}}|}}|}|}}~}|}}|}|}||}}|}|}}|}|}}|}}~}}~}||}|}}|}||}}|}|} }|}|}}|}|}}|}|}}|}||}}|}||}|}}||}|} }|}}~}}~|}|}|}||}|}|}|}|}}|}}|}||} }|}~}}|}||}||}||}|}|}|}||}|}}|}|}}|}|}}|} }|}||}||}|}||}}|}|}}|}|}}||}}|}|}}|}}|}||}|}|}}||}||}|}||}|}|}|}}|}}|}}|}}|}||}||}||}}||}|}}|}}|}|}}||}}|}}|}}|}}||}||}||}|}||}|}||}||}}|}}|}}|}}|}||}||}||}||}||}||}|}|}|}||}|}}||}|}}||}}||}|}| |}|}||}||}||}|}||}|}|}}|}|}|}|}}|{||}|}|}||}||}|}||}|}}|}|}}|}}|}|}|}||}||}}|}|}|}}|}}|}||}}|}|}||}||}| |}|}||}||}}|}||}}|}}{||{|{| |}||}|}|}}||}|}|}}|}|}}|}}{|{|{||{ |}||}|}||}|}||}|}}|}|}|{| |{|{||}||}||}||}|}|}}{||{||{{|{||}||}||}|}|}||}}||}|}|{|{||{{||}||}||}|}||}|}}||}}|{|{||{||{{||}|}||}|}|}||{||{||{||{||{||{| |}|}|}}|}|}|}}||}||{|{||{{| |{||{||}||}||{|{{|{||{||{|}|}||}||}|}|}|}|{{|{{|{||{|{||{|{||{||{||{||{|{{|{||{|{||{|{|{|{||{|{||{||{||}||{|{|{{||{||{||{{|{||{|{||{|{{|{{|{||{|{{|{||{||{||{||}||{|{||{||{|{{|{|}||{|{|{{|{{|{{||{||{||{{||{|{{||{|{{|{{|{{|{|{{|{{||{{|{||{||{||{| |{|{|{{|{{|{|{|{{||{{||{||{|{{||{||{||{|{{|{{|{{|{|{{||{|{|{|{{|{||{|{||{|{||{||{{|{|{{|{|{{|{||{{||{||{|{{|{||{||{||{||{||{|{{|{|{||{||{|{||{||{||{|{|{{|{|{{|{{|{||{|{{|{||{||{|{|| {|{{|{{|{{|{||{{|{|{||{|{|{{||{|{||{ {|{|{{|{{|{|{ {|{{|{||{||{|{{|{{|{{||{|{{|{{|{|{{|{{||{|{|{{z{{|{{|{{|{{|{{|{|{||{{|{{||{|{||{|zz{{|{{|{{|{|{|{||{{||{||{zz{|{{|{{|{|{||{||{|{{|zz{zz{{|{{|{|{{|{|{{|{z{zz{{z{{z{{|{|{{|{{|{|{||{{zz{zz{{|{|{{|{|{{|{{|{|yzyz{z{z{{z{{z{ {|{{||{{|{|{{|{{|{{|{xyyzyz{z{{|{|{{|{|{{yxyyzyyzz{z{z{{|{|{{|{{|xxyyxxyz{zz{zz{{z{ {|{ {|{|{{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        #                                               (         '    +         ~}~"~~~~~~~~~}~~}~~~~~}~~}~~~~~~~~~~~~~~}~~~~~~~~~~~~~~~~~}}~~}~ ~}~ ~~~ ~~~~~~~}~}}~}}~~}~~}~~~ ~~ ~~}~}}~~}~~}~~}~~ ~}~}~~}~}~}~~}~(~~ ~}~}~~}~~}~~}~~~~~~}~}}~~}~}~}~~}~~}~~}~~~~ ~}~~}~}~~}~}}~~}~}~~}~~}~~}~}~~}~}~~}~~} ~}~~}~~}~~}}~}}~}}~}~~}~}~~}~~}~~}~}~ ~}~}}~~}~~}~}~}}~~}~}~}~~}~ ~} ~}~}}~}~}~~}~}}~}~}~}~ ~}~ ~}~~}~~}~}}~}~}~}~~}~}}~~}~}}~}~}~}~~}~~}~~}~~}~}}~}~}~}}~}}~}~}~}}~}~~}~~}~}}~~}~~}~}~~}~~}~}}~}}~}}~}}~~}~}~}~}}~~}}~~}~~}}~}~~}~}}~}~}~~}~}}~}~}~}}~~}~~}~~}~}~~}~}~}}~}}~}~}}~}}~}~}~}}~}~ ~}~}~}}~}~~}}~}~}~~}~}~}~~}}~}~} }~}}~}~}}~}~}~~}~}}~}~~}~}}~}}~}~}}~}~~}~~}~~}}~}}~}}~}}~}}~}}~}~}~}~}}~~}~}}~}~~}~}}|}}~}}~} }~}}~}}~}}~}}~}~~}~}}~}}~}~}}~}}~}~}}~}~}}~}}~}}~}~}~}}~}~}~}}~~}}~}~}~}}~} }~}}~}~}~}|}}|}}|}}~}}~}}~}~}~}~~|!}~} }~}~}~}}~|}|}}|}~} }~}~}}~|} }|}|}}|}}~}}~}~}~~}~}}|}}|}}||}|}}||}|}}~}}~}}~}}|}}|}|}|} }|}}|}|}}~} }|}}|}|}||}|}}|}}|}}|} }~}}~}}|}}|}}|}|}}||}|}}|}#}|}|}|}|}||}}|}|}}|}}|}}|}|}}|}||}||}|}}|}|}}|}|}}|}| }|}|}}|}|}||}|}}||}|}||}|}|}}|}|}|}}|} }|}||}||}||}|}|}|}||}|}}| }|}}|}}|}||}||}|}|}}|}|}|}|}}|}}|} }|}|}||}|}||}||}|}|}}|}|}}|}}|}}|}||}}|}}|}|}|}|}}|}||}||}|}||}|}||}||}}|}|}|}}||}}|}}|}|}|}|}}||}}|}|}||}|}}|}||}||}|}||}||}||}||}}|}||}|}}||}|}}|}||}| |}||}|}||}|}||}||}|}| |}||}|}|}||}||}||}||}||}|}}|}||}| |}|}||}|}||}|}||}|}}|}||}|}|}}|}||}| |}||}||}|}|}||}|}||}|}}|}||}|}}||{| |} |}|}|}| |}||}|}}|}||}||{||}||}|}}|}||}|}|}||}||}}|}}|}|{|.|} |{||{|{|{||}||}||}||}|}||}||}|}|{{||{||{|}|}||}||}||}|{||{||{|{||}|}||}||{||{|{||{||{||}|}| |}{||{||{|{||{||{|{||{||}| |{| |{||{||{|{{|{|{||{||{|{{||{{||{{|{{||{||{||{||{||{||{|{{||{||{|{{||{||{{||{|{||{||{|{|{||{{|{|{||{||{|{||{|{||{||{|{|{{|{{|{||{|{|{||{||{|{|{||{||{|{||{||{| |{|{{|{{|{||{{||{{|{||{{||{|{| |                                                                                                                                                                #                                                    %                                                                                                                                                                                                                                                                                                                                                                                                            "   ) %          %)     !'     ~~~~~~ ~~~~~~~~~~~~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~}~~~ ~~~~~~~~~~~~ ~~~$~~~~~~~~~ ~}2~~~}~~}~$~~~}~ ~}~}~}~~}}~~}~~~ ~}~~}~ ~}~~~~~~}~}~~}~}~~}~~}~~}~~}~}~~}~~}~}~~}~}~}~~}~~}~~}~}~~}~~}~}~~}~}~~}~}~~}~~}~}~}~ ~}~}~}~~}~~}~}~~}}~}}~~}~~}~~} ~}~~}~}}~}~~}~}~}~}}~}~}}~~}~}}~~}~}~~}~~}~~}~}~}}~~}~}}~~}~~}~~}~~}~}~~}~~}}~}~}~}~~}~ ~}~}}~~}~~}~}}~}~~}~}~~}}~}~~}~}}~}~~}~}~~}~}~}~}~~}~~}~}}~}~~}~}~}}~~}~~}}~~}~ ~}~}}~}~}}~}~}~}}~}}~}}~}~~}~~}~}~}}~~}}~~}~~}~~}~}}~}}~}}~~}~}~~}}~}~~}~}~~}}~}~}~}~~}~~}~}~}~}~} }~}}~}}~}}~}~~}~}~~}}~~}}~}}~}~~}~}~}}~}~}}~}}~}~}}~~}~}~}~}~}}~}~}}~}}~}}~}~}}~}}~}}~}~}}~}}~}}~}~~}~}~}}~}~}}~}~~}~}}~}~}}~}~}}~}}~~}}~~}}~}}~}}~}}~}}~}}~}~}}~}}~}~}}~}~~}~~}~}}~}}~}}~}~}}~}}~}~}~}}~}~}~}~}~~}}~} }~}}~}}~}}~}~}}~}}~}~}}~}}~}}~}}~}}~}}~}~} }~}~~}}~}}|}}~}}~}}~}~}|}}|}}~}}~}}~}||}}|}#}~}~}}~}}~}}~}~}~} }|}}|}|}}|} }~}}~}}~} }|}}||}|} }|}|}| }|}}|}}|}!}|}|}}||}|}}|}}|}}|}}|}}|}}|}|}}|}}|}|} }|}|}}|}}|}|}}|}}|}|}}|}}|}}|}}|}}|}}|}}|}}|}}|}||}|}|}|}}|}}||}||}}|}}||}}|}}|}}|}}|}|}||}}|}|}}||}|}||}|}||} }|} }|}}||}|}}||}|}|}}|}|}}|}||}}|}|}||}|}}|}|}|}||}||}||}|}|}}|}}|}}|}}|}|} |}|}|}|}}|}||}}|}|}||}|}}||}}|}}|}|}}|}|}|}|}||}||}}|}}||}|}}|}|}}|}}||}||}||}}|}|}||}|}||}|}|}|}}||}|}|}|}}|}}|}|}}||}||}|}}|}|}}||}||}}|}}|}|}}|}|}}|}|}|}|}||}||}||}}||}|}||}}|}|}}|}}|}|}}||}|}||}}|}}|}||}||}||}||} |}|}}|}}|}||}}|}}|}}||}||}||}||}||}||}|}|}||}}|}}|}||}|}||}|}|}|}}||}||}|}}|}|}||}||}||}|}|}|}| |}|}||}||}|}|}}||}||}}||}|!|}||}||}||}|}||}||}|{|{||}||}|}|}||}|}||}|}||}||}||}}                                                                                               &              (     !                                                                                                                                                                     7      '    '                                                                                                                                                                            !       +       %      '                                        #5  <          "#- ( (       " >  ) 9~;~~~~ ~~~"~~~~~~~~~~~~~ ~~~~ ~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~ ~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#~~~~~~~}~)~~ ~}~~}~~}~~}~-~}~ ~}~#~}~~}~~}~~}~~}~~}~~}~}~~}~~}~~}~~}~~}} ~}~~}}~ ~}~~}~ ~}~~}~~}~~}~ ~}~}~~}~}~}}~~}~}~}}~~}~~}~~}~~}~}~~}~}~}}~~}~}~}~}~~}~ ~}~ ~}~}~}~~}~}~ ~}~~}~~}~~}~~}~~}~~}}~}~~}~}~~}~~}~}}~~}~}~~}~~}}~}~}~~}~}~~}~}}~}~}~}~~}~}}~}}~}}~}~}~}~}~}~~}~~}}~}~}}~}}~}~~}}~~}~}~}}~}~~}}~}}~}~}~~}~}~}~~}~~}~}}~~}}~}}~~}~~}}~}~~}}~~}~~}~}}~~}~~}~}}~}~}~}~~}~~}~~}~~}~}~}~~}}~}~}}~}}~}}~}~}}~}~}}~}}~}~~}~~}}~}~~}~}~}~~}}~~}~}~~}~}}~}~}~}~}~}~}}~~}}~}~}}~}~}}~}}~}~}}~}}~}~}~~}}~}~}}~~}}~}}~}}~~}}~}~~}}~}~~}~}~}}~}~~}}~}~}~}~~}~}}~}}~}}~}~}~}}~~}~}~~}~}}~}}~}~}~}~~}}~}}~}~}~}}~}~}}~}~} }~}}~} }~}}~}}~}}~}}~}~}}~}~}}~}}~} }~}}~}}~}}~}}~}}~}}~}}~}}~}}~}}~}}~}~~}}~}}~}~}}~}~}~}~~}~~}}~}~}}~}}~}}~}~}}~}}~}}~}}~}}~}}~} }~}}~})}~}}~}}~}}~}}|}}|}}~}}|}}|}}|}}|}%}|}}|}}|}}|}%}|}|}}|}}|}}|}}|}}|}}||}|}}|}}|}|} }|}}|}|}}|}|}|}}|}}|}}|}|} }|} }|}}|}|}}||}}|}}||}|}|}}|}}|}}|}|}}|}|}|}||}}|}}|}|}||}|}}|}}|}|}}|}}|}||}}|}|}}|}}|}|}}|}||}||}||}| }|}}|}|}}|}|}||}|}}|}||}}| }|}|}|}|}}|}|}}|}}|}|}|}}|}||}||}}|}}||}}|}}|}|}}|}||}}||}|}|}||}}|}|}||}}|}}|}|}}|}|}}|}}||}}||}}|}||}||}|}|}||}|}|}|}||}|}||}}|}|}}|}||}}||}|}|}||}|}||}||}|}|}|}||}|}}||}|}}|}|}|}}|}||}|}||}|}|}|}||}}|}|}}||}|}|}||}|}||}}||}|}||}|}}||}|}||}||}|}||}||}|}||}|      +                                                                                                                                                             E <  .                                                                                                                                                   %  8   :                                                                                                                                                         B^        '6Z#       Z'  !~2~~8~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~ ~~ ~~~~~~~~~~~~~~~~~ ~~~~~ ~ ~~ ~~~~~~~~~~~~~~7~~~~~}~~~~~~}~~}~4~}~~}~~}~~}~+~}~~}~}}~~}~}~~}~~}~~}~~}~~}~ ~}~ ~}~}~~}~ ~}~~}}~~}~~}~~}~~}~}~}~~}~~}~~}~~}~}~~}~}}~}~~}~~}~}}~~}~~}~}~~}~}~~}~}~~}~}~~}~}~~}~}~~}~~}~~}~~}~}}~}}~~}~}~~}~~}}~}}~~}~}}~~}~}}~}~}~}~~}~}~~}~}~}~~}~~}~}~}~}~~}~}}~}}~}~}~}}~}}~}~}~~}}~}~}}~~}~~}}~}~~}~}~~}~}~}~}~}~~}~~}~}~}}~}~}~}~~}~}~}}~}~~}~~}~}~}~}~~}~}~~}~~}}~}~~}~~}~~}}~}~~}~}~~}~}~~}}~}}~}~}~}~~}}~}~~}}~~}~}}~}}~}~}~}}~~}~}~~}~~}~}~}~~}~}~}~}}~}~}~}~}}~}~}~}}~}~~}~}}~~}}~}}~}}~}~}~~}}~}}~}~}~~}~~}~~}}~~}}~~}~}}~~}~}~~}~}~~}}~}}~}~~}~}}~}}~}~~}}~}~}}~~}}~}}~}}~}}~}}~~}}~}~~}}~}~}~}}~}~~}~}}~}}~~}~}}~}~}}~}}~~ }~}}~}~}~}}~}}~}~}}~}~}~}~}~}}~}~~}~}~}~}}~}}~}}~}~}}~}}~}}~}}~ }~}}~}}~}}~}}~}~}}~}~} }~}~}}~}}~}}~}}~}~}~}}~} }~}}~}}~} }~}}~}~}~}}~}~}}~} }~}}~}E}~}}~}~}}~}}~}}|} }~}*}|}|}}|}}|}}|}|} }|}|}}|}}|} }|}}|}||}}|}}|}|} }|}}|}}|}}|}}|}}|}}|}}||}}|}|}|}}|}|}}|} }|}|}|} }|}}|}}|}}|} }|}||}}|}}|}|}}|}}|}}|}}|}}|}||}|}||}|}|}}|}}|}|}}|}}|}}|}|}}|}||}||}|}||}|}|}}|}|}|}}|}|}}|}|}|}||}}|}|}}|}|}}|}|}}|}}|}}|}|}}|}}|}|}||}||}|}}|}|}||}||}|}|}|}||}}|}||}}||}|}|}|}}|}|}}|}}||}|}|}}|}}||}|}|}}|}||}}|}}|}||}}|}}|}|}||}|}}|}|}|}}|}}|}}|}||}|}|}}|}||}}|}}||}|}||}}|}} |}|}|}|}}||}||}}|}}|}}|}|}|}}|}}|}|}|}|}}|}|}||}|}}||}}|}||}||}||}|}|}||}||}||}|}|}|}|}}|}}|}|}||}| |}||}}|}|}}|}||}|}||}||}|}|}||}|}}|}||}||}||     $                                                                                                                                                                  X ,                                                                                                                                                               , -   S   H                                                                                                                                                                   /        ,   $ ,  0 &      !   %"C((       ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~~~~~~ ~~~}~~}~~}~~~~~ ~~~~!~~~}~~}~~~~ ~~~}~~}~}~~}~ ~}~ ~}~~}~~~!~}~ ~}~}}~~}~~}~~}~~}~ ~}~ ~}~~}~~}~~}~~}~}}~~}~}~}~ ~}~~}~~}~}~}~~}~}}~}~}~}~~}~~}~~}~~}~~}~~}~}~~}}~}~}~}}~}}~~}~~}~~}~}~~}~~}~~}~}}~~}~ ~}~}~}~}~}~~}~}~~}~}}~}~~}~}~}~}}~}~~}~}~}~~}~}~~}~~}~}~~}~}~~}~}~}~}~}~~} ~}~}}~}~}}~}~}}~~}~~}~~}~}}~}~~}~~}~}}~}}~}}~}}~}~}~}}~}}~}~~}~}~}}~}}~}~~}}~~}~}~~}~}~~}}~}~~}~}~}~~}~}~~}~}~~}~~}~~}~}~}}~}~}}~}~}~~}~~}}~}}~~}}~}}~~}~~}~~}}~~}~~}}~}~}~}}~}}~}}~}}~}}~}~}~~}~}~~}~~}~~}~~}~}}~~}}~~}}~}~}}~}}~}~} }~}~}~~}}~}~}~~}~}~}~}}~}~}~}}~}~}}~}}~}~}}~}}~}~}}~}}~}}~}~~}~}}~~}~}}~}}~}}~}}~}}~}~}~}~~}~}}~~}~ }~} }~}}~~} }~}}~}~~}}~}~} }~}}~} }~} }~}~}}~~}}~}}~}}~} }~}~}}~}~~}~}}~}}~}}~}}~}~}}~}}~}~}}~}/}~}~}}~}}~}}~}"}~}~ }~}}|}}~}}~}}~}}~} }|}#}|}}|}}|}}|}}|}|} }~}}|}}|}}|}}|}}|}}|}}|}|}}|}}|}|}}|}}|}}| }|}}|}}|}}|}|}}|}|}|}|}||}}|}}|}}|}|}}|}|} }|}}|}|}}|}}||}|}||}||}|}}|}}|}}|}}|}}||}}|}}|}|}|}}|}}|}}|}}|}}|}|}}|}|}}|}||}}|}|}||}|}}|}}|}}|}}|}}|}}|}|}||}|}}|}}|}}|}||}}||}}|}|}}|}||}|}|}}|}|}|}}||}}||}||}|}|}}|}}|}|}}|}|}}|}}|}}|}}|}||}}|}}|}}|}||}||}||}|}|}}|}|}}|}|}|}}|}||}||}}|}|}|}||}}||}||}|}||}|}}|}}|}|}|}|}}||}|}}|}||}|}||}||}||}||}|}}|}|}||}|}||}}||}|}||}|}|} |}|}|}}|}|}}|}||}|}|}|}}|}}|}||}||}}||}||}||}||}||}||}||}}|}|}}|}||}||}|}||}||}||}||}||}||}||}||}|}|}}||}||}|}|}||}||}||}|}|}||}||}||}|}||}| |}||}||}|}|}||}||}||}||}||}|}||}}||}|}|}}||}|}||}||}| |}||}||}||}||}||}||}||}||}||}| |}| |}||                                                                                                         !                        '        !                                                                                                                                       !                    #  !                                                                                                                                                           '               *                                        "       ''        ~~~~~~~~~~~~~~~ ~~~~~~~~~~ ~~~~~~~~~~~~~~~~ ~}~~~~~~~~~~~}~~}~~~~~~~~~ ~~~}~~~~~~~~ ~~~}~~}~}~~~~~~~~}~ ~}~~}~~~~&~}~~}~~~~~~~~}~~}~~}}~~}}~~}~~~~}~~}~~}~}~~}~~}~~}~~~~}~~}~~}~~}~~}~~~}~~}~~}~}~}~}~}}~}~~}~~}~}~~}}~}~~}~}~~}}~}~ ~}~}~~}~}~}~}}~}}~~}~~}~}~~}~ ~}~}~}~}~}~}~~}~}~~}}~}}~~}~~}~~}~~}~}~}~}~~}~}~~}}~}}~}~~}~}~}}~}~~}~~}}~~}}~}}~}}~}~}}~~}~~}~}~~}~~}~}~~}~}~~}~}~~}~}}~}~}}~}}~}}~}~}}~}~}~}~}}~}~}}~}~}~}}~}~~}~}}~~}~}~}}~}~~}~}~}~~}}~}~~}~}}~}}~~}~}~}}~~}~}~}~}}~}~}~}}~~}~}~~}~~}~}~~}~~}~} }~}~}~}~}~}~}~~} }~}~}~}~}}~}~}~}~~}~}~~}~}}~} }~}}~}~~}~~}}~}~}}~}~~}~}}~}}~}~}}~}~}~~}}~}~~}~}~}~~}~}}~}~~}}~}}~}}~~}}~}}~} }~}~~}~}~}~}}~}}~} }~}~}~~}}~}}~}~}}~}}~}}~}}|}}~~}~}~}~}}~}}~}~}}~}~}~}~}}~}~}}~}~}}~}}~}}~}}~}}~}}~}~~}}|} }~}}~}~}~}}~}}~}}~}}|}|}~}~~}~}~}~}}~}~}}|}}|}|}}~} }~}~}}~} }|}}|}}|}}|}}|}}~}}|}|}}|}|}}|~}~}*}|}}|}||}}~}}|}|}}|}}|}}|}||}~}~} }|}|}}|}}|}|}}|}||}}|}}|}||}||}}|}}|}|}}|}}||}}|}}|}|}}|}|}}|}}|}}|}||}}|}}|}}|}}|}||}||}}|}}|}}|}|}}|}}|}}|}}||}|}||}|}}|}}|}}|}}|}}|}||}|}}|}}|}}||}|}}|}|}|}|}}|}|}}||} }|}}||}|}||}|}|}}|}|}||}}|}||}|}|}||}}|}}||}|}}|}}|}|}}|} }|}|}||}|}}||}|}|}}||}|}|}}|}}|}|}|}|}|}}|}||}|}}|}||}|}|}||}|}}|}|}}|}|}}|}|}||}||}||}|} }|}|}}|}||}|}}||}}|}||}|}|}| |}||}}||}}||}}|}|}|}|}||}||}|}|}|}|}||}||}|}|}}|}||}|}}|}|}||}|}||}|}| |}|}|}}|}}|}}|}|}|}|}|}||}||}|}|}|}}|}||}||}||}||}||}|}|}|}||}||}|}}|}||}||}||}||}|}|}||}}|}}|}||}||}| |}||{||{||}||}|}||}|}|'|}|}}||}||}||}||}||}||}|}|}|}|}}|}| |}||}||{|{|}||}|}||}||}||}| |{ |} |}||}||{|{|{{||{||{| |}|}}|!|{||{||{|{{|{{||}||}||}|}}|'|{|{||{{|{{||}||{||{||{|{||{|{||{|{||{|{||{||{|{|{{||{|{|{{||{|{||{|{||{||{ |{||{||{||{||{||{|{||{{|{|{|{|{||{|{||{|{||{||{||{||{|{||{|{||{||{||{|{| |{|{||{||{|{{|{|{||{|{||{||{{|{                                                                                                                                                                                                     %     2                                                                                                                                                                                                                -                                                                                                                                                                                                                     ~}~~}~}~~}~~}~~}~}~} }~}~}~}~}~~}~}}~}}~}~}~}}~}}~}}~}~~}~}~~}}~~}~}}~}~}~~}~}~~}~~}~}~}~} }~}~~}~~}~}}~}~}}~~}~}~~}~~}~}}~}}~ }|~~}~~}~}}~~}}~~}~}~}~~}~}~~}~}~~}~}}~}}~}}~}~~}~}~}~}}~}~~}~}}~ }~}}~}~}~}~~}}~}~}~}}~}}~}~}~}~}}~} }|}}~~}~}~~}~~}~}}~}}~}~}}~}}~}}~}}|}|}}~}~}~}}~}~}~~}~~}~}~} }~} }|}}~}~}}~}~~}}~}}~}~}}~}}|}|}}|}}~}~}}~}~~}~} }|}}|}}|}~}~}}~}~~}}~}~}~}}~}}~~}}|}}|}|}||}~}}~}}~}}~}}|}}|}}|}}||}}~}~}}~}~}}~} }|} }|}||}|}}|}}~}}~}}~}}~}}~}}|}|}|}}|}|}}~}"}|}}|}|}}|}||}}~}}~}}~}}|}|}}|}|}}|}}|}||}}~}}~} }|}}|} }|}}||}|}|}}|}|}}~}}|}}|}}|}}|}}|}||}|}|}}|}|}||}}|}}|}}|}}|}|}|}||}~}}|}||}|}}|}|}}|}}||}||}|}}|}}|}}~} }|}}|}}|}}|}||}|}}|}|}|}||}|}|}|}}|}|}}|}|}|}|}}|}|}||}||}||}|| }|}|}}|}}|}}||}}|}}|}|}||}|}||}||}|}|}}|}|}}||}||}|}|}|}}|}||}|| }|}}|}||}|}}|}|}||}|}||}|}|}}|}}|}|}|}}|}|}|}|}||}||}|}||}}|}|}|}||}||}||}|}|}||}||}||}|}}|}|}}|}}|}||}}|}}|}||}|}||}|}|}||}}|}|}}|}|}}||}||}||}|}||}}|}|}||}||}||}|}|}||}||}|}}||}|}}||}}||}||}|}}|}}||}||}| |}| |}|}}|}}||}}||}}|}||}|}||}}||}||}|}||}|}}||}|}||}||}|}||}||}| |}||{| |}|}|}}|}|}}| |}||{||{||{||}}|}|}}|}||}||}||}||{||{|}|}||}}||}|}||}||}||}||}| |{||{||{||}||}||}| |}||{|{||{||{|}}|}| |}||{||{||{|}|}}|}|}||}|}||}| |{||{{||{|{|{{|}|}||}||{||{||{||{|{{|{| |}|}||{||{||{|{|{||{|{||}||{||{||{||{||{{||{{||{|{{|}||}||{||{|{|{|{{||{||{||{|{||{||{|{||{||{|{{||{|{||{|{ |{|{|{| |{||{||{||{{|{|{{|{{||{|{{|{||{|{|{|{|{|{{|{|{|{|{||{||{|{||{||{|{|{{||{|{||{||{||{||{|{||{{|{||{|{{||{{|{{|{||{|{|{||{|{||{||{|{{|{{||{|{|| {|{||{|{|{||{{||{|{|{|{{|{{|{{|{|{{|{|{{||{|{|{||{|{{|{{||{{|{|{{||{||{{|{{|{{|{|{| |{|{|{{||{|{{|{{|{{|{{|{{|{|{|{|{||{|{{|{|{|{{||{{|{{|{|{{|{{|{{|{{|{||{|{||{|{|{|{{|{{|{|{{|{{|{{|{{z{{||{||{||{|{|{|{{|{| {|{{|{{|{{|{|{||{||{|{{|{{|{|{{|{|{{|{||{{|{{|{||{|{{z{{|{||{|{{|{|{{|{||{{|{{z{{|{|{||{{|{|{|{|{{|{|{||{|{ {z{z{{z{zz{{|{|{{|{{|{{|{{z{|{||{|{{||{{z{{zz{|{|{{|{{|{|{{z{{z{z{zzy|{|{||{|{{|{!{z{{zzyzy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }~}}|}}|}}|}}|}|}||}|}||}||}||}||}||~}}|}}|}|}|}}||}}|}||}|}||}||}||}}| |}|}}|}}|}||}|}}|}||}|}||}||}|}| | }|}}|}}|}}|}|}}|}|}||}}||}||}|}}|}}|}}||}|}}|}|}||}|}}|}|}||}}|}||}|}||}|}|}|}}|}}|}|}}||}|}|}||}|}| |}|}}|}}|}||}}|}|}}||}||}||}|}| |{|| }|}||}|}||}||}||{||{}}|}}|}}|}||}||}||}|}|}||{|{||{|{}}|}|}}|}||}|}}|}|}||}||}||}||{| |{||{|}|}||}}|}|}|}||}|}||{|{||}|}||}}|}|}}|}||{||{|{||{|{}||}|}||}|}}|}||}|}||}| |{||{||{|}}|}}|}}||}}||}}|}|}||}||{||{||{||{{|{|}||}||}||}||{||{{||{|{{|{||{||{|{||}|}||}||}||}||{|{||{|{||{|{{|{|}||}|}||}|}||{||{||{||{{||{{|}|}}|}}||}||}||{||{||{|{||{|{||{|{{}|}|}||}||}|{|{||{||{|{||{||{|}|}||}||}||{|{||{||{||{|{ |}|}| |{||{||{|{{|{||{|{|{{|{||}|}||}||{||{|{||{||{|{||{|{|{{|{||{|{{|{||{|{|{{|{|{{|{|{||}| |{||{|{{|{||{|{||{|{||{|{{|{|{|{{|{||{{|{||{{|{{||{|{|{|{||{|{|{{|{||{||{ |{|{| {|{{|{{| |{|{||{|{{|{|{{||{||{|{ {|{|{{|{||{|{|{||{||{|{{||{|{{|{|{{ |{||{||{|{|{|{{|{{|{{|{ {|{|{|{|{||{|{|{{||{{|{{|{{|{{|{|{||{|{|{{||{|{{|{|{z{{|{||{||{{|{|{{|{||{|{{|{|{{|{ {z{{|{|{|{||{||{|{{||{{|{|{|{{z{{z||{||{||{|{|{||{|{|{{|{|{{|{ {z{z||{|{{|{|{{|{|{|{{|{{|{z{z|{{||{{|{||{|{|{{|{{|{|{{|{|{{|{ {z{z{zz{||{||{{|{||{|{|{{||{{|{|{|{{zyz||{|{||{|{||{{|{{z{zzyz|{|{{||{|{|{{|{{|{|{z{z{z{{zzy{|{|{{|{{|{{||{|{{|{ {z{{zz{{zzyzyy{|{{|{{|{|{{|{ {z{{z{z{zzyzzyzyyxyx{{|{||{|{{|{{|{{ zyxyxx{{|{{|{{z{zyzyyx{|{|{{z{zzyzyzyzyyxxyyxxw|{{|{{|{{z{zzyzyyxyyxyxxwxxw{||{{|{{|{{z{{z{zzyzyyxyxyxxwxww{|{{z{{zyzyyxyxxwvww{{|{{|{{zyzzyyxyxwxxwwvwv{{|{ {z{z{{zz{zzyzzyzyyxyxyxxwxwwv{z{zzyzyyxyyxwxxwwvu|{{z{zyyzzyzyyxyxwxwwvvwvvuvuuv{{zyzyxwxxwwvwvvuvuu{z{{z{{zzyzyyxyxxwxwxwxwwvwvvuvvuuvuu{z{{z{zz{zzyzyyxyxxwxxwvuvvuut{{z{z{zzyzyyxyxyxxwxwwvwvvuvuut{zyzyyxyyxxwxxwwvwvwwvv utu{z{zz{zzyzzyyxyxxwxwwvwvvwvvutuuttssz zyzyxxyyxyxxwxxwwvuvvuvuut tszzyxyxyxxyxxwxwwvwvvuvuutuuttszyzyyzyyxyxxyxxwxwwvuvuvuutututtstsszyyzyyxyxxwxxwvwvwvvututtsttssrszyyxyyxyxxyxxwxwwvutststtssryxyxxwxxwwvwvuvuututtstssr                                                                                                                                                                                                                                                                                                                                                                                                                      |{||{|{||{|{||{{|{{||{{|{|{{ |{|{||{{||{|{|{{||{{|{|{{|{{z{||{||{|{|{||{|{{|{|{|{|{|{{|{{|{{z{{z{||{||{||{||{|{||{||{|{||{{|{{z|{|{||{||{{||{||{{|{|{{|{|{|{{z|{||{|{||{||{||{{|{{||{{|{{z{{zy|{||{{|{||{{|{||{|{{||{|{{z{zzy|{||{||{{|{{|{|{{|{{|{||{|{{|{|{|{{z{{z{{zzyzyzzy{{|{||{|{|{||{|{{|{{|{|{{z{zzy{||{||{{|{|{||{{|{|{{zyzyyx||{|{|{||{{|{{|{{z{zzyxyyx|{||{|{{||{|{{|{{z{zzyzzyyx{|{|{|{{|{{z{zzyx{|{|{||{||{ {|{ {zyzyzyyxyxxw|{||{|{{z{{zzyzyyxwx{{|{{|{|{{|{{|{{zyxw{||{|{{||{{|{{|{{|{ {z{zzyzyyxyxxwv|{|{|{ {z{{z{zzyzzyyxyxxwvwvv{|{|{|{{|{zyzyzyyxwxxwv{{|{|{ {z{{z{zzyzyyxwxwv|{{|{{zyzyzyyxyyxxwvuvu{{z{z{{zyxwxxwwvuvuv|{{|{{zyzyyxyxxwxwxwwvwvuvu{{|{ {z{{zzyzyyxyyxyxxwxxwvwwvvwvvuuvvuu{|{|{{z{{z{{zyzyzyyxwxwwvwvuvuut{z{z{{zzyzzyyxyyxxwxwwvwwvwvvuvuutututt{{z{{z{zzyzyyxyyxwvuvuututt{z{{zyzyxw vututts{z{{z yxwxwxww vututts{z{{z{{zzyzyzzyyxyxwxwwvwvvuututtstt{{z{zz{zyxyxxwvwvvuvuututts{z{{z{zyzyzyyxwxwwvwvvutsttsz{z zyxyxxwxwwvwvvuvvutsttstssr{z{zzyzyyxwv utsrssrrzyzyyxyxxyxyxxwxwwvwvwvvuvvuutstsstssrzyzyxyyxxwvutsttsrqrqqyyxyxxwxxwvwwvvuvuutuuttsrsrrsrrqrrqqzzyyxwvuvvuutstssrsrqyxyxxwxwwvwwvuvututtstssrqrqqyxxyxxwxwwvwvwwvvutstssrsrrqrqrqqppqqxxwvwvvutstssrsrrqrqqpxwxwvwvwvvwvvuvvuutuutstsrssrrqrrqqpqppxwxwwvwwvvutstsststssrsrrqpqppooxwvuvuutstssrssrrsrrqqrqqppqppopoxwwvwwvvututtstssrqrrqrqqpqqppowvwvvuvutuuttsrsrrsrrqrqrqqpqppoppoonvuvvuvuut srqrrqpqpponwvutstssrsrrqrrqrqqpqponoonnwvvuvvuutststssrsrrqpqppopoononnvuvuvvuututtsrssrrqrqqpopoonvuutuuttstssrqrqqppqppopoppoononnmnmuutuutts rqpopoononnmutuututtssttssrssrrsrrqpqqpopopoononnmutsttssrsrrqrqqpqpoppopoonnonnmnnmntuutstststssrsrrqpqppononnmmt srqpqpopoononnmnmtsrsrrqqrrqpqqpqpponmnmntsrqrqqpqqponoonnmnnstssrqrqqpqqppopoonoonnmnsrsrrqrrqpoppoononmsrqpqqpqqppononnmrsrsrrqrqqpqqpponoonnmnrqrqqpqpponmnnrqrqqrqqpqppopoonmnmm                                                                                  !$&')+,/125689<{z{{zyzzyyxwxwwvwvwwvvututtsrqrqqpzz{zzyyzyyxwxwwvwwvvuvuutsrqrqrqqpzzyxyxxwvwvvutstssrqrqqp{zzyxwxwvvwvvutuuttsrqp yxwvuvuutsttrssrsrrqpzyxyxwxxwvutsrssrrqrqrrqpqqppopyyxyxxwvutsrqrqqppqppooyxyyxwxwwvwvvuvvutuuttsttsrsrrqpopooyxwxwwvvuvvuututtstssrqrqqponyxwvuvuututtsttssrqrqqpqppoxwvwvvuvvuutstssrsrrqpononxxwvwwvuvuututtsrqpqppoppoonwxwwvvwwvvuvvuutuutsrsrrq ponwvwvvuvuututtsrqrqrqq pononnwvuvuvvututtstssrssrrqrrqpqqppononnmwwvvutututtsrssrrqrrqqpqqppopoononnmvvuvuututtsrqpopopoonmvuvuututtstssrqrrqqpqppoppoonoonnmvvututtstssrsrrqpqqppopopoonnvutstssrsrqrrqpqppopponmututtstssrsrsrrqpqppqpoononnmnnuututtststssrqrqqpqppopoononnmuuttuttstsstssrqpqppopoonmututtsttsrssrrqpopoonmnnttsrsrrqrqqpqqpponmntsttsrqrqqpqppononntsstssrqrqqpqppononnmtssrsrrqrqqpqpqppopoonoonnstssrqpqppononnmsrssrrqrrqpqqpqpponoonmnnmmrrqpqppopoonmsrqpopponmnmmrrqpqqppoppoonoonnmrqqrrqqpqpponmrqqpononnmqrqppqpqppopoononnmpqqpqppopoonmnpqppoppoonoonnmnpqpponmpopoonoonnmnnpononnmnnpoonmnmnonoonnmonoononnmonoonnmnnoonnmnmmnnmnmnmnnnm     !#%()*-/13468:<*,..123569:< popoonmponmpponmppoopoonmnmnononnmnoonmnonmonmonnommnnonnmnnnmmmm+,-.013479:; 򽼼ﹺ󾿾󽾾   󴵵    봵                                             󬱱󫬫             򭮭          򫪫   ꫬ                񝜝  󞝞   󦥥   򦥦          󦧧     򫪪      󮭮      󩨩   󽼽 ﶵ     ؿ׿׿׿־ֿֿվ־վսԽԼӽԼӼӼӼһһһһһѺ򽾾ѹϸиϸϸϷϸϷ   """"##$$$%&''('((())**,+,-...///001212243556576878899mnnopqpqqrstuvnmnoopqqrstutuuvvwvnopqrstuvuuvvmnnonoppqrqrrstutuuvwmnnopqrstuttuuvnnopqrstuvuvvmnnopqppqqrrstuvnnonooppqrsrsstuvmnopoppqrrstuvnnopqppqqrrstutuumnopoppqpqqrrstuvunmnoopqrstutuuvnnmonoopoppqrrstuvnnopqrstumnnonooprqqrrstumnnoopqrsrsstumnopqrstumnnopqrsrsststtunnopqrstssttmnnonnpoppqrqrrstuunnopqrststtmnnonooppqrstmnnopopqppqqrstnmnonnoopqrstsnopqrsrrsnmnnopqpqqrsrssnopqrsnmnnoopqpqrrstmnnopqpqrrqrssnmnonoopqrsmnopqrsnnopqrsmnopopqqrsnopqrnmnnopqpqqrsnnopqrmnnopqpqrrsmnnoopqrnnonoopqrmnopqrmnnopqrmnnoppqpqqrmnnoopoppqpqqmmnnooppoppqqrmnnopqmnnopqqnmnoopooppnopqqmnnonnpoppqpmnnopqmnnonooppqmnmnnooppnopmnnopmnnonooppnopnnonmnnonomnnommnoonmnnoomnnonmnn  !"!##$$$$%&&'&'()(()*+*++,--...0/0121232345555778888::                              wxwxxyz{|{{|{{|{{|{||{||}||}|}||}||}|wwxxyzz{z{z{{|{{|{{||{|{|{||}wxyz {|{{|{{|{||{||{||}||}||}||}}wxyzyzz{z{{|{{|{{|{{|{{|{|{{| |}||}}|}vwxxwxxyz {|{{|{||{||}|vwwxxwxxyyz {|{{|{|{|{| |}|}||}|wxyz{|{||{|}|}}||}|vwwxyz{z{{|{{|{||{|{||{| |}|}|}}vwxyxyyz {|{{|{|}|vwxyzz{zz{ {|{{ |{||}||}|}|}|uvvwwxxyxxyzz{z{{|{{|{{|{ |}||}||vwxyzyz{ {|{{|{{|{|{| |}|}}|vuvvwwxyzyzz {|{{|{|{| |}||}|}}|}}uvvwxwwxyyzyzz{ {|{{||{|{| |}|}}|}vvwvxwwxxyyz{z{{|{{|{{|{{|{||{| |}|}}|}|uuvvwxwxxyz{z{{|{|{|{{|{|{| |}||}||uvwvwwxxyz{z{{|{|{||}||uvuvwvwwxyz{|{{|{|{{||{{|{|}||}|}}uvuvvwxyzyzz{{z{{z{{|{{|{{||{|}uvwxyxyyzz{|{{|{|{||{||{||}|}}||}||uuvwxyz{z{{|{{|{|}||uuvwxwxxyz {|{|{{|{|{||}|}||}|tuuvwxyz{ {|{|{{|{||{||}||}|tuuvuvwwxyz{|{{|{|tuutuuvvwxyz{z{{|{|{|{||{| |}ttuuvwxyxyyz{|{{|{ |sttuuvuvwwxyz{|{{|{{||{|{||{||{||}|}||ttuvwxwxxyyz{|{|{||{||{||{|{| |}ssttuuvwxwxxyz {|{||{|{||}||sttuvuvvwwxyz{z{z{{|{{|{|{|{|{||stuuvwxxwxxyz{z{ {|{|{|{| |}||sttuvwxyz{|{{|{|{||{||{||}||rttuvwxyxzzyzz{|{{|{|{{||{||{||{||ststtuvuvvwxyz{|{{|{||{|{||rssttutuuvwxyz{|{{|{|{{||{||{|{||stsuutuuvvwxyz{|{|{|{||{||rstuvwvwwxxyxyyzz{zz{{|{||{||{||rsrsttutuuvwxxyz {|{|{|{|{||rstutuuvuvvwxyz{zz{ {|{{ |rsrstssttutvvuvvwxwwxyyz{z{{|{{|{{|{{|{|{|{||rsrsststuuvwxyz{z{z{{|{{|{{|{{|{{|{{||{||rrstutuuvwvwwxwxxyz{|{||{||{|qrrstuvwxxyzyzz {|{{|{|{{|rsrsttutuuvuvvwwxwxxyyz{|{{ |qrrstuttuuvxwwxxyyz {|{|{{||{||{|qqrstuvuuvwxyz{z{|{{|{||{{||qrqrrstuvwxwxxyyz{|{{|{||{||qrstutuuvvwxyyxyzz {|{|{||{{||{{|qqrstuvvwvwwxxyxyyzz{z{{|{{||{|{{|{||qrstuvwxyxyyz{z{{|{{|{|{||{||qrstutvvwxwxxyz {|{{|{{|pqpqqrsstuvvuwwxyz{|{{|{{|{||pqqrstuvwvwwxwxxyyz{|{{|{|{||ppqqrstuuvwxyz{|{{|{{|{{|{|{||{|{pqqprrstutvvuvvwwxyz {|{|{||{||{|ppqpqqrstuvuuvvwwxyxyzyzz{z{{|{{|{||{ppqqrqrrstuttuuvwvvwxxyz{|{|{|{||{ppqrstutvuvvwxwxxyzyzz{z{{|{|{||{||pqrstuvuvvwxyz {|oppqpqqrsrssttuvwxwwxxyz{z{{oppqrrqrrstutuuvwxwwxyyzyzz {|{|{|opoppqqrstuuvwxyyzyzz{|{ {opqrststtuvwxyz {|{{|{|oopqrqrrstuvwxwxxyz {|{|{{|{                                                                                                                                                                                                                                                                                                                                                     }~}}~}~}~~~~~~~~~}~}}~~}~}~~~~~~~~}|} }~}~~}~~}~}}~~} ~~~ }|} }~}}~}~~}~ ~~~~~~~~ }|}}|}}~}~}~~}}~~}~~} ~~~~~}|}|} }~}}~~}~}~~}~~~~~~  }~}~~}~}~}~}~}~~}~~}~ ~~~~~~}|}}|} }~}~}~~~~~~~|}|}}~}}~}}~}~ ~~~~~~~~~}|}|}}|}}~}~}~}~ ~~~~~}|}|} }~}}~}~~~~~~}~}~~~~~~}||}|}}~}~}}~~}~ ~~~~~~}}|}}~}}~}~~~~~ |}||}}|}}~}~~}~}~}~~}~~~~~~~~~~~~||}|}}|}||}~}}~~}~}~ ~~~~~~}|}}|}|}|}}~}}~}~~}~}~}~~}~}}~ ~~~~~~~||}|}}|}}~}}~}}~}}~~}~~}}~}~~~~~~~~}}||}|}|}|}}~}~}}~}~} ~~~~~~~||}}||}}|} }~}}~}}~~}~~}~~~~~}||}}|} }~}~}~}}~}~~}~ ~~~~}|}}|}||}|}}|}~}~}}~}}~}~~~~~~~~|}}||}||}}|}}~}~}}~}}~}~~}~}~}~ ~~~~~}||}||}|} }~}}~}~}~~}}~}~ ~~~~~|}|}|}}~}~}}~}}~ ~~~~~|}|}||}|}}|} }~}~}~~}~~~~}}|}}~}}~}~}~~}} ~~~~~~||}|}}|}}|}}~}}~}~~}}~~~~~|}|}|}}| }~}~~}~~} ~~~~|}}|}||}}|}}|}~}}~}~}}~}~}~~}~~~~~~~~~||}|}}|}}|}}~}}~}}~}}~}~~}}~~}}~~~~~~}||}|}}|}}|}}|}}~}~}~~}~}~}~~~||}||}|}||}|}}~}}~}}~}}~~}~~}}~~~~~~~~||}|}|}||}|} }~}~}}~~}~}}~ ~~}||}|}||}|}||} }~}~}}~}~~}~~}~~~~ |}|| }~}}~}~}~}~}~~}}~~}~~~~~||}| }~}~}}~~}~}~~~~~~}||}||}||}||}~}~}~}}~}~}~ ~~|}|}|}|}}~}}~}~~}}~}}~ ~~~|}||}|} }~}}~}}~~}~}~~~|}|}|}}|} }~}}~}}~~}~}~ ~~||}||}|}||}|}|}}~}~~}~}~~}~~~~||}|}||}|}}|} }~}}~}~}}~}~~}~~ |}||}|}}~}}~~}~ ~~~~~{||}||}|}|}}~}~}}~}~~~||}||}}||}||} }~}}~}~}~~~||}||}}|}||}~}~}}~}~}}~~~~{||}||}|}||}}|}}~}}~}~}~}}~~}~ ~ |}||}|}}||}}|}|}|}}~}}~}~}~~ |}||}|}||}|}|}}|}}~}~}}~}~~}~~}~~~||}||}||}||}||}|}|}||}}~}~}~~}~~}~~}~}~~~~| }|}~}~}}~}~}~~}}~|{||}||}||}||}|}|}}|}}~}~}}~}~}~ ~|{{||}||}||}||}}~}}~~}~}~~}~~ |}|}|}||}}|}|} }~}}~}}~}~~|{| |}|}}|}}|}}|}}~}}~}}~}} ~{||{||}|}||}}~}}~~}}~~}~~ |}||}|}|| }~}}~}}~}~}} ~|{{| |}|}||}}|}|}}|}}~}}~}}~}~}~ ~|}|}|}||}|}}|}}||}}~}}~~} ~|{||{||}||}||}|}}|} }~}~}~}}~}~}~~}~~{|{|{|{| |}|}|}|}|} }~}~~}}~}}~}~}~~|{ |}|}||}||}|}}~}}~}~}~~{||}|}}|}|}}|} }~}~}}~}~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   􁀀       ~  ~ ~ ~~~~ 􁀀~~ ~   ~~ ~ ~~ ~ ~~~ ~~~~~~ ~~ ~~~~ ~~~~~~~~  ~~ 􀁁~~~ ~~~~ ꁀ~~~~~ ~~~~~ 끀~~~~~~~ ~~~~~~~~~~ ~~~~~~~~~~ ~~~~~ ~~~~~~~~~~~  ~~~~~~~ ~ ~~~~~~~~~~  ~~~~~~ ~~~~~~~~ ~~~~~~~~~~~~~~~~  ~~~~~~  ~~~~~  ~~  ~~~~~~ ~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򂁂     򃂂       򄃄򄃄 򁂂          򂁂         󃂃          򂁁   񃀀                                                                                                                                                            􅄅󆅆       􆅆 󅄄  􆅆        򄃄           򄅅         􅄄        􄃄   򃄄 򅄅                                                                                                                        􈇈  􇆇                         󇆆  󈇈  󇆇                                                              B|<;;:;;x>4377;4784503*, (/.,,*++%)&(!) "!     􉊋     􏈈   򊉉                         򌋈     􇈇 B87<7t58657:09/42,-16.+3*(& / ( *.#* )& )$                  󏎏   񐏏       𐏏   󏎎                      锕                힟       󞝝                  󧦧  󧢡               񢡡        󟠠       󪫪   󨩪򪩪                                               򱰰  񮭭      𭬬󭮮     쬫     󴳴   񵴵 쳴                              οο̼ʼ˼ɺɺȹǹȸǸƷŷŷŶŶ򾽾񺹹õµ     ̿˿ʾʾʽɼȻȻǺǺƺƹŹ)*-02458:<> ?mnonoopqmnnonnopmmnnopoomnnonoonoommnnonoommnmnoonoomnmnnmnmnnnmnnmnnm)+,/24689<= ?          "#&),/0478<pqpqqrsrstssttutuuvuvvwvwwxpqpqqrsrrsststtuvuvuvvwvwxwxwwppqrsrststtutuuvuvvwvvwwxwppoppqppqqrqrqrrsrsststtuvwvwwopoppqpqrrqrrsrsstsstuttuuvuvvwvoopqppqrqrrstst tuvuvvopqppqqrsrrstssttutuututuuvuvvnoonoopqpqqpqqrsrstsstuvuvvnoonoopoopoppqpqppqqrsrsststtuttuuvuunonoonoopqppqqrqqrsrsstutumnonnoonopoppoppqppqpqqrsrsstutuunmnnonoopoopqpqprqrqqrsrsstummnonnoopoppqppqpqqrqrqqrsrrstsstssttmmnnopoopqppqrqrrsrrsststtnmnnonoopoopqpqpqqrqrrqrrsrsststtsnmnnonopqpqqpqqrqrqrrsrrsrsstnmnmnnopopqppqqpqpqqrsrssrsmnmnnop qrqrsrsmnnmmnnopoppqpqqrqrrsrrmnnopoopqppqqrqrrmnmnnonoonoopqppqqpqqrqqrmnonoopqpqqrmnmnnonoopopoppqppqnmnnonoopoopqpqqpqpqqnmnnononoopoppqnmnnonnonoopopqmmnonoopopqnnmnnonoopoppnnonnonoopoonmn nonopoomnmnnomm nommnonnmnnmnnnmnmnnnmn          !$&( +/0379<                            %(+.359>xyxyyz{zz{{|{|{{|{{ xyzyzyzz{zz{z{{wxwwxwxyxxyzyzyyzz{z{{|{{xwxwxxyxyyxyyzyzz{z{z{{z{ {|{{wxwxyxyxyyzyzz{z{{|{vvwwxyxxyxyyzyzz{vwvwwxwwxyxyyzyz{z{{z {vwxwxxyxyyzyzyzz{z{{z{{uvwvwwxwxxyxxyzyzz{z{{zuvuvvwvwvvwvwwxwwxyxxyxyyzyzz{z{z{{zuuvuuvvwvvwwvwwxwwxwxx yzyzyyz z{zuuvuuvvwvwwxwxxyxxyyxyyzyz z{utuuvuvuuvwvwwxwwxyxyxyxyyzyzz{z{tt uvuvvwxwxyzyyzztutuu vwvwwxwwxwxwxxyxyxxyyzyzzststt uvwvwwxwwxyxxyxyxyyzyysstssttuttuuttuuvuvvwvwwxwxxyxyxxyxyyzsstststtuttuu vwvwwxwx xyxyrrsststtutuuvuuvwvwwvvwwxwxxwwxyrrstsststtutuutuvuuvvuvvwvwxwxxyr ststt uvu vwvwwxwxxwxxqrrststtuttutuuvuvvwvvwwxwxxrsrsrrsrsststtutuuvuvuvuvvwvwwvwvwwqrrqrrsrrsrsststtsttutuuvuvuuvvwvvwwvwvwwqrqrrsrrsrsstsstuvuuvuvvuvvwpqqrqrqrrsrss tututuuvuvuvvwvvwvqqpqpqqrqrqrrsrrsrsstststtutuutuuvuvvpqppqrsrrststtuttuuvpqpqqrqrqrrsrs stsstututuuvop pqpqqrqrr ststtsttupopoppoppqrqrqrsrrsrrssrsststtutuuttuuttuoopoppoppqpqqrqrsrsrsstsstuttuttunoopoppoppqpqrqrsrsrsststtutnnopop qrqqrsrrststssttnononnopopp qrqrrsrrsstssttsstmnnononnonoopopoppqpqqrqr rsrsstssnmmnnonoopopqppqpqpqqrqrrsrssrssnnmnopoppoppqppqpqrqqrqqrsrrsrssmnmnn opqpqqrqrrsrsmnononnopop pqrqqrqrrqrsrnmmnnmnnonoopoppqppqqpqrqrrqrrqrrmnmnnopoopqppqqrqrqrrnmmnn opoppqpqqrqmm nopoopoppqpqppqqnmmnonopopoppoppqpqqmmnonoopoppoppqnnmnmnnonnoonoopopooppnmnnonoononnoopopoponmnnmnnononnonooppopopmnmnnonoo  mnmmnnonnoonmnnonnomnnmnnononmmnmmnmn nnmmn n                           !%'+.26:>(                                            !|{|{{|{|{{|{|{||{| |{|{|{||{|{|{||{|{||{{||{|{{|{|{{|{|{{|{|{||{||{||{{|{|{||{||{||{{|{{|{|{{|{{|{|{|{|{{|{{||{||{||{||{|{{|{{|{|{{|{||{|{|{|{|{{|{{|{| {|{{|{{|{|{{|{||{|{|{{|{|{{|{||{||{|{|{|{|{|{||{{|{{|{||{||{|{||{|{{|{{| {|{{|{||{||{{|{|{|{{|{|{|{{|{|{|{{|{{|{||{{|{{|{|{{||{|{|{|{{|{||{{|{|{{||{||{|{{|{{|{{|{|{{|{|{{||{{|{|{{|{{|{|{{|{|{|{|{||{{||{|z{{z{{|{{|{{|{|{|{{|{||{||{z{{z{{|{{|{{|{|{{|{|{{|{|{||{{zz{{z{{z{{z{{|{{|{ {|{{|{{|{zz{zz{{z{{|{{|{{|{|{{z{z{{z{|{|{{|{{yzz{z{|{{|{{zyzyz{z{{zz{{z{{z{{xyyzyzyzyzz{z{z{{|{{|{xyyzyzzyzzyzz{z{{z{{zz{{z{{z{{|{{xyxyxyyzyyzyzyzz{zz{z{ {z{{xyxyyxyyzyzzyzz{z{z{{z{{z{{z{{ xyzyzyzyzyzz {z{{z{{z{{wxwxxyxyxyyzyzz{z{zz{{zz{z{{z{{zwwxwxxyxyyzyyzzyzz{zz{z{zz{{z{{wxwwxxyxxyxxyxyyzyyzyzzyz{zz{{z{{z{{wvwxw x yzyyzzyzyz z{z{vwvvwvwwvwxw xyxxyyzyzzyzz{z{zz{vvwvwwxwwxwxyxyxxyyzyzzyyzz vwvwvvwwvwwxwxwxxyxyxxyzyzuvuvuvuvvwvwvwwxwxxwwx xyxxyyzyyzuuvuuvwvvwvwvwwxwwxwwxyx yuvuu vwvvwwxwwxyxyxyxyytuvuuvuuv vwvwwxwxxyxxyyxyuttutuuttuuvuvvwvwwvwvwwxwwxwxwwxxtsttuttutu uvuvuvuvuvvwvw wxwxxtsttutuutuutuuvuuvuuvvwvwwxwwxxsststtutututuuvuvvuuvuvvwvwwvwwvwwxrsststtuttuuvuvuuvwrsrrsstsstststtutu uvuvvuvvwvvwrsrrsrsstss tutuuttuuvuvuvuvuvvwv rsrsststststtsttututtutuutuuvuvuuvuvuvvrqrrsrrsrs stss tuvuuvuvuuvvrqrrqrrsrrsrsstsstututuutuutuuvuuvqrqqrqrrqrsrsrsstststtsttuttututu u qrqrsrsrrsrrstsststtutuutupqqpqqrqqrqqrrsrsstsstuppqp qrqrsrr ststtpqrqrqr rsrs stssttsttsppoppqppqqpqqrqqrsrsrststtspopopoopqpqqrqrrqrrqrrqrrsrrs stsoopoo pqpqqrqrrqqrrsrrsrssrssonoopqppqpqpqqpqqrsrsrrsrsnonoopoppop pqpqqpqqrqqrqrrsrsrnnonnonnonoopooppqpqqpqrqrqqrqrrnmnnonoopoppoppopoppqppqpq qrmnnmnnonnonoopoopoppqpqpqppqqpqqrqnnmnnononoonnoonoopoo pqpqqmmnnmmnnonoopoopoppoppqpqqpqqmmnnmnono opoopoppoppqpqnmnmnmnnononononoonoopopoopop pmnnmnnmnnononnonoopoopoopoopponmmnmmnnmnnono opopoopnnmmnmmnnononnoonoopopomnnono                              '                                                          !   6*#                                |{||{||}||}|}||}||{||}|}||}}||}| |{||{|{{| |{||}||{||{||{|{|{||{||{||{||}||{|{{||{{|{{|{||{|{|"|}{||{|{||{|{||{||{{|{|{||{|{||{| |{|{|{| |{||{||{||{|{||{||{||{||{||{|{||{||{|{{|{||{|{|{||{||{||{||{||{|{|{||{||{|{|{|{{|{||{|{||{|{||{||{||{|{||{||{|{|{{|{{||{|{{||{|{|{|{|{||{|{||{{|{|{|{{|{{|{{|{|{||{|{||{|{{|{|{|{||{||{{|{{||{{||{{|{|{||{|{{|{{|{{|{{|{||{|{||{|{||{|{|{{|{|{{||{{|{{||{{|{|{||{|{|{||{||{|{{||{||{||{||{|{||{|{{|{|{{|{||{|{{|{||{||{||{|{|{{|{||{|{||{{|{{|{|{|{{|{|{||{|{||{|| {|{{|{{||{{|{{|{{|{|{{||{{|{|{{|{{|{{|{|{|{|{|{||{{|{{|{|{|{{| {|{|{||{{|{{|{|{{|{{|{|{|{|{{|{{|{{|{{||{{|{{|{{|{||{{|{{|{||{|{ {|{ {|{{|{{|{{|{{|{{|{{|{{|{{||{|{|{{|{{|{{|{{|{{|{{|{{|{{|{|{ {|{{|{{|{{|{{|{{|{{|{{|{|{${|{{|{{|{{z{{z{{|{{|{{|{{z{z{{|{{|{|{{z{z {z{{|{{|{{zz{{zz{z{{z{{|zz{z{z{zz {z{{zz{{yzzyzz{zz{z{z{{z{z{ {z{{z{{yzyzyzzyzyzz{z{{z{z{{zz{{z{{z{{ yzyyzyzzyzz{zz{zz{z{ {z{{z{{z{y yzyzzyyzzyzyzz{zz{z{z{zz{{z{{z{{z{{xyxyxxyxy yzyyzyz z{zz{zz{{z{{z{xxyxyyxxy yzyyzzyzzyz z{zz{zz{z{zx xyxyx yzyzyyzyzzyzzyzzyzz{wxwxwxxwxxyxxyxyyxy yzyzyzyzzyzzwxwwxwxxwxxyxyyxyxxyyzyzyzyvwwvwwxwwxwwxwxwxxyxxyxxyxyxxy yzyyzvwwvwwvwwxwwxwwxwxxwx xyxyxxyxxyyxyyvwvwwvwvwwxwxwxxww xyxyxxy vwvwwvwwvw wxwxwwxwx xyxyvuvvuvvwvwvwvwwxwwxwwxwxxwxxwxxuvuvuuvuv vwvwvwvwwxwwxwwxwxwxxwxxwuuvuvuuvuvvwvvwvvwvvwwvwvwwxwwxwxwxxwxttuuvuu vwvwvvwvvwvw wtuttuutuuvuvvuvvuv vwvvwvwvwvvwwvwvwwvwttutututtuuttu uvuvuvvuvuvuv vwvvwvststtuttututuuvuuvvuvvuuvuvvuuvvstststtsttututu uvuuvuvuvuuvuvvuvvstsstssttsttsttututtuutuuvuuvvuvuuvuvuussrsstststsststtutuutuutuuvuuvsrsrrs stsstssttsttutututtutuututuusrrssrsststststssttuttututuutrrsrrsrsrsrsrrsrs stsststtstssttst tutuuturqrrqrrsrrsrr stsststtsttssttsttqrqrrsrrsrrsrrsrs stsstsstsqqrqqrqrrqrqrrsrrsrrsrssrstpqpqqrqrrqrqqrrqrrsrrssrsrs spqppqqpqppqqrqrrqqrqrsrsrsrsspqpqppqpq qrqqrqqrrqrrqrrsrsrrsrsrppoppqpqpqqpqpqqrqqrqqrqrqrrqrqrqr ropoppqpqppqqpqqrqqrqrrqrropoppqppqpqpqqrqq                                                                                                                                                                                                                                            +                                                    #]  9                %    }||}||}|}|}||}|}||}|}|}||}|}||}||}|}||}||}||}|}||}}||}|}|}||}||}}|}}||}|}|}|}|}}||}|}||}|}||}||}||}}||}||}||}||}|}|}|}}|}||}|}| |}||}||}| |}||}|}| |}||}||}|}||}|}|0|}||}||}|}}||{|1|}||{||{||{||{||{||{|G|{||{||{||{||{{| |{||{||{|{||{||{||{||{||{||{| |{|{||{ |{|{||{||{||{||{|{|{||{||{|{||{|{|{{||{|{| |{||{|{|{||{|{|{||{||{||{||{||{|{|{{||{||{|{||{{||{{||{||{||{|{{||{{|{{||{||{| |{|{||{|{{|{||{||{||{|{||{{ |{|{{|{|{||{||{|{{|{|{{|{||{|{{||{|{||{||{|{|{{|{{|{{|{|{|{{|{||{|{||{{|{|{||{||{{|{||{{|{{|{|{||{|{||{||{{|{|{{|{{||{||{|{{||{||{|{|{|{||{|{||{|{|{{|{{|{|{{|{||{||{|{{||{|{{|{|| {|{{|{|{|{|{|{|{{|{||{||{|{||{|{||{|{{|{{||{{|{||{|{|{{||{|{|{|{|{{||{|{|{|{|{{|{{|{|{{||{|{{|{||{|{||{|{{|{{||{|{|{{|{|{|{{|{|{||{{|{{|{{|{{|{{|{{|{{|{{|{{|{{|{|{{|{|{||{{|{|{{|{|{|| {|{|{ {|{|{{|{|{{|{{|{{|{{|{{|{{|{{|{{|{|{{|{ {|{{|{|{{|{{|{|{ {|{{|{ {|{{|{|{%{|{{|{ {|{{|{({|{{|{{|{{z{Q{z{{z{?{z{{z{{z{{z{{z{{z{{z{z{{z{{z{{z{ {z{ {z{{z{{z{zz{z{z{{z{z{z{{z{{z{z{{z{{z{{z{{z{{z{{ z{z{zz{z{{z{{z{z{{z{{zyzzyz{zz{zz{zz{zz{zz{z{{z{zyyzzyzyzzyzyzz{zz{zz{zz yzyyzyzyyzzyzyzyyzyz zyxyyxy yzyyzyzyyzzyzyyzyzzyyzzyzyxxyxyxyxxyxyyxxyyxyyzy yz yzyzxxyxxyxyyxyyxyyxyxyxyyxyyxyyxyyxyywxxwx xyxyxxyyxyxyxyxyxyyxyxwwxwwxwxwwxxwxxwx xyxxyxyxyxwxwxwwxwwxwxwxxwxxwxxwxxwxxwxx wxwwxwwxwxwxxwxwwxxwwxxwxwxwvvwvvwvvwxw wxwwxwxwxwwxvvwvwvwvvwwvwvvwvwv"w vwvvwwvwvvwvvwwvwvwwvvwvwvwwvvwvwvwwvwwvwwvuvvuuvuvvuvvwvvwvwvwvvwvwvvuvuuvuvuuvvuvvuv#vwvvu uvuuvuvuvvuvuuvuvvuvvuvuuvuvvuv vutuutuutu uvuuvvuuvuuvuuvvuuvuvvuvututtutuutuutuutuutu uvuuvuuvuvuutututtutututtututuutuutuutuutuutuutsttsttuttuttuttutuuttuutuututusststsststtststtst tutututtuttutt ststssttststst tstst tsttrsrssrsstststsststsststtsttssttsststtststssrrsrrsstststsstsstsststssttsrrsrrsrsrsrssrss rsrsrrsrsrrsrsrssrrsrsrrssrsrssrqrqrrqrrsrrsrrssrsrrsr rsrs.       +                                                                                                                                                                                                                                                                                     "   <    /              "          .= )      $        #        |}|}||}||}}||}}|}||}|}||}}|}}||}|}}|}||}|}||}|}||}||}| |}||}|}|}||}||}||}||}||}||}| |}||}|}}||}|}|}|}||}|}||}|}|}||}||}||}||}||}|}||}| |}||}||}||}| |}|}| |}| |}||}| |}||}|}||}| |}||}||}||}||}|}||}||}|}|}|}||}||}||}|}||}|}|}|9|{|;|{||{|{||{|{|"|{|{||{||{||{||{||{||{||{||{|{||{{||{||{|{| |{||{|{||{||{|{|{||{||{| |{||{||{||{||{||{||{|{||{||{||{||{||{| |{||{||{||{|{||{|{||{||{||{||{||{||{||{|{{||{|{||{||{|{||{|{{|{||{|{|{||{|{{||{||{||{{|{||{||{||{ |{|{||{||{|{{|{||{|{||{||{{||{||{|{||{||{||{||{|{||{|{|{||{|{{||{{||{|{||{{|{|{||{|{{|{||{{|{||{|{||{|{||{{||{||{||{||{||{|{{||{|{|{|{{||{{||{|{|{|{{|{|{{|{|{|{{|{|{{|{||{|{{|{|{|{||{|{|{|{{|{|{{|{{||{|{{||{{||{{|{||{{|{|{{|{{||{|{|{|{|{||{|{||{{||{{|{|{|{|{|{|{{||{|{{|{||{|{{|{||{|{{|{||{{|{{|{{|{{|{{||{|{{|{{|{||{||{||{|{||{{|{{|{{|{||{|{{||{||{{|{{|{|{{|{|{{|{{||{{||{|{{|{{||{|{{|{{|{{|{|{|{|{{|{{|{{|{{|{||{|{{|{{|{|{{|{|{{|{|{|{|{{|{|{|{|{{|{{|{{|{{|{{|{|{{||{{|{{|{{|{{|{ {|{{|{|{{|{{|{{|{ {|{ {|{|{{|{|{{|{ {|{|{|{{|{{|{|{{|{{|{Z{z{{z{{z{{z{{z{{z{{z {z{{z{{z{{z{{z{{z{ {z{ {z{{z{{z{{z{zz{{z{{z{z{{z{ {z{{z{ {z{z{z{{z{z{z{{z{{z{z{{z{{z{z{zz{z{z{z{zz{zz{z{zz{zz{zz{z{{z{zz{zz{z{z{zzyzzyzzyzz{z{z{z{{z zyzzyzzyzyyzzyzzyy zyzyz zyzzyzyzzyzyzyyzyyzzyyzyzyyzyyzyzyzyzzyzyyzyyzzyzyzyzyzyyzyyzyyzyyxyyxyyxyxyxyxxyxy yxyyxyyxxyyxyyxyyxxyyxyxyxxyyxyxyyxxyxyxxyyxyyxyyxyxxyxyxxyxyyxyxxyx xwxxyxyxxyxyxxyxyyxxyxxyxxyx xwxxwxxwxxwxxwxwxxwxxwxxwxwwxwxwxxwxwxwxwxxwxxwxwwxwwxwwxwwxwwxw wxwxwwxwwxwwxw wvwwvwwxwwvwwvwwvwwvwvwwvwvwvwvwvvwvwvvwvwwvwwvwvwvwwvwvwwvwwvvwvwwvwwvwvwvwvvwwvvwvvwvwvwvvwvvuvvuvvwv!vuvvuvvuvvuvvuvuvvuvvuv vuvuvvuuvuvuuvuvuuvuvvuvuvvuvuvuuvuuvuuvu uvuuvuutuutuutuututtutuututuutuutuutututtutututuuttuttuttutuutuututuututtuuttutututtutututtuttuttutststssttst tst tsttsttssttstsststsstststssttsttstssttstsststsstststtsstsstsstststsstsstsststsststsststssrssrssrssrrssrrsrrsrsrrssrsrrssrsrsrrsrsrssrrssrs srsrrsrsrssrrsrrsrrsrrsrrsrrsrrsrsrrsrrsrrsrsrrsrrsrqrqqrrq +    3                                                                                                                                                                                                                                                                                           ) 6 G                        #"                                    |}|}||}||} |}||}||{||}|}|}||}||}| |}||}||}||}},|{||{||}|}||{| |{||{|{||{||{| |}||{||{||{||}||{| |{||{||{||{||{||{||{| |{|{||{||{|{|{|{||{||{||{||{||{||{| |{||{||{|{|{{||{|{||{||{||{|{{||{{|{|{ |{|{|{{||{|{||{|{||{|{||{|{|{{|{{|{{|{|{{||{|{|{|{||{||{||{{||{|{|{|{|{||{||{|{||{{|{|{||{{||{|{||{|{|{|{||{||{|{{||{||{||{||{{||{|{|{||{|{||{||{{||{||{||{{|{|{||{||{|{{|{{|{|{|{{||{{|{||{||{||{|{|{{|{{|{||{||{||{||{{|{||{{|{|{||{|{|{{||{|{|{|{{|{||{||{|{{|{{||{|{||{|{{|{|{{|{|{{|{||{|{||{|{|{{|{|{{|{|{|{{||{||{| {|{||{|{||{{|{{|{|{||{{|{||{|{|{{|{{|{{|{{|{{||{{|{|{{|{|{|{{|{|{|{|{{|{{|{{|{|{|{||{||{|{|{|{{|{|{|{{|{|{{|{{|{|{ {|{{|{|{{|{{|{|{{|{{|{{|{{|{{|{|{||{|{{||{|{{|{|{{|{{|{{|{|{{|{{|{||{|{{|{{|{{|{||{{|{|{{|{{|{{|{|{{|{{|{ {|{|{|{|{|{{|{{|{{|{{|{{|{ {|{|{{|{{z{{|{|{{|{{|{{|{*{|{ {z{{z{{z{z{z{zz{{z{{z{ {z{{z{zz{{zz{zz{zz{z{{z{z{{z{z{zz{z{{z{z{ zyzyy{z{{z{{z{{z{z{{zz{zzyzzyzyzzy{{z{{z{{z{z{{zyzzyzzyzyzyzyy{z{zz{{z{zz{z{z{z zyzzyzzyzyyzy yxyxxyz{{z{z{zzyzyzyzzyyzz yxyxxyxxz{zzyzyyzzyzyyzyyxyxyxzyzzyzzyzyzyyzyzyyzyyxyyxy xwxxzyzzyzyzyzzyxyxyxyxyxyxxyxxwxwwxxwxwyzzyyxyyxyyxxyxyxxwxwxwxwxxww yxyxyxyyxyxxyxxwxwxwxwxwxwwxwwvwwvvyyxyyxyyxxyxxyxxyxxwxxwxwxxwwxwwvwvwvwvxxyxyxxwxwxwwxwxw wvwwvwvvwvvyxyyxxwxxwxxwwxxwxwwxxwwvwvvwvvwvvxwxxwwxxwxxwxwwxw wvwwvwvwwvwvwv vuvvuvxxwxwxwwvwwvwvvwv vuvuuvuvvuvuvuvxw wvwwvwvwwvwvwvvuvuvvuvuvuuvuuwvwwvwwvw vuvvuvvuuvuutuutuwwvwwvwvvwvvwvvwvvuvuvuvuvu utuututututuvvwvvuvuvvuvvuvuuvvu ututuututtututtvuvvuvuuvv utuutututtuuttsttvuuvvuuvuuvuuvu ututututtuttsttsttsstsvvuuvuututtututtuttuttsttstsststststss utututtutuutsttsttstststs sutu tuttststtstsstssrssrrsrrttututtuttuttsttsttsttsttstsstssrsrsrsrruttsttsttstsstssrsrsrsrsrrsrsr rtststtsttststtsts srsrsrrsrrsrqrqrrqrqsttstssrsrrssrsrrsrrqrqrqstssrssrsrsrsrrsrrqrqqrqrqqrrqrqqsrssrssrrssrsrrsr rqrqqrqqrq qpqqprrsrsrssr rqrqrrqqrqrqpqqpqpqpqqrsrrsrrqr rqrqqrrqqrqqrq qpqqpqqppqpprqrrqrrqrqrqqrqqrq qpqpqppqpqqppoppopqqrqqrqrrqqrqqpqpqppqqpqpqqpqp popopoo                                                                                                                                                                                                                                                       "                                                                                  |{||{||{||{||{|{|{|{{|{{|{{|{||{{|{{|{{|{{|{{||{|{||{|{||{{|{||{|{{|{{|{|{{|{|{{|{|{||{||{||{||{|{|{{|{|{{|{||{{|{{|{||{||{|{||{{|{||{{|{{||{{|{|{{|{||{{||{||{||{|{||{|{||{||{|{{|{|{{|{{|{|{|{||{|{|{|{||{|{{|{{|{{|{|{ {|{|{||{|{{|{|{|{||{{||{{|{{|{{|{{|{{|{|{{|{|{{|{|{{|{{|{{|{{|{|{|{{||{{|{{|{{|{{||{{||{|{||{|{|{{|{ {|{{|{{|{ {|{|{||{{|{|{{|{|{{|{|{{|{{|{|{|{|{{|{{|{{|{{|{{|{{|{{|{{|{{|{{|{{|{{|{{|{{|{||{{|{{z{{|{||{{|{|{{|{{|{{|{{|{|{{|{ {z{{z{z{||{|{{|{{||{|{{|{||{|{{||{{|{{z{{|{{|{{|{{|{{z{{z {|{{|{{|{{z{{z{z{z{{|{{|{!{z{{z{zyz|{{|{{|{{z{{z{{z{{z{{zzyzzy{{|{{|{{|{{z{{z{z{{z{{zzyzyy%{z{zzyzyzzyzyyzyxx{{|{ {z{{z{z{z{z{{zyzzyzyyzyyxy{{z{{z{zz{z{zzyzy yxy{z{zyzzyzyzy yx{z{{z{z{{z{{z{{z{zzyzyzyyzyyxyxxw{{z{{z{zzyzzyzyzyyxyyxyxyxxwxww{z{{z{{zz{yzzyzzyzzy yxyxxyxxwxwxxwxwwz{zz{zzyzyzyzyzy yxyxxyxyxxwxxwxww{zyzzyzyyzyyxyx xwxwwxwxwxxwwvwzyzyzyzyyxyxwxx wvwvvwzyyzzyzyyxwxwwvwvvuzyyxyxxwxwwxwwvww vuvvyxyxxyxxwxxwxxwxwxxww vuvvuuvuyxxyxyxxyyxyxxwxwxwwvwwvwvwwvvuvuvuuvuvvuuxwxxwxwxxwwvwvuvvuuvvuvuutuuxwxwxxwwxwvwvwvvuvu ututtuxxwxwxwxwwxwwxwwvwvuvvuvuutuutwxxwwxwwvwvvwvvuvuvuvvuutuu t wvwvwvvuvvuvvuvuutuuttutuutsttstwwvwvww vuvvutuutststssvwvvwwvvuvvuvuuvuututuut tstssttssrvwvvwvvuvuvu utututtsttssts srvvuvuvutut tstsrsrsrrvuvuuvuvuutut tststtssrssrsrrquutuutuutututtstsstssrssrsrrssrrqrquutuutst srsrsrrqrrqrqqututut tstsstt srsrrqrrqqututtuttsttstssrssrsrsrrqrrqrqqpqpquttsttstssts srqrqrrqrqqpqqppqqtstsstssrsrqrqrqrqqpststtsrssrsrrsrrqrrqrrq qpqqppos srsrrsr rqrqrqqrqqpqpqqp porssrsrrsrrqrrqrqrq qpqppqppopoopporrsrsrrqrq qpqqpqppqpoposr rqrq qpqqpqpqpqppqppopoopoppoppoonoorqrrqrqqrq qpqppqppopoopopo ononnorrqrqrqqpq popopoononononnqrqrqqpqqpqpoppopoopoonoon nmqqpqqppqp poppopo onon nmppqpqppqppoppoppopoonoonoonnmnmmnmnmqppqp popoppoopoononoonoonnmnmnmmnpopoopo onoonnonoonnmnmnmmppopo ononnoonnonnmnnmmnmoppoopoonononononnmnmnpo ononnmnnmnnmm                                                                                                                                                 !% (,048{|{ {z{z zy{|{{|{|{{|{ {z{ {z{{zyzyy{|{{|{{z{{z{{zz{zzyzyzyyxyxyx{{|{ {z{z{{z{z zyzyyxyxx|{{|{{|{{z{{zyzz yxyxxw{|{|{ {z{{z{zz{zzyzz yxyxyyxx|{{z{{z{zzyzyxyyxyyxw{z{{z{{zzyzzyyxy xwxwwv{ {z{{z{{z{zzy yxyyxyxxwxwwvww{{z{{z{{zz{zzyzyyxyyxxyxwxxwwxwwvwv{z{{z{{z{zzyzyyzyy xwxwwvwwvu{{z{{z{zzyzyzzyyxyyx x wvwvvuz{zz{z{{zzyzzyyzyyxyxxwxwwvwvwvvwvvuz{zzyzzyzyzyyxyxxyxyxxwxwxwwxwwvwwvvuvuuzyzyzyyxyyxyxyxxwxwwvwvvuvuuzyzyyzyyxyxxwxwwvwvvuvuvuuvuutuutzyxyyxyxwxwwvwvvuvutzyxyxxyyxwxxwxxwvwvvwvvuvuvuutuuttyxyxxwxwxxwxwwvwvutut tyxyxxwxxwxw wvww vuvuu tstssyyxxyxx wvwwvvuvuuvuutuutuuttstssxwxwwvwvvuvuututtuttstssrssrxxwwxxw wvwvvuvuututt srsrswwxw wvuvuutututtstsststssrsrsrrsrrwwvwvvwvvuvvuvuutuutututtsttsrsrsrsrrqrwwvwvuvvuvututtuttststssrsrrsrrqvwvuvuuvuutuutsttstssrsrrqrqvvwvvuvuvuuvuutuututtsttststssrssrrqvuvuvuuvuutuutut tsrsrrqrqqvuvuutuututtuttsrsrssrrqrqrqqpqpvu u t srsrqrqqpqqppututtstssrssrqrqqpqppouu t s rqrqqpqqpqqpqpqppopootuutsttstssrssrqrqqrqqpqpqqppoppotsttssrssrqrrqqpqppopootsttssrssrsr rqrqq poppoonststssrsrrqr qpqppopoopoononnosstssrsrqrqqpqppqppqppopponoononnmssrrssrqrrqpqppqppopoonoonnonnmnnmssrrssrqrqpqqppoppoppononoonmnmrrqrrqqpqppopopoopoonnonnmnrqrq popopopoonononnmnmnrqpqqpqpqppopoppoopoononnonnmnnmnnrqpqppqpponoononnmnnrqqpqqpoppoopopoonoononnmqpqpp ononnmnmnmmqppqppopoonononnonnmnmnppoppopoononononnm popponoononnmnnmoppopo ononnmononnononnmnmnoononnonnmnmonnonmnnmmnnmnmmnnmnm nmnmn                        !$(,/47               "%(+.1469~yxyxxwxwwxxwwvwwvuvuvvuutsttstssrsrryxxwxwwvwvvuvu utstssrsrrqrxxwxwxwwvwwvuvuututtsttsrssrqrqqxxwxwvwvvwvvuvuu tsrssrssrrqrqpxwwxww vuvuututtstssrssrrqrrqqpqwwvuvuutuutstssrqrqrqqpqwvwvwvwvvuvvuuvuutuut tsrssrrqrrqrqrqqppvuvvutuuttstsstssrrssrrqrqrqqpqpovvwvvututtsrsrrsrrqrqqpoppwvuvuuvuutututtsttssrsrqpqqpqppoppoovuvututtuttstsststssrsrrqrqqpqppopoovuuvuututtsttstssrsrrqrqqpopoonovuututtsttstssrsrrqpqpopopoonoututtstssrqpqqpqppoponoonnuttuttststssrsrrqrqqrqqpqppopoononnutsttsstssrssrsrrqrqqpqppopponoonntstssrsrrqrqrqqpqp ponmnnmmtssrsrsrrqrrqpqpqppqpponoonnmnmmtstssrssrsrrqrrqpqqpqpponmnmssrsrrqrrqqrrqqpqqppopoonoonoonnmnmrsrssrssrrqrrqqpopopopoononnmnsrrsrrqrrqqpoppopoononnmrrqrqpqpopoonmnrrqrrqqpqppopopoononoonmnnmrrqrqqrqpqqppopoononoononmnnmrqqpopoonoonnonnmqpqppopopoonoonmnnmnmmqpopoopopoononnonnmqpp ononnmnmmpopp ononnmnnmppopoonoononnmnnpo onmnopoonononnmoononnmnmnoo nnnmnnnnmnmmnmnnmmn           "%(+.1459~ ! #%'* ,-0357: }rq poppoonmnqpqqppqppopponmqpqpp onmnnqqpqqppononnmnnmppqppononnmnmmpononmnnmnppopoon nmoppononnmmnppoonononnmonononnmnnmnnonnmnnnnmnmnmnmnm!#%'*,.0356: }  󿾽깺      캻    󴵵񴵵                򱲱  󯴳                            󮯮                              﫪      𭮭       𨩨        󩨩      񦧧                       򡢡  󡢡                򙘙󞝝              񦥥      힟󣢣               󪩪񩨨       󩪩 񴳴     񴳳  񴳴 񰯰    񭮮     񳲲 񯮯𮭭ηͶ̶ͶͶ˶̵˵̵˵˵˶ʶ󶵶򷶷ʵʵɵȵȵǴǴ춷󼻼ƴ ųų ij;:<<<<>= mnnonmmnmmnmnmnmmn;;<<=<==           onooppqqpqqrrstsutuuvwxyz{z{ {|{|{|{|{noopqqrqrrsststuuvwxwxyxyyz{|{{|{{|{||noopqrstuvuuvvwwxyzyzz{ {|{{|noopqpqqrstuvwxyz {|{{noopopqpqqrrsrsstutuvvwvwwxyxyyz{|{nnonopoppqqrstuvwvwwxyz{z{{|{{|mnonnooppqrstuvuwvwwxyzyzz {|{|nnopqrqrrstuvwwxwyyxyyz {|{nnopqrstuvwxyz{|{{mnnoopqrstutuuvwxwxyxyyzz{nnonopoppqrsrssttutuvuvvwxyxyyzz{z{ {|{|nnopqrstuvwxwwyxxyyz{z{ {|{nmnnopqpqrrqrsstutuuvwvwwxyz{z{ {mnnonoopqrqrrstutuvvwxyz {|{nmnnoopqrstutuuvwxyz{|{{nmnoonoopqrstuvwxyz{zz{{mmnoopqrqrrstutuuvwxwxyyzyzz{z{ {nmnnonoopopqpqqrrstuvwvwxwxxyz {nopqrstuvwvwxwxxyz{z{{mnonnooppqrstuvwxyz{|nmnoonooppqrstuvwxwxyyxyyz {mnnopoppqqrstuvwxyxyzzyzz{nopqrqrrstuvwvwwxwxxyz{nnopqrsstuvuvvwwxwxxyz{nnopoppqqrstuvwvwwxyxyyz{zz{{nnoopqstuvwxwxxyxyyz{z{{mnnopoppqrstuvuvvwwxyxyyz{z{{nopqrstutuvuuvwwxwxxyyzyz{{mnnopqrqrrstuvwxyz{nopopqqrststuuvwvwwxyz{zmnnopqrststtuuvwxyzyzz{{z{nopqrstuvwvwwxwxxyz{nmnnoopopqpqqrsrsstuvuvvwwvwxxyz{nnopqrstuvwvvwwxxyz{z{mnnopqrstuvwxyz{nmnnopqrqrrstuvwxwxxyzyzz{mnnopqrqqrrstuvwxyxyyz{mnopqrstuvwxyzmnnopqpqrrstuutuuvvwvwwxyzyz{mmnnoopqrqrrstuvwxyzmnopqrqqsrsstuvwxwxxyzyznopqsrrsststtuvwxyzmnnoopqrstuvwxwwxyxxyyzmnnopoopqpqrrststutuuvwxyzmnnopoppqrrststtutuuvwxwxxyznmnnopqpqrqrrsstuvwxwxxyxyymnnoopqrsstuttuuvvwxymnnonnooppqrstuvwxxwxxyymnnopqrqrsrsstuvuvvwxyxymnmnoopqrsrssttuvuuvvwxwxxyynnopqrstutuuvwxmnnopoppqpqqrrstutuvvuvvwwxnnopqrstuttuuvvwxynnopqrstuttuvwvwwxmnnopopqpqqrqrrsstuvwxnnopqrstuvuuvvwxmnnopqrsrsstsutuuvuuvwvwwnmnnopopqqpqrqrsrsstuvwvwwxnonooppqrsrssttutuvvwnmnnoopqrstutuuvuvwwmmnnonoopqrqqrrsrsstutuuvwvwwmnonoopqpqqrrstssttuvwmnnopopqpqqrrstutuuvmnmnnopqrstuvwv                                                               |{||}|}||}|}}~}}~}~}}~}}~~}{||{|}||}|}}||}}|} }~}~}~~}~~}~~}||{{|{| |}|}||}}|}||}~}~}}~~}~~}~~{{|{{|}||}||}}||}|}|}}|}}~}}~}~~}~}}~}~}~{|{|{{|{| |}||}|}|}}||} }~}}~~}}~}}~}~~}~~|{|{{||}||}||}||}}||}}~}}~}}~}}~}~{||{{|{|}|}|}|}|}}|}}|} }~}~}~}~}}~~}~||{|{|{||{||}|}|}|}|} }~}} ~{|{|{{| |}|}|}|}}|}}~}}~}}~~}}~}~~||{|{{||{| |}|}||}}|}|}}~}}~~}}~}}~}~~{{|{||{| |}|}||}}|}}|}}|}}~}}~}~~{|{|{|{{|{||}||}|}|}|}}||}|}}~}{{|{||{{|}||}||}|}|}}| }~}~~}||{|{{|{{|{||{||}|}}|}}|}}|}}|}}~}~~}}~}~~}||{|{||{||}||}||}|} }~}~}}~}~}|{{|{||{|{||{||}||}|}||}|}}|} }~}~}~~{{||{|{{|{{| |}||}|}|}}||}}~}~~{{|{||{{|{{| |}|}|}||}|}||}}|} }~}~~}{|{{|{||{| |}||}|} }~}~}~~}~~}{{|{{||{||{| |}||}|}|}|}}~}{|{||{|{{||}||}|}|}}~}}{|{|{{|{|{{ |}|}||}|}}|}}~}|{{|{{|{| |}|}}|}|}|}}|}}~}}~{{|{|{||{||{ |}|}|}}|}~}~~}}~}}{{|{{|{|{| |}|}}|}|}|}}~}}~}~{{|{|{{ |{| |}|}|}}|}|}} {|{|{||{|}||}||}|}}|}}~}~~}}{|{|{{ |}||}|}|}}|} }{|{{||{{|{||{||}||}||}|}|}}|}}~}~{ {|{||{|{| |}|}||}||}||}}||} }~}{ {|{| |}||}}||}||}|}}|}|} }~{{|{{|{||{{|{||{||{| |}||}}|}}|}}z{ {|{{|{||{||{||}||}||}|}|}|}}{|{|{|{||{{||{||}|}}||}||}|}|}|}}~}}{{|{|{|{{|{{||{| |}||}|}|| }~}}{ {|{{|{|{{||{||}|}|}||}||}|}} {|{{|{|{||{||{||}|}||}|}|}}|}}~}~{{|{{|{|{||{|{||}|}||}}||}||}|}|}} {|{|{|{||{{ |}||}|}}|}|}}z{zz{ {|{{||{{|{| |}||}|}|}}| }z{|{{|{|{{|{{||{| |}|}|}}|}}z{{z{{|{{|{|{||{|{| |}||}|}z {|{{|{||{{|{{|{||{||}||}||}}|}|}}z{z{{z{ {|{||{||}|}}||}|}}zz{z{ {|{||{{|{|{|{| |}|}||}||}}|}}|}}yzz{{|{{|{|{{|{||{||}||}||}}|}|}|}|}||}|}}yzz{z{{|{|{||{|{|{||{| |}||}|}|}|}}yzyz{{z{{|{|{{|{||}||}|}||}|}||}|}}yyz {|{{|{||}|}}|}}yz{|{|{||{||{||}||}||}|}||}}yz{|{|{|{{|{{||{ |}||}|}}|}|}|}yyzyyzz{{z{{|{|{{|{||{|{{||}|}||}|}}|yyz{z{{|{|{|{||{| |}||}|}xyyz{z{ {|{{|{|{||}|}||}|}||}}|}||}}xyz {|{{|{||{{||}|}||}xyz {|{{|{{|{|{{||{|}||}||}||}||}|}|xxyxyyzz{z{{|{{|{|{||{||}||}}|}}|}wxxyyz{z{{|{{|{{|{| |}||}|}wxxy{zz{ {|{|{{|{ |}||}|}}|}}|}}wwxxyyz {|{|{||{|{|{{||}||}|}}|}}wxwxxyyzzyzz{{|{{|{|{|{||}||}||}|}|wwxyxyyz{z{{|{||{|{||{|{||}}||}||}|}|wxxwyyxyyz{z{{|{|{{||{||{| |}||}|}wxyxyzyzz{z{ {|{|{||{|{||{||}|}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ~~~~~~~}~~~~~~~~  ~}~~~~~ ~~~~~~ ~}~~~~~~~~~~~~~~~~~~~ ~ ~~~~~~~  ~~~~~~~ }~~~~~~~}~ ~~~~~~  ~~~~~ ~}}~~}~~~~~~~~~~}~ ~~~~~}~~~~~~~~~~~ }~}} ~~~~~~~~~}}~}~~}~~~~~~~~~}~~}~~~~~~~}~}~}}~}~~}~ ~~~~}~~~~~ }~~} ~~~~~~~~~~ }~~}~~~~~~~~~~~}~~}~~}~~~~~~~~~~~~}~ ~~~~~~~~~~ }}~}~ ~~~~~~~ }~}~~}~ ~~~~~~~~}~ ~}~ ~~~~~~~~}}~}~~}}~~~~~~~~~~}~}~~}~~~~~~~~~}}~}~~~~~~~~}}~}}~~}~}~~}~~~~~~~}~~}~}~}~~}} ~~~~~~~~ }~}~}~~~~~~~~}~}}~}}~}~}~}}~~~~~~~~}}~~}~}~}~~}~ ~~~~~~~}} ~}~~}}~~~~~~~~}}~}~~}~ ~~~~~~~}}~}~~~~~~~~}}~}}~}~}}~~~~}}~}}~}~~}~~~~~~~~~~}~}~}}~~}~~~~~~~~ }~}~}}~}~}}~}~~}~~~~~~}~}~}~~}~ ~~~~ }}~}}~}~}}~~}}~~}}~~~~~~~~ }~}}~}~}}~}}~}}~~}~ ~~~ }~}~}~}~~}~}~~~~~~~~~~ }~}}~~}~}~~}~ ~~~~~ }~}}~}~ ~}~~~~~~ }}~}}~}~~}~~~~~~~|}}~}}~}}~}~~~~~~}}~}~}}~}~~~~~~~~ }}~}~}~}~~}~~}~~~~~~~~~ }~}}~}~}~~}~~~~~~~~}~}~~~~}|}}~}}~}}~}}~}~~~~~~~~~~~}|}}~}}~}}~~}~~}}~~}~}~}~~~~~~}|} }~}~~}~}~}~~~~~~~~~}|}}~}}~}~~}~}~~}~ ~~~~~~~}|}}~}~}}~}~~}~~~~~~~~}| }~}~~}}~~}}~}~ ~~~~~~ }~}}~}~}}~~}~~~~~~~~~|} }~}}~}~~}}~}}~~}~~~~~~~~}|}}~}}~}~}~}}~~~~~~|}|}}~}~}~~}}~}~~~~~~~~}|| }~}~}~}}~~}~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              􁀁     􁀁   󂁂     񁀁 􁀁  򂁂         󁂁 򁀁                ~􁀀  ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              턅 􅄅      񃂃      򃂃 򃂃             󄃄            􃂃򄃃                                                                                                                               톅  톅 񇆇       񆅅 򇆇     򄅄    󅄅   򆅆 񄅄           񅄄 􅄅򆅆                                                                  !                                     鈇                 􈇇򈇈 􉈈        򉆇 󉈇                       򈇇 󇈇 򇆇􇈈    􇈈                                       >z=562;1>800/3/-)/-&􎍎  󏎏  􌋌                    A<=?8:<7575442-84-21(-+                     󓒓                 󖗗                                                                 拉        󦥥              򣢢 󡠠          򩪩         򫪫                                                                    򬭭  񭬬   쩨                            󳲳                    Ÿøö¶µ    칸 񳴴              񲳳        󳴰  ʿʾ  ǼǼƻźĺĺĹø   򺻻쾽            ɿȿ ȿƽ ƼŽżż ûû¹¹                       & +0 6;mnmnnmnnonnononno mnnmnnmnmnnonmnnmnnmnnmnn nmnnmnmm mmnm                                             & +/6:        $- 7 opoopooppqpqqppqppqppqqpqqrnnononoopopoppo pqppqqpqpqppqqppqqnononno opooppopopoppqpqnonnonoono opoopopoppoppoppoop pqmnnmnmnnonononoopopoopoopooppopoppnnmmnnmnnmnnonnonnonono opopoopooppoppopmnmn nonnononnon opoopopoo mnmnmmnmn nonnononoonoonoomnmnmnnmnnonnononononoonoommnmnmnmn nononoonnonmnmmnmn n mmnmnnmnmnmmnmm                                                 $ -8     * rqqrqrqqrrqrqrrqrrq rqrr qrqrqqrqrqqrqrqrqrrqrqrqrrqpqpqppqqrqqrqqrrqrqrrqrqrrpqpqqpqqppqpqppqpqqpqqpq qrqrqqrq qpqpqppqpqqpqpqppqpqpqqpqqpqqp qpop pqppqpqppqqpqpqqppqppqpqqpqqppqppoopopoppopooppop pqppqpqpqpqpoopopoopopoppopooppoppopop pono opoopopopopoopopoppopponoonononoonoopoopoopoopoopoonnononnononnoonononoononoonmnnonnonoononnononoonoononoonmnmmnmmnnmnmnnmn nonnonnononoononnom mnmnmnmnnmn nonnmmnmnmmnmmnmmnmnmnmmn nm nmmnmmnnmnmmnmn                        $      *     *  (rsrrqrqrqrrqrr qrqrrqrqrrqrqrrqrqrrqrrqrqqrqrrqrqqrqrqqrrqqrqqrqrrqrqqrqrqrqqrrqrqrqrqqrqqrqrqqpqpqqpqqrrqqrqqrqqrqqrqqpqqpqpqpqpqqpqqpq qpqqpqpqqpqpqqpqp pqpqqpqqpqppqqppq pqppqp popqppqppqpqppqp poppoppoppooppopopoppopoppoppoppopopoopoopoopoppooppoppopopoopopoopooppooppoppopoopoonopoopopoopo onoonnoononnonono onoononoononnoononoonnonononnonoononnoononoonononnononnononnonnon nonnoonononnonnmn*nmnnmnnmnmnmnnmmnmnmnnmnmmnnmnmnmnmmnmnnmmnnmnnmnmmnmmnmmnnmmnmnmmnnmnnmnmmnmnmm      #                               )           * rqrq qpqqpqpqpoppopopopooqpqqpqqppqqpqppqpqppopoppooppopoonqpqqpqppqpqqpqpqpqpqp popopopoonoonnoonoopqppqppoppopopoppoopoonoononnonnqppoppopopopopopoopo ononnoonnonnmppopopoopopoonoonnonoonnonmnmnnmnmnmoopooppoono nmnmnmmnoononononnonnonnonnmnnmnmoonoononnononnonnmnnmnmnnmononnonnonnmnnmnmmnnmnmnmmnnmmnmnmnmm nmmnnmnmm                                                 !*   %+/6onoonoonmnmmnmmnonoonnonnmnmnnmoonnmnmnn onnmnmnmnmnmn nmm                                %+06                       𼽼 󻼻 췶񷶵                                     𲳳          򲳲           󰯯                                 񭮮 򯰯   󭮮                             򪫪                                򩪩                     拉                                                    󜛛           򗖖 󛚛             󣤣   藍   򠟟                󩪪              򨧨        󮭮      񰯯               ó²ò²²         󴳴       񱰰 ֿտտվԾԾӽԽӽӼӼҼѼѼѻлѻкйϹϹϹθθͷ ! ""#"#%$&&'&')(***+,,-.-///00232345556788999:<;<==nnopqppqqrsstuvnonoopoppqrrststuuvnnopoppqrsrrssttuvnmnnopopqqpqqrqrsststutuvuuvnopoppqrsrsstuvunopqrqrrsstuvmnopoppqpqrrsrstsstuvnnonoopqrqqrsrsststutuumnnopqprqrrsrrsstummnoopqpqqrrstumnnopqrsttutnnopqppqqrqrsststtunmmnnopqrstumnnopqpqqrstumnnoppoppqrqrrsstnmnnonoopqrstnnonooppqrqrrstnonoopopqqpqrrstssmnnopqpqrrstnmnnoopqrsrrsstmnnoonoppoppqrsnnopqrqrrssmnnopqrsnnopqrqrrsrsmmnnoopqrsnmnnopopqqpqqrrmnonooppopqpqqrqqsrmmnoopqrqrrnnonnooppqpqqrmmnnoopqrmnnonppoppqrmnnopqrnmnoopqrqmnnopqrnnopqmnnoopqmmnnonooppqmnnopqnnopoppmnnopmnnopmnopopmnnopmnnopmnnomnnonmmnnoonmnonoomnnomnnonnonnnnmnmnnn !"!##$%%%&'''()))*++,-.-.00111234345676889::;;;<>=                     wxyz{|{|{||{||{{| |}||}|vwwxyz{|{||{{|{|{||{||{||}||}vwwxyz{|{{|{|{||{||}|}|vvwxxyzyzz{z{{|{||{|{{||}||}||}|vvwwxyz{zz{{|{{|{|{|{||}vwxyz {|{|{|{|{||{{ |}||}vwxwxxyz{z{{|{{|{|{||{||}||}||uuwvwwxyz{z{{|{{|{{|}||vuvvwwxyz {|{{|{|{{||{{|{||}||}|}|uvvwxyxyyz{zz{{|{{|{||{||{|}||}uvwvwwxxyxyyz{|{||{||{|{||{||}|uvuvvwwxwxyyz{z{{|{|{|{||{||uvwxyz{z{{|{|{||{||uvuuvvwwxwxyyzyzz{z{{z{{|{{|{|{{|{{||{||{|{||}||ttuuvwxwxxyxyzyzz{|{||{||{||tuuvwvwwxyzyzz{z{{|{{|{|{{||{||{|}||tuuvwxwxxyz{zz{ {|{{|{||{{|{||{||}tuvwvwwxxwxyyzyzy{z{{z{{|{{|{{|{{||{{||}|ttuvwvwwxyz{|{{|{{|{||{||{|{||tuvuvvwvwxwxxyz{|{{|{{|{{||{|{||sttuuvwxyz{z{{|{||{{|{||tstutuuvvwvwxxyz{z{{|{{|{||{|{||{||sttutuuvwxyzyzz{{|{||{{||stuvwxyxyyz{z{ {|{{||{||{||stutvvuvvwxyxyzz{z{{|{{|{||{{|stuvwxyz{z{{|{{|{||{|{||stuvwxyzz{z{{|{| |stuvwwyxyyz {|{|{|{{||srsststtuuvuvvwxyz{|{|{|{||{{|{||rstuvwxyz{z{{|{{|{||rstuvwxyxyyz{zz{{|{{|{||{|{{|{||rstuvwxwwxxyyz{z{|{{|{||{{||qrrststtutuuvvwxwxxyzz {|{|{{|{||{|{||qqrrstuvuvvwxyz{z{{|{||{{||{||{|{qqrrsststtuvwvwwxwxyyz{zz{{|{{|{||{{||{||rstuvwwvwxwxxyz{z{{|{|{|qqrrsrststuttuvuvvwxyz{z{{|{{|{|{||{{|{{|qrsrsststtuuvwxwxxyxyyz{|{||{|pqqrrststtuvwxyz {|{||{{|{||{pqqrststutuuvwxyzz{z{{|{{|{|{|qqpqrqrrsrsstuvuvvwxyzyzz{{z{ {|{||{||pqqrqqrrstuvwxxyz{z{{|{{|{{|{ppqrsrsstssttuuvwvwxxyz{|{|{|pqpqqrstuvuvwwxyzyzz{|{{|{{|{{|pqrstutuuvwxyz{|{{|oppqqrstuvuuvvwwxyz {|{{|{||{oppqqpqqrrstuvwvwxxwwxxyz{z{{|{|{||{|{{opoppqqrqrrstuvwvwwxyzyzz{|{||{oopqrqqrrststutuuvwxyzyzz{|{{|{|{{opqrqrrstuvwxyzyzz {|{||nooppqrststtuuvuvwwxwxyxyyz{z{{|oopopoppqqrstuuvwxyz{z{{opoppqrstutvuuvvwxyxyyz{z{ {|{{nnooppqrstutuuvwxyz{|{{|{nopqrqrrsrststtuvwvvwxxyz {|{|{{|nnopoppqqrsrsstuvwxwxyyz {nopqrsrssttutuvvuuwvwwxyz{nopqpqqrrstuvuvvwxyz {|mnnopqrstuvuvvwxwwxxyz {|{{nopoppqrqrrstuvwvwwxxyxyzyzz{|{{nnonoopqrstuvuvvwvwwxyz {mnnopqrsrssttuttuvuvvwxyz {mnnopqrstuvuvvwwxwxxyzyz{z{{|{mnnonooppqrqrsrssttsttutuuvvwxyzyzz{z{{|{{                                                                                                                                                                                                                                                                        |}|}}|}}~}}~}~}~}~}~ ~~~~}|}}|}}~}~}}~}~ ~~~~~}|}|}}~}~~}~~}~~~~~~~~~}|}|}}~}~}~~} ~~~~~~}}| }~ }~}~}}~~}~~~~~~~|}|}}~}}~~}~~}}~}}~}~}~~~~~~~~~~|}||}||}}|}}~}}~}~~}} ~~~~~~~}}||}}|}}||} }~}~} ~~~~~~~|}||}|}}|}}~}}~}}~}~}~~~~~~~~||}}|}}|} }~}}~~}~ ~~~~~~}}||}|}}|}}~}}~}~~} ~~~~~||}|}}||} }~}~}}~}~~}~}~~}~~~~~|}}|}||}}|}}~}}~~}~~}~}~}~}~ ~~~|}|}|}}~}}~}~~~~~~}}|}~}~~}} ~~~|}|}|}}|}}~}~}}~} ~~|}||}|} }~}}~}}~}~}~~}~~}~~~~~~~||}||}|}}| }~}}~}}~}~~~~||}|}|}}|}}~}~}~~}~~|}|}|}||}| }~}}~}}~}~}~}~}~~~~~~||}||}|| }~}}~}~}~~}~ ~||}|}}|}||}}| }~}}~}}~}}~}~~|}||}||}|}~}}~}~}~~}~}~~}~~~~||}|}||}|}||} }~}}~}~}~~}~ ~|}|}|}|} }~}~}}~}~~}}~~}~~~~||}||}|}|}||}}|}}~}}~}~}}~~}~}~}~~~||}||}|} }~}}~}~}}~~}} ~~~|}|}}||}||}}|}}|}}~}}~}}~}~ ~{||}||}|}|}||}}|}}~}~}~~}}~}~}~}} ~|}||}|}|}|}}~}}~}}~}~}~ ~{| |}|}~}}~}}~~}~~}~~}}~~ |}||}|}|} }~}}~}}~}~}~}~~}~~||{||}|}| }~}}~}}~} ~|{||}||}||}||}||}}||}||}}~}}~}~}}~}}~ ~|{||}||}|}}||}}|}}|}}~}}~}~~}}~}~~ |}|}|}|}|}|}}~}}~}~ ~}~~{||}|}|}||}||}|}|}}~}~}}~}~~ |}|}||}}|}|}}|} }~}~}~}~}~~}~}~~{|{||}||}||}}|}}|}}|}}~}}~}~~}~~}||{||{{||}|}|} }~}}~}~}}~|}|}|}}| }~}}~}~~}~~}}~}~~}~~|{||}||}||}|}||} }~}}~~}}~}~}~~|{|}||}||}|}|}||} }~}}~}}~}}~}~~|{|{{ |}||}|} }~}}~}~~}}~~{||}||}|}|}}|}}|} }~}}~}}~~}~|{|{||{||}||}||}|}}|}}||}}|}}~}~}}~}~~}~~}}~~|{||{||}|}|}|}}|}}|}}|} }~}~~}~~}~~{||{|{| |}|}}|}}| }~}}~}~}~~}~~||{|{{||}||}~}~}}~~}~~}}~||{||{|{| |}|}}||}|}}~}~}~~}~~}||{||{||{||}||}|}|}}~}}~~}~}}{{|{||{||{||{||}|}}|}|}}|}}~}}~|{|{||}|} }~}}~}~}||{{|{||}|}}||}|}}~}}~}}~}~~||{|{|{||}| |}|}~{{|{||{||{| |}||}|}|}|}}|}}~}}~}}~}{{|{||{|{||{||}|}||}}|}|}|}}|}}~{|{|{| |}|}|}||}}|}||}}~}~}}~}}~}{|{|{{|{|{||{||{||}| |}|}}|}~{{||{||{|{||{||{||}||}||}}|}}~}~}{{|{|{|}|}|}|}}|} }~}}~}{{|{{|{||{| |}|}||}|| }~}~{|{|{|{{|{||{|{||}|}||}|}|}}|}}~}}~}{{|{| |}||}|}||}}~}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ~      ~ ~~  ~~~~~~~~~ ~~~~~ ~~  󀁀~~ ~~~~ ~~~ ~~~ 񀁀~~~~ ~~~~~ ~~~ 􁀁~~~~~~~~~ ~~~~~ ~~~~~~  ~~~~~~~~~~~~  ~~~~~~  ~~~~~~  ~~~~~~ ~ ~~~~~~~~~~~  􁀀~~~~~~ ~~~~~~  ~~~~~~~~~~~~~~~~~  ~~~~~~ ~~~~~~~~~~~~~~~~~~  ~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~ ~~~~}~~~~~~~~~~~~~~ ~~~~~~~~~~ } ~~~~~~~~~  ~~~~~~~~ }~~~~~~~~~}}~~}~}~~~~~~~~~~~}~ ~~~~~~~~~~}~}}~ ~~~~~~~~~~}~~}~}~~~~~~~~~~~}}~~~~~~ }}~}~~}~ ~~~~~~~~~ }}~}~}~ ~~~~~~~~~~~~~}~~}~~~~~~~~~~}~~}}~~~~~~~~}}~}}~~}~ ~~~~~}~~~~~~~~~~}}~}~}~~}~~~~~~~}~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        󃂃         򂁂 񂁂      샂 򂃂    򂃀 󂁂         􁀀     󂁂        􁂁 򁂂                                                                                                                                                                                                                                                                                                                                                                    񅄅 􄃃􅄄     󃄃 񅄅􄃄 򅄅 􅄅 񃄃􄃄    􅄄󂃃 􃂃   􄃄񃂃   򃂃      򄃄                                                                                                                    툇  切  􇆇      뇆􇆇 񇆆        􇆇󆅆  􇆆 􆅅󇆇    醅  񇆆      򇅄                 󄅅􆅆     􅆆                                                )..(+(!&$! & .!                                    󈇈񊋌 􈇈              󉈈             񉈉󈇈      􈇇󇆆          3&'(%) %)!!%                                      @~?:@8:=9A41837                       򍌍   튉     󍌍        <75>;697236      񔓓            񓔓 󔓔   󑒓   󔓔   򍎍     󒑒                󙚚            󙘙 񗖖󙔓        󢡡                       󜛜                              񡢡                                      󨧧  󨧧                       𤣣                    򮭭        񬫬          󫪪                          򯰰򱰱        󱰱                                           󶵶          󵱲 𲱱                      󱰱     񱰰   򰱰      󽵶            򷶷   󶵵                        곲 󲱱         ž Ž  򾽾       ᄑ                󵴴 󶵵  򶵵  𵴵                               Ŀ                        򶵶                                           ¿¾            󼽼 󺹺 󻼻  󸷸𸷸                           򽼼     󺹺򸹸           %         0񾿿      !   캹   򹸸 򷶷                              񽾽        󸹸 󷸷 츹   󶷶                             񽼼           񵶶     򴵴        򽾽   ︹                    𴵴             󵶼     򵶵  𵶵  󴵴   𶵶          󳲲               񰱱            򴵵    򴵴                     򱰱  󮯮              󳴴                             񭮭                        󫮮󫪪                                            򧨨󩪪             񩪩                       󥦦                󤥥        󣤣󧦦                             󤣣            󠟞                                               󞝝 򛚛                 󗘗    񖗖㘗       𗖖         񔓔  򓒓   󖕖 񖕖     󙚚  󞝞 󝜝    󟞟 󛚚                          񠟠     򮭮󬫬 󮭮  򧨧 򬭭  󪩪 򨧧      睊         򶵵          󵮮     𱰰     ͷͶ̶̶˶˶˶˵ʶʵɵƴǴƴƵƴƴƴ񶵶 ĴĴĴijôôó³³²         !!!#"$$%%&&()))++,nopqrstuvwxwxxyyz{z{z{{mnnopqpqqrstutuvvwxyz {nonoppopqqrstuvwwvwwxyxxyyzz{z{{nopqrstuvwxyz{z{{mnnonnopoppqqrstuvwxwxxyyz{nnopoppqrrsrssttutuuvvwxyz{z{{mnnopqrstuvwxwwxxyyz{zz{mnnonoppopqpqqrqsrsstsstuttuuvvwvwwxyz{zz{{nopqrrstuvuvvwwxyz{z{{mmnnonoppqpqqrrstuvuvwwxyz{mnnopopqpqqrqrrsrssttuvuvvwwxyz{nmnnonooppqrstuvwxyz{mnnopqrqqrrsrststuutuuvwxyz{nnopqprqrrstutuuvvwxyz{nnopqpqqrsrsststtuuvwxwxxyz{zmmnnoopoppqrstuvuvvwxxyzmnonoopqpqqrrstutuuvvwxwxxyzyyzmnnopqppqqrrsrsstutuuvuvvwvwwxwxxyzyzzmnnonnooppqrqrrstuvuvvwwxyzmnnopqpqqrqqrrsststtuvwvwwxyzmnnopqrstutuuvwxwxxymnopqrstuvwxwxxyxyyznnopqrstuvwxwxyymnnopqpqqrqrrsrsstuvwxwwxyynnopqrststutuuvwxwxxynopoppqrrstuvuvvwwxymmnnopoppqrsrsrssttutuuvvwxxnnopopqpqqrqrrstutuuvvwxmmnnoopqpqqrssrsstuvwxnonoopqrqqrrsstutuuvwxmnnopqpqqrsrststtuvwxwxmmnnopqpqqrqsrrststtuvwxnopqpqqrqrrsrssttuvwxnnonoopqrqrrstssttuvuvvwmnnopqrqrrstuvwmnnopqrqrsstuvwnopqrststuuvwvmmnopoqqrsrsrsttuvmnmnnooppoppqqrstsstuuvuvwnmnnoopqrsrststtuvmmnoonoppqrstuvmmnnoopqrststtummnnopqrqrrstuvmnnopqrsrssttutuummnnoopqrststuutuumnnonoppoppqrstutuunnopqpqqrqrrsststtumnnopoppqrsttutnnopqrqrrsstunonoopqprqqrrsrsstumnnopqrsrssttnnopqpqqrststtmnnoopqrstmnnopqrsrssttnopoppqqrsrsttnonooppqpqqrsmnnonoopqrqrrsmmnnonooppqpqqrsnonooppqrsrnmnnopqrqrrssnnonoopoppqqrnmnoopqrsnmnoopoppqpqqrqrrmnonnooppqpqqrrqr        !!"##$%%%&''())+++                                      {|{{|{||}||}|}}|}|}}|}||} }~{{|{||{|{||{||{||}||}||}|}||}|}}|} }~}{|{||{||{{||{| |}||}}||}|}}||}}|}}|} }{|{|{{||{||{||}||}||}|}}||}}|}}~}}{|{|{|{{||{||}||}||}}|}||}||}}~}}{|{{||{{|{||{| |}||}||}|} }~}}{|{|{{|{|{{|{||}||}|}||}||}||}}|}}|}}~}}{{|{{|{|{|{|{|{{|{| |}||}}|}|}}|}|}}{|{{|{{|}||}||}||}|} }{|{|{|{{|{||{||}|}}|}}||}|}|}}|} }z{{|{{|{{|{||{{||{| |}|}||}||}|}}||}}|}}{z{{|{{||{{|{|{|{{|{|{||{||}|}}|}||}|}}|}}~{{z{{|{{|{|{||{||{ |}||}|}}||} }{|{|{|{|{{||{|{||{||}|}||}}|}}|}|}|}{z{{|{{|{|{||{|{||{||}||}}|}}|}}{|{{||}|}||}||}|}|}}{z{{|{|{{||{|{{|{|{| |}|}}||}|}}|}|}}|}zz{ {|{{||{{|{||}||}|}}|}zz {|{{||{||{ |}||}}||}|}z{{|{|{{|{|{|{||{||}||}||}|}}z{|{{||{||{{|{|{|{{||}||}|}|}}yz{ {|{{|{|}||}|}}|}}yz{zz {|{||{|{|{|{|{| |}|}}|| }yzz{z{{|{{|{||{|{|}||}||}||}}|}yyzz{zz{{|{|}|}||}|yyz {|{{|{{||{||{{||{{||}|}||}yyzz{|{{|{|{|{||{||}|}|}}|}||}}yxyyzz{ {|{{|{|{||{|{||{| |}|}||}}xyyzyzz {|{{|{{|{{||{||{||{||}|}}||}}xzyzz{z{{|{|{||{|{|{||}||}|}}|}xyxyyzyz{ {|{|{|{||{||}|}|}wxxyxyyzz{z{{|{{|{{|{||{|{{|{||{||}|}||}|}|}||}wxxyz {|{|{|{||{|{{|{| |}|}||}wxxyz{z{{|{{|{|{||{| |{||}||}||}||}wxyz {|{|{|{||}||}||}|}}|}|wwxyxyyz{|{{|{||{|{||}||}|}||wwxyz{z{{|{{|{||{|{{| |}|}}wwxyxxyyzz {|{||{|{{||wxyxxyyzyzz {|{|{|{||{||{||{||}||wvwxwwxxyyz{|{{|{|{|{{|{| |}|}vwwxyz{|{{|{{|{||{| |}||}vvwxyz{z{{|{{|{|{|{{|{||{|}|vvwxyz{z{ {|{||{||{||}||}}|uvvwxwxyxyyz{z{{z{{|{{|{|{|{||{ |}|}|uvvwxyz {|{{|{{||{||{|{{||{||}|}vuuvvwwxyyz {|{||{{||{||{||{||}|vuvvwvvwwxxyz{|{{||{|{||{|{||}||uuvuvwwxyz{z{{|{{|{|}|uuvvwxwwxyxyyz{{z{{|{|{||{ |}||uuvwxyzyy{{zz{{|{{|{{|{||{||{||{||uvwxyzyzz{z{{|{{|{{|{{||{|{||{||tuuvwxyxyyz {|{|{{|{||{|{| |tuvwvwwxxyxyyz{z{ {|{{|{{|{||{|tutuuvwxyxyyz {|{|{{|{|{{|{||tuvwwvvwxxyz {|{{|{{|{|{||{||{||tuvwxwxxyz{z{ {|{{||{||{{|tuvuvvwxyxyyzz{z{{|{|{||{||{{|{||{{||ststtuvwxwxxyzyzz {|{|{{|{{|{||{||stuvwxwxxyzyzz{z{ {|{{||{||{||rssttuvwxyzyzz{|{{|{|{{|{|{sststtuvuvvwwxyzyzz {|{{|{|{{|rsststuuvwvwwxyzyyzz{{|{{||{{|{{|rstuvwxyxyzyzz{|{||{|rstuvwvwwxyz{z{z{ {|{||{|{{||                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }~}~~}~ ~~~ }}~}}~~}~}~}~~~~~~~~}~}~}~~}~}~}~~~~~~~~}}~}}~~}~}~~~~~~~}}~}~~}~}~ ~~~~~~ ~}~}~~}}~~}~}~ ~~~~ ~}}~}}~}~}~~}~~~~}~~}~}~~}~~~~ }}~}~}}~}~}~ ~~~~~~~~ }~}~}}~~}~~~~~ }~}~~}}~}}~~}~~~~~~~~~}~}~}}~}}~~}~~}~~~~~~~~~}~}}~}}~}}~~~~~~~~}~}~}~~}~}~~}~~~~~~~~~  }~}~}}~}~~}~~}~~~~~~}}~} }~}~~~~~~~~~ }~}~~}}~}~}~~~~~ }~}} ~}~~}~~~~~~~~~ }~}}~}~}~~}~ ~~~~~~~~~|}}~}}~}}~}~~}~~}~}~~~~~ }~}~}}~~}~~~~~}~}~}~}}~}~~}~~}~~~~~~~~~~~ }~}}~}~ ~}~ ~~~~}|} }~}}~}~}}~}} ~~~~~~}|}}~}~}~~}~~}~ ~~~~~}|}}~}}~}~}~~}~~~~~~}||}}~}~}} ~}~~~~~|}}|}}~}~}~~}~}~~}~~~~~~~~~~}|}}~}~}~}~}~~~~~| }~}}~}}~~}~}~~~~~~~}|}}|}}~}}~}~~}~~}~ ~~~~~~}||}}~}}~}~~}~~~~~~}||}|}|}}~}~~}~~~~~|}| }~}~~}}~~~~~|}||}|}}|} }~}~~}~}~~}}~}~~~~~~~~~~}}|}||} }~}}~}}~}~~}~~}~~~~~~~~~}|}|}}|}}~}}~}~~}~}~}~~}~~~~~~~|}|}}|}}~}}~}~}~}}~~|}||}|}}|}}~}~}}~}~}}~}~ ~~~~}}||}}|}}|}|}}~}}~}}~}}~}}~}~ ~~~~~}}||}|}|}|} }~}}~}~~}~}~~~~~~||}|}|}|}|}}~}}~}~~}~~}~ ~~|}|}}|}||}|} }~}~}~}~}~}~~}~~~~~~||}|}}|}}~}}~}~}~}} ~~~~||}}||}|}}|} }~}~~}~~}~}}~}~~~~~~|}|}}|}}|}||} }~}}~}~~}~~}~ ~~~~}||}||}}|}}~}}~}}~}}~}}~~}~}~~~|}|}|} }~}}~}~}~~}~}~~~~~~}|}}||}}|}}|}|}|}}|} }~}}~}}~~}~~}~~~~~~||}||}|}|}| }~}~~}~}~}}~}~|}|}||}}|}|}||}~}}~~}~}~}}~~}~ ~|}|}||}||}||}|} }~}~}}~}~~}~}}~~|}|}|}}|}|}|}}|} }~}}~}~~}~}~~~|}|}|}}|}||}|}}| }~}}~~}~}~}}~ ~|}||}}|}}||}|}}~}}~}~}}~}~~}~~~|}|}||}}|}||}}|}}|}}~}}~}~}}~}~~}~~|}|}||}|}|}}|}~}~}~}~}}~~||}}|}|}|}|}}||}~}~~}~}~~}~ ~ |}|}}|}}||}|} }~}}~}~~}~ ~|}|}}|}}||}|}||}||}}~}~~}~~}~~}~ |}||}|}}|} }~}~}~}}~~{||}||}||}||}}| }~}}~}}~}~~}~~}~~|}||}|}}|} }~}~}}~}~~}~}~~{| |}||}|}|}|}|}}| }~}~}~~}~}~~}}~~}~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              򁀁                  ~~ ~~ ~ ~~~ ~~~~~~~~ ~~ ~~~~ 󀁁~~~~~~ ~~~~ ~~~~~~~~~ꁀ~~~~~~~~ ~~~~  ~~~~ ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~ ~~~~~~~~~~~~~ ~~~~~~  ~~~~~~ ~~~~~~~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         򄃃   򄃄      򂁂    􂁂 򃂂         􂁂󃂃   񃂃 󂁁   򃂃 򃂂     񀁀                                                                                                                                                                                                                                               􆅆񅄄            񆅅  򅄄  󅄄񆅅󅄅       񅄄   񃄃      􄅄        􄅄       򅄅     􄃃     탂 􄃃                                                                                                            􇆆  뇆  򇆇􇈈           􇆆󇆇   󇆆         􇆆    􅆅      􄅄 󆅅    񅆅󄅄  􆅆                                                       ,1.)'/%($*('#!$  #                                                    󉈉 爇  񈇇 򇈈         򆇇 􈇈 .51353-&+&%*  #!!                      @:;7<52124/)                  󎍎                  9?>8=259C768/0+                 񒓓 􏐐                   󛚚                      񔕕          󗖖         喕                      󙚚          󜛛 윛                     󡠡     򤣣             󢡡󠟟                    򨧧                              򤣣                             뢡          睊󧨨               񨧨     󨧧      򧦦                                          﫪  󫪫      𪩩     򫪫                     򥦦   󦥥     󱰰                񮭭   ﮭ          󫪫                󩨩󩨨      򳲳 򳲲         鱲  ﰯ             𯮯          򭬭                    󱲱        ﮯ 󯮯    诮󮭭   󭬬  񭬬        쵴 񵴴  %  봳   񲳲#    󲱱   󱰰        򯮯  쯭򮭮򭮭 򵶶쵶굶  񴵴 *򳴳㳴𴳳  6󳲳񳲲󲳲ﳲ (  񱲱   "(  񰱰ﰱ򰱰     򯰰 㯰 #-  $  쵶񶵶 ﶵB 𴵴𵴵 !1󳴳󳴳   0+ #  񱲲𱲲 + $  백񱰰 ﱰ  % 򯰰󰯯 =򮯮䯮𵶶      򵴴  󳴳     󲳲 򳲳񱲲   󱲲 ﲱ ﱲ    򯰰       𴳴      񳲳    󲱲󰱱  𰱰      󰯰   𯰯       󬭭  򭬭     󳲳 󱲱    챰󱰱           򮯯 ﯰ 𰯰     񭮭     󯮯             𱲱                뭮    򬭭 󭮮  򭮭                     󫬬    󪫫      󩪩    𬭬       򭮭         𫬬      婪      쨩       󧨧                                                               񦧧          拉                򣤣             󧨨󧨨                  𣢥       󢡥  󡢡   󣤣                             󤥥        򠡡          񡠠         󟠠            𞟟           򝞞                                     󘙙                          󘙙   󕖖           򓔔                                񑒑                         󑐑 򖕕󔕕        􏎎   􍎍򏎏   󓒓        󚙚              󔓓񙚙                𞝞          򩨩     罹󨩨           񨧨󢣣       򬭭  򮯮    򰯰򬫬       󫬬󬭭󮭭          񳲳󰯯        ԿӾҽ򼽽ҽҽѻѼллккϺϺιι͹˶̶˶ʶʵʶɶȶȵǴǵ---///123335567879:::<<=> nopqrqnopoppqrqqmnnopqmnnopqmnnonoopoppqqnmnnopoqpqqmnnoonooppqnnonoopmnnopmnonoopqmmnnoopmnnonoopopnoppomnnopmnnonmnnoommnnonomnnomnnmmnnnnmm-.-/0/013345457888:::<<=>           rssrsststtuvwxyz{z{{|{{|{|{{||rststtuuvwxwxxyxyzz{z{{|{{|{{|{|{|{|{||{||{|qrrsrststtuvwvvwwxxyz{|{|{||rstuvwxyxyyzyzz{|{|{|{{|{|{|qqrrsrrssttuvuvvwwxyzyyzz {|{||{{|{|{qqrrsrsstuvuvvwxyxzyzz{|{|{|qqrqrrstuvuvvwxyz{|{|{{||{|{{|pqqrststtuvuvvwxyz {|{{|{|qrstutuvvwxyzyzz{z{{|{|{||{{|{|qpqqrstssttuvuvwvwwxyxyzyyz{zz{ {|{|pqrqrrstuvwxyxyyz{|{{|qppqrstuvwxyxyyz{z{ {|{ppqrststtuvuvvwxwxxyxyyzz{z{{|{{|ppqrstuvuvvwxyzyzz{{|{{|{{|{|{oppqrstuvwvvwwxyz{z{{|{oppqrststtuvwxyzyzz{z{{|{{|{oppqrstutuuvvwxwxxyyz {|{{opoppqrsrrttuvwxwxxyyz {|{{oopqrstuvwxwxyyz{|{{opooppqrststtuvwxwxxyxyyzyz{z{{z{ {opoppqqrqrrsstuvwvwwxyxyyz{noopopqqrststtutuuvwxyz {nopoppqrrststtuvwxwwxxyyz{z{{nonoopqrqrrstuvwxyz {|{{nmnoopqpqqrstuttuuvwvwwxxyz{z{ {mnnopqrsrsttuvwvvwxxwxxyyz {mnnopqrststutuuvwxyxyyz{z{{mnnoonooppqrqrrstuvuvvwxyxyyz{|{{nmnnopqpqqrrsrssttuvwxwxyyzyzz{{nnonooppqrrsrsstuvuuvwvvwwxxwxyxyyzz{z{{mmnoopqrsrsttstutuuvwvwxwxxyzyyzz{{mnnopqpqqrststtuuvwxwxxyzyzz{nnopoppqrstuvuuvvwvwwxxyxyyz{mnopoppqrsrrsstutuuvwxyxzz{z{{nmnnopoppqpqqrsrsststtuuvwvwwxyxyyz{nmnnopqrqrrstuttuuvwxyxyyz{z{mnnopqrststtuuvwxyz{zz{mnnopqrststtuvwvwwxyz{z{nnopooppqqrqqrrsrrsstutuuvwxwxxyzyyz{znnopqrqrsrrssuttuuvuuvwvwwxyxyyzz{{mnnopoppqrqrrsstuvwxyzmnnoppqpqrrstuvwxwyyzyzmnnopqpqqrrstuvwxwxxyzyzmnnonooppqrstuvwxyzzmnnopoppqrstuvuuvvwvwxxyxyyzmnnopopqqpqrrsrsstutuuvuvwwxymnopqpqqrsrssttstutuvuvvwxyxxymnnonoopoppqrqrrststtuvwxyxyynopqrststtuvwxymnnoopqpqqrqrrstuvwvwwxwxxynopqrstuvuvvwvwwxmnnonoopqrqrrstuvwxwxxymnnopqrsrssttuvuvvwwxnmnnopopqpqqrstuvwxmnonpoppqrststtuvwvwwxnonoopoppqqrstuvwvwxnnopqrsrsstuvwvwnmnnonoopqpqqrsrsttuvwnopqrststuttuuvwnmnnoopqrqrrsstutuuvuvvwwnmnnonoppqrstuvuvvwmnonoopqrqrrsrsstuvmnnopqrqrrsrststtuvvuuvmnnopopqppqrqrrtsttuvuu                                                                                  {||}||}|}||}|}|}}~}~}}~}}~}~~|}|}|}|}||}|}}|}}|}}~}}~}~~}}~~|{|{||}|}|}||}|}}~}}~}~}}~~}~~|{|{{||}||}||}}||}|}|}}|} }~}~}}~~}}~~}~}~|{||}|} }~}~}~~}}~~}~~}~{||{| |}||}|}}|}}|} }~}}~}~}~||{||}||}||}||}|}}|}}|} }~}}~}~~}|{||{||}|}|}||}|}}|} }~}}~}}~~}~~{|{||}||}|}}|}}|}}~}}~}}~}~}~~}~|{{||{| |}|}|}|}}||}||}}|}}~}}~}~~}~~}~~||{| |}||}|}}|}|}}|}}~}}~}}~}~|{||{| |}|}}|}|}}|}}~}}~}~}}~}~~}||{{||{||}|}||}||}|}}|}|}}~}~}~~}~|{|{{|{||}|}||}}|}|}}|}}~}~~}}~}~{||{|{{||{| |}||}|}|} }~}}~}~~{||{{|{| |}|}}||}|}|}~}}~}~~}}~{||{|{||{||{||}|}||}|}||}|}}|}}~}}~}}|{{|{|{||{{|}|}||}||}}|}|} }~}}~{{|{|{{|{||{| |}||}|}|}}|}}|}}|}}|}}~}~}{{||{|{||{||{||}||}||}||}|}|}}|} }~}}~}}{{|{| |}|}||}}|}}~}}|{{|{{||{||}||}|}|}}|} }~}~}{{|{|{{|{{||}||}|}|}|}}~|{||{{||{|{|{| |}|}|}|}|}||}}|}|} }~}{{|{{||{{|{| |}|}|}|}||}|}|}}|}}{|{|{||{{||}|}||}|}||}}|} }~}{{|{{|{{|{{|{{ |}||}||}|}}|}||}||} }~{|{{|{{|{|{||}||}||}|} }{|{||{{|{|{||}||}||}|| }|}}{|{||{{|{|{{|{|{||}||}||}|}}|}}|}}~}{ {|{||{{||}||}||}|}||}|}||} }{|{{|{|{{|{||{||{||}||}|}||}|}}|}} {|{|{{|{||{ |}|}||}||}|}}||}|}}{|{{||{{||{||{|{ |}|}}|}}||}|}|}}|}}|}}{{|{{|{{|{||{{|{||{||}||}||}}|}||}|}}{|{{|{{|{{|{{|{|{|{||}||}|}|}}|}}{|{{|{||{{|}|}|}||}}|}}|}}{{|{|{|{| |}|}}|}}|}|}|}{{|{|{{|{{|}|}|}|}|}}{|{|{||{|{| |}||}||}||}|}}|}z{{z{{|{{||{|{{|{||{| |}|}|}|}|}|}}|}}|}}{z{ {|{|{|{||{||}||}||}}|}|}}||}}|}}zz {|{{|{|{{||{||{| |}|}||}|}}|}}|}}|zz{z{{|{{|{|{{|{|{{|{|{||}|}||}|}}z{zz{{|{{||{|{||}||}||}}||}||}z{z{ {|{{|{||{||}|yz{z{ {|{|{{|{||{||}| |}|}||}yyz{z{{|{{|{ |{||}||}|}}|}yzz{|{|{||{{||{||{| |}||}||}}xyyzz{z{ {|{{|{|{||{||}||}|}}|}|}xyyzyzz{z{{|{|{||{|{{|{||}|}|}|yyz{z{|{|{{|{|{{|{{|}||}|xxyyz{|{|{{|{{||}|}|}}xyyz {|{{|{|{{||{||{|{|{||}||}|}xxyz{z{ {|{|{||{||{||}||}|}||}|wwxxyz{z{{|{{|{||{ |}||}||}|wxxyz {|{|{{||{|{||{||{| |}|}|}}wwxyz{z{{|{|{{|{|{|{{| |wxwxxyz{z{{z{ {|{{||{{|{{||{| |}||wxyzyz{{z{{|{|{||{{|{|{||{{||{||}||}}wwxyz{z{{z{{|{|{{|{{||{{||{|{||{ |vwxyzyyzz{ {|{{|{||{||{|{{|{{||}||}|wwvwwxxyz{|{{|{|{||vwwxyz {|{|{|{{|{||                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ~~~~~~~~~~~~~~ ~~  ~~~~~~~~~}~~}~~~~~~~~~ ~~~~~~~~~~}~~}~~~~~~~~~ ~~~~~~~~}~}~ ~~~~~~~} ~~~~~~~~~~ }}~~}}~~~~~~~~ ~}~~}~ ~~~~~~~~~~}~}}~~~~~~~~~}~}}~}}~ ~~~~~~}}~~}~ ~~~~~~~~ }~~}~~}~ ~~~~~~}~~}}~}~ ~~~~~~~~ ~~}~}~}~~~~~~~~~~~~}}~}~}~~}~~~~~~~~}~~}~}~}~~}~~}~ ~~~~~~}~~}}~}~~}~ ~~~~~~~~ }}~}~~}}~~}~}~~~~~~~}~}} ~}~~~~~~~~~}~}}~}~}}~~}~}~~~~~~~~~~~~ ~}}~}}~~}~}~~~~~~~ }~}}~}~~}~}~ ~~~~~~~~~}}~}}~}~}~}~~}~}~~}~~~~~~~~~ }~}~}}~}~}~~}}~}~ ~~~~~~~ }~}~}~}~~}~~~~~~~~~ }~}}~}}~}}~}~~}~~~~~~~~~~ }}~}}~}}~~}~}~~~~~~~~~ }~}~}}~}~~}~~~~~~~~~ }~}~~}~~~~~}~}}~}}~}~ ~~~~~~~~~}~}}~}~}~}}~}~}~ ~~~~~~~~~}~}}~}~~}~~~~~~~~~~ }~}}~~}~}~~} ~~~~~~~~~}~}~}~ ~~~~~~~~~}~}}~}}~}}~~~~~}~}~~}}~}~}~~}~ ~~~~~~~}|}}~}}~}}~}}~~}~ ~~~~~~~~~|} }~}~}~}~}~}~~~~~}}|}|}}~}~}}~}}~~}}~~}~}~~~~|}}|} }~}~}}~}~~}~ ~~~~}}~}~}}~}~}~ ~~~~~~~~~~~|} }~}}~}}~}~}~~}}~~~~~~~||}|} }~}}~}}~}~}~~}~ ~~~~~~~~|}}~}} ~}~~~~~~~~|}}|} }~}}~}}~}~}~ ~~~~~~}}~}~~}}~} ~~~~|}|}|}}||}||}~}}~}~~}~~}~~~~~~|}}|}~}~}}~~~|}|}}~}}~}}~}}~}}~~}~~}~~}~ ~~~}||}}|}}~}}~}}~}~}~ ~~~~~|}|}}|} }~}~}~}}~}~~}~}~~~~~~|}|} }~}~}~}}~}}~}~}~~~~~~||}}|}}|}}|}|}}~}~}}~}}~}}~~}~~}~~|}|}}||}|}}|}}~}~}~~~~||}|}|}}|} }~}}~}~}~ ~}~~~~||}||}||}}||}}|}|}|}}~}}~}}~}}~}~~}~}~}~ ~~|}||}|}}|}}|} }~}}~~}~}}~~}~~}||}}|}|}|} }~}}~}~}~~}~~}~ ~|}}|}|}}|}}~}~}~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        󁀁      򂁂              򁀁  ~ ~  񀁀 ~~~~~恀~~ ~ ~~~~~~~ ~~ ~~~~~  ~~~~~􁀀~~~~~ ~~~~~~ ~~~ ~~~~~~ ~~~~~~~~~~~~~ ~~~~~~  ~~~~~~~~~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        󃂂     탂    􂁂 􂁂 󂃂  􂃃   胂    􃂃     񃂂                                                                                                                                                                                         񆅆         򅄅􅆆 憅                􅄄          􄃄            񅄅  󄃄     󅄄         􃄃샂                                                                                              񇆇        󆅆        󆅅󇆆        򆅆    򇆆  􆅆    톅      򅄄 񆅅                                                  6)*.&*'#"%#" #                                             􋊊          􈇇  􈇇    򈇇   󇈇       򆇇숇         46,%'* !&!    !!   !                                   @?;9@5@-.40:-(.'()*$ $     򌍌       򍌌                    񉈈                   @9;;9?244 1..+3)1'/!!"$                                                                            򖕖               󔓓               򝘘󘙘        򙚛                 󗖗                   얕                                         󛚛                                           𤣣  򢡡       񢣣   򢡢                򡠠        񟞞𠟠      󟞞       󝜜   󞝝    󧦧  󥤥 殮     殮  񤥤  󤣤   󥤤      󤣣                  򠟠  򠟠       󨧨                   ꧦ   𦥦  󦥥 񦥦 𦤣  󤣣񤥤 쥤            󢡢󢣣     󡠡       񫪪         󪩩  񩨩            󧨧      𨧧 﨧 𥦥   󦥥     񦥥    馥 񥤥   򣤣   񬭬(       󪫪    򪩪     󩨨    ߧ  󦧧  򧦧    릥 񦥦   󮭮  󬭭񭬭򫬫 #竬  쫬 󫪪 󫪫    񪩩  񪩪󩪪    﨩  񩨨󩨩   #  䧦󦧦 姦  復 즥  뮭ﮭ '  򭬭   !񬫬󫬬񬫫⫬ ,*󪫫뫪   򪩪 睊,. 󩨩򩨩A  󧨨     4   鮭   ⬭ ﭬ .  7   ]   諪 # ꩪ    񨩩   %E秨  H   !      쬭#     󫪪  󫪪򩪪񩪪𪩪睊򩪪  󨩩󩨩﨩񩨨  $ 槨  򧦧񧦧     󫬬 󬫬񫬫            󩨩 󨩩     𨧧󦧧  ꥦ    򦥦    񪫪      󩪪     󨩨  ꨩ       򦧧          󦥦       񤥥 򣤤                                񥤥          򢣢      󣤤     򡢢   獵  񥦥    󥤤  ꥤ                  󢣢         󡢢        󠡠        󣤤             𢣣                        󡠡          񝞞         󜝜             颡                   띜           𛜟                 򙚝                    웚        񙚚         󗘗 򗘗                򗖗         󕔔                󕖕                     󔕔       󒑒       󒓒           񐑐     􏔔      􎏏            󏐏    򌍌     z:          팍󐏎󍌍                     􉊉   ?==83 @dP2( @Selection Mask P @Q QVQbQnQzQQ @QQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQRQVQZQ^QbQfQjQnQrQvQzQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ QQQQQQ"Q&Q*Q.Q2Q6Q:Q>QBQFQJQNQR @dP2(arctica-greeter-0.99.1.5/data/arrow_left.png0000644000000000000000000000043314007200004015452 0ustar PNG  IHDR ,tEXtSoftwareAdobe ImageReadyqe<IDATxb?X@@PM$F 'I ?@59@|! ć劮&f86!kd=R\|cAd?'թȁs IsAMs5p%9ib5.R"?Fl"([a6hD.:. `VL_-HIENDB`arctica-greeter-0.99.1.5/data/arrow_right.png0000644000000000000000000000047614007200004015644 0ustar PNG  IHDR ,sRGBbKGD pHYs  tIME* IDAT8˵AfA''tU 9@*RBK  )md/v槏a6yyo]b'_zTM bR+|a. p\xK@7fI,p/k. |щvP9ۜz,FmF_KE-:.|VLdBIENDB`arctica-greeter-0.99.1.5/data/badges/awesome_badge.png0000644000000000000000000000104014007200004017310 0ustar PNG  IHDRĴl;bKGDC pHYs  tIME 1iIDAT8˥1kSQ/^ @%* E kAw'' \Eqp)]MiZ"MVrғۤx| 2-`XTZ+( uI[M_6L;{˙vկΦE2= .ghw rDNT@I{o8n4>~K]S?NQY-q"# eK$׈X.*P Y% -4SOkxX*0W3C=Q5wca"y-3=`NTn_csC=6z*RU4QVoٺZsrO&\!6AIENDB`arctica-greeter-0.99.1.5/data/badges/awesome_badge.xcf0000644000000000000000000000251414007200004017313 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf                        i̱i x{   suu~ x2 ~: Z5 rgjjc B  9 : ::La_]#`:>*u:B)x6?%   $ !  f۷larctica-greeter-0.99.1.5/data/badges/budgie_badge.png0000644000000000000000000000106014007200004017111 0ustar PNG  IHDRĴl;bKGDC pHYs  tIME &i\IDAT8˭=hAABBP8\v"Kk {B,$^,B0 3Qp1)NT `wfw@apQ C;4RԞSa3 \wtlx3Hx^N5(AxGlI~XnN IDoOA=߀n!{ҏDi=v;_i MVͭ m.:GUzR)hUmvKd]zYm r\.:<IENDB`arctica-greeter-0.99.1.5/data/badges/budgie_badge.xcf0000644000000000000000000000252614007200004017115 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf                        i̱i x{    xڛ~}Zr쭑3 0+ `Lyjl ` uzuxʯ   $ !  f۷larctica-greeter-0.99.1.5/data/badges/COPYING.badges0000644000000000000000000005463414007200004016320 0ustar Copyright Attributiong for Desktop Session Badges ================================================= Files: gnome_badge.png kde_badge.png recovery_console_badge.png remote_login_help.png ubuntu_badge.png unknown_badge.png These files have been provided in 2011-2012 by Canonical for Unity Greeter, we can only assume a license (which is the upstream code license): GNU General Public License (version 3). License: GPL-3 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ---- Files: *.xcf Copyright (C) 2015-2017, Mike Gabriel Licensed under CC-by-SA-v3.0 THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. 1. Definitions a. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. b. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined below) for the purposes of this License. c. "Creative Commons Compatible License" means a license that is listed at https://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of adaptations of works made available under that license under this License or a Creative Commons jurisdiction license with the same License Elements as this License. d. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. e. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. f. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. g. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. h. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. i. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. j. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. k. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: a. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; b. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; c. to Distribute and Publicly Perform the Work including as incorporated in Collections; and, d. to Distribute and Publicly Perform Adaptations. e. For the avoidance of doubt: i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, iii. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(c), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(c), as requested. b. You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this License with the same License Elements as this License; (iii) a Creative Commons jurisdiction license (either this or a later license version) that contains the same License Elements as this License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License. If you license the Adaptation under one of the licenses mentioned in (iv), you must comply with the terms of that license. If you license the Adaptation under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the "Applicable License"), you must comply with the terms of the Applicable License generally and the following provisions: (I) You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You Distribute or Publicly Perform; (II) You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License; (III) You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License. c. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Ssection 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. d. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. 5. Representations, Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. Termination a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. 8. Miscellaneous a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. b. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. Creative Commons Notice Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. Creative Commons may be contacted at https://creativecommons.org/. arctica-greeter-0.99.1.5/data/badges/gnome_badge.png0000644000000000000000000000106114007200004016760 0ustar PNG  IHDRĴl;tEXtSoftwareAdobe ImageReadyqe<IDATxڜGCQjF˸e@{#4"׽Di)QQn;Z?>{9wn,bcfA dy^@lq5 2 >S`p;M8[5v.ն( s{ؾnU r$=zZ΍bR T+$m`T X6pqzz5/2j),19'dAU՗q}%V/ьF*k@3;;3xl؉v]Z-%*sHcd?U'3R ĞbT!vhnTZ{hp$U/#\aXL!E?oJ vnK OzJ~չX=jIMjD?Lnqp,a4+bw^Ɓ J|LRmdžzntA$Kh|̮`"VƂo9uE\iIENDB`arctica-greeter-0.99.1.5/data/badges/gnustep_badge.xcf0000644000000000000000000000252714007200004017344 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf               i̱i x{  gRj  xuWO~+[Z Sr gRjI`)Tuz(flTxa3)Q PQPFыFSUU  $ !  f۷larctica-greeter-0.99.1.5/data/badges/i3_badge.png0000644000000000000000000000107714007200004016175 0ustar PNG  IHDRĴl;bKGD pHYs  tIME 5) IDAT8˕;H\Q׬/XXXEj#DE;!UTH6DH#B ( T+!APMBlfz5֤ 0MVx hk:ց@sj?CfIENDB`arctica-greeter-0.99.1.5/data/badges/i3_badge.xcf0000644000000000000000000000276214007200004016173 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf                           i̱i x{  uJ x!~ Zw ry J|t&F}2G(E )B *A/` +u GKx ,  R @ @$ !  f۷larctica-greeter-0.99.1.5/data/badges/kde_badge.png0000644000000000000000000000111614007200004016417 0ustar PNG  IHDRĴl;tEXtSoftwareAdobe ImageReadyqe<IDATxڜODDQQ""D(C*1D%"MeZRHR)EJQ&E|uLuy?߽s zpX%]4?&X9j6(c+n2gk~蘢Kx{j|^oi4wcEN6Y5wwE1ۙC@iN0Mz0vJC@j9 jBXf;Yu[21 WՆEm%owF%6.#P:@&i[~QZ;rA&,sr"|:(yp^I53A$Wc`@?ߘ)f~~HS|X~_וNq9*Ke6jy(eyI`PrG[;rA)K@=G L@1YɶKϗhIENDB`arctica-greeter-0.99.1.5/data/badges/lxde_badge.png0000644000000000000000000000121414007200004016607 0ustar PNG  IHDRĴl;bKGD pHYs  tIME & JIDAT8˕?HWQ?D )k%*r ! ZBɖ)"jќ,էzw={; @]5 |ڠScJ=6ϫ ΩqR][Dڪ~(!'UIm͒UQ;B%t!\S7f,=WqXNf6+UQwsZW^!V[PdRWv:ۋz'c|u[O#ԑU)A$#֗$]=nROC vu< >ml9u0>%ɌNDFvHNZ^3yF3gtxԆ~{9gYt߀0${uڭ6%gV=ʌݩ03_XBh6 Ԅ"q7x kPڝj Pͫ!ϩ #jlRڔ'ꌋÑ)~[ҋ؎I=U >$As{XB6>KC!IENDB`arctica-greeter-0.99.1.5/data/badges/lxde_badge.xcf0000644000000000000000000000255214007200004016611 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) lxde_badge.png     BVf        *         *         * i̱i x{ l1ӂ6 x&6~?ZN1r, m rxO}'e;X  Tm #O`*f ,a>uUx <{: v ]?#   f۷larctica-greeter-0.99.1.5/data/badges/matchbox_badge.png0000644000000000000000000000114114007200004017457 0ustar PNG  IHDRĴl;bKGDC pHYs  tIME  yIDAT8˭=kQ;Y +H`e!"Ѐ +AB1hhi T0`a.BDcbc欌Nf}as=wR#vƫ7G`RU:g3j ZW_vV ukZmy)g`36T.?}}7TW]1j`Σ_r[ڢ\C nŮ+ZπC`JV]܇Pfѫ[GIwSz|p$vosp ^3^~ oW38P,N?JAT' r8 hm/ŎP[X=JJi^.FB+ӎzDsAuߍA(&;9٤gj7pتTzX=ej5㸆 G.R$KhF~!y: +Ӏz[LP)ezH}؝J<-:`c"kKZoMq <vEqmۀO|w8}!L'$Rgq(&z\nTzARv}0u AKϫuH}Q7&cW׆B5s16mb֫NtJPodj3~1LB6>Q]3 ]IENDB`arctica-greeter-0.99.1.5/data/badges/mate_badge.xcf0000644000000000000000000000263614007200004016606 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf                        i̱i x{   \G>Z xB2~*Z#I`AF"&r&gDc%(%;%@M%%MQ$%2(>$yMg`"U;?G(%uFxN3 bC>X  $ !  f۷larctica-greeter-0.99.1.5/data/badges/openbox_badge.png0000644000000000000000000000117214007200004017330 0ustar PNG  IHDRĴl;bKGD pHYs  tIME ZV.,IDAT8˥AHUAy=0 fEUˢ-r+E-ZA Bmڷ1 i] RM&1^Q enO_ݙ?ssLj7pz#qiXG!U6CkmhCvQS*|<nV/=su9uE=5-_ԱMT/b2bԽ LGdF 8}xV/}- h &]8_b8oI`2-I !<t5 0ۀ8!L&KQlQ)~G՗ꂺ"ӠzWwQsWA X)63sSZ s `zK㩢AvN10^5F ̪'%č 鷺OHN{?ַrmz !ϕM5Eubm^=w3 ͡Wt=|[LTfx*$IENDB`arctica-greeter-0.99.1.5/data/badges/openbox_badge.xcf0000644000000000000000000000260114007200004017322 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf                  i̱i x{  Ws'iRq xw'fYe~'fZwEX'fYO\rڮP^ 'guHRŦcyT,XB{2_dK[cM[cMA`scMzucMxAcM cM  GAL1$!  f۷larctica-greeter-0.99.1.5/data/badges/recovery_console_badge.png0000644000000000000000000000074414007200004021242 0ustar PNG  IHDRĴl;tEXtSoftwareAdobe ImageReadyqe<IDATxڴJ17P<*P @1<1< ؋GOz %b:$閮?|N&ىZCJ`Kp Vo ,XǠlj3G]m| 6w zadˆmD`r8j+W( e^ K]GQm͙%c/P*@O?`]ҏC@' ` poxlVY `hKK i`8 %bVO@Cv/jfʥq8Al{Y a3EpA

{dI2$&+~{'d;pYWo-J~Oxlz\"~Sj c:xI_ǁ,eP\`IunC)= ֵtQCJXtV&\ p ϒmoJ xjUYk_S̅N i p XwRR2zN`71Q\! M(k֘W1w,;3x6c<%=x㢿~:'3"iu'7IOʹErI*̃ SRBRCJꏑKtDR}Z_rpMIENDB`arctica-greeter-0.99.1.5/data/badges/sugar_badge.xcf0000644000000000000000000000232714007200004016776 0ustar gimp xcf fileBBcgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf      i̱i x{ 嵹irm{ xqf~{iZ殽^er|t]hp`j|h^]na[KI]U_|y`^[UvjuvP˷W~xv_f ʍ $ !  f۷larctica-greeter-0.99.1.5/data/badges/surf_badge.png0000644000000000000000000000101214007200004016626 0ustar PNG  IHDRĴl;bKGDC pHYs  tIME 4QǏIDAT8˭1kA 8 C+"?" Vbacڀ *FVi0`qޑf>q{}g}gv؝M @^X9=:9JtF}űmC^kK*$u .R 5)֛b:pwK IkEX_}QI(E/\"ޝfJ Nq" 4^ئ:VVs̯F 8U=gQiwѭ[ъMoG: Z9WNRؠ:hl^B:?l&Fq*>Osg?"PV%F]Qjk4hIENDB`arctica-greeter-0.99.1.5/data/badges/surf_badge.xcf0000644000000000000000000000211314007200004016625 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) surf_badge.png     BVf      i̱i x{    x~ ""Z "Our "պCCBBBCCDCA"5C"A7""<>"8A"4C"""""tO""ib"""""""""`ux   $ !  f۷larctica-greeter-0.99.1.5/data/badges/twm_badge.png0000644000000000000000000000066214007200004016470 0ustar PNG  IHDRĴl;bKGD pHYs  tIME ,He?IDAT8˭JCAFϤ!`(6 ,AV Q" 1o{g -`%>N"⅟Ϊ; ]uvzU۹Vd-X>@-OmI=-@sР r X+( P6QUKv\> %M||I''ݳ5`Qj?Ӿ%s`\׀3 H/$"^n#bw>[ƱY/ǟRnj7몗ڬz~IENDB`arctica-greeter-0.99.1.5/data/badges/twm_badge.xcf0000644000000000000000000000243314007200004016462 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf ,C  ,C  ,C i̱i x{   x~Zr`ux  $ !  f۷larctica-greeter-0.99.1.5/data/badges/ubuntu_badge.png0000644000000000000000000000102314007200004017173 0ustar PNG  IHDRĴl;tEXtSoftwareAdobe ImageReadyqe<IDATxڤGQc1"cjDDDUDĈ#o*vD"%Q7]dc)oxnw=qN,!iP J|^58 luD9D;2f.Ⱥg˔n@ c"pq+];oHey*B<؊ UprP[q"F L 5-0#cF<(pOu0 C^LDt` 8\'*5[==P묩X1uZP/U;jT@C}*8"^[T\z lE`!=pQsYIWO$-[$"ց% (}#s `O, >R>)p_V7Pl)&zY}.geuV"6ޔIENDB`arctica-greeter-0.99.1.5/data/badges/xfce_badge.xcf0000644000000000000000000000225314007200004016600 0ustar gimp xcf fileBBgimp-image-grid(style solid) (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000)) (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000)) (xspacing 10.000000) (yspacing 10.000000) (spacing-unit inches) (xoffset 0.000000) (yoffset 0.000000) (offset-unit inches) xfce_badge.png     BVf N 2  N 2  N 2 i̱i x{   x~ZլrqS8@z0G3@Hg`5p<ux  $ !  f۷larctica-greeter-0.99.1.5/data/badges/xmonad_badge.png0000644000000000000000000000112314007200004017140 0ustar PNG  IHDRĴl;bKGDC pHYs  tIME +#IDAT8˕gWaZъ1XJwtDW]u%"R&QhtQQƺ."6֘EcO7y<>)"쎈c1q0xX&@cU=Vq=uxC9A̗cδl`d_`;iw&ӫUɶILUOs-NM.gbZ;;8m& Sf9a p0 y6gaҕ4k'"E="#Fv0T3@oR#aG݇&:N$<(^&\ܩx_&a&;89</`2Z V%4hZ^R ҡq#c{ؒtw+ 2";"}YDlM-f&"Uқ/Kz[pOi' `6EW3 <YR:ROV\<>)WHHU!^HZKmyq^;٠ ~ o!c· ė>Y}T-񫊓znqLIx: IENDB`arctica-greeter-0.99.1.5/data/dialog_close.png0000644000000000000000000000122214007200004015727 0ustar PNG  IHDRשPLTE???FFFIIINNNWWW^^^fffmmmyyy~~~U~NtRNS!369@ABDEFHIKKMNQRUWY\`cfiloortxy{}mIDATxu^@ǬniE'e{bfD$yiF8;z;k#xXTYcz&"3BGߑIENDB`arctica-greeter-0.99.1.5/data/dialog_close_press.png0000644000000000000000000000122214007200004017143 0ustar PNG  IHDRשPLTE $$$(((***...444:::???DDDOOOTTTXXX]]]aaa1vNtRNS!EHKNQ`cffhijlopqqrstvxxz}c IDATxuZ@E"D,, wI8?υ)Q)g7r,\ L[{[kgh~k BR`?+cI`}R@O>U5r#TDܶ:MK]KڢiaG5P4ԉ&CS}TK_j0] Rg:Хa>Ms&x^2n.h?dgd· *AѮk_r!Rwp{}Y0EHIENDB`arctica-greeter-0.99.1.5/data/hibernate_highlight.png0000644000000000000000000000255714007200004017307 0ustar PNG  IHDRCUPLTEr(e^tRNS "$&)+-.02579:<>ACDFGHJORTVXY[^`begjlnqsvxz{}IDATxkSg/lw`61M9К4J#."~mt"yaevgòoo۵,f#yQȵq\F^ATyx {@\C()P+3>)}DԤDA ɠ5A jPԠ5A jPԠ5A q5A jПoj -[\Cv[S[9|}M7w pUnKߺǰ&r =}Ġ}iijo ͭ7D%n]q$u!nr^yX )8 6ua.xt!|/( !e/ɝI*0h/&u- RgI9t{|(^h)7ol{N!/YN4i w4mNj'qi,-ŰPq=Ϡx?VkŵWbxiWcEai]`; sʺSe`T;3]rz^z[wBCn%+ h9jBe Y7t}PEy s [r q IW5j4]VښRGT@v:Zk!q|Ƞս/<_Tjªo :ke׺ *kO2\+FR(T^׻vŠ5A jPԠ5A jPԠ5A jPԠ5A3ЎQ'9/EOk+=OBb%x8I(ə"[LQr $Ok1Zϱqd/kkIENDB`arctica-greeter-0.99.1.5/data/hibernate.png0000644000000000000000000000264014007200004015251 0ustar PNG  IHDRCU#PLTE2sY`tRNS !$'*-036W2u'EO jPԠ5A jPԠ5A jPԠgPԠI/ BRؑpi4VΡ]1(hJ?'/17qrQn+&u_0Z[9~LS;v4_eIZ Jt iB_ZН>v: 8)tu$i]W<|ACNaA>OWI@)a[j$/3}m̀.^F^@YOt ~8`F"/1YCw^y&o`WҜCp@f@MB/`93[@)7]Im [Πl@U2)p4eROiE~Z=h]i00-ӝ1韧Me (TMhj3&\Mg $ 8 U[;eQVBb`g(^p@Ax+j @- :j`['i} {U2kF0\{6IkRiz0hs lj1iQcIZjD/ T:hnF?#h}/,3k߷㧩p=%ْI:8Wk%  FWm#_1l븚jlX f<%;3./̬O[0_I};-64=Do3gjN>f9v3OlHܙj0-l3ۺUjW8و= G:ia3?!;TDtUQ{r<7af)y1UX׸>0WQNp۰0x~Q- `{2RYu'r/tfv*3wpZԾV[`f"@j'3"A<DŽ2O-jf#ѡC&OqU`rOE;y\Ld JW'pj4eh|%ӎR~"AIlZIsWzU&A_4Q``0045[ N1usxEҠhYFO75sFX]`Ӂ`tOtz~ą R3[BIW̬? ͒bd'q5v\n IUSIکz*8&s!i@Cgfwe.oBFHɒ-ef9df%?1;%͌.3SҴ0uʝǓ+cfj1 3A_kU$3n)U>Σhe")]..k3E<]/LmlZyܥ@+0R6C-AƷ3<4Qd3Rlnվ]COU5f9 |j?Jqx:lF'"MmÄHԢ ּzޮBW1| M/z0p}j*(CK]Lj^tOD{p^_5}pc~z/<jNtkށxJÕA5]hCf07a|R'm`ʁif^*R !̰^Ο k2\,)KƄ4fj3;^o6yv+,MfOH4\8ͬW BRC? |R^*3CM,*JN%mTJ NhNh>" jA]V$=cކ_.KS֊:&%բxjܤ?2:|3;C AO` ƟUW!ԒG /[yNsozp)KKguJQ%N)y=ǝ&G{3 \^OqٸzVAx"]FJzw{/מWCޏ¾M2RQ9oIENDB`arctica-greeter-0.99.1.5/data/logo-bare.svg0000644000000000000000000000731214007200004015173 0ustar image/svg+xml Greeter The Arctica arctica-greeter-0.99.1.5/data/Makefile.am0000644000000000000000000000533314007200003014637 0ustar # -*- Mode: Automake; indent-tabs-mode: t; tab-width: 4 -*- 50-arctica-greeter.conf: 50-arctica-greeter.conf.in $(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ 50-arctica-greeter-guest-wrapper.conf: 50-arctica-greeter-guest-wrapper.conf.in $(AM_V_GEN) sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ lightdm_confdir = $(datadir)/lightdm/lightdm.conf.d lightdm_conf_DATA = \ 50-arctica-greeter.conf \ 50-arctica-greeter-guest-wrapper.conf arctica-greeter-guest-session-startup.desktop: arctica-greeter-guest-session-startup.desktop.in $(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ guestsession_autostartdir = $(datadir)/arctica-greeter/guest-session/skel/.config/autostart guestsession_autostart_DATA = arctica-greeter-guest-session-startup.desktop xgreeterdir = $(datarootdir)/xgreeters dist_xgreeter_in_files = arctica-greeter.desktop.in dist_xgreeter_DATA = $(dist_xgreeter_in_files:.desktop.in=.desktop) @INTLTOOL_DESKTOP_RULE@ backgroundsdir = $(datarootdir)/backgrounds dist_backgrounds_DATA = \ arctica-greeter.png soundsdir = $(datarootdir)/sounds/arctica-greeter dist_sounds_DATA = \ sounds/index.theme soundsstereodir = $(datarootdir)/sounds/arctica-greeter/stereo dist_soundsstereo_DATA = \ sounds/stereo/system-ready.ogg dist_pkgdata_DATA = \ badges/awesome_badge.png \ badges/budgie_badge.png \ badges/gnome_badge.png \ badges/gnustep_badge.png \ badges/i3_badge.png \ badges/kde_badge.png \ badges/lxde_badge.png \ badges/matchbox_badge.png \ badges/mate_badge.png \ badges/openbox_badge.png \ badges/remote_login_help.png \ badges/recovery_console_badge.png \ badges/sugar_badge.png \ badges/surf_badge.png \ badges/twm_badge.png \ badges/ubuntu_badge.png \ badges/unknown_badge.png \ badges/xfce_badge.png \ badges/xmonad_badge.png \ badges/xsession_badge.png \ a11y.svg \ active.png \ arrow_left.png \ arrow_right.png \ dialog_close.png \ dialog_close_highlight.png \ dialog_close_press.png \ hibernate_highlight.png \ hibernate.png \ logo.png \ message.png \ restart_highlight.png \ restart.png \ shadow.png \ shutdown_highlight.png \ shutdown.png \ suspend_highlight.png \ suspend.png \ switcher_corner.png \ switcher_left.png \ switcher_top.png logo.png: logo-bare.png ../src/logo-generator --logo logo-bare.png --text '$(VERSION)' --output logo.png @GSETTINGS_RULES@ gsettings_SCHEMAS = \ org.ArcticaProject.arctica-greeter.gschema.xml dist_man1_MANS = arctica-greeter.1 dist_man8_MANS = arctica-greeter-guest-account-script.8 EXTRA_DIST = \ $(gsettings_SCHEMAS) DISTCLEANFILES = \ 50-arctica-greeter.conf \ 50-arctica-greeter-guest-wrapper.conf \ arctica-greeter.desktop \ arctica-greeter-guest-session-startup.desktop \ Makefile.in \ logo.png arctica-greeter-0.99.1.5/data/message.png0000644000000000000000000000140614007200004014733 0ustar PNG  IHDRw=IDATxKOQE jb,u~7\ML-|@T ƭA }tZΫi;8)e;vz؏<??j2 qIZڨT* Yr R 10tk3k Iip' ]4X_CV#al6 (kr|k><+{l2z|ɀ8h-hմm jjA0iM4"fUfL1;5h36~UOξ|j Z*,-Hd@wwj6u[FsŖ`tPPEoJ'jV`ؤ '*b |BV/Di jԿlNelⰼB\a$ M2,'!%nA2km@*B<)aFEq풙ɪ"\-J{"%@8c#fdT* !w6  6ib *i>^G ʇ !Jn;U3FnT8ƨ '/usr/share/backgrounds/arctica-greeter.png'

Background file to use, either an image path or a color (e.g. #772953) '#2F70C6' Background color (e.g. #772953), set before wallpaper is seen '#A0A0A0' Font foreground color (e.g. #A0A0A0) for selected session names in session list '#2F70C6' Font foreground color (e.g. #202020) for selected session names in session list true Whether to draw user backgrounds true Whether to draw an overlay grid true Whether to show the hostname in the menubar '/usr/share/arctica-greeter/logo.png' Logo file to use 'Blue-Submarine' GTK+ theme to use 'Adwaita' Icon theme to use 'Sans 11' Font to use true Whether to antialias Xft fonts 96 Resolution for Xft in dots per inch 'hintslight' What degree of hinting to use 'rgb' Type of subpixel antialiasing false Whether to enable the onscreen keyboard false Whether to use a high contrast theme false Whether to enable the screen reader true Whether to play sound when greeter is ready ['ug-accessibility', 'org.ayatana.indicator.keyboard', 'org.ayatana.indicator.session', 'org.ayatana.indicator.datetime', 'org.ayatana.indicator.power', 'org.ayatana.indicator.sound', 'ayatana-application'] Which indicators to load [] List of usernames that are hidden until a special key combination is hit [] List of groups that users must be part of to be shown (empty list shows all users) 300 Number of seconds of inactivity before blanking the screen. Set to 0 to never timeout. 'auto' Whether to enable HiDPI support '' Default FQDN for host offering Remote Logon Service false Whether to activate numlock. This features requires the installation of numlockx. 'auto' Monitor on which to show the Login GUI arctica-greeter-0.99.1.5/data/restart_highlight.png0000644000000000000000000000240114007200004017016 0ustar PNG  IHDRCUPLTE3[tRNS $&)+-.02579:<>CDFGJMRVXY[^`begjlnqsvxz{}/!DIDATxmSWk#(؂RKiXZ`kC\N6[ɻsN͛_f'ɜٛfW:{M:+Lz Ni'5ZǭO/u/ey2nnSR%SDy zCOA#W(0A jPԠ5A jPԠ5A H5Ԡ5Aa@;A@oгWkFQQq'ǟ)m\<zi# sUEShtu`!2:=!T@FA6l%"놞ɅS[YKhCu^Hf\CuZ@=G9{=TQ|̶ jj3u֪Q 4y^8؜KjخQY=OP)o%LrdƚYd:\_^X\^?3%A jPԠ5A jPԠ5A jPԠ5A jP |4 3A\xBE+b{IENDB`arctica-greeter-0.99.1.5/data/shutdown_highlight.png0000644000000000000000000000233614007200004017214 0ustar PNG  IHDRCUPLTE+StRNS "$&)+-.02579:@}Rpх>A7S H6AbXHs Y(B@ȇ.{Eh 8-rzj/-t;jShAŠ}`\ 4ΧUPS{.ǿ:X y-4fR)Awj |= PW@Ku/xz;ՠG=`z(@@4Up.Y'V`' t1-vYEν*TW2mхWDWX)CeH6*[рROtѕC_X?ҍ*]g.B2wg  ]>P?PY|g' Ng\P3Z5A jPԠ5A jPԠ5A jPԠ5Ayw0/E5o€ gB0%xEHP)áfhc$ٍQ~;k88Uu֣zIENDB`arctica-greeter-0.99.1.5/data/shutdown.png0000644000000000000000000000240314007200004015160 0ustar PNG  IHDRCUPLTE}TtRNS !'*-09?EHKNQTWZ]`cfilorux{~9J_IDATxn @?@DFGm4f%~=\FH CX,‡;ItT@TгBZ@;0(/ * * * * * *Z \kSsqzZ!JIsteS%--eRҤ'GKlfrId5;KMz{ /IENDB`arctica-greeter-0.99.1.5/data/sounds/COPYING.system-ready0000644000000000000000000003271714007200004017605 0ustar The system-ready sound has been obtained from Ubuntu's GNOME audio theme. Copyright (C) 2004 Canonical Ltd. Sounds composed and recorded by Nathaniel McCallum This work is licensed under the Creative Commons Attribution-ShareAlike License. THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. 1. Definitions a. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. b. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. c. "Licensor" means the individual or entity that offers the Work under the terms of this License. d. "Original Author" means the individual or entity who created the Work. e. "Work" means the copyrightable work of authorship offered under the terms of this License. f. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. g. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; b. to create and reproduce Derivative Works; c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. e. For the avoidance of doubt, where the work is a musical composition: i. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. ii. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: a. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. b. You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.0 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. c. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. 5. Representations, Warranties and Disclaimer UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. Termination a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. 8. Miscellaneous a. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. arctica-greeter-0.99.1.5/data/sounds/index.theme0000644000000000000000000000012514007200004016244 0ustar [Sound Theme] Name=Arctica Greeter Directories=stereo [stereo] OutputProfile=stereo arctica-greeter-0.99.1.5/data/sounds/stereo/system-ready.ogg0000644000000000000000000002317314007200004020546 0ustar OggS`vorbisD8OggS`JЂ-vorbisXiph.Org libVorbis I 20070622vorbis"BCV@$s*FsBPBkBL2L[%s!B[(АU@AxA!%=X'=!9xiA!B!B!E9h'A08 8E9X'A B9!$5HP9,(05(0ԃ BI5gAxiA!$AHAFAX9A*9 4d((  @Qqɑɱ  YHHH$Y%Y%Y扪,˲,˲,2 HPQ Eq Yd8Xh爎4CS# G,]6MuC74ӴmUut]_uhPTU]WeUW}[}UUYՖa} Uum]X~2tu[h뺱̾L(CLABH)R9)sRB)RR9&%sNJ(PJKB)RZl՚Z5Z(PJ[k5FAȜ9'Z(9*:)Z,)X9'%J!JL%C*b,)ZlŘs(ŒJl%X[L9s9'%sNJ(RRksR:)eJ*)XJJ1sNJ!BJ%SJRb+)XJjŘsK1PR%KJ1snAh-c(%cC)b,)cŘs(%ƒJ%X[sNZkmsЩZSLsYsZ(PJZ[9Rb+)XJŘskPJ%XKJ5k5ZŘkjs1Sk5kNZsc&BCVQ!J1A141朔1 R1R2 RRR RkRRj4%(4d% `pA'@pBdH4,1$&(@Et.:B H 7<'RpFGHH!DD4OggSS`:' !"!! )*(*+ɯ! !%(+ƵN6T8ĖҿEXJY:kx,*e4nj`S?QG>7Yɨ}߮"w AXfOtU QJ*\#Tqq"*~8v>f0t#2Krrj ╳v v)6A2~et@0t 8KL/4_\׸И02U)c`=zf)5WԴYQBsF9}Yw!tQ5p#ƘWޘoc_a'6S7S7SMgH*Tc \"{k_d O^pܕomzZttqtWG4ikqZY~01}i\YJzB"m&M {;ۥ/7g)*_O|:ggMX  fLC%^#uM%?K7k~CN0'QszcMő/͙PVW*j*$iƳ%%W-xUԴ(vE `;<_=ޝe*/I媺N,z%/YeU#GNr]'n&鵲Ⱥ`]YRԖ\c3D2h-ǿ O[](\mAP"6~=-iXG ޗjҖ,Rta:RMz߷Cri^n8\?x+3/CXG@!j9`{&,6冟'wDгOO H(#%۟Fkt]σ\kR-եPҙbæq7yI)Z<("9gC6eFrL J҉ OE$HEӵD:i9EY] XeZhBHȓdiw L߇ _W$rm!{ci\xŌ<;6ϣ]?BPs"tzD߭J $}H*^ IL=RDӅ+Av^vr9CQϚi\oZ+мdwK'wC}2=nAdlYzbYlgs?[9̽X볜)#+:gL?@CokNN<3y"dh->Y 5%@{0w9Q Uชl(DΒP( c$-[;$'FU&177d\/U(pf[z?<sOzY?iiVp'}qyXDeU&M0!Fz=&ԗ v3/-cvoC,I6Fk ~+@ %($WҝkY^ݿT#B#Nu3ty#nO-$ܪWpKV_TFn%6j/Ev4_6 v*Cks%B 5!fcϠ"  (v6$<_tMKmV^(j $7 3H6d Qhܞ]NqbY5/<]I`m O$놰LZzߢd7 'fO:{dxTn}yjJت9CU,N[Z { `’4ًd/!E ڢ6 IR~byJ?ޘf^+dzbXV؞TQ3_<{R#bDEZj=/|>~\_mu, զ1/%={' Xw2}ھt  I %DnvP9Ehy1f(ɭGIV5IO挑qvfA.4OFf Qg#M܎n/84:!C7~Yւ倮XhU!+MUY n'TGCr|4nYJNi/-xi/J`m{ߵ[~KogH8{lvS=liiSE,fk t7]s 8MGJ`FLǐE9 $(ɡ"Oo-u|JOۥ=~؛Ѽ)b|4O9u@l^ .ӓ|T%)lʕ]<ۯSqD:ÎA=76!-[GR} K`~'= \[ iR`D8qvk4d"WH ̀}^׮HO]rS@_>[LSTfCy2:a,D&w+=/m`*]?{'מ( $ƠǑɦ[NuBh+T4^ !t@ p4JBqPS`z` K%v q3áJ$$E}I-4e^wsK~Um"RYPWi$؅*(_o#"݆f.>2j[֖ L2v+ɍ^<6,C+3(L/.Ap-^軛^}xd9C{U_yhc`իbqixn_ X-وӍflɘhn?wٹʁz$"vV8g_o Mg4 ["#A#iu:@l( e , ʉ."-nL ӗugm @LswphN$ImΒ+[hͪ~nG#8v*1벃 ǛsVF;#`]KqdLƧwɯgNh5Ԛ<=5 qLpZI:3>v<}!! f$A33Q"!XM۵}S2ޝӚC`|bU[1os cQeDM(uKj3C~Z9钻uyY_oW*TG8I0)7Ho1"yn-NV(t%y![ZrV(ϺFu\EQ @j&G H"c ~!P{q>Άc)G05<޼F(F*Y'НMa1>(qi5ƃ~>\U!J~,V^y,؈ԋ|Tq>Gs0'gxVF9{W|bSzWGh}Q / ?R(I&,K~v<ê1yQ3I P h^lyA8AHSBp2sAiz1ҝR&8^](Cbՠ:6zl֜1t(`8JmS%^Ilr1L!Ey,~4?6m;5ޥ;írx\G/OggS`Bm » v<3AQbGEm`@ n,- H7qNv.I),8ʪ}| k?_Eܓ~v<3#hjL6@zɔ0%wʏM3 l=d׌[=[(ImL!KV9zC28WLAv:O$vM uS׉Z_2?pʚ>k O(j"vplo+|{$$BU4z29yZ vܪ7I[&hj_ 64n_1\:>Jm E5gRauB]O4Hʕs U&Dr,V\IƘE"gf+vk0=2aZ@>80`dIA:GUnսY!ƟDe&UST<[E"zv*da,O@vH`ؐ}р?@Efc:uɐ/&r@=AAn7yHepFOv5WϺ9=ӱg]"Fݡ*%`F|8$'`1&WHl1N'rsڭ,׷bȺ.,s“c띥Q~f<YPH2TzR `4c o̺BV(L"Y cFڽVdF몡{27Wi7AdUf]M#lc`fvi+;m0^r84\qQE\ncV"|В%IGV AuU]Ǩ;'~v;s';WUC'W4 {ˡ(7(rzWo1RU=PgN5͛ F6&W~+u!_ҕs&+m9(N<.~`+nv}~QMuPi=d C/dxWweK}轄 %&Jٓ%3Wb=v5HN~T]A_sJ$D=΋v <~/"0BĻutPZ8[f)ݟDpk n7]I)ͷڢٮ7x#\y5L0Mvp^ $S@ gZl*?iiN>&Єt7eSZܬm:Zz<2w0/kRaBq(يKRBk-NJzW@qBJi}iDv| v\"BD@RF.(lH*hރ[gz".8;@']arctica-greeter-0.99.1.5/data/suspend_highlight.png0000644000000000000000000000221714007200004017020 0ustar PNG  IHDRCUPLTEOtRNS "&)+-.079:<>ACDFGJVXY[`egjlnqvxz{}̧QIDATx]sFזdGQjB%8EIKLp騴|Dw:;sK/fҮö]S’ ېވOuQ^,5 @U J8#^8Gq8q$Ԡ5A jPԠ5A jPԠ5 jPԠUA˟+7i:6zێ{:pw1 |W\}tmB4/-PtU>N}BCG~.hE?4&@@M^W.@ρ ` zd1@8VTg36$ҠK/`*2a[(w Ǫ>?I8T7y~ΦfZL 8)u{ʭq訙[=\ن_pOha5[tVPR){+**%?8?Y6%BHa-O[u.Z*TbXÑ}y>@mU2T&dx@4ܽozr_RPϚƃ ZeCeqD TXw7{NYwv'zjWڮ[Bm鱓Z3@g5 jPԠ5A jPԠ5A jPԠ5A jPw;'JD/p =ue[#e=roDvV%_6>N?>/oI6IENDB`arctica-greeter-0.99.1.5/data/suspend.png0000644000000000000000000000231114007200004014764 0ustar PNG  IHDRCUPLTET PtRNS !$'*36EHKNQTWZ`cfilrux{~9Q15IDATx]SFGV"[Q$dY5$CM손и$V%ʸKi{3pѬlrv/;(eyqsBPO{vju'V~؄Кu{Abk{DB{w\eȖ3.,~7\vG9ɇ {5klSyP1b<;]@<4H^C>#y(d$|$$ I.@HK7$E,!vX4퉂f$C+~6(24c3r& M 9$D] ץ[\b:Lyz{*h>}䍰~e$ YmШ򡤪d$1ɻty w5BHeCY(\(u5,w> n횡n>U:'tQ7/ҕ-]CT~7>]|>e\fC2a R8sAa<@a_LY–8LY*7mߎrnކRݓO_,t?(T UBP*T UBP*T~ UP*T Bjn1o(˔F=3Rƀ!=ic 9{>r; ~5sؙq7rIENDB`arctica-greeter-0.99.1.5/data/switcher_corner.png0000644000000000000000000000114114007200004016503 0ustar PNG  IHDR;0(IDATxOQQ⏥²UDPbMfR'mp'+W;HrLgIؐ x'Iɼ{Xk?kb*11'v`1$IfY`''dsBaZzͦfDj Q^n/lbѷ_#Kr^{J"} A8T*y:i򢆛`x<9_sK_关3-9IB4nj榵0\I'c$)S V%76C~TlD\LW,b0fFbT*qg;yf8|ƽliy_wLkcl7 m9c&C|bTLJ?aĺc~,26'Z,`I,_wp~` \8驖KA77XܗQe'eX^ bA}Xp H wh4.L>MܻAc#4-xLvb>c9&urɋw'IENDB`arctica-greeter-0.99.1.5/data/switcher_left.png0000644000000000000000000000033414007200004016150 0ustar PNG  IHDR(ͺ 6PLTE90@7V5M;;;tRNS'ddddddqCIDATxcV6v.nN~~^dbdiA>d*- ĸt0'#QG{no=|ۗIENDB`arctica-greeter-0.99.1.5/data/switcher_top.png0000644000000000000000000000032314007200004016016 0ustar PNG  IHDR(i-PLTE90@7V5M;;;5tRNSdddddd=[/FIDATxλ 0ѱw6 %L@Im|*IDч6b8 <IENDB`arctica-greeter-0.99.1.5/fix-patch-whitespace0000755000000000000000000000235614007200004015640 0ustar #!/bin/sh # Copyright (c) 2010 Keith Packard # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice (including the next # paragraph) shall be included in all copies or substantial portions of the # Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. git diff --check | sed -n 's!^\([^:]*\):\([^:]*\):.*!sed -i "\2 s/[ \t]*$//; \2 s/ *\t/\t/g" \1!p' | sh arctica-greeter-0.99.1.5/lightdm-arctica-greeter-session0000755000000000000000000000162514007200004017771 0ustar #!/bin/sh # -*- Mode: sh; indent-tabs-mode: nil; tab-width: 4 -*- # # Copyright (C) 2011 Canonical Ltd # Author: Michael Terry # # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation, version 3 of the License. # # See http://www.gnu.org/copyleft/gpl.html the full text of the license. # This wrapper merely ensures that dbus-daemon lives only as long as this # script does. Otherwise, it's very easy for dbus-daemon to be autolaunched # and detached from the greeter. trap cleanup TERM EXIT cleanup() { trap - TERM EXIT if [ -n "$DBUS_SESSION_BUS_PID" ]; then kill "$DBUS_SESSION_BUS_PID" fi if [ -n "$CMD_PID" ]; then kill "$CMD_PID" fi exit 0 } eval `dbus-launch --sh-syntax` exec $@ & CMD_PID=$! wait $CMD_PID CMD_PID= arctica-greeter-0.99.1.5/Makefile.am0000644000000000000000000000362414007200003013727 0ustar # -*- Mode: Automake; indent-tabs-mode: t; tab-width: 4 -*- SUBDIRS = src data po tests arctica-greeter-guest-account-script: arctica-greeter-guest-account-script.in $(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ sbin_SCRIPTS = arctica-greeter-guest-account-script pkglibexec_SCRIPTS = lightdm-arctica-greeter-session \ arctica-greeter-guest-session-auto.sh \ arctica-greeter-guest-session-setup.sh \ arctica-greeter-check-hidpi \ arctica-greeter-set-keyboard-layout EXTRA_DIST = \ autogen.sh \ arctica-greeter.doap DISTCLEANFILES = \ Makefile.in \ aclocal.m4 \ arctica-greeter-guest-account-script \ compile \ configure \ config.h.in \ config.h \ depcomp \ gtk-doc.make \ install-sh \ missing \ mkinstalldirs \ omf.make \ xmldocs.make \ po/Makefile.in.in dist-hook: @if test -d "$(top_srcdir)/.git"; \ then \ echo Creating ChangeLog && \ ( cd "$(top_srcdir)" && \ echo '# Generated by Makefile. Do not edit.'; echo; \ $(top_srcdir)/missing --run git --no-pager log --since "1970" --format="%ai %aN (%h) %n%n%x09*%w(68,0,10) %s%d%n") > ChangeLog.tmp \ && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ || (rm -f ChangeLog.tmp; \ echo Failed to generate ChangeLog >&2 ); \ else \ echo Failed to generate ChangeLog: not a branch >&2; \ fi @if test -d "$(top_srcdir)/.git"; \ then \ echo Creating AUTHORS && \ ( cd "$(top_srcdir)" && \ echo '# Generated by Makefile. Do not edit.'; echo; \ $(top_srcdir)/missing --run git log | grep -e "^Author:" -e "Committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \ && mv -f AUTHORS.tmp $(top_distdir)/AUTHORS \ || (rm -f AUTHORS.tmp; \ echo Failed to generate AUTHORS >&2 ); \ else \ echo Failed to generate AUTHORS: not a branch >&2; \ fi arctica-greeter-0.99.1.5/NEWS0000644000000000000000000000513314007200003012367 0ustar Overview of changes in arctica-greeter 0.99.1.5 - Drop all distro-theming packages and dependencies and default to Blue-Submarine GTK theme, Adwaita Icon theme and 'Sans' font. - Massive translation update. Thanks to all contributors on hosted.weblate.org. Overview of changes in arctica-greeter 0.99.1.4 - Translation update. Thanks to all contributors on hosted.weblate.org. - Fix FTBFS against Vala >= 0.46. Overview of changes in arctica-greeter 0.99.1.3 - Translation update. Thanks to all contributors on hosted.weblate.org. Overview of changes in arctica-greeter 0.99.1.2 - Fix login box following the mouse pointer on multi-head displays. - Fix crashes due to mlockall() calls when systemd (>= 240) is used. - Fix typo in path of the futureprototype gschema override. - Use login/background.svg from desktop-base (works on stretch and buster alike). - Fix FTBFS with vala 0.44. Overview of changes in arctica-greeter 0.99.1.1 - Add support for remoteconfigure as a Remote Logon session type. - Use MATE's WM "marco" as window manager. Allows to properly interact with window objects launched by indicator icons. - Fix HiDPI auto-detection. - Add option to show GUI on a specific monitor. - Fix build against vala 0.42. - Fix background if image file is not readable. - Translation updates Overview of changes in arctica-greeter 0.99.1.0 - Make guest session configurable by the host admin. - Start using Remote Logon APIv5. - Screen size calulation fix. Overview of changes in arctica-greeter 0.99.0.4 - Add HiDPI support (thanks to the Linux Mint developers for inspiration). - Trigger UPower activation on greeter start. (Fixes missing power indicator on first login after system reboot). - Fix flawed debug message causing the test-mode to segfault. - Clear the AT_SPI_BUS property on the root window on exit. Overview of changes in arctica-greeter 0.99.0.3 - Fix FTBFS against Vala 0.39. Thanks to Linux Mint Developers and Jeremy Bicha. - Translations update. Thanks to translators on hosted.weblate.org. Overview of changes in arctica-greeter 0.99.0.2 - Allow configuring default numlock status. - Enforce correct keyboard layout setting. - Rename guest session scripts to better fit into the arctica-greeter-* namespace. - Man page improvements - Copyright updates. - Translation update. Overview of changes in arctica-greeter 0.99.0.1 - Fork from Unity Greeter 15.10.1. arctica-greeter-0.99.1.5/NEWS.Canonical0000644000000000000000000003077014007200003014262 0ustar Overview of changes in arctica-greeter 14.04.10 - Require user to acknowledge messages received after authentication is complete, for example if their password is about to expire. Overview of changes in arctica-greeter 14.04.9 - Correctly handle SIGTERM and quit cleanly. We were previously not stopping the signal and so not cleaning up on exit. This left an upstart process for each greeter remaining. - If a user has an invalid session, then use the system default session - Correctly handle sessions not starting Overview of changes in arctica-greeter 14.04.8 - Allow unity-settings-daemon to blank the screen by implementing the gnome-screensaver and gnome-session d-bus interfaces. Overview of changes in arctica-greeter 14.04.7 - Own the com.canonical.UnityGreeter D-Bus name Overview of changes in arctica-greeter 14.04.6 - Add option to hide certain users until alt+ctrl+shift is pressed. - Show a warning when shutting down and users are logged in. - Drop some fixes that are in Vala 0.22 now. Overview of changes in arctica-greeter 14.04.5 - Don't focus windows that set override-redirect. This was causing a gnome-screensaver window to get focus when it shouldn't. Overview of changes in arctica-greeter 14.04.4 - Add primary monitor support - Fix the greeter authenticating twice when it starts Overview of changes in arctica-greeter 14.04.3 - Generate version stamp on background - Add option to disable hostname in login screen - Use unity-settings-daemon instead of gnome-settings-daemon - Fix accessible name in shutdown dialog Overview of changes in arctica-greeter 14.04.2 - Handle a window being destroyed after we get the map event and try and focus it - Add accessible description to back button - Fix attempted removal of dead source - Apply the same unity color corrections to the average color in shutdown dialog Overview of changes in arctica-greeter 14.04.1 - Complete unity style shutdown dialogs (chameleon colours, spacing, blurring, click outside to close, fading, assets, keyboard focus) Overview of changes in arctica-greeter 14.04.0 - Use Unity style shutdown dialogs - Handle hardware power button in greeter - Use an Upstart process to start indicator services - Fix build with Vala 0.22 - Clean up compile warnings Overview of changes in arctica-greeter 13.10.3 - Have sound indicator appear again, after the indicator file changed names - Replace old hardcoded keyboard indicator with indicator-keyboard - Remember last logged in user for each seat - Show gnome badge for all gnome fallback/flashback sessions Overview of changes in arctica-greeter 13.10.2 - Support new indicator services from /usr/share/unity/indicators - Use the utf chars for ellipses - Allow displaying only the remote login entry, without adding a fallback manual login option, if the config files requests it - Update code to work with valac 0.20 Overview of changes in arctica-greeter 13.10.1 - Fix test failure due to warnings from libraries Overview of changes in arctica-greeter 13.10.0 - Update logo for 13.10 Overview of changes in arctica-greeter 13.04.2 - Spawn gnome-settings-daemon directly, not via DBus, as newer versions dropped the DBus interface. - Fix duplicate entries showing for multiple users on the same remote login service. - Allow administrators to specify which indicators to load via gsettings. - Allow custom indicators to switch which user is selected via a session DBus interface. Overview of changes in arctica-greeter 13.04.1 - Update logo for 13.04 Overview of changes in arctica-greeter 13.04.0 - Support timed login - Drop OK button in session chooser - Various small layout changes - Fix orca not closing when disabled - Fix display corruption when logging in Overview of changes in arctica-greeter 12.10.4 - Fix rendering of password entry's spinner - Fix rendering of password entry's cursor after closing a dialog - Fix slight pixel jump in names as they finish scrolling - Fix not being able to click on first few sessions in session chooser - Cleanly close onboard keyboard to prevent it crashing on login - Use a lightdm hint for controlling whether remote login is enabled Overview of changes in arctica-greeter 12.10.3 - Rearrange some UI bits - After a remote login error, do not use cache when trying same user again - When no users and no manual entry, force manual entry to appear - When switching between monitors, re-adjust user names - Center remote login help dialog - Use the xsettings plugin to apply icons-in-menus gsetting Overview of changes in arctica-greeter 12.10.2 * Require lightdm 1.3.3 * Disable prompts for remote servers we don't locally support * Tell the network indicator to hide some unused UI Overview of changes in arctica-greeter 12.10.1 * Show network indicator * Add support for remote logins * Show onboard keyboard on startup if enabled already * Support multiple simultaneous prompts from PAM * Fix tabbing through widgets sometimes taking too many tabs * Set average background colour atom based on background * Add a man page Overview of changes in arctica-greeter 12.10.0 * Update version logo * Don't write garbage data to state cache file * Remove workaround for gnome session being Unity * Make sure background alpha is never stuck at non-1.0 value, blocking login * Update badge when default_session changes, just like we do when the session changes Overview of changes in arctica-greeter 0.2.8 * Add play-ready-sound option to control making a sound when the greeter loads * Add background-color option to set the background color before the background is rendered * some minor design fixups Overview of changes in arctica-greeter 0.2.7 * Fix onscreen keyboard not working * Fix crashes when manual login is enabled * Show manual login when guest is only other user Overview of changes in arctica-greeter 0.2.6 * Fix the corruption between arctica-greeter and Unity loading * Fix crash when reloading background images * Fix displayed name of keyboard layout with some variants Overview of changes in arctica-greeter 0.2.5 * Don't allow dragging the window by the top bar * Fix keyboard navigation * Fix prompt entry text not showing in some themes * Fix Orca command line so it works with version 3.3.90+ * Show "Retry" instead of "Login" if a no-prompt login fails * Show manual login option when no users available * Show manual login option if hint is present * Show PAM prompts, albeit not in a pretty fashion * Allow pressing Escape to cancel a misbehaving login * Tweaked animations * Update logo to add "LTS" Overview of changes in arctica-greeter 0.2.4 * Don't crash when all monitors are the same size * Use OS icon instead of cog for session selector * Show arrow on password entry to indicate will login * Show session chooser dialog instead of a menu Overview of changes in arctica-greeter 0.2.3 * Play system-ready sound on startup * Fix placement of user-is-logged-in arrow Overview of changes in arctica-greeter 0.2.2 * Support multi-monitor * Add messaging indicator * Add a11y shortcuts * Remember a11y settings * Launch at-spi so Orca works Overview of changes in arctica-greeter 0.2.1 * Fix session menu button not showing for first user * Skip indicators that fail to load * Distribute translations correctly * Load indicators from location specified in pkg-config * Use gsettings instead of /etc/lightdm/arctica-greeter.conf * Accept numpad arrow key presses * Instead of showing all layouts in the system in the keyboard indicator, only show the layouts a user has configured * Don't crash if gnome-settings-daemon's gsettings schema isn't as expected * Disable gnome-settings-daemon's new gsdwacom plugin as well as its older wacom plugin * Use vala-0.16 instead of valac-0.14 Overview of changes in arctica-greeter 0.2.0 * Improve scrolling animation * Select menubar when F10 is pressed * Fix Orca not starting when enabling screen reader * Add a keyboard indicator * Always focus new windows * Check version of Vala when compiling * Update logo for 12.04 * Use default invisible character in password dialog * Darken indicator bar * User smaller grid size * Put end-stops on user list scrolling * Only fade out user labels that can't fit in completely * Center dots * Add translator comments * Add option to disable dots * Only redraw parts of the screen that have changed * Don't run the greeter if can't connect to daemon and not in test mode Overview of changes in arctica-greeter 0.1.1 * Stop loading indicators in a thread - they don't seem thread safe * Fade usernames so it looks more like a carousel * Darken indicator background so they are easier to read * Fade out long messages * Remove "Other" entry when using user list * Don't run the greeter if can't connect to daemon and not in test mode Overview of changes in arctica-greeter 0.1.0 * Fix greeter running in loop when greeter-hide-users=true * Remember the last selected user between logins * Select correct session when logging in manually * Fix non-translation of password prompt * Resize background when resizing window * Move/resize window when monitors changed * Disable xrandr gnome-settings-daemon plugin - always mirror the displays Overview of changes in arctica-greeter 0.0.9 * Set background color of window to "dark aubergine" so boot delays don't cause a white flash * Kill onboard on exit to stop window showing up * Don't give the onscreen keyboard focus, this makes it work * Load indicators sequentially, they seem to crash loading in parallel * Fix translations not being used * Show authentication messages as well as prompts * Disable the text entry after text has been entered * Don't start authentication as each user is added to the user list Overview of changes in arctica-greeter 0.0.8 * Fix grid offset * Fix non-latin names being displayed incorrectly * Change asynchronous indicator loader code, suspect it is causing a race condition? Overview of changes in arctica-greeter 0.0.7 * Show caps-lock warning in password field * Use constant time animation * Render background images in a background thread * Load indicators in a thread * Add timing to logs * Add more logging messages * Fade out long names * Wait until background is loaded before showing the main window - stops a white flash being seen on startup. Overview of changes in arctica-greeter 0.0.6 * Fix password cursors not getting focus * Make logo configurable again * Disable FUSE * Show if users are currently logged in * Update user list when users are added/removed/modified * Use select user hint to select the correct user * Fix vertical grid alignment of user list * Add accessibility menu with high contrast, screen reader and onscreen keyboard * Make use of hide users hint * Change "Other..." entry to match username being entered * Rename "Guest Account" to "Guest Session" to match desktop * Don't give keyboard focus to session selector when clicking on it * Stop hostname being selectable * Hide the "Other..." entry when user list showing Overview of changes in arctica-greeter 0.0.5 * Use Ubuntu regular font * Increase grid size to match design * Reduce width of login box * Use correct Ubuntu logo Overview of changes in arctica-greeter 0.0.4 * (Not released due to broken bzr tag) Overview of changes in arctica-greeter 0.0.3 * Set icon theme * Use power indicator * Setup indicators to run in greeter mode * Allow OS name and version to be configurable * Run gnome-settings-daemon to get power management, a11y, xrandr etc * Fix translations * Get menubar with transparent background (finally) * Update to latest design Overview of changes in arctica-greeter 0.0.2 * Add copyright headers to .vala files * Update to work with lightdm 0.9 * Add a config file and load Ambiance theme * Fit to primary monitor * Set root background Overview of changes in arctica-greeter 0.0.1 * Initial release arctica-greeter-0.99.1.5/po/af.po0000644000000000000000000001616214007200004013241 0ustar # Afrikaans translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-09-03 07:47+0000\n" "Last-Translator: Willem van der Colff \n" "Language-Team: Afrikaans \n" "Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Voer wagwoord vir %s in" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Wagwoord:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Gebruikersnaam:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ongeldige wagwoord, probeer asseblief weer" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Bevestiging het misluk" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Meld aan..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Intekeningskerm" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Skerm-sleutelbord" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Hoë Kontras" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Skermleser" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sessie Opsies" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Kies werkskerm omgewing" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Verstek)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Wys vrylatingsweergawe" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Hardloop in toetsmodus" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Groeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Hardloop '%s --help' om 'n lys van beskikbare opdraglyn keuses te sien." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gas-sessie" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Voer asseblief 'n volledige e-posadres in" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Verkeerde e-posadres of wagwoord" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Indien u 'n rekening op 'n RDP bediener het, laat Afgeleë Aanmelding u toe " "om toepassings vanaf daardie bediener te hardloop." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Kanselleer" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Stel Op..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "U benodig 'n Ubuntu Remote Login rekening om hierdie diens te gebruik. Wil u " "graag nou 'n rekening opstel?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Goed" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "U benodig 'n Ubuntu Remote Login rekening om hierdie diens te gebruik. " "Besoek uccs.canonical.com om 'n rekening op te stel." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "U benodig 'n Ubuntu Remote Login rekening om hierdie diens te gebruik. Wil u " "graag nou 'n rekening opstel?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Bediener tipe nie ondersteun nie" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Gas-sessie" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domein:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Teken In" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Teken in as %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Probeer weer" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Probeer weer as %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Intekening" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Gas-sessie" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Groeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Indien u 'n rekening op 'n RDP of Citrix bediener het, laat Remote Login " #~ "u toe om toepassings vanaf daardie bediener te hardloop." #, fuzzy #~ msgid "Email:" #~ msgstr "E-pos adres:" #~ msgid "_Back" #~ msgstr "_Terug" #~ msgid "Enter username" #~ msgstr "Voer gebruikersnaam in" #~ msgid "Enter password" #~ msgstr "Voer wagwoord in" #~ msgid "Logging in..." #~ msgstr "Teken tans in..." #~ msgid "Favorite Color (blue):" #~ msgstr "Gunsteling kleur (blou):" arctica-greeter-0.99.1.5/po/am.po0000644000000000000000000001510114007200004013240 0ustar # Amharic translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2014-10-04 17:54+0000\n" "Last-Translator: samson \n" "Language-Team: Amharic \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "የመግቢያ ቃል ያስገቡ ለ %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "ማረጋገጥ አልተቻለም" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "ክፍለ ጊዜውን ማስጀመር አልተቻለም" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "በመግባት ላይ…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "ወደ ኋላ" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "የፊደል ገበታ በመመልከቻው ላይ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "ስክሪን አንባቢ" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "የክፍለ ጊዜ ምርጫዎች" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "የዴስክቶፕ አይነት ይምረጡ" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "ደህና ይዋሉ ይህን ማድረግ ይፈልጋሉ" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "ማጥፊያ" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "በእርግጥ ኮምፒዩተሩን ማጥፋት ይፈልጋሉ?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "ማገጃ" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "ማስተኛ" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "እንደገና ማስጀመሪያ" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (ነባር)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "የእንግዳ ክፍለጊዜ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "እባክዎን ሙሉ የኢ-ሜይል አድራሻዎን ያስገቡ" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "የተሳሳተ የኢ-ሜይል አድራሻ ወይንም የመግቢያ ቃል" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "መሰረዣ" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "ማሰናጃ…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "እሺ" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "የሰርቨሩ አይነት የተደገፈ አይደለም" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "የእንግዳ ክፍለጊዜ" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ግዛት :" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "መግቢያ" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "መግቢያ እንደ %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "እንደገና መሞከሪያ" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "እንደገና መሞከሪያ እንደ %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "መግቢያ" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "የእንግዳ ክፍለጊዜ" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #, fuzzy #~ msgid "Email:" #~ msgstr "የኢሜይል አድራሻ :" #~ msgid "_Back" #~ msgstr "_ወደ ኋላ" #~ msgid "Favorite Color (blue):" #~ msgstr "የምወደው ቀለም (ሰማያዊ):" arctica-greeter-0.99.1.5/po/an.po0000644000000000000000000001271014007200004013244 0ustar # Aragonese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Aragonese \n" "Language: an\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Encetar sesión" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Tornar a prebar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "_Back" #~ msgstr "_Tazaga" arctica-greeter-0.99.1.5/po/arctica-greeter.pot0000644000000000000000000001240714007200004016076 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/ar.po0000644000000000000000000002144214007200004013252 0ustar # Arabic translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-09-08 22:24+0000\n" "Last-Translator: thami simo \n" "Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "أدخل كلمة سر %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "كلمة السّر:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "اسم المستخدم:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "كلمة السر غير صحيحة، رجاءً حاول مرة أخرى" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "فشل الاستيثاق" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "فشل بدء الجلسة" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "جاري تسجيل الدخول…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "نافذة تسجيل الدخول" #: ../src/main-window.vala:119 msgid "Back" msgstr "رجوع" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "لوحة مفاتيح الشاشة" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "تباين عال" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "قارئ الشاشة" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "خيارات الجلسة" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "اختر بيئة سطح المكتب" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "إلى اللقاء. هل ترغب في …" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "اطفئ الحاسوب" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "هل أنت متأكد من رغبتك في إطفاء تشغيل الحاسوب؟" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "يوجد مستخدمين آخرين والجين بالفعل إلى حساباتهم حاليًا. إطفائك لتشغيل الحاسوب " "الآن سيؤدي إلى إغلاق جلساتهم أيضًا." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "علّق" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "أسبِت" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "أعِد التشغيل" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (افتراضي)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "اعرض رقم الإصدارة" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "شغّل في نمط الاختبار" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- مرحب يونتي" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "نفّذ '%s --help' لرؤية قائمة كاملة بخيارات سطر الأوامر المتوفرة." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "جلسة زيارة" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "يرجى إدخال عنوان البريد الإلكتروني بالكامل" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "عنوان بريد إلكتروني خاطئ أو كلمة سر خاطئة" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "إذا كان لديك حساب على خادم RDP أو خادم X2Go، بعد دخول يتيح لك تشغيل " "التطبيقات من ذلك الملقم." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ألغِ" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "يتم الإعداد …" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "تحتاج لحساب أبونتو (Remote) للوصول عن بُعد لاستخدام هذا الجهاز. هل ترغب في " "إعداد حساب جديد الآن؟" #: ../src/user-list.vala:563 msgid "OK" msgstr "موافق" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "انت في حاجة الى حساب تسجيل الدخول عن بعد لاستخدام هذه الخدمة. تفضل بزيارة %s " "لطلب حساب." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "انت في حاجة الى حساب تسجيل الدخول عن بعد لاستخدام هذه الخدمة. يرجى سؤال " "مسؤول الموقع عن التفاصيل." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "نوع الخادم غير مدعوم." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "جلسة X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "النطاق:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "معرف الحساب" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "لِج" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "ولوج كـ %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "أعِد المحاولة" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "أعِد المحاولة كـ %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "ولوج" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "جلسة زائر مؤقتة" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "كل البيانات التي يتم إنشاءها خلال جلسة الزيارة ستحذف\n" "مباشرة بعد تسجيلك للخروج، وسيتم إستعادة الإعدادات الإفتراضية.\n" "فضلًا قم بحفظ ملفاتك في أداة تخزين خارجية -مثل قلم USB-\n" "إذا كنت ترغب باستعمال هذه الملفات لاحقًا." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "يمكن أيضًا تخزين الملفات في هذا المجلد\n" "/var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "مرحّب أركتيكا" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "إذا كان لديك حساب على خادوم RDP أو Citrix، فإن الولوج عن بعد يتيح لك " #~ "تشغيل التطبيقات من ذلك الخادوم." #~ msgid "Email:" #~ msgstr "البريد الإلكتروني:" #~ msgid "Enter password" #~ msgstr "أدخل كلمة السّر" #~ msgid "Logging in..." #~ msgstr "يلج..." #~ msgid "Other..." #~ msgstr "أخرى ..." #~ msgid "_Back" #~ msgstr "_عودة" #~ msgid "Favorite Color (blue):" #~ msgstr "اللون المفضل (أزرق):" arctica-greeter-0.99.1.5/po/ast.po0000644000000000000000000001651514007200004013444 0ustar # Asturian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-10-26 12:43+0000\n" "Last-Translator: Xuacu Saturio \n" "Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Introduz la contraseña pa %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contraseña:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nome d'usuariu:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "La contraseña nun ye válida, inténtalo otra vuelta" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Fallu al autenticase" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Fallu al aniciar sesión" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Aniciando sesión..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Pantalla d'aniciu sesión" #: ../src/main-window.vala:119 msgid "Back" msgstr "Atrás" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Tecláu en pantalla" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contraste altu" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Llector de pantalla" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opciones de sesión" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Esbillar entornu d'escritoriu" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Ta llueu. ¿Prestaríate..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Apagar" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "¿De xuru que quies apagar l'oredenador?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Anguaño los otros usuarios aniciarón sesión nesti ordenador, apagalu agora " "tamién zarrará eses otres sesiones." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspender" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Ivernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reaniciar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Por defeutu)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Amosar versión" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Executar en mou de prueba" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Pantalla d'entrada d'Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesión d'invitáu" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Por favor, introduz una direición de corréu completa" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Direición de corréu o contraseña incorreutes" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Si tienes una cuenta nun sirvidor RDP, Conexón Remota permítete executar " "aplicaciones dende esi sirvidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Encaboxar" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configurar..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Necesites una cuenta d'Ubuntu Conexón Remota pa usar esti serviciu. " "¿Prestaríate configurar una cuenta agora?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Aceutar" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Necesites una cuenta d'Ubuntu Conexón Remota pa usar esti serviciu. Visita " "uccs.canonical.com pa configurar una cuenta." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Necesites una cuenta d'Ubuntu Conexón Remota pa usar esti serviciu. " "¿Prestaríate configurar una cuenta agora?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Triba de sirvidor ensin sofitu." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sesión d'invitáu" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Dominiu:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Aniciar sesión" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Aniciar sesión como %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Reintentar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Reintentar como %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Aniciar sesión" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sesión d'invitáu" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Pantalla d'entrada d'Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Si tienes una cuenta nun sirvidor RDP o Citrix, Conexón Remota permítete " #~ "executar les aplicaciones dende esi sirvidor." #, fuzzy #~ msgid "Email:" #~ msgstr "Direición de corréu:" #~ msgid "_Back" #~ msgstr "A_trás" #~ msgid "Favorite Color (blue):" #~ msgstr "Color favoritu (azul):" #~ msgid "Logging in..." #~ msgstr "Aniciando sesión..." arctica-greeter-0.99.1.5/po/az.po0000644000000000000000000001575214007200004013271 0ustar # Azerbaijani translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Azerbaijani \n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s üçün parol əlavə edin" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Daxil olur..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Giriş ekranı" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Ekran klaviaturası" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Yüksək Kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Ekran Oxuyucusu" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Seans Seçimləri" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Masaüstü mühitini seçin" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Dusmaya görə)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Qonaq Seansı" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Tam e-poçt ünvanını daxil edin" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Natamam e-poçt ünvanı və ya şifrə" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Əgər Sizin RDP serverdə hesbınız varsa, Uzaqdan Daxilolma (Remote Login) o " "serverdəki tətbiqlərinizdən istifadə etməyə köməklik yaradacaq." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "İmtina" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Quraşdır" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Bu servisdən istifadə etmək üçün Ubuntu Məsafədən Daxilolma hesabınız " "olmalıdır. Hesab yaratmaq istəyirsiniz mi?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Bu servistən istifadə etməniz üçün Ubuntu Məsafədən Daxilolma hesabınız " "olmalıdır. Hesab yaratmaq üçün uccs.canonical.com ünvanına daxil olun." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Bu servisdən istifadə etmək üçün Ubuntu Məsafədən Daxilolma hesabınız " "olmalıdır. Hesab yaratmaq istəyirsiniz mi?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Server tipi dəstəklənmir." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Qonaq Seansı" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domen:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Daxil Ol" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s kimi daxil ol" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Yenidən" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s kimi təkrar et" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Qonaq Seansı" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Əgər Sizin RDP və ya Citrix serverində hesabınız varsa, Remote Login " #~ "(Uzaqda Daxilolma) o serverdəki tətbiqlərinizi icra etmənizə dətək olacaq." #, fuzzy #~ msgid "Email:" #~ msgstr "E-poçt ünvanı:" #~ msgid "Enter username" #~ msgstr "İstifadəçi adı əlavə edin" #~ msgid "_Back" #~ msgstr "_Geri" #~ msgid "Enter password" #~ msgstr "Şifrəni əlavə edin" #~ msgid "Favorite Color (blue):" #~ msgstr "Seçilmiş rəng (gpy):" arctica-greeter-0.99.1.5/po/bem.po0000644000000000000000000001356614007200004013423 0ustar # Bemba translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-08-07 20:14+0000\n" "Last-Translator: goof \n" "Language-Team: Bemba \n" "Language: bem\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Ukwingishe nkama ya kwa %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Inkama" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Ishina lya pa computer" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Iyo nkama yakana, esheni nakabili" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Awe cashupa" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Apa kwingilila" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Keyboard yapa screen" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Ifilembo fibuute saana" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Ukubelenga ifilembelwe pa screen" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Fimbi ifyakusalapo" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "kweshafye" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "Umutende" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Pakumona ama command yambi ayakubonfya, ku taipa '%s -- help'" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Umweni" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Umweni" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Ukwingila" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Ukwingila nga %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Ukubwekeshapo" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Ukubwekeshapo ukwingila nga %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Ukwingila" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Umweni" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "Umutende" #~ msgid "Logging in..." #~ msgstr "Mukwingila nomba" #~ msgid "_Back" #~ msgstr "_Kunuma" arctica-greeter-0.99.1.5/po/be.po0000644000000000000000000002234114007200004013235 0ustar # Belarusian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-08-23 20:56+0000\n" "Last-Translator: Viktar Vauchkevich \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Увядзіце пароль для %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Пароль:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Імя карыстальніка:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Няслушны пароль. Калі ласка, паспрабуйце зноў" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Аўтэнтыфікацыя не ўдалася" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Не атрымалася запусціць сэсію" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Уваход…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Экран уваходу" #: ../src/main-window.vala:119 msgid "Back" msgstr "Назад" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Экранная клавіятура" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Высокая кантраснасць" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Экранны чытач" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Параметры сеансу" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Абярыце працоўнае асяроддзе" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Да пабачэння. Ці жадаеце Вы…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Выключыць" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ці ўпэўнены Вы, што жадаеце выключыць кампутар?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Іншыя карыстальнікі зараз ўвайшлі ў гэты кампутар, выключэнне закрые таксама " "і іх сеансы." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Прыпыніць" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Гібернацыя" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Перазапусціць" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Стандартна)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Паказаць версію выпуску" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Запуск у рэжыме тэставання" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Вітальня Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Выканайце \"%s --help\", каб убачыць спіс усіх магчымых опцый загаднага " "радка." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Гасцявая сесія" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Калі ласка, пазначце поўны адрас электроннай пошты" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Няслушны адрас электроннай пошты ці пароль" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Калі вы маеце конт на RDP- ці X2Go-серверы, Remote Login дазволіць вам " "запускаць праграмы з гэтага сервера." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Скасаваць" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Наладзіць…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Каб скарыстаць гэты сервіс, вам патрэбны рахунак Ubuntu Remote Login. Ці вы " "жадаеце наладзіць яго цяпер?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Добра" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Каб скарыстаць гэты сервіс, вам патрэбны конт «Ubuntu Remote Login». " "Наведайце %s, каб наладзіць яго." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Каб скарыстаць гэты сервіс, вам патрэбны конт «Ubuntu Remote Login». Калі " "ласка, звярніцеся да адміністратара сайта для дэталяў." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Гэты тып серверу не падтрымліваецца." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go-сесія:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Дамэн:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Ідэнтыфікатар конту" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Увайсці" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Увайсці як %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Паспрабаваць ізноў" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Паспрабаваць ізноў як %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Уваход" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Часовая гасцявая сесія" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Усе даныя, створаныя падчас гасцявой сесіі, будуць\n" "выдаленыя пры вашым выхадзе, а налады будуць\n" "скінутая да агаданых. Калі ласка, захавайце файлы,\n" "да якіх вы хацелі б атрымаць доступ пазней, на\n" "знешніх носьбітах, напрыклад, на USB-флэшку." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Іншай альтэрнатывай з'яўляецца\n" "захаванне файлаў у каталог /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Вітальны экран Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Калі вы маеце рахунка на сэрверы RDP ці Citrix, Remote Login дазволіць " #~ "вам запускаць праграмы з гэтага сервера." #~ msgid "Email:" #~ msgstr "Электронная пошта:" #~ msgid "Guest" #~ msgstr "Госць" #~ msgid "_Back" #~ msgstr "_Назад" #~ msgid "Logging in..." #~ msgstr "Уваходжанне..." #~ msgid "Favorite Color (blue):" #~ msgstr "Улюбёны колер (блакітны):" arctica-greeter-0.99.1.5/po/bg.po0000644000000000000000000002250014007200004013234 0ustar # Bulgarian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-11-04 17:23+0000\n" "Last-Translator: Kamen \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Въведете парола за %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Парола:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Потребител:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Грешна парола, моля опитайте отново" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Неуспешно идентифициране" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Неуспешно стартиране на сесията" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Вход в системата…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Екран за вход" #: ../src/main-window.vala:119 msgid "Back" msgstr "Назад" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Екранна клавиатура" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Висок контраст" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Екранен четец" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Параметри на сесията" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Изберете десктоп среда" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Довиждане.Бихте ли искали да…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Изключи" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Действително ли искате да изключите компютъра?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "В момента на този компютър са стартирани сесии и на други потребители, " "изключването ще доведе до завършването на всички сесии." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Суспендинирай" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Хибернирай" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Рестартирай" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (стандартно)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Покажи версията на изданието" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Стартирай в тестов режим" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Екран за поздрав на Юнити" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Изпълнете «%s --help», за да видите списъка с всички опции на командния ред." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Сесия за гости" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Моля, напишете пълен имейл адрес" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Невалиден имейл адрес или парола" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Ако имате профил на RDP сървър, отдалеченият достъп ще Ви позволи да " "стартирате приложения от този сървър." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Отмени" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Настройки…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "За да ползвате тази услуга, трябва да имате потребителски профил за " "отдалечен достъп. Искате ли сега да бъде създаден такъв?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Да" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "За да използвате тази услуга, ви е необходим профил за отдалечено влизане. " "Посетете %s1, за да поискате профил." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "За да ползвате тази услуга, трябва да имате потребителски профил за " "отдалечен достъп. Моля, попитайте администратора на сайта си за подробности." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Този вид сървър не се поддържа." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go Сесия:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Домейн:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Идентификационен номер на профила" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Вход" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Вход от името на %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Повторен опит" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Повторен опит като %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Вход" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Временна сесия за гости" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Цялата информация създадена през времето на тази сесия за гости ще бъде " "заличена\n" "когато бъде затворена, както и всички настройки ще бъдат върнати по " "подразбиране.\n" "Моля записвайте файлове на някакво външно устройство, например\n" "USB стик, ако желаете да разполагате с тях по-късно." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Другата алтернатива в да запишете файловете в\n" "папката /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Приветстващ екран на Арктика" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Ако имате профил на RDP или Citrix сървър, отдалеченият достъп ще ви " #~ "позволи да стартирате приложения от този сървър." #~ msgid "Email:" #~ msgstr "Адрес на е-поща:" #~ msgid "Logging in..." #~ msgstr "Влизане..." #~ msgid "_Back" #~ msgstr "_Назад" #~ msgid "Favorite Color (blue):" #~ msgstr "Любим цвят (син):" arctica-greeter-0.99.1.5/po/bn.po0000644000000000000000000001654714007200004013261 0ustar # Bengali translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali \n" "Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "শব্দচাবি:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "লগিন পর্দা" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "রিলিজ সংস্করণ প্রদর্শন" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "বিদ্যমান কমান্ড লাইন অপশনের পুরো তালিকা দেখতে '%s --help' চালান।" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "অতিথি সেশন" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "ই-মেইল এড্রেস অথবা পাসওয়ার্ড ভুল হয়েছে" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "যদি আপনার RDP অথবা Citrix server এ কোন একাউন্ট থাকে, তাহলে আপনি রিমোট লগিন এর " "মাধ্যমে সেই সার্ভার থেকে আপনার এপ্লিকেশন গুলো ব্যাবহার করতে পারবেন।" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "বাতিল করুন" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "এই সার্ভিসটি ব্যাবহার করতে আপনার উবুন্টু রিমোট লগিন একাউন্ট থাকতে হবে। আপনি কি " "এখনই একটি একাউন্ট সেট আপ করতে চান?" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "এই সার্ভিসটি ব্যাবহার করতে আপনার উবুন্টু রিমোট লগিন একাউন্ট থাকতে হবে। একাউন্ট সেট " "আপ করতে uccs.canonical.com এ ভিজিট করুন ।" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "এই সার্ভিসটি ব্যাবহার করতে আপনার উবুন্টু রিমোট লগিন একাউন্ট থাকতে হবে। আপনি কি " "এখনই একটি একাউন্ট সেট আপ করতে চান?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "অতিথি সেশন" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ডোমেইন:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "লগইন" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "পুনরায় চেষ্টা করুন" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "অতিথি সেশন" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #, fuzzy #~ msgid "Email:" #~ msgstr "ই-মেইল ঠিকানা:" #~ msgid "_Back" #~ msgstr "পেছনে (_B)" arctica-greeter-0.99.1.5/po/bo.po0000644000000000000000000001260014007200004013244 0ustar # Tibetan translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tibetan \n" "Language: bo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/br.po0000644000000000000000000001527714007200004013264 0ustar # Breton translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-11-28 14:39+0000\n" "Last-Translator: Denis \n" "Language-Team: Breton \n" "Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Roit ar get-tremen evit %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Ger-tremen :" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Anv an arveriad :" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ger-tremen fall, bizskrivit en-dro marplij" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "C'hwitadenn war an dilesa" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "C'hwitadenn war loc'hañ an estez" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "O kennaskañ..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Skrammad kennaskañ" #: ../src/main-window.vala:119 msgid "Back" msgstr "Distro" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Klavier ba'r skramm" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Dargemm uhel" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lenner skramm" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Dibarzhioù an estez" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Diuzañ endro ar burev" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Kenavo. Ha fellout a ra deoc'h..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Lazhañ" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ha sur oc'h da lzhañ an urzhiataer ?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Lakaat da gousket" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Goañviñ" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Adloc'hañ" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Dre ziouer)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Diskouez handelv an ermaeziadenn" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Loc'hañ e mod-esseal" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Degemerer Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Loc'hañ '%s --help' evit skrammañ rollad dibarzhioù an arc'hadoù." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Estez ar c'houviad" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Roit ur chomlec'h postel a-bezh" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "N'eo ket reizh ar chomlec'h postel pe ar ger-tremen" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Mard hoc'h eus ur gont ouzh un dafariad RDP pe Citrix, e c'hallo deoc'h " "erounit arloadoù diouzh an dafariad-se gant Kennask a-bell." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Nullañ" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Arventennañ..." #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "Mat eo" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "N'eo ket skoret rizh an dafariad." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Estez ar c'houviad" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domani :" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Kennaskañ" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Kennaskañ evel %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Klask en-dro" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Klask en-dro evel %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Kennaskañ" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Estez ar c'houviad" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Degemerer Arctica" #, fuzzy #~ msgid "Email:" #~ msgstr "Chomlec'h postel :" #~ msgid "Logging in..." #~ msgstr "O kennaskañ..." #~ msgid "_Back" #~ msgstr "_Kent" #~ msgid "Enter username" #~ msgstr "Reiñ un anv implijer" #~ msgid "Enter password" #~ msgstr "Reiñ ar ger tremen" #~ msgid "Favorite Color (blue):" #~ msgstr "liv karetañ (glaz) :" arctica-greeter-0.99.1.5/po/bs.po0000644000000000000000000001620414007200004013254 0ustar # Bosnian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: leela <53352@protonmail.com>\n" "Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Unesite šifru za %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Lozinka:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Pogrešna lozinka, molimo pokušajte ponovo" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Neuspjelo pokretanje sesije" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Prijavljujem se…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "Nazad" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Tastatura na ekranu" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Visoki kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcije sesije" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Odaberi okruženje radne površine" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Doviđenja. Šta želite uraditi…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Ugasi" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Jeste li sigurni da želite ugasiti ovaj računar?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Drugi korisnici su trenutno prijavljeni na ovaj računar, gašenje sada će " "takođe zatvoriti ove druge sesije." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspenduj" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernacija" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Ponovo pokreni" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (podrazumijevano)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Pokreni u testnom režimu" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Molim unesite punu adresu elektronske pošte" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Neispravna adresa elektronske pošte ili lozinka" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Ako imate nalog na RDP serveru, udaljena prijava će pokrenuti programe s tog " "servera." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Odustani" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Postavi..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Treba vam Ubuntu nalog za udaljenu prijavu da koristite ovu uslugu. Želite " "li postaviti taj nalog." #: ../src/user-list.vala:563 msgid "OK" msgstr "U redu" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Treba vam Ubuntu nalog za udaljenu prijavu da koristite ovu uslugu. " "Posjetite uccs.canonical.com da postavite nalog." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Treba vam Ubuntu nalog za udaljenu prijavu da koristite ovu uslugu. Želite " "li postaviti taj nalog." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Vrsta servera nije podržana" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domena:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Pokušaj Ponovo" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Ponovi kao %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Prijava" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Ako imate nalog na RDP ili Citrix serveru, daljinska Prijava omogućuje " #~ "pokretanje aplikacija sa tog servera." #, fuzzy #~ msgid "Email:" #~ msgstr "Adresa e‑pošte:" #~ msgid "_Back" #~ msgstr "_Nazad" #~ msgid "Logging in..." #~ msgstr "Prijavljivanje..." #~ msgid "Favorite Color (blue):" #~ msgstr "Omiljena boja (plava):" arctica-greeter-0.99.1.5/po/ca.po0000644000000000000000000001731714007200004013241 0ustar # Catalan translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-10-24 22:26+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Inseriu la contrasenya per a %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contrasenya:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nom d'usuari:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Contrasenya no vàlida, intenteu-ho de nou" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Ha fallat l'autenticació" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Ha fallat l'inici de la sessió" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "S'està iniciant la sessió…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Pantalla d'accés" #: ../src/main-window.vala:119 msgid "Back" msgstr "Enrere" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Teclat en pantalla" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contrast alt" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lector de pantalla" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcions de la sessió" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Seleccioneu l'entorn d'escriptori" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "A reveure. Què voleu fer?" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Atura" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Segur que voleu aturar l'ordinador?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Hi ha altres usuaris connectats a aquest ordinador. Si l'atureu, es tancaran " "les seves sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Atura temporalment" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hiberna" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reinicia" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (per defecte)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Mostra la versió" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Executa en mode de prova" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Rebedor d'Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Executeu «%s --help» per veure una llista completa de les opcions de línia " "de les ordres disponibles." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sessió de convidat" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Introduïu una adreça electrònica completa" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "L'adreça electrònica o la contrasenya són incorrectes" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Si teniu un compte en un servidor RDP o X2Go, l'entrada remota us permet " "executar aplicacions des del servidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancel·la" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configura…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Cal un compte d'entrada remota per utilitzar aquest servei. Voleu configurar " "un compte ara?" #: ../src/user-list.vala:563 msgid "OK" msgstr "D'acord" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Cal un compte d'entrada remota per utilitzar aquest servei. Visiteu %s per " "demanar un compte." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Cal un compte d'entrada remota de per utilitzar aquest servei. Contacteu amb " "l'administrador del lloc per obtenir més detalls." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "El tipus de servidor no és compatible." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sessió X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domini:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Id. del compte" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Accés" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Accediu com a %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Torna-ho a provar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Torna-ho a provar com a %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Accedeix" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sessió temporal de convidat" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Totes les dades creades durant aquesta sessió de convidat s'esborraran\n" "quan tanqueu la sessió i la configuració tornarà als valors per defecte.\n" "Deseu els fitxers en un dispositiu extern, com ara una clau USB,\n" "si voleu accedir a ells posteriorment." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Una altra alternativa és desar els fitxers a la\n" "carpeta /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Rebedor d'Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Si teniu un compte en un servidor RDP o Citrix, l'entrada remota us " #~ "permet executar aplicacions des del servidor." #, fuzzy #~ msgid "Email:" #~ msgstr "Adreça electrònica:" #~ msgid "_Back" #~ msgstr "_Enrere" #~ msgid "Favorite Color (blue):" #~ msgstr "Color preferit (blau):" arctica-greeter-0.99.1.5/po/ca@valencia.po0000644000000000000000000001731114007200004015036 0ustar # Catalan (Valencian) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: leela <53352@protonmail.com>\n" "Language-Team: Valencian \n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Escriviu la contrasenya per a %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contrasenya:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nom d'usuari:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Contrasenya no vàlida, intenteu-ho de nou" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Ha fallat l'autenticació" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Ha fallat l'inici de la sessió" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "S'està entrant a la sessió…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Pantalla d'accés" #: ../src/main-window.vala:119 msgid "Back" msgstr "Arrere" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Teclat en pantalla" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contrast alt" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lector de pantalla" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcions de la sessió" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Seleccioneu l'entorn d'escriptori" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "A reveure. Què voleu fer…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Para" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Segur que voleu parar l'ordinador?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Hi ha altres usuaris connectats a este ordinador. Si l'pareu, es tancaran " "les seues sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Para temporalment" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hiberna" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reinicia" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (per defecte)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Mostra la versió" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Executa en mode de prova" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Executeu «%s --help» per veure una llista completa de les opciones de línia " "de les ordres disponibles." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sessió de convidat" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Introduïu una adreça electrònica completa" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "L'adreça electrònica o la contrasenya són incorrectes" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Si teniu un compte en un servidor RDP o X2Go, l'entrada remota vos permet " "executar aplicacions des del servidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancel·la" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configura…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Cal un compte d'entrada remota per utilitzar este servei. Voleu configurar " "un compte ara?" #: ../src/user-list.vala:563 msgid "OK" msgstr "D'acord" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Cal un compte d'entrada remota per utilitzar este servei. Visiteu %s per " "demanar un compte." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Cal un compte d'entrada remota de per utilitzar este servei. Contacteu amb " "l'administrador del lloc per obtenir més detalls." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "El tipus de servidor no és compatible." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sessió X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domini:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Id. del compte" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Entra" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Accediu com a %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Torna-ho a provar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Torna-ho a provar com a %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Accedix" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sessió temporal de convidat" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Totes les dades creades durant esta sessió de convidat s'esborraran\n" "quan tanqueu la sessió i la configuració tornarà als valors predeterminats.\n" "Deseu els fitxers en un dispositiu extern, com per exemple un\n" "clauer USB, si voleu accedir a ells posteriorment." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Altra alternativa es desar els fitxers en la\n" "carpeta /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Rebedor d'Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Si teniu un compte en un servidor RDP o Citrix, l'entrada remota vos " #~ "permet executar aplicacions des del servidor." #, fuzzy #~ msgid "Email:" #~ msgstr "Adreça electrònica:" #~ msgid "Favorite Color (blue):" #~ msgstr "Color preferit (blau):" #~ msgid "_Back" #~ msgstr "_Enrere" arctica-greeter-0.99.1.5/po/ce.po0000644000000000000000000001301714007200004013236 0ustar # Chechen translation for arctica-greeter # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2014-08-08 11:27+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chechen \n" "Language: ce\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Харц пароль, кхин цкъа хьажал" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "ДIаяйа" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Хьоьжу раж" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Наб кхетта раж" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Юха доло" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ДIадаккхар" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/ckb.po0000644000000000000000000001344714007200004013415 0ustar # Kurdish (Sorani) translation for arctica-greeter # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2013-02-22 11:36+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kurdish (Sorani) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "ووشەی تێپەڕبوون بنووسە بۆ %s ." #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "وشه‌ی تێپه‌ڕبوون:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ناوی به‌كارهێنه‌ر:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "ووشەی تێپەڕبوون هەڵەیە ،تکایە هەوڵ بدەرەوە" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "نەتوانرا ڕێگەت پێبدرێت" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "پەردەی چوونەژورەوە" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "هەڵبژاردنەکانی دانیشتن" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (بنچینەیی)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "Logging in..." #~ msgstr "چوونەناوەوە..." arctica-greeter-0.99.1.5/po/co.po0000644000000000000000000001255514007200004013256 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2016-09-15 09:20+0000\n" "Last-Translator: Mike Gabriel \n" "Language-Team: Corsican (http://www.transifex.com/arctica-project/arctica-" "greeter/language/co/)\n" "Language: co\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/crh.po0000644000000000000000000001657514007200004013437 0ustar # Crimean Turkish; Crimean Tatar translation for arctica-greeter # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2013-04-16 05:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Crimean Turkish; Crimean Tatar \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s içün sır-söz kirsetiñiz" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Parol:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Qullanıcı adı:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Keçersiz parol, lütfen yañıdan deñeñiz" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Sahihlenim muvaffaqiyetsiz" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "İçeri İmzalanım Ekranı" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Ekran-üstü klavye" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Yüksek Tezat" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Ekran Oquyıcı" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Oturım Seçenekleri" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Masaüstü çevresini saylañız" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Ögbelgilengen)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Çıqarılış sürümini köster" # tüklü #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Sınama kipinde çaptır" # tüklü #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Qarşılayıcısı" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Faydalanışlı emir satrı seçenekleriniñ tam bir listesini körmek içün '%s --" "help' çaptırıñız." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Musafir Oturımı" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Lütfen tam bir e-poşta adresi kirsetiñiz" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Yañlış e-poçta yaki sır-söz" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Eger bir RDP sunucısı üzerinde bir hesabıñız bar ise, Uzaqtan İçeri " "İmzalanım sizge o sunucıdan uyğulamalarnı çalıştırmağa imkân berir." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Vazgeç" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Ayarlama…" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Bu hızmetni qullanmaq içün bir Ubuntu Uzaqtan İçeri İmzalanım hesabına " "ihtiyacıñız bar. Şimdi bir hesapnı ayarlamağa ister ediñizmi?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Tamam" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Bu hızmetni qullanmaq içün bir Ubuntu Uzaqtan İçeri İmzalanım hesabına " "muhtacsıñız. Bir hesapnı ayarlamaq içün uccs.canonical.com ziyaret etiñiz." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Bu hızmetni qullanmaq içün bir Ubuntu Uzaqtan İçeri İmzalanım hesabına " "ihtiyacıñız bar. Şimdi bir hesapnı ayarlamağa ister ediñizmi?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Sunucı türü desteklenmey." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Musafir Oturımı" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Saha:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "İçeri İmzalan" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s olaraq içeri imzalan" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Kene deñe" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s olaraq kene deñe" #: ../src/user-list.vala:882 msgid "Login" msgstr "İçeri İmzalanım" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Musafir Oturımı" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" # tüklü #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Qarşılayıcısı" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Eger bir RDP ya da Citrix sunucısı üzerinde bir hesabıñız bar ise, " #~ "Uzaqtan İçeri İmzalanım sizge o sunucıdan uyğulamalarnı çaptırmağa imkân " #~ "berir." #, fuzzy #~ msgid "Email:" #~ msgstr "E-poçta adresi:" #~ msgid "Logging in..." #~ msgstr "İçeri imzalanıla..." #~ msgid "Favorite Color (blue):" #~ msgstr "Közde Tüs (kök):" arctica-greeter-0.99.1.5/po/cs.po0000644000000000000000000001671714007200004013266 0ustar # Czech translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-08-09 20:36+0000\n" "Last-Translator: Filip Hron \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Zadejte heslo pro %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Heslo:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Uživatelské jméno:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Chybné heslo, zkuste to znovu prosím" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Ověření selhalo" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Nepodařilo se spustit relaci" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Přihlašování..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Přihlašovací obrazovka" #: ../src/main-window.vala:119 msgid "Back" msgstr "Zpět" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Klávesnice na obrazovce" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Vysoký kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Čtečka obrazovky" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Vlastnosti sezení" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Zvolte uživatelské prostředí" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Nashledanou. Chcete ..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Vypnout" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Opravdu chcete vypnout počítač?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Na tomto počítači jsou přihlášení další uživatelé, vypnutím počítače " "odhlásíte i je." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Uspat do paměti" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Uspat na disk" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Restartovat" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Výchozí)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Zobrazit verzi vydání" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Spustit v testovacím režimu" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- uvítací obrazovka Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Spustit příkaz „%s --help“ k zobrazení úplného seznamu dostupných přepínačů " "příkazové řádky." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sezení hosta" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Zadejte prosím e-mailovou adresu" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Nesprávná e-mailová adresa nebo heslo" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Pokud máte účet na serveru RDP, Vzdálené přihlášení vám umožní spouštět " "aplikace z tohoto serveru." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Zrušit" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Nastavit..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Pro fungování této služby je potřeba účet Ubuntu Remote Login. Chcete ho " "nyní vytvořit?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Pro fungování této služby je potřeba Ubuntu Remote Login účet. Vytvořte si " "jej na uccs.canonical.com." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Pro fungování této služby je potřeba účet Ubuntu Remote Login. Chcete ho " "nyní vytvořit?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tento typ serveru není podporován." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sezení hosta" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Doména:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Přihlásit se" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Přihlásit se jako %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Opakovat" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Znovu jako %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Přihlásit se" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sezení hosta" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "Další možností je uložit soubory ve složce / var / guest-data." #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- uvítací obrazovka Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Pokud již máte účet na RDP nebo Citrix serveru, Vzdálené přihlášení vám z " #~ "nich umožní spouštět aplikace." #, fuzzy #~ msgid "Email:" #~ msgstr "E-mailová adresa:" #~ msgid "_Back" #~ msgstr "_Zpět" #~ msgid "Favorite Color (blue):" #~ msgstr "Oblíbená barva (modrá):" arctica-greeter-0.99.1.5/po/cv.po0000644000000000000000000001300714007200004013256 0ustar # Chuvash translation for arctica-greeter # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2014-03-20 19:43+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chuvash \n" "Language: cv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Кӗме сӑмах" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Ятлӑх" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "Кайалла" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Сӳнтер" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Есӗ компйутӗрне чӑн та сӳнтересшӗн-и?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Тĕлĕрӳ" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/cy.po0000644000000000000000000001614614007200004013270 0ustar # Welsh translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2014-04-30 19:02+0000\n" "Last-Translator: Owen Llywelyn \n" "Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Rhowch y cyfrinair ar gyfer %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Cyfinair:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Enw defnyddiwr:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Cyfrinair anghywir, rhowch gynnig arall arni" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Methwyd dilysu" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Methwyd cychwyn sesiwn" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Wrthi'n mewngofnodi..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Sgrîn Fewngofnodi" #: ../src/main-window.vala:119 msgid "Back" msgstr "Yn ôl" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Bysellfwrdd sgrîn" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Cyferbyniad Uchel" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Darllenydd Sgrin" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Dewisiadau'r Sesiwn" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Dewis amgylchedd penbwrdd" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Hwyl fawr. Hoffech chi..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Diffodd" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ydych chi'n siŵr eich bod am ddiffodd y cyfrifiadur?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Mae defnyddwyr eraill wedi mewngofnodi i'r cyfrifiadur hwn, bydd diffodd yn " "cau'r sesiynau eraill hefyd." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Seibio" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Cysgu" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Ailgychwyn" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Rhagosodedig)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Dangos fersiwn rhyddhau" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Rhedeg ym modd prawf" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Cyfarchwr Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Rhedwch '%s --help' i weld rhestr lawn o opsiynau llinell orchymyn." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesiwn Wadd" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Rhowch gyfeiriad ebost llawn" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Cyfeiriad ebost neu gyfrinair anghywir" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Os oes gennych gyfrif ar weinydd RDP, mae Mewngofnodi Pell yn eich galluogi " "i redeg rhaglenni o'r gweinydd hwnnw." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Diddymu" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Sefydlu..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Rhaid cael cyfrif Mewngofnodi Pell Ubuntu i ddefnyddio'r wasanaeth hon. " "Hoffech greu un nawr?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Iawn" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Rhaid cael cyfrif Mewngofnodi Pell Ubuntu i ddefnyddio'r wasanaeth hon. " "Ymwelwch â uccs.canonical.com i greu cyfrif." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Rhaid cael cyfrif Mewngofnodi Pell Ubuntu i ddefnyddio'r wasanaeth hon. " "Hoffech greu un nawr?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Ni chefnogir y math yna o weinydd" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sesiwn Wadd" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Parth:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Mewngofnodi" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Mewngofnodi fel %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Ailgeisio" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Ceisio eto fel %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Mewngofnodi" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sesiwn Wadd" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Cyfarchwr Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Os oes gennych gyfrif ar weinydd RDP neu Xitrix, mae Mewngofnodi Pell yn " #~ "eich galluogi i redeg rhaglenni o'r gweinydd hwnnw." #, fuzzy #~ msgid "Email:" #~ msgstr "Cyfeiriad ebost:" #~ msgid "_Back" #~ msgstr "Yn _ôl" arctica-greeter-0.99.1.5/po/da.po0000644000000000000000000001752414007200004013242 0ustar # Danish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-10-04 12:24+0000\n" "Last-Translator: scootergrisen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Indtast adgangskode for %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Adgangskode:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Brugernavn:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Forkert adgangskode, prøv venligst igen" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Godkendelse mislykkedes" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Opstart af session mislykkedes" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Logger ind…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Loginskærm" #: ../src/main-window.vala:119 msgid "Back" msgstr "Tilbage" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Skærmtastatur" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Høj kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Skærmlæser" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sessions egenskaber" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Vælg skrivebordsmiljø" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Farvel. Ønsker du at…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Luk ned" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Er du sikker på, at du vil lukke computeren?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Der er i øjeblikket andre brugere som er logget ind - slukkes maskinen, vil " "disse andre sessioner også blive lukket." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Hvile" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Dvale" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Genstart" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Standard)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Vis udgivelses-version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Kør i testtilstand" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Velkomstskærmen for Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Kør \"%s --help\" for at se den fulde liste af tilgængelige " "kommandolinjetilvalg." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gæstesession" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Angiv venligst en komplet e-post-adresse" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Forkert e-post-adresse eller adgangskode" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Hvis du har en konto på en RDP-server eller X2Go-server, vil fjernlogin lade " "dig køre programmer fra denne server." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Annullér" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Opsætning…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Der kræves en konto til Ubuntu Fjern-login for at kunne anvende denne " "tjeneste. Vil du gerne opsætte en konto nu?" #: ../src/user-list.vala:563 msgid "OK" msgstr "O.k" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Der kræves en konto til fjernlogin for at kunne anvende denne tjeneste. " "Besøg %s for at anmode om en konto." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Der kræves en konto til fjernlogin for at kunne anvende denne tjeneste. " "Spørg venligst din stedadministrator om detaljerne." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Servertype understøttes ikke." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go session:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domæne:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Konto-id" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Log ind" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Log ind som %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Prøv igen" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Forsøg igen som %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Log ind" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Midlertidig Gæstesession" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Alt data som er lavet under denne gæste session vil blive slettet\n" "når du logger ud, vil indstillinger blive sat til standart.\n" "Vær venlig at gemme filer på en ekstern enhed, fx. et \n" "USB pen, hvis du vil have adgang til dem igen senere." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Et andet alternativ vil være at gemme filerne i \n" "/var/guest-data mappen." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Hvis du har en konto på en RDP eller Citrix-server, Fjern-login lader dig " #~ "køre programmer fra denne server." #~ msgid "Email:" #~ msgstr "E-post adresse:" #~ msgid "Guest" #~ msgstr "Gæst" #~ msgid "Logging in..." #~ msgstr "Logger ind..." #~ msgid "Other..." #~ msgstr "Anden..." #~ msgid "Enter username" #~ msgstr "Indtast brugernavn" #~ msgid "Enter password" #~ msgstr "Angiv adgangskode" #~ msgid "_Back" #~ msgstr "_Tilbage" #~ msgid "Favorite Color (blue):" #~ msgstr "Yndlingsfarve (blå):" arctica-greeter-0.99.1.5/po/de.po0000644000000000000000000002012414007200004013234 0ustar # German translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: Swann Martinet \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Passwort für %s eingeben" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Passwort:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Benutzername:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Passwort ungültig, bitte wiederholen" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Legitimierung gescheitert" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Starten der Sitzung fehlgeschlagen" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Anmeldevorgang …" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Anmeldebildschirm" #: ../src/main-window.vala:119 msgid "Back" msgstr "Zurück" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Bildschirmtastatur" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Starker Kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Bildschirmleser" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sitzungsoptionen" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Arbeitsumgebung wählen" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Auf Wiedersehen. Würden Sie gerne …" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Herunterfahren" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Wollen Sie den Rechner wirklich herunterfahren?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Zur Zeit sind noch andere Benutzer an diesem Rechner angemeldet. Wenn Sie " "jetzt den Rechner herunterfahren, werden diese Benutzer abgemeldet." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Bereitschaft" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Ruhezustand" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Neustarten" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Standard)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Versionsnummer anzeigen" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Im Testmodus starten" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Startseite von Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Bitte „%s --help“ eingeben, um eine vollständige Liste der verfügbaren " "Befehlszeilenoptionen einzusehen." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gastzugang" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Bitte eine vollständige E-Mail-Adresse eingeben" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Ungültige(s) E-Mail-Adresse oder Passwort" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Falls Sie ein Konto auf einem RDP-Server oder X2Go-Server besitzen, können " "Sie über den Fernzugriff Anwendungen von diesem Server ausführen." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Abbrechen" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Einrichten …" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Sie benötigen ein Remote Login, um diesen Dienst zu nutzen. Möchten Sie " "jetzt ein Fernzugriff Konto einrichten?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Sie benötigen ein Remote Login, um diesen Dienst zu nutzen. Besuchen Sie %s, " "um ein Konto einzurichten." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Sie benötigen ein Remote Login, um diesen Dienst zu nutzen. Bei Fragen " "kontaktieren Sie bitte Ihren Administrator." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Server-Typ nicht unterstützt." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go Sitzung:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domäne:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Kennung" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Anmelden" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Als %s anmelden" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Erneut versuchen" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Erneut versuchen als %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Anmelden" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Temporärer Gastzugang" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Alle Daten erstellt während dieser Gastsitzung werden gelöscht\n" "wenn sie sich ausloggen, die Standardeinstellungen werden zurückgesetzt.\n" "Bitte speichern sie ihre Daten auf einem Externen Datenträger, zum Beispiel\n" "Wenn sie zu einem späteren Zeitpunkt erneut zugreifen möchten." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Eine weitere möglichkeit besteht mit dem Sichern der Datei unter\n" "/var/guest-data Ordner." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Startseite von Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Wenn Sie über ein Konto auf einem RDP- oder Citrix-Server verfügen, " #~ "können Sie mit dem Fernzugriff von diesem Server aus Anwendungen " #~ "ausführen." #~ msgid "Email:" #~ msgstr "E-Mail-Adresse:" #~ msgid "Guest" #~ msgstr "Gast" #~ msgid "Logging in..." #~ msgstr "Anmeldung läuft …" #~ msgid "Enter username" #~ msgstr "Benutzernamen eingeben" #~ msgid "_Back" #~ msgstr "_Zurück" #~ msgid "Other..." #~ msgstr "Andere …" #~ msgid "Enter password" #~ msgstr "Kennwort eingeben" #~ msgid "Favorite Color (blue):" #~ msgstr "Lieblingsfarbe (Blau):" arctica-greeter-0.99.1.5/po/el.po0000644000000000000000000002342114007200004013247 0ustar # Greek translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-05-21 12:43+0000\n" "Last-Translator: THANOS SIOURDAKIS \n" "Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.7-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Εισάγετε κωδικό για %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Κωδικός:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Όνομα χρήστη:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Λανθασμένος κωδικός, παρακαλώ δοκιμάστε ξανά" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Αποτυχία ταυτοποίησης" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Αποτυχία εκκίνησης της συνεδρίας" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Γίνεται σύνδεση…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Οθόνη εισόδου" #: ../src/main-window.vala:119 msgid "Back" msgstr "Πίσω" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Πληκτρολόγιο οθόνης" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Υψηλή αντίθεση" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Εφαρμογή ανάγνωσης οθόνης" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Επιλογές Συνεδρίας" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Επιλέξτε περιβάλλον εργασίας" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Αντίο. Θα θέλατε να…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Τερματισμός" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Είστε βέβαιοι ότι θέλετε να τερματίσετε τη διάρκεια του υπολογιστή;" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Αυτή τη στιγμή είναι άλλοι χρήστες συνδεδεμένοι σε αυτόν τον υπολογιστή, αν " "τερματίσετε τώρα αυτό θα προκαλέσει επίσης κλείσιμο και αυτών των συνεδριών." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Αναστολή λειτουργίας" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Αδρανοποίηση" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Επανεκκίνηση" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Προεπιλογή)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Εμφάνιση έκδοσης κυκλοφορίας" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Εκτέλεση σε λειτουργία δοκιμής" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Εκτελέστε «%s --help» για να δείτε μια πλήρη λίστα των διαθέσιμων επιλογών " "της γραμμής εντολών." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Συνεδρία επισκέπτη" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Παρακαλώ εισάγετε μια πλήρη διεύθυνση e-mail" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Λανθασμένo e-mail ή κωδικός πρόσβασης" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Αν έχετε λογαριασμό σε έναν διακομιστή RDP ή διακομιστή X2Go, τότε η " "Απομακρυσμένη σύνδεση επιτρέπει να εκτελέσετε εφαρμογές από αυτόν τον " "διακομιστή." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Ακύρωση" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Ρύθμιση…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Χρειάζεστε ένα λογαριασμό Απομακρυσμένης σύνδεσης για να χρησιμοποιήσετε " "αυτή την υπηρεσία. Θα θέλατε να δημιουργήσετε ένα λογαριασμό τώρα;" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Χρειάζεστε ένα λογαριασμό Απομακρυσμένης σύνδεσης για να χρησιμοποιήσετε " "αυτή την υπηρεσία. Επισκεφτείτε το %s για να δημιουργήσετε ένα λογαριασμό." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Χρειάζεστε ένα λογαριασμό Απομακρυσμένης σύνδεσης για να χρησιμοποιήσετε " "αυτήν την υπηρεσία. Ρωτήστε το διαχειριστή της τοποθεσίας σας για " "λεπτομέρειες." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Αυτός ο τύπος διακομιστή δεν υποστηρίζεται." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Συνεδρία X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Τομέας:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Αναγνωριστικό λογαριασμού" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Σύνδεση" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Σύνδεση ως %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Επανάληψη" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Επανάληψη ως %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Σύνδεση" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Προσωρινή Συνεδρία Επισκέπτη" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Όλα τα δεδομένα που δημιουργήθηκαν κατά τη διάρκεια αυτής της συνεδρίας θα " "διαγραφούν\n" "όταν αποσυνδεθείτε και οι ρυθμίσεις θα επανέλθουν στις προεπιλογές.\n" "Παρακαλώ αποθηκεύστε τα αρχεία σε κάποια εξωτερική συσκευή, για παράδειγμα\n" "USB stick, αν θα θέλατε να έχετε πρόσβαση ξανά αργότερα." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Μία εναλλακτική λύση είναι να αποθηκεύσετε τα αρχεία στον φάκελο /var/guest-" "data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Αν διαθέτετε λογαριασμό σε RDP ή Citrix διακομιστή, με την Απομακρυσμένη " #~ "σύνδεση μπορείτε να εκτελείτε εφαρμογές από αυτόν τον εξυπηρετητή." #, fuzzy #~ msgid "Email:" #~ msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου:" #~ msgid "_Back" #~ msgstr "_Πίσω" #~ msgid "Favorite Color (blue):" #~ msgstr "Αγαπημένο χρώμα (μπλε):" arctica-greeter-0.99.1.5/po/en_AU.po0000644000000000000000000001723414007200004013643 0ustar # English (Australia) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: Swann Martinet \n" "Language-Team: English (Australia) \n" "Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Enter password for %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Password:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Username:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Invalid password, please try again" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Failed to authenticate" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Failed to start session" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Logging in…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Login Screen" #: ../src/main-window.vala:119 msgid "Back" msgstr "Back" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Onscreen keyboard" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "High Contrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Screen Reader" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Session Options" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Select desktop environment" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Goodbye. Would you like to…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Shut Down" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Are you sure you want to shut down the computer?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspend" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernate" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Restart" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Default)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Show release version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Run in test mode" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Run '%s --help' to see a full list of available command line options." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Guest Session" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Please enter a complete e-mail address" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Incorrect e-mail address or password" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancel" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Set Up…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Server type not supported." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go Session:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domain:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Account ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Log In" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Login as %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Retry" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Retry as %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Login" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Temporary Guest Session" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Another alternative is to save files in the\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #, fuzzy #~ msgid "Email:" #~ msgstr "Email address:" #~ msgid "Other..." #~ msgstr "Other..." #~ msgid "Logging in..." #~ msgstr "Logging in..." #~ msgid "Enter username" #~ msgstr "Enter username" #~ msgid "Enter password" #~ msgstr "Enter password" #~ msgid "_Back" #~ msgstr "_Back" #~ msgid "Favorite Color (blue):" #~ msgstr "Favourite Colour (blue):" arctica-greeter-0.99.1.5/po/en_CA.po0000644000000000000000000001725214007200004013621 0ustar # English (Canada) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: Swann Martinet \n" "Language-Team: English (Canada) \n" "Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Enter password for %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Password:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Username:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Invalid password, please try again" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Failed to authenticate" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Failed to start session" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Logging in…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Login Screen" #: ../src/main-window.vala:119 msgid "Back" msgstr "Back" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Onscreen keyboard" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "High Contrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Screen Reader" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Session Options" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Select desktop environment" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Goodbye. Would you like to…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Shut Down" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Are you sure you want to shut down the computer?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Copy text \t\r\n" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspend" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernate" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Restart" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Default)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Show release version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Run in test mode" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Run '%s --help' to see a full list of available command line options." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Guest Session" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Please enter a complete e-mail address" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Incorrect e-mail address or password" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancel" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Set Up…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Server type not supported." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go Session:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domain:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Account ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Log In" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Login as %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Retry" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Retry as %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Login" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Temporary Guest Session" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Another alternative is to save files in the\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "- Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #, fuzzy #~ msgid "Email:" #~ msgstr "Email address:" #~ msgid "Other..." #~ msgstr "Other..." #~ msgid "Enter username" #~ msgstr "Enter username" #~ msgid "Enter password" #~ msgstr "Enter password" #~ msgid "Logging in..." #~ msgstr "Logging in..." #~ msgid "_Back" #~ msgstr "_Back" #~ msgid "Favorite Color (blue):" #~ msgstr "Favorite Colour (blue):" arctica-greeter-0.99.1.5/po/en_GB.po0000644000000000000000000001726114007200004013626 0ustar # English (United Kingdom) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-24 06:24+0000\n" "Last-Translator: Swann Martinet \n" "Language-Team: English (United Kingdom) \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Enter password for %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Password:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Username:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Invalid password, please try again" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Failed to authenticate" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Failed to start session" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Logging in…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Login Screen" #: ../src/main-window.vala:119 msgid "Back" msgstr "Back" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Onscreen Keyboard" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "High Contrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Screen Reader" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Session Options" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Select desktop environment" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Goodbye. Would you like to…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Shut Down" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Are you sure you want to shut down the computer?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Other users are currently logged in to this computer. Shutting down now will " "also close these other sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspend" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernate" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Restart" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Default)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Show release version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Run in test mode" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Run '%s --help' to see a full list of available command line options." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Guest Session" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Please enter a complete e-mail address" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Incorrect e-mail address or password" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancel" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Set-up…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "You need a Remote Login account to use this service. Would you like to set " "up an account now?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "You need an Remote Login account to use this service. Visit %s to request an " "account." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "You need an Remote Login account to use this service. Please ask your site " "administrator for details." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Server type not supported." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go Session:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domain:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Account ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Log In ورود" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Login as %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Retry" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Retry as %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Login" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Temporary Guest Session" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Another alternative is to save files in the\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #, fuzzy #~ msgid "Email:" #~ msgstr "E-mail address:" #~ msgid "Logging in..." #~ msgstr "Logging in..." #~ msgid "Other..." #~ msgstr "Other..." #~ msgid "Enter password" #~ msgstr "Enter password" #~ msgid "Enter username" #~ msgstr "Enter username" #~ msgid "_Back" #~ msgstr "_Back" #~ msgid "Favorite Color (blue):" #~ msgstr "Favorite Colour (blue):" arctica-greeter-0.99.1.5/po/eo.po0000644000000000000000000001662314007200004013260 0ustar # Esperanto translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-01 05:12+0000\n" "Last-Translator: Pierre Soubourou \n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.8-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Entajpu la pasvorton de %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Pasvorto:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Uzantonomo:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Nevalida pasvorto. Bonvole provu denove" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Aŭtentigado fiaskis" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Malsukcese startis la seanco" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Ensalutanta…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ensalutekrano" #: ../src/main-window.vala:119 msgid "Back" msgstr "Reen" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Surekrana klavaro" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Alta kontrasto" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Ekranlegilo" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Agordoj de seanco" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Elektu labortablan ĉirkaŭaĵon" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Adiaŭ. Ĉu vi deziras…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Malŝalti" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ĉu vi certas pri malŝalto de la komputilo?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Aliaj uzantoj estas nuntempe ensalutitaj en ĉi tiu komputilo, malŝalti nun " "ankaŭ fermos tiujn aliajn seancojn." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Paŭzi" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Letargiigi" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Restartigi" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (apriore)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Montri eldonversion" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Ruli per testa reĝimo" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Bonvenigo de Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Rulu '%s --help' por vidi plenan liston da disponeblaj komandliniaj opcioj." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gastoseanco" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Bonvole enigu tutan retpoŝtadreson" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Nekorekta retpoŝtadreso aŭ pasvorto" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Se vi havas konton ĉe RDP- aŭ X2Go-servilo, defora ensalutado permesas " "lanĉon de aplikaĵoj de tiuj serviloj." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Rezigni" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Agordi…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Necesas konto defore ensalutebla por uzi ĉi tiun servon. Ĉu vi deziras krei " "konton nun?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Bone" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Necesas konto defore ensalutebla por uzi ĉi tiun servon. Vizitu %s por krei " "konton." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Necesas konto defore ensalutebla por uzi ĉi tiun servon. Bonvolu peti vian " "retejan administranton pri detaloj." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Nesubtenata speco de servilo." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go-seanco:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domajno:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Konta numero" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Ensaluti" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Ensaluti kiel %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Reprovi" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Reprovu kiel %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Ensaluti" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Portempa gastoseanco" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Ĉiu datumo kreita dum la gastoseanco foriĝos\n" "ĉe elsaluto, kaj agordoj revenos al aprioraj valoroj.\n" "Bonvole savkopiu dosierojn ĉe ekstera memorujo, \n" "ekzemple USB-memoro, por povi atingi ilin pli poste." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Alternativo por savkopii dosierojn ĉe\n" "la dosierujo /var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Bonvenigo de Arctica" #, fuzzy #~ msgid "Email:" #~ msgstr "Retpoŝtadreso:" #~ msgid "Enter username" #~ msgstr "Entajpu la uzantnomon" #~ msgid "Enter password" #~ msgstr "Entajpu la pasvorton" #~ msgid "_Back" #~ msgstr "_Reen" #~ msgid "Favorite Color (blue):" #~ msgstr "Preferata koloro (bluo):" #~ msgid "Logging in..." #~ msgstr "Ensalutado..." arctica-greeter-0.99.1.5/po/es.po0000644000000000000000000001757114007200004013267 0ustar # Spanish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-10-24 22:26+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Escriba la contraseña para %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contraseña:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nombre de usuario:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Contraseña no válida; inténtelo de nuevo" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Fallo al autenticar" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Falló el inicio de sesión" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Iniciando sesión…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Pantalla de acceso" #: ../src/main-window.vala:119 msgid "Back" msgstr "Atrás" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Teclado en pantalla" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contraste alto" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lector de pantalla" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opciones de la sesión" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Seleccionar entorno de escritorio" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "¿Quiere…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Apagar" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "¿Confirma que quiere apagar el equipo?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Cuidado: si apaga el equipo se cerrarán las sesiones de todos los usuarios." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspender" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reiniciar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (predeterminado)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Mostrar el número de versión" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Ejecutar en modo de prueba" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Recibidor de Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Ejecute «%s --help» para ver una lista completa de las opciones de línea de " "órdenes disponibles." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesión de invitado" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Escriba una dirección de correo completa" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Dirección de correo o contraseña incorrecta" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Si tiene una cuenta en un servidor RDP o X2Go, el acceso remoto le permite " "ejecutar aplicaciones de ese servidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancelar" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configurar…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Necesita una cuenta de acceso remoto para utilizar este servicio. ¿Quiere " "configurar una cuenta ahora?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Aceptar" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Necesita una cuenta de inicio de sesión remota para utilizar este servicio. " "Visite %s para solicitar una cuenta." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Necesita una cuenta de inicio de sesión remota para utilizar este servicio. " "Pida información a su administrador." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "No se admite el tipo de servidor." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sesión X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Dominio:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Id. de cuenta" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Acceder" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Acceder como %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Reintentar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Reintentar como %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Acceder" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sesión temporal de invitado" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Todos los datos creados durante esta sesión de invitado se eliminarán\n" "cuando salga, y se restablecerán las configuraciones predeterminadas.\n" "Guarde los archivos que quiera conservar en un dispositivo externo,\n" "por ejemplo, una memoria USB." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Otra alternativa es guardar los archivos en la\n" "carpeta /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Recibidor de Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Si tiene una cuenta en un servidor RDP o Citrix, el acceso remoto le " #~ "permite ejecutar aplicaciones desde el servidor." #~ msgid "Email:" #~ msgstr "Dirección de correo:" #~ msgid "Other..." #~ msgstr "Otros…" #~ msgid "Enter username" #~ msgstr "Introduzca nombre de usuario" #~ msgid "Enter password" #~ msgstr "Introduzca la contraseña" #~ msgid "Logging in..." #~ msgstr "Iniciando sesión…" #~ msgid "_Back" #~ msgstr "_Atrás" #~ msgid "Favorite Color (blue):" #~ msgstr "Color favorito (azul):" arctica-greeter-0.99.1.5/po/et.po0000644000000000000000000001717114007200004013264 0ustar # Estonian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-07-29 08:41+0000\n" "Last-Translator: Kristjan Räts \n" "Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Sisesta kasutaja %s salasõna" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Salasõna:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Kasutaja:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Vale salasõna, palun proovi uuesti" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Autentimine nurjus" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Sessiooni alustamine ebaõnnestus" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Sisselogimine…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Meldimisekraan" #: ../src/main-window.vala:119 msgid "Back" msgstr "Tagasi" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Virtuaalklaviatuur" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Suure kontrastiga" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Ekraanilugeja" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sessiooni valikud" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Vali töölauakeskkond" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Head aega. Kas sa soovid…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Väljalülitamine" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Kas oled kindel arvuti väljalülitamises?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Teised kasutajad on hetkel sissemeldinud. Kohene väljalülitamine lõpetab ka " "need teised sessioonid." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Uinak" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Talveuni" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Taaskäivitamine" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Vaikimisi)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Kuva reliisi versioon" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Käivita testirežiimis" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Tervitaja" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Kõigi käsurea parameetrite loendi kuvamiseks käivita '%s --help'." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Külalise sessioon" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Palun sisesta täielik e-posti aadress" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Vale e-posti aadress või parool" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Kui teil on RDP või X2Go serveri konto, saate selle serveri rakendusi " "käivitada kasutades kaugsisselogimist." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Loobu" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Seadista…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Selle teenuse kasutamiseks peab sul olema kaugsisselogimise konto (Remote " "Login account). Kas soovid selle konto luua?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Selle teenuse kasutamiseks peab sul olema Ubuntu kaugsisselogimise konto (" "remote login account). Konto saad luua aadressil %s." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Selle teenuse kasutamiseks peab sul olema kaugsisselogimise konto (remote " "login account). Täpsema informatsiooni saad oma saidi administraatorilt." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Serveritüüpi ei toeta." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go sessioon:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domeen:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Konto ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Logi sisse" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Meldi kui %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Proovi uuesti" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Proovi uuesti kui %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Meldi" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Ajutine külalise sessioon" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Kõik külalisesessiooni ajal loodud andmed kustutatakse\n" "väljalogimisel ja seadistused lähtestatakse. Kui soovid\n" "oma faile kasutada ka hiljem, siis palun salvesta oma \n" "failid mõnele välisele seadmele, näiteks USB mälupulgale." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Teine alternatiiv on salvestada failid\n" "kataloogi /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Tervitaja" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Kui teil on RDP või Citrix serveri konto, saate selle serveri rakendusi " #~ "käivitada kasutades kaugsisselogimist." #~ msgid "Email:" #~ msgstr "E-post:" #~ msgid "Guest" #~ msgstr "Külaline" #~ msgid "_Back" #~ msgstr "_Tagasi" #~ msgid "Favorite Color (blue):" #~ msgstr "Lemmikvärv (sinine):" arctica-greeter-0.99.1.5/po/eu.po0000644000000000000000000001564514007200004013271 0ustar # Basque translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: leela <53352@protonmail.com>\n" "Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Saioa hasteak huts egin du" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Saioa hasten..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "Itzuli" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Hautatu mahaigain-ingurunea" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Agur. Zer egin nahi duzu…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Itzali" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ziur ordenagailua itzali nahi duzula?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Beste erabiltzaile batzuek saioa hasia dute ordenagailu honetan, eta itzaliz " "gero haien saioak ere amaituko dira." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Eseki" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernatu" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Berrabiarazi" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (lehenetsia)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Sartu helbide elektroniko osoa" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Okerreko helbide elektroniko edo pasahitza" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "RDP zerbitzari batean kontua baduzu, urruneko saio hasierak zerbitzari " "horretako aplikazioak exekutatzeko aukera ematen dizu." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Utzi" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Konfiguratu..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Ubunturen urruneko saio-hasierarako kontu bat behar duzu zerbitzu hau " "erabiltzeko. Kontua orain sortu nahi duzu?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Ados" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Ubunturen urruneko saio-hasierarako kontu bat behar duzu zerbitzu hau " "erabiltzeko. Bisitatu uccs.canonical.com kontu bat sortzeko." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Ubunturen urruneko saio-hasierarako kontu bat behar duzu zerbitzu hau " "erabiltzeko. Kontua orain sortu nahi duzu?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Zerbitzari-mota hori ez dago onartua." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domeinua:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Saiatu berriro" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Saiatu %s gisa" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "RDP edo Citrix zerbitzari batean konturik baduzu, Urruneko saio-hasierari " #~ "esker zerbitzari horretan aplikazioak exekutatu ahalko dituzu." #, fuzzy #~ msgid "Email:" #~ msgstr "Helbide elektronikoa:" #~ msgid "_Back" #~ msgstr "_Atzera" #~ msgid "Favorite Color (blue):" #~ msgstr "Kolore gogokoena (urdina):" arctica-greeter-0.99.1.5/po/fa.po0000644000000000000000000002246314007200004013242 0ustar # Persian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-01-20 09:21+0000\n" "Last-Translator: آراز \n" "Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "گذرواژه را برای %s وارد کنید" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "گذرواژه:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "نام کاربری:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "گذرواژه‌ی نامعتبر، لطفا دوباره تلاش کنید" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "شکست در تأیید کردن" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "شروع نشست شکست خورد" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "درحال وارد شدن…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "صفحه‌ی ورود" #: ../src/main-window.vala:119 msgid "Back" msgstr "بازگشت" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "صفحه‌کلید روی صفحه" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "سایه روشن زیاد" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "خواننده‌ی صفحه" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "گزینه‌های نشست" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "انتخاب محیط میزکار" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "بدرود. ایا می‌خواهید…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "خاموش" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "آیا مطمئن هستید که می‌‌خواهید رایانه را خاموش کنید؟" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "کاربران دیگری هم‌اکنون روی این رایانه وارد شده‌اند. خاموش کردن رایانه، نشست‌های " "آنان را نیز خواهد بست." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "معلّق کنید" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "به خواب زمستانی ببرید" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "شروع مجدد" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (پیش‌فرض)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "نمایش نسخه‌ی انتشار" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "اجرا در حالت آزمایشی" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- خوش‌آمدگوی یونیتی" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "برای دیدن لیست کامل انتخاب‌های خط فرمان موجود «%s --help» را اجرا کنید." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "نشست میهمان" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "لطفاً یک نشانی ایمیل وارد نمایید" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "نشانی ای‌میل یا گذرواژه‌ی نادرست" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "اگر حساب کاربری‌ روی یک سرویس‌دهنده‌ی RDP دارید، ورود از راه دور به شما " "اجازه می‌دهد برنامه‌های کاربری را از آن سرویس‌دهنده اجرا کنید." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "لغو" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "برپا سازی…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "شما برای استفاده از این سرویس به یک حساب \"ورود از راه‌دور\" نیاز دارید. آیا " "میخواهید یک حساب ایجاد کنید؟" #: ../src/user-list.vala:563 msgid "OK" msgstr "تأیید" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "شما برای استفاده از این سرویس به یک حساب \"ورود از راه‌دور\" نیاز دارید. " "برای درخواست یک حساب از %s بازدید فرمایید." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "برای استفاده از این خدمت به یک حساب کاربری ورود از راه دور اوبونتو نیاز " "دارید. آیا می‌خواهید الآن یک حساب کاربری برپا کنید." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "نوع سرویس‌دهنده پشتیبانی نمی‌شود." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "‬نشست X2Go" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "دامنه:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "شناسه حساب" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "ورود به سیستم" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "ورود به عنوان %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "تلاش مجدد" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "تلاش محدّد به عنوان %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "ورود" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "نشست مهمان موقت" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "تمام داده های به وجود آمده در طول یک نشست مهمان کاملا از بین می روند\n" "هنگامیکه شما از حساب کاربری خود خارج می شوید تنظیمات به مقادیر پیش فرض " "بازنشانی می گردد\n" "لطفاً فایل های خود را بر روی یک دستگاه بیرونی ذخیره کنید مثلاً\n" "یک حافظه یو اس بی ، جهت دسترسی مجدد به این فایل ها ضروری است" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "پیشنهاد بعدی ذخیره فایل ها در پوشه زیر است\n" "/var/guest-data" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "- خوش‌آمدگوی آرکتیکا" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "اگر حساب کاربری‌ای روی یک سرویس‌دهنده‌ی RDP یا Citrix دارید، ورود از راه دور " #~ "به شما اجازه می‌دهد برنامه‌های کاربری را از آن سرویس‌دهنده اجرا کنید." #, fuzzy #~ msgid "Email:" #~ msgstr "نشانی ای‌میل:" #~ msgid "Enter username" #~ msgstr "نام کاربری را وارد کنید" #~ msgid "_Back" #~ msgstr "بازگشت" #~ msgid "Enter password" #~ msgstr "گذرواژه را وارد کنید" #~ msgid "Logging in..." #~ msgstr "در حال وارد شدن…" #~ msgid "Favorite Color (blue):" #~ msgstr "رنگ مورد علاقه (آبی):" arctica-greeter-0.99.1.5/po/fil.po0000644000000000000000000001735214007200004013427 0ustar # Filipino translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-01 05:12+0000\n" "Last-Translator: Alba Kaydus \n" "Language-Team: Filipino \n" "Language: fil\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1 && n != 2 && n != 3 && (n % 10 == 4 " "|| n % 10 == 6 || n % 10 == 9);\n" "X-Generator: Weblate 3.8-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Ipasok ang password para sa %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Hudyat:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Palayaw:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Maling hudyat, subukan muli" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Nabigong magpatotoo" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Nabigong simulan ang sesyon" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Naglo-login…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Screen ng paglo-login" #: ../src/main-window.vala:119 msgid "Back" msgstr "Bumalik" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Keyboard sa screen" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Mataas na Contrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Pambasa ng screen" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Mga Opsyon ng Sesyon" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Mamili ng desktop environment" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Paalam. Gusto mo bang…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Patayin" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Sigurado ka bang nais mong patayin ang computer?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Ang iba pang mga gumagamit ay kasalukuyang naka-log in sa computer na ito, " "ang pag-shut down ngayon ay isasara rin ang iba pang mga sesyon." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspendido" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "matulog sa panahon ng taglamig" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "I-restart" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (hindi pagharap)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Ipakita ang bersyon ng release" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Patakbuhin sa mode ng pagsubok" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica tagahanga" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "tumakbo '%s --tulungan' upang makita ang isang buong listahan ng mga " "magagamit na mga pagpipilian sa command line." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "hulaan session" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Pakilagay ang kumpletong e-mail address" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Maling e-mail address o password" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Kung mayroon kang isang account sa server ng RDP o X2Go server, hinahayaan " "ka ng Remote Login na patakbuhin mo ang mga application mula sa server na " "iyon." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Huwag ituloy" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "I-set Up …" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Kailangan mo ng isang Remote Logon account upang magamit ang serbisyong ito. " "Gusto mo bang mag-set up ng account ngayon?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Kailangan mo ng isang Remote Logon account upang magamit ang serbisyong ito. " "Bisitahin %s upang humiling ng isang account." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Kailangan mo ng isang Remote Logon account upang magamit ang serbisyong ito. " "Mangyaring tanungin ang administrator ng iyong site para sa mga detalye." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Hindi sinusuportahan ang uri ng server." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2pumunta session:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "dominyo:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "account ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Mag-log In" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Mag-login bilang %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Subukan Muli" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Retry bilang %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Login" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "pansamantalang sesyon ng bisita" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Tatanggalin ang lahat ng data na nilikha sa oras ng session ng guest na ito\n" "kapag nag-log out ka, at mai-reset ang mga setting sa mga default.\n" "Mangyaring i-save ang mga file sa ilang mga panlabas na aparato, halimbawa " "a\n" "USB stick, kung gusto mong i-access ang mga ito muli sa ibang pagkakataon." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Ang isa pang alternatibo ay ang pag-save ng mga file sa\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Artica tagahanga" #~ msgid "Other..." #~ msgstr "Iba pa..." #~ msgid "Enter username" #~ msgstr "Ipasok ang username" #~ msgid "Enter password" #~ msgstr "Ipasok ang password" #~ msgid "Logging in..." #~ msgstr "Nagla-login..." arctica-greeter-0.99.1.5/po/fi.po0000644000000000000000000001764314007200004013256 0ustar # Finnish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-09-25 08:40+0000\n" "Last-Translator: Lauri Virtanen \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Syötä salasana käyttäjälle %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Salasana:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Käyttäjänimi:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Virheellinen salasana, yritä uudelleen" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Tunnistautuminen epäonnistui" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Istunnon käynnistäminen epäonnistui" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Kirjaudutaan sisään…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Sisäänkirjautumisruutu" #: ../src/main-window.vala:119 msgid "Back" msgstr "Takaisin" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Virtuaalinäppäimistö" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Suuri kontrasti" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Näytönlukija" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Istunnon asetukset" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Valitse työpöytäympäristö" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Näkemiin. Haluaisitko..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Sammuta" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Haluatko varmasti sammuttaa tietokoneen?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Tietokoneelle on kirjautunut myös muita käyttäjiä. Tietokoneen sammuttaminen " "sulkee myös toisten käyttäjien istunnot." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Valmiustila" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Lepotila" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Käynnistä uudelleen" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (oletus)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Näytä julkaisuversio" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Suorita testitilassa" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Näet kaikki komentorivivalitsimet komennolla ”%s --help”" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Vieras" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Anna sähköpostiosoite kokonaisuudessaan" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Virheellinen sähköpostiosoite tai salasana" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Jos sinulla on tili RDP-palvelimella tai X2Go-palvelimella, etäkirjautuminen " "mahdollistaa sovellusten käytön kyseiseltä palvelimelta." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Peru" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Tee asetukset..." #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Tarvitset etäkirjautumistilin käyttääksesi tätä palvelua. Haluatko luoda " "tilin nyt?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Tarvitset etäkirjautumistilin käyttääksesi tätä palvelua. Käy osoitteessa %s " "luodaksesi tilin." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Tarvitset etäkirjautumistilin käyttääksesi tätä palvelua. Kysy verkkosivusi " "ylläpitäjältä lisätietoja." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Palvelimen tyyppi ei ole tuettu." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go-istunto:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Toimialue:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Tilin ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Kirjaudu sisään" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Kirjaudu käyttäjänä %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Yritä uudelleen" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Yritä uudelleen käyttäjänä %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Kirjaudu" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Väliaikainen vierailuistunto" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Kaikki tämän vierasistunnon aikana luodut tiedot poistetaan\n" "kun kirjaudut ulos, ja asetukset palautetaan oletusarvoihin.\n" "Tallenna tiedostot johonkin ulkoiseen laitteeseen, esimerkiksi\n" "USB-tikulle, jos haluat käyttää niitä myöhemmin uudelleen." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Toinen vaihtoehto on tallentaa tiedostot\n" "/var/guest-data -hakemistoon." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Jos käytössäsi on tili RDP- tai Citrix-palvelimelle, etäkäyttö " #~ "mahdollistaa sovellusten käytön kyseisiltä palvelimilta." #, fuzzy #~ msgid "Email:" #~ msgstr "Sähköpostiosoite:" #~ msgid "Logging in..." #~ msgstr "Kirjaudutaan..." #~ msgid "Other..." #~ msgstr "Muu…" #~ msgid "Enter username" #~ msgstr "Anna käyttäjätunnus" #~ msgid "Enter password" #~ msgstr "Anna salasana" #~ msgid "_Back" #~ msgstr "_Takaisin" #~ msgid "Favorite Color (blue):" #~ msgstr "Suosikkiväri (sininen):" arctica-greeter-0.99.1.5/po/fo.po0000644000000000000000000001265714007200004013264 0ustar # Faroese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Faroese \n" "Language: fo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Royn aftur" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "_Back" #~ msgstr "_Aftur" arctica-greeter-0.99.1.5/po/fr_CA.po0000644000000000000000000002014514007200004013621 0ustar # French (Canada) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-24 06:24+0000\n" "Last-Translator: Swann Martinet \n" "Language-Team: French (Canada) \n" "Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Saisir le mot de passe pour %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Mot de passe :" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nom d'utilisateur :" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Mot de passe invalide, veuillez ressayer" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Échec de l'authentification" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Échec du démarrage de la session" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Connexion…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Écran de connexion" #: ../src/main-window.vala:119 msgid "Back" msgstr "Retour" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Clavier à l'écran" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contraste élevé" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lecteur d'écran" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Options de la session" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Choisir l'environnement de bureau" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Au revoir. Voudriez-vous…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Éteindre" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Êtes-vous sûr·e de vouloir éteindre l'ordinateur?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "D'autres utilisateurs sont présentement connectés à cet ordinateur. Éteindre " "maintenant fermera aussi les autres sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Mettre en veille" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Mettre en veille prolongée" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Redémarrer" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (par défaut)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Afficher la version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Exécuter en mode test" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Écran d'accueil d'Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Exécuter « %s --help » pour voir une liste complète des options disponibles " "en ligne de commande." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Session d'Invité" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Veuillez saisir une adresse de courriel complète" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Adresse de courriel ou mot de passe incorrect" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Si vous possédez un compte sur un serveur RDP ou un serveur X2Go, la " "connexion à distance vous permet d'exécuter des applications depuis ce " "serveur." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Annuler" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configuration…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Vous avez besoin d'un compte de connexion à distance Ubuntu pour utiliser ce " "service. Voudriez-vous en créer un maintenant?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Vous avez besoin d'un compte de connexion à distance Ubuntu pour utiliser ce " "service. Visitez %s pour demander un compte." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Vous avez besoin d'un compte de connexion à distance Ubuntu pour utiliser ce " "service. Veuillez demander plus de détails à l'administrateur de votre site." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Type de serveur non pris en charge." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Session X2Go :" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domaine :" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Identifiant" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Connexion" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Se connecter en tant que %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Ressayer" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Ressayer en tant que %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Connexion" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Session d'invité temporaire" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Toutes les données créées durant cette session invité seront supprimées " "quanf vous vous déconnecterez et les paramètres par défaut seront restaurés." "\n" "Veuillez sauvegarder vos fichiers sur un support externe, par exemple une " "clé USB, si vous voulez y accéder plus tard." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Une autre possibilité est de sauvegarder les fichiers dans le dossier /var/" "guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Accueil d'Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Si vous possédez un compte sur un serveur RDP ou Citrix, la connexion à " #~ "distance vous laisse exécuter des applications depuis ce serveur." #, fuzzy #~ msgid "Email:" #~ msgstr "Adresse courriel :" #~ msgid "_Back" #~ msgstr "_Retour" #~ msgid "Enter username" #~ msgstr "Entrez le nom d'utilisateur" #~ msgid "Enter password" #~ msgstr "Entrez le mot de passe" #~ msgid "Logging in..." #~ msgstr "Connexion en cours..." arctica-greeter-0.99.1.5/po/fr.po0000644000000000000000000001770114007200004013262 0ustar # French translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-09-14 17:36+0000\n" "Last-Translator: Nathan \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Saisissez le mot de passe pour %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Mot de passe :" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nom d'utilisateur :" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Mot de passe incorrect, veuillez réessayer" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Échec de l'authentification" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Échec du démarrage de la session" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Connexion…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Écran de connexion" #: ../src/main-window.vala:119 msgid "Back" msgstr "Précédent" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Clavier virtuel" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contraste élevé" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lecteur d'écran" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Options de la session" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Sélection de l'environnement de bureau" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Au revoir. Souhaitez-vous…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Éteindre" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Êtes-vous sûr·e de vouloir éteindre l'ordinateur ?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "D'autres utilisateurs sont actuellement connectés à cet ordinateur, éteindre " "maintenant fermera aussi les autres sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Mettre en veille" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hiberner" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Redémarrer" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (par défaut)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Afficher la version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Exécuter en mode test" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Accueil d'Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Exécuter '%s --help' pour afficher une liste complète des paramètres " "disponibles pour la commande." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Session invité" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Veuillez saisir une adresse de courriel complète" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Adresse de courriel ou mot de passe incorrect" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Si vous possédez un compte sur un serveur RDP, la connexion à distance vous " "permet d'exécuter des applications depuis ce serveur." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Annuler" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configuration…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Vous avez besoin d'un compte de connexion à distance Ubuntu pour utiliser ce " "service. Voulez-vous créer un compte maintenant ?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Vous avez besoin d'un compte de connexion à distance Ubuntu pour utiliser ce " "service. Allez sur %s pour créer un compte." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Vous avez besoin d'un compte de connexion à distance Ubuntu pour utiliser ce " "service. Veuillez demander des détails à l'administrateur de votre site." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Type de serveur non pris en charge." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Session X2Go :" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domaine :" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "N° de compte :" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Se connecter" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Se connecter en tant que %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Réessayer" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Réessayer en tant que %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Ouvrir la session" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Session invité temporaire" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Toutes les données créées durant la session invité seront effacées quand " "vous vous déconnecterez, et les paramètres par défaut seront restaurés.\n" "Sauvegarder vos fichiers sur un support externe, par exemple une clé USB, si " "vous souhaitez y accéder ultérieurement." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Une autre possiblité est de sauvegarder\n" "les fichiers dans le répertoire /var/guest." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Accueil d'Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Si vous possédez un compte sur un serveur RDP ou Citrix, la connexion à " #~ "distance vous permet d'exécuter des applications depuis ce serveur." #, fuzzy #~ msgid "Email:" #~ msgstr "Adresse de courriel :" #~ msgid "_Back" #~ msgstr "_Retour" #~ msgid "Favorite Color (blue):" #~ msgstr "Couleur préférée (bleu) :" arctica-greeter-0.99.1.5/po/frp.po0000644000000000000000000001332314007200004013436 0ustar # Franco-Provençal translation for arctica-greeter # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2013-04-28 19:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Franco-Provençal \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contrasényi" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Sobriquèt" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Contrasényi invalîda" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Èrròr d'autentificacion" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ècran de conèccion" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Cllâvo sur l’ ècran" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Yaut contrasto" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lectòr d’ ècran" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcions de sèssion" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Opcion d’ enviromamènt" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sèssion d’ invitâ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sèssion d’ invitâ" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sèssion d’ invitâ" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "Logging in..." #~ msgstr "Conèccion…" arctica-greeter-0.99.1.5/po/fy.po0000644000000000000000000001403214007200004013263 0ustar # Frisian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-03-24 13:40+0000\n" "Last-Translator: Sense Egbert Hofstede \n" "Language-Team: Frisian \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Jou wachtwurd foar %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Wachtwurd:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Brûkersnamme:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ûnjildich wachtwurd, besykje nochris" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Identifisearje mislearre" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Oanmeld skerm" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Toetseboerd op skerm" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Heech kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Skerm lêzer" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sesje opsjes" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Útjefte ferzje sjen litte" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Yn testmodus útfiere" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Fier '%s --help' út in folsleine list mei beskikbere kommandorigel opsjes te " "sjen." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gast sesje" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Gast sesje" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Oanmelde" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Oanmelde as %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Nochris besykje" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Oanmelde" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Gast sesje" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Greeter" #~ msgid "Enter username" #~ msgstr "Jou brûkersnamme" #~ msgid "Enter password" #~ msgstr "Jou wachtwurd" #~ msgid "Logging in..." #~ msgstr "Oan it oanmelde..." #~ msgid "_Back" #~ msgstr "_Werom" arctica-greeter-0.99.1.5/po/ga.po0000644000000000000000000001650514007200004013243 0ustar # Irish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Irish \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Cuir isteach focal faire do %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Focal Faire:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Ainm úsáideora:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Focal faire mícheart, triail arís é" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Theip ar an bhfíordheimhniú" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Teip ar tosnú an seisiúin" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Ag logáil isteach..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Scáileán Logáil Isteach" #: ../src/main-window.vala:119 msgid "Back" msgstr "Ar Ais" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Méarchláir ar-scáileán" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Ardchodarsnacht" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Léitheoir Scáileáin" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Roghanna Seisiúin" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Roghnaigh timpeallacht deisce" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Slán leat. Ar mhaith leat..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Múch" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Cinnte go dteastaíonn uait an ríomhaire a mhúchadh?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Tá úsáideorí eile fós logáilte isteach. Dúnfar na seisiúin eile seo dá " "mhúchfar anois." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Cuir ar fionraí" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Geimhrigh" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Atosaigh" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Bunroghnú)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Taispeáin sonraí an leagain seo" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Rith i mhodh scrúdú" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Beannachtóir Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Rith '%s --help' chun liosta gach rogha líne na n-orduithe le fáil a " "fheiceáil." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Seisiún Aoi" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Cuir isteach seoladh ríomhphoist iomlán le do thoil" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Seoladh ríomhphoist nó focal faire mícheart" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Má tá cúntas agat ar freastalaí RDP, is féidir leat feidhmeanna a cur ar " "siúl ón freastalaí sin le cianlogáil-isteach." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cealaigh" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Cumraigh" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Is gá duit cúntas Logáil Isteach Cianda Ubuntu chun an seirbhís seo a " "húsáid. Ba mhaith leat cúntas a chruthú anois?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Ceart go leor" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Is gá duit cúntas Logáil Isteach Cianda Ubuntu chun an seirbhís seo a " "húsáid. Tabhair cuairt do uccs.canonical.com chun cúntas a chruthú." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Is gá duit cúntas Logáil Isteach Cianda Ubuntu chun an seirbhís seo a " "húsáid. Ba mhaith leat cúntas a chruthú anois?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Níl saghas an freastalaí faoi thacaíocht." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Seisiún Aoi" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Fearann:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Logáil Isteach" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Sínigh isteach mar %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Atriail" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Atriail mar %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Logáil isteach" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Seisiún Aoi" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Beannachtóir Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Má tá cúntas agat ar freastalaí RDP nó Citrix, is féidir leat feidhmeanna " #~ "a cur ar siúl ón freastalaí sin le cianlogáil-isteach." #, fuzzy #~ msgid "Email:" #~ msgstr "Seoladh ríomhphoist:" arctica-greeter-0.99.1.5/po/gd.po0000644000000000000000000001773414007200004013253 0ustar # Gaelic; Scottish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: leela <53352@protonmail.com>\n" "Language-Team: Gaelic \n" "Language: gd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " "(n > 2 && n < 20) ? 2 : 3;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Cuir a-steach facal-faire airson %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Facal-faire:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Ainm-cleachdaiche:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Facal-faire mì-dhligheach, feuch ris a-rithist" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Dh'fhàillig an dearbhadh" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "D'fhàilig tòiseachadh an t-seisein" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "'Gad chlàradh a-steach..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Sgrìn a' chlàraidh a-steach" #: ../src/main-window.vala:119 msgid "Back" msgstr "Air ais" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Meur-chlàr air an sgrìn" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Iomsgaradh àrd" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Leughadair sgrìn" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Roghainnean an t-seisein" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Suidhich àrainneachd an deasga" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Mar sin leat. A bheil thu airson..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "a dhùnadh sìos" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" "A bheil thu cinnteach gu bheil thu airson an coimpiutair a dhùnadh sìos?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Tha cleachdaichean eile air an clàradh a-steach dhan coimpiutair seo an-" "dràsta, thèid na seiseanan aca a dhùnadh cuideachd ma dhùineas tu sìos e an-" "dràsta." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "a chur 'na dhàil" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "a chur 'na chadal-geamhraidh" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Ath-thòisich" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (bun-roghainn)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Seall tionndadh an sgaoilidh" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Ruith sa mhodh deuchainneil" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Fàiltichear Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Ruith '%s --help' gus liosta shlàn nan roghainnean airson na loidhne-àithne " "fhaicinn" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Seisean aoigheachd" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Cuiribh a-steach seòladh puist-d slàn" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Tha an seòladh puist-d no am facal-faire cearr" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Ma tha cunntas agad air RDP, leigidh clàradh a-steach cèin leat aplacaidean " "a ruith on fhrithealaiche ud." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Sguir dheth" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Suidhich..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Feumaidh tu cunntas airson clàradh a-steach cèin Ubuntu mus urrainn dhut an " "t-seirbheis seo a chleachdadh. A bheil thu airson cunntas a shuidheachadh an-" "dràsta?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Ceart ma-thà" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Feumaidh tu cunntas airson clàradh a-steach cèin Ubuntu mus urrainn dhut an " "t-seirbheis seo a chleachdadh. Tadhail air uccs.canonical.com airson cunntas " "a shuidheachadh an-dràsta." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Feumaidh tu cunntas airson clàradh a-steach cèin Ubuntu mus urrainn dhut an " "t-seirbheis seo a chleachdadh. A bheil thu airson cunntas a shuidheachadh an-" "dràsta?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Chan eil taic ri seòrsa an fhrithealaiche." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Seisean aoigheachd" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Àrainn:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Clàraich a-steach" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Clàraich a-steach mar %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Feuch ris a-rithist" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Feuch ris a-rithist mar %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Clàraich a-steach" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Seisean aoigheachd" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Fàiltichear Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Ma tha cunntas agad air RDP no frithealaiche Citrix, leigidh clàradh a-" #~ "steach cèin leat aplacaidean a ruith on fhrithealaiche ud." #, fuzzy #~ msgid "Email:" #~ msgstr "Seòladh puist-d:" #~ msgid "_Back" #~ msgstr "_Air ais" #~ msgid "Logging in..." #~ msgstr "'Gad chlàradh a-steach..." #~ msgid "Favorite Color (blue):" #~ msgstr "An dath as fhearr leat (gorm):" arctica-greeter-0.99.1.5/po/gl.po0000644000000000000000000001664714007200004013265 0ustar # Galician translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-07-13 18:21+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Escriba o contrasinal de %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contrasinal:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nome do usuario:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Contrasinal incorrecto, ténteo de novo" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Produciuse un fallo ao autenticar" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Produciuse un fallo ao iniciar a sesión" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Iniciando sesión..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Pantalla de acceso" #: ../src/main-window.vala:119 msgid "Back" msgstr "Volver" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Teclado na pantalla" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Alto contraste" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lector de pantalla" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcións da sesión" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Escolla o ambiente de escritorio" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Deica logo. Desexa..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Apagar" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Confirma o apagado do computador?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Hai outros usuarios con sesións iniciadas neste computador, apagándoo agora " "tamén pechará as outras sesións." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspender" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reiniciar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (predeterminado)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Amosar a versión da publicación" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Executar en modo de proba." #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Benvida de Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Execute «%s --help» para ver unha lista completa das opcións de liña de " "ordes dispoñíbeis." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesión de convidado" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Introduza un enderezo completo de correo electrónico" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "O enderezo de correo ou o contrasinal son incorrectos" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Se ten unha conta nun servidor RDP, o acceso remoto permítelle executar " "aplicativos desde ese servidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancelar" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configurar..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Precisa unha conta de acceso remoto en Ubuntu para empregar este servizo. " "Quere configurar agora unha?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Aceptar" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Precisa unha conta de acceso remoto en Ubuntu para empregar este servizo. " "Visite uccs.canonical.com para configurar unha." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Precisa unha conta de acceso remoto en Ubuntu para empregar este servizo. " "Quere configurar agora unha?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Non se admite este tipo de servidor." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sesión de convidado" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Dominio:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Iniciar sesión" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Iniciar sesión como %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Reintentar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Volvelo tentar como %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Iniciar sesión" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sesión de convidado" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Benvida de Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Se dispón dunha conta nun servidor de RDP ou de Citrix, o acceso remoto " #~ "permítelle executar aplicativos nese servidor." #, fuzzy #~ msgid "Email:" #~ msgstr "Enderezo de correo-e:" #~ msgid "_Back" #~ msgstr "_Atrás" #~ msgid "Logging in..." #~ msgstr "Accedendo..." #~ msgid "Favorite Color (blue):" #~ msgstr "Cor favorita (azul):" arctica-greeter-0.99.1.5/po/gu.po0000644000000000000000000001562614007200004013272 0ustar # Gujarati translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-08-09 17:38+0000\n" "Last-Translator: Dharmendra \n" "Language-Team: Gujarati \n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s માટેનો પાસવર્ડ દાખલ કરો" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "પાસવર્ડ:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "વપરાશકર્તાનું નામ:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "અમાન્ય પાસવર્ડ, કૃપા કરી ફરી પ્રયાસ કરો" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "અધિકૃત કરવામાં નિષ્ફળ" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "સત્ર શરૂ કરાવામાં નિષ્ફળ" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "લોગીન થઈ રહ્યું છે.…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "લોગિન સ્ક્રીન" #: ../src/main-window.vala:119 msgid "Back" msgstr "પાછળ" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "ઓનસ્ક્રીન કીબોર્ડ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ઉંચો વિરોધાભાસ" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "સ્ક્રીન વાંચક" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "સત્ર વિકલ્પો" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "ડેસ્કટોપ વાતાવરણ ચુનો" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "આવજો. તમે ઇચ્છો છો કે…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "કામ બંધ કરો" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "નક્કી તમે કોમ્પ્યુટર બંધ કરવા માંગો છો?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Default)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "રિલીઝ સંસ્કરણ દર્શાવો" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "ચકાસણી મોડમાં ચલાવો" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "ઉપલ્બધ આદેશ વાક્ય વિકલ્પોની સંપૂર્ણ યાદીને જોવા માટે '%s --help' ને ચલાવો." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "અતિથિ સત્ર" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "બરાબર" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "અતિથિ સત્ર" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s તરીકે લોગિન કરો" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "પ્રવેશ" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "અતિથિ સત્ર" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "Logging in..." #~ msgstr "લોગિન કરી રહ્યા છીએ..." arctica-greeter-0.99.1.5/po/he.po0000644000000000000000000002005214007200004013240 0ustar # Hebrew translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-02-25 09:17+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 3.5-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "נא להקליד ססמה עבור %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "ססמה:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "שם משתמש:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "ססמה שגויה, נא לנסות שוב" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "האימות נכשל" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "התחלת ההפעלה נכשלה" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "מתבצעת כניסה…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "מסך כניסה" #: ../src/main-window.vala:119 msgid "Back" msgstr "חזרה" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "מקלדת על גבי המסך" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ניגוד גבוה" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "מקריא מסך" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "אפשרויות הפעלה" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "נא לבחור בסביבת שולחן עבודה" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "להתראות, האם עדיף לך…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "לכבות" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "לכבות את המחשב?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "יש משתמשים אחרים שנכנסו למחשב זה, הכיבוי יגרום לסגירת סביבת הפעילות שלהם." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "השהיה" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "תרדמת" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "הפעלה מחדש" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (בררת מחדל)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Show release version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Run in test mode" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Run '%s --help' to see a full list of available command line options." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "הפעלת אורח" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "נא להזין את כתובת הדוא״ל המלאה" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "כתובת הדוא״ל או הססמה שגויים" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "אם יש לך חשבון על שרת RDP או על שרת X2Go, כניסה מרוחקת תאפשר לך להריץ " "יישומים משרת זה." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ביטול" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "הגדרה…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "לשם שימוש בשירות זה יש צורך בחשבון כניסה מרוחקת. ליצור חשבון כזה כעת?" #: ../src/user-list.vala:563 msgid "OK" msgstr "אישור" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "לשם שימוש בשירות זה יש צורך בחשבון כניסה מרוחקת. יש לבקר ב־%s כדי לבקש חשבון." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "לשם שימוש בשירות זה יש צורך בחשבון כניסה מרוחקת. נא לבקש פרטים נוספים ממנהל " "הרשת שלך." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "סוג השרת לא נתמך." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "הפעלת X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "מתחם:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "מזהה חשבון" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "כניסה" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "כניסה בשם %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ניסיון חוזר" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "ניסיון חוזר בשם %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "כניסה" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "הפעלת אורח זמנית" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "כל הנתונים שנוצרו במהלך הפעלת אורח זו בעת היציאה\n" "וההגדרות יאופסו לבררות המחדל. נא לשמור קבצים על\n" "התקן חיצוני, למשל על כונן USB, אם ברצונך לגשת אליהם\n" "בהמשך." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "חלופה נוספת היא לשמור קבצים בתיקייה\n" "‎/var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "מסך פתיחה Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "אם יש לך חשבון בשרת RDP או Citrix, כניסה מרחוק מאפשרת לך להריץ יישומים " #~ "מאותו השרת." #, fuzzy #~ msgid "Email:" #~ msgstr "כתובת דוא״ל:" #~ msgid "_Back" #~ msgstr "_חזרה" #~ msgid "Favorite Color (blue):" #~ msgstr "צבע מועדף (כחול):" arctica-greeter-0.99.1.5/po/hi.po0000644000000000000000000002414414007200004013252 0ustar # Hindi translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-08-30 21:36+0000\n" "Last-Translator: oo nth \n" "Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.2.1-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s के लिये पासवर्ड डालें" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "पासवर्ड :" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "उपयोक्ता नाम:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "अमान्य पासवर्ड, कृपया पुनः प्रयास करें" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "प्रमाणित करने में असफलता" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "सत्र शुरू करने में विफल" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "लॉग इन हो रहा है…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "लॉगिन स्क्रीन" #: ../src/main-window.vala:119 msgid "Back" msgstr "वापस" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "औनस्क्रीन कुंजीपटल" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "उच्च कंट्रास्ट" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "स्क्रीन वाचक" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "सत्र के विकल्प" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "डेस्कटॉप वातावरण का चयन करें" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "अलविदा। क्या आप चाहेंगे की…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "बंद करना" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "क्या आप वाकई कंप्यूटर बंद करना चाहते हैं?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "अन्य उपयोगकर्ता इस कंप्यूटर में वर्तमान में लॉग इन हैं, अब बंद करने से इन अन्" "य सत्रों को भी बंद कर दिया जाएगा।" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "निलंबित करें" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Seethnidra mein hona" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "पुनः आरंभ करें" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s(डिफ़ॉल्ट)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "रिलीज़ संस्करण दिखाएँ" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "जाँच मोड में चलाएँ" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "-आर्कटिका स्वागतकर्ता" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "सभी उपलब्ध कमांड लाइन विकल्प देखने के लिए '%s --help' चलाएं |" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "अतिथि सत्र" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "कृपया पूरा ई - मेल पता डालें" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "गलत ई - मेल पता अथवा कूटशब्द" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "अगर RDP सर्वर या X2Go सर्वर में खाता है, तो सुदूर सत्रारंभ आप उन सर्वरों में " "अनुप्रयोग चलाने देगा।" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "रद्द करें" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "स्थापित करें …" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "इस सेवा का उपयोग करने के लिए आपको एक दूरस्थ लॉगऑन खाते की आवश्यकता है। क्या " "आप अभी एक खाता खोलना चाहते हैं?" #: ../src/user-list.vala:563 msgid "OK" msgstr "ठीक है" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "इस सेवा का उपयोग करने के लिए सुदूर सत्रारंभ की आवश्यकता पड़ेगी। %s में खाता " "बनाएं।" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "इस सेवा का उपयोग करने के लिए आपको एक दूरस्थ लॉगऑन खाते की आवश्यकता है। विवरण " "के लिए कृपया अपने साइट व्यवस्थापक से पूछें।" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "सर्वर प्रकार समर्थित नहीं है." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go सत्र:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "डोमेन:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "खाता पहचान" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "सत्रारंभ" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "इससे लॉगिन करें %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "पुन: प्रयास करें" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s के रूप में पुन: प्रयास करें" #: ../src/user-list.vala:882 msgid "Login" msgstr "लॉग इन करें" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "अस्थायी अतिथि सत्र" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "जब आप लॉग आउट करते हैं, तो इस अतिथि सत्र के दौरान बनाए गए सभी डेटा \n" "हटा दिए जाएंगे और सेटिंग्स को डिफ़ॉल्ट पर रीसेट कर दिया जाएगा |\n" "उदाहरण के लिए, कृपया कुछ बाहरी डिवाइस पर फ़ाइलें सहेजें\n" "यदि आप बाद में उन्हें फिर से एक्सेस करना चाहते हैं।" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "फ़ाइलों को बचाने के लिए एक और विकल्प है\n" "/var/guest-data folder |" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "आर्कटिका ग्रीटर" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "यदि आपका RDP या Citrix सर्वर पर खाता है, तो दूरस्थ लॉगिन की मदद से आप उस सर्वर " #~ "से अनुप्रयोगों को चला सकते हैं ।" #, fuzzy #~ msgid "Email:" #~ msgstr "ई-मेल पताः" #~ msgid "_Back" #~ msgstr "पीछे (_B)" #~ msgid "Favorite Color (blue):" #~ msgstr "पसंदीदा रंग (नीला):" arctica-greeter-0.99.1.5/po/hr.po0000644000000000000000000001717514007200004013271 0ustar # Croatian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-01-01 14:21+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.10\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Upiši lozinku za %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Lozinka:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Korisničko ime:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Neispravna lozinka, pokušaj ponovo" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Ovjera nije uspjela" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Neuspjelo pokretanje sesije" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Prijavljivanje …" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ekran prijave" #: ../src/main-window.vala:119 msgid "Back" msgstr "Natrag" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Ekranska tipkovnica" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Visok kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Čitač ekrana" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcije za sesiju" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Odaberi okruženje radne površine" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Doviđenja. Želiš li …" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Isključi" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Zaista želiš isključiti računalo?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Na ovom su računalu trenutačno prijavljeni drugi korisnici. Isključivanjem " "će se zatvoriti i te druge sesije." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Odgodi" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Zamrzni" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Ponovo pokreni" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (standardno)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Prikaži verziju izdanja" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Pokreni u probnom načinu rada" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica dobrodošlica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Pokreni „%s --help” za prikaz potpunog popisa dostupnih opcija za naredbeni " "redak." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesija gosta" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Upiši potpunu e-adresu" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Neispravna e-adresa ili lozinka" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Ako imaš račun na RDP ili X2Go poslužitelju, udaljena prijava dopušta " "pokretanje programa s tih poslužitelja." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Odustani" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Postavi …" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Za korištenje ove usluge trebaš račun za udaljenu prijavu. Želiš li sada " "postaviti račun?" #: ../src/user-list.vala:563 msgid "OK" msgstr "U redu" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Za korištenje ove usluge trebaš račun za udaljenu prijavu. Zatraži račun pri " "%s." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Za korištenje ove usluge trebaš račun za udaljenu prijavu. Obrati se " "administratoru tvog web mjesta za detalje." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Vrsta poslužitelja nije podržana." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go sesija:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domena:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID računa" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Prijava" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Prijavi se kao %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Pokušaj ponovo" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Pokušaj ponovo kao %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Prijava" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Privremena sesija gosta" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Svi podaci stvoreni tijekom ove sesije gosta bit će izbrisani\n" "kad se odjaviš, a postavke će se vratiti na standardne.\n" "vrijednosti. Spremi datoteke na neki vanjski uređaj,\n" "na primjer USB stick, ako ih kasnije želiš ponovo koristiti." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Druga mogućnost je spremiti datoteke u\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica dobrodošlica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Ako imate račun na RDP ili Citrix poslužitelju, Udaljena prijava vam " #~ "dopušta pokretanje aplikacija s tog poslužitelja." #, fuzzy #~ msgid "Email:" #~ msgstr "Adresa e-pošte:" #~ msgid "_Back" #~ msgstr "_Natrag" #~ msgid "Favorite Color (blue):" #~ msgstr "Omiljena boja (plava):" arctica-greeter-0.99.1.5/po/ht.po0000644000000000000000000001306714007200004013267 0ustar # Haitian; Haitian Creole translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-03-07 22:16+0000\n" "Last-Translator: Javier Blanco \n" "Language-Team: Haitian; Haitian Creole \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Modpas:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Non Itilizatè:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Gwo kontras" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Montre vèsyon pwogram nan" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Ouvri nan mòd tès" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesyon Envite" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sesyon Envite" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Ouvri Sesyon An" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sesyon Envite" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/hu.po0000644000000000000000000001751114007200004013266 0ustar # Hungarian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-09-15 23:36+0000\n" "Last-Translator: Doma Gergő \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Írja be %s jelszavát" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Jelszó:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Felhasználónév:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Érvénytelen jelszó, kérjük, próbálja újra" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Hitelesítés sikertelen" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "A munkamenet indítása meghiúsult" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Bejelentkezés…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Bejelentkezési képernyő" #: ../src/main-window.vala:119 msgid "Back" msgstr "Vissza" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Képernyő-billentyűzet" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Nagy kontrasztú" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Képernyőolvasó" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Munkamenet-beállítások" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Válasszon asztali környezetet" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Viszontlátásra. Szeretne…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Leállítás" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Biztosan ki akarja kapcsolni a számítógépet?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Jelenleg más felhasználók is be vannak jelentkezve a számítógépre, a " "leállítás az ő munkameneteiket is bezárja." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Felfüggesztés" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernálás" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Újraindítás" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Alapértelmezett)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Kiadási változat megjelenítése" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Futtatás tesztelési módban" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Üdvözlőképernyő" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Futtassa a '%s --help' parancsot az elérhető parancssori kapcsolók " "listájáért." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Vendég munkamenet" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Írja be a teljes e-mail címét" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Hibás e-mail cím vagy jelszó" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "A távoli bejelentkezéssel alkalmazásokat futtathat azon RDP vagy X2Go " "kiszolgálókon, amelyeken van fiókja." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Mégse" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Beállítás…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "A szolgáltatás használatához távoli bejelentkezési fiók szükséges. Szeretne " "most létrehozni egy fiókot?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "A szolgáltatás használatához távoli bejelentkezési fiók szükséges. Fiók " "létrehozásához keresse fel ezt: %s." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "A szolgáltatás használatához távoli bejelentkezési fiók szükséges. Kérdezze " "az adminisztrátort a részletekért." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "A megadott kiszolgálótípus nem támogatott." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go munkafolyamat:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Tartomány:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Fiók azonosító" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Bejelentkezés" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Bejelentkezés mint %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Újra" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Ismét, mint %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Bejelentkezés" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Átmeneti vendég munkafolyamat" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Minden adat amit létrehozol ebben a vendég munkafolyamatban ki lesz törölve\n" "amint kilépsz és a beállítások is visszaállnak az alapértelmezettekre.\n" "Kérlek mentsd el az adataidat egy külső adathordozóra,\n" "pl. egy USB Pendrive-ra, ha később is el szeretnéd érni." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Másik alternatíva az, hogy mentsd el\n" "a fájlokat a /var/guest-data mappába." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Üdvözlőképernyő" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "A távoli bejelentkezéssel alkalmazásokat futtathat azon RDP vagy Citrix " #~ "kiszolgálókon, amelyeken van fiókja." #~ msgid "Email:" #~ msgstr "E-mail cím:" #~ msgid "_Back" #~ msgstr "_Vissza" #~ msgid "Favorite Color (blue):" #~ msgstr "Kedvenc szín (kék):" arctica-greeter-0.99.1.5/po/hy.po0000644000000000000000000002042614007200004013271 0ustar # Armenian translation for arctica-greeter # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2014-04-28 22:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian \n" "Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Մուտքագրեք %s օգտվողի գաղտնաբառը։" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Գաղտնաբառ" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Օգտվողի անունը՝" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Գաղտնաբառը սխալ է. նորի՛ց փորձեք։" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Մուտք կատարել չհաջողվեց" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Գործաժամի գործարկումը չհաջողվեց։" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Մուտք..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Մուտքի էկրան" #: ../src/main-window.vala:119 msgid "Back" msgstr "Հետ" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Էկրանի ստեղնաշար" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Բարձր ցայտունություն" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Էկրանի ընթերցիչ" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Գործաժամի ընտրանքներ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Ընտրեք միջերեսային միջավայրը։" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Ցտեսություն։ Ցանկանում եք դուք..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Անջատել համակարգիչը" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Անջատե՞լ համակարգիչը։" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Անցնել սպասման ռեժիմի" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Անցնել ննջման ռեժիմի" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Վերագործարկել" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (լռելյայն)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Ցույց տալ թողարկման տարբերակը։" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Գործարկել թեստավորման ռեժիմում։" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 #, fuzzy msgid "- Arctica Greeter" msgstr "- Unity-ի ողջույնի էկրանը" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "%s --help հրահանգով ծանոթացեք հրահանգային տողի առկա ընտրանքների ամբողջական " "ցանկին։" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Հյուրի գործաժամ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Խնդում ենք մուտքագրել էլեկտրոնային փոստի ամբողջական հասցեն" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Սխալ էլէկտրոնային հասցե կամ գաղտնաբառ" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Եթե RDP սպասարկիչում բացված հաշիվ ունեք, հեռակա մուտքի (Remote Login) " "միջոցով կկարողանաք այդ սպասարկիչից ծրագրեր գործարկել։" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Չեղարկել" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Կարգավորում..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Այս ծառայությունից օգտվելու համար պետք է Ubuntu Remote Login-ի հաշիվ " "ունենաք։ Կամենո՞ւմ եք հաշիվը բացել հիմա։" #: ../src/user-list.vala:563 msgid "OK" msgstr "Այո" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Այս ծառայությունից օգտվելու համար պետք է Ubuntu Remote Login-ի հաշիվ " "ունենաք։ Հաշիվ բացելու համար գնացեք uccs.canonical.com հասցեով։" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Այս ծառայությունից օգտվելու համար պետք է Ubuntu Remote Login-ի հաշիվ " "ունենաք։ Կամենո՞ւմ եք հաշիվը բացել հիմա։" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Սերվերի այս տեսակը չի աջակցվում:" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Հյուրի գործաժամ" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Դոմեյն։" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Մուտք" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Մուտք գործեք որպես %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Նորի՛ց փորձեք։" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Փորձեք որպես %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Մուտք" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Հյուրի գործաժամ" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Unity-ի ողջույնի էկրանը" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Եթե RDP կամ Citrix սպասարկիչում բացված հաշիվ ունեք, հեռակա մուտքի միջոցով " #~ "(Remote Login) կկարողանաք այդ սպասարկիչից ծրագրեր գործարկել։" #, fuzzy #~ msgid "Email:" #~ msgstr "Էլ. փոստի հասցե՝" arctica-greeter-0.99.1.5/po/ia.po0000644000000000000000000001274414007200004013246 0ustar # Interlingua translation for unity-greeter # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the unity-greeter package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: unity-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2015-04-27 12:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contrasigno:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nomine de usator:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Schermo de accesso" #: ../src/main-window.vala:119 msgid "Back" msgstr "Retornar" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lector de schermo" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspender" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reinitiar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/id.po0000644000000000000000000001707214007200004013250 0ustar # Indonesian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-11-12 19:28+0000\n" "Last-Translator: Habib Rohman \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Masukan kata sandi untuk %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Kata sandi:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nama pengguna:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Kata kunci salah, coba lagi" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Tidak dapat mengautentifikasi" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Gagal memulai sesi" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Masuk..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Layar Masuk" #: ../src/main-window.vala:119 msgid "Back" msgstr "Kembali" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Papan ketik pada layar" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Kontras Tinggi" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Pembaca Layar" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Pilihan Sesi" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Pilih desktop" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Sampai jumpa. Apakah Anda hendak..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Matikan" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Apakah Anda yakin akan mematikan komputer?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Pengguna lain masih menggunakan komputer ini, mematikan komputer sekarang " "akan menutup sesi lain tersebut." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspensi" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernasi" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Nyalakan ulang" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Baku)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Tampilkan versi rilis" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Jalankan dalam mode percobaan" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Jalankan '%s --help' untuk melihat pilihan perintah yang tersedia." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesi Tamu" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Ketikkanlah alamat surel yang lengkap" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Alamat surel atau sandinya salah" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Apabila Anda memiliki akun pada server RDP atau X2Go, Masuk Jarak Jauh " "memungkinkan Anda untuk menjalankan aplikasi dari server itu." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Batal" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Setel..." #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Anda memerlukan akun Log Masuk Jarak Jauh Ubuntu untuk menggunakan layanan " "ini. Buat akun sekarang?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Oke" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Anda memerlukan akun Masuk Jarak Jauh Ubuntu untuk menggunakan layanan ini. " "Kunjungilah %s untuk membuat akun." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Anda memerlukan akun Masuk Jarak Jauh Ubuntu untuk menggunakan layanan ini. " "Silakan tanyakan kepada administrator situs Anda untuk detailnya." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Jenis server tidak didukung." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sesi X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domain:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Akun ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Masuk" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Masuk sebagai %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Coba lagi" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Coba sebagai %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Masuk" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sesi Tamu Sementara" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Semua data yang dibuat selama sesi tamu ini akan dihapus\n" "ketika anda keluar, dan pengaturan akan diatur kembali ke awal.\n" "Silakan simpan berkas pada penyimpanan eksternal, misalnya\n" "sebuah USB flash disk, jika anda ingin menggunakannya lagi." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Alternatif lainnya untuk menyimpan data adalah pada\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Apabila Anda memiliki akun pada server RDP atau Citrix, Log Masuk Jarak " #~ "Jauh memungkinkan Anda untuk menjalankan aplikasi dari server itu." #, fuzzy #~ msgid "Email:" #~ msgstr "Alamat surel:" #~ msgid "_Back" #~ msgstr "Kem_bali" #~ msgid "Favorite Color (blue):" #~ msgstr "Warna favorit (biru):" arctica-greeter-0.99.1.5/po/ie.po0000644000000000000000000001441714007200004013251 0ustar # Interlingue translations for arctica-greeter package. # Copyright (C) 2018 THE arctica-greeter'S COPYRIGHT HOLDER # This file is distributed under the same license as the arctica-greeter package. # Automatically generated, 2018. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter 0.99.1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-08-19 09:40+0000\n" "Last-Translator: OIS \n" "Language-Team: Occidental \n" "Language: ie\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.2-dev\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Intra li contrasigne por %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Contrasigne:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nómine de usator:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Contrasigne es ínvalid, ples repenar denov" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Autentication ne successat" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Ne posset iniciar li session" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Apertente li session…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ecran a aperter session" #: ../src/main-window.vala:119 msgid "Back" msgstr "Retro" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Tastatura de ecran" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Alt contraste" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Letor de ecran" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Parametres del session" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Selecter un ambiente de pupitre" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Adio. Esque vu vole…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Extinter" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Esque vu vole extinter li computator?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Altri usatores have apert sessiones. Extintion va cluder anc ti sessiones." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspender" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hivernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Restartar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (predefinit)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Monstrar li version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Lansar in prov-mode" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Salutator Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Lansa '%s --help' vider un complet liste de parametres." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Session de gast" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Ples intrar un complet e-post-adresse" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Li e-post-adresse o contrasigne es ínvalid" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Anullar" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configurar…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Session X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Dominia:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID de conto" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Aperter" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Aperter quam %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Repenar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Repenar quam %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Aperter" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Session de gast temporari" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Salutator Arctica" arctica-greeter-0.99.1.5/po/is.po0000644000000000000000000001713514007200004013267 0ustar # Icelandic translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-01-01 14:21+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n % 10 != 1 || n % 100 == 11;\n" "X-Generator: Weblate 3.10\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Sláðu inn lykilorð fyrir %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Lykilorð:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Notandanafn:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ógilt lykilorð, reyndu aftur" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Auðkenning mistókst" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Mistókst að hefja setu" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Innskráning…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Innskráningargluggi" #: ../src/main-window.vala:119 msgid "Back" msgstr "Til baka" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Lyklaborð á skjá" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Háskerpa" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Skjálesari" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Valkostir setu" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Veldu skjáborðsumhverfi" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Bless. Viltu kannski…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Slökkva" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ertu viss um að þú viljir slökkva á tölvunni?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Aðrir notendur eru skráðir inn á þessa tölvu; ef slökkt er á henni verður " "þeim setum einnig lokað." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Setja í bið" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Leggja í dvala" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Endurræsa" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (sjálfgefið)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Birta útgáfunúmer" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Keyra í prufuham" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica upphafsskjárinn" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Keyrðu '%s --help' til að sjá lista yfir allar tiltækar stillingar fyrir " "þessa skipun." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gestaaðgangur" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Settu inn fullt tölvupóstfang" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Rangt netfang eða lykilorð" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Ef þú ert með reikning á RDP- eða X2Go-þjóni. gefur Fjartenging þér kleift " "að keyra forrit frá þeim þjóni." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Hætta við" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Uppsetning…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Þú þarft fjarskráningarreikning Ubuntu til að nota þessa þjónustu. Vilt þú " "setja upp reikning núna?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Í lagi" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Þú þarft fjarskáningarreikning Ubuntu til að nota þessa þjónustu. Farðu á %s " "til að setja upp reikning." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Þú þarft fjarskráningarreikning (Remote Logon) til að nota þessa þjónustu. " "Spurðu vefstjórann þinn ef þú vilt fá nánari upplýsingar." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Gerð þjóns ekki studd." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go-seta:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Lén:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Auðkenni aðgangs" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Skrá inn" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Skrá inn sem %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Reyndu aftur" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Reyna aftur sem %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Innskráning" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Tímabundinn gestaaðgangur" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Annar möguleiki er að vista skrár í\n" "/var/guest-data möppunni." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica upphafsskjár" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Ef þú ert með reikning á RDP eða Citrix þjóni, gefur Fjartenging þér " #~ "kleift að keyra forrit frá þeim þjóni." #~ msgid "Email:" #~ msgstr "Tölvupóstfang:" #~ msgid "Enter username" #~ msgstr "Sláðu inn notendanafn" #~ msgid "_Back" #~ msgstr "_Til baka" #~ msgid "Logging in..." #~ msgstr "Skrái inn..." #~ msgid "Enter password" #~ msgstr "Sláðu inn lykilorð" #~ msgid "Favorite Color (blue):" #~ msgstr "Uppáhalds Litur (blár):" arctica-greeter-0.99.1.5/po/it.po0000644000000000000000000001722714007200004013272 0ustar # Italian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: Swann Martinet \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Inserire la password per %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Password:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nome utente:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Password non valida, riprovare" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Autenticazione non riuscita" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Avvio della sessione non riuscito" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Accesso in corso…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Schermata di accesso" #: ../src/main-window.vala:119 msgid "Back" msgstr "Indietro" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Tastiera a schermo" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contrasto elevato" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lettore schermo" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opzioni sessione" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Seleziona l'ambiente grafico" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Arrivederci. Vorresti…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Spegni" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Spegnere il computer?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Altri utenti sono attualmente collegati al computer, spegnendo ora verranno " "chiuse anche le altre sessioni." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Sospendi" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Iberna" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Riavvia" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (predefinito)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Mostra la versione del rilascio" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Esegui in modalità di test" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Schermata di benvenuto di Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Eseguire «%s --help» per l'elenco completo delle opzioni disponibili a riga " "di comando." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sessione ospite" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Inserire l'indirizzo email completo" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Password o indirizzo email non corretto" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Se si dispone di un account su un server RDP o X2Go, «Accesso remoto» " "consente di eseguire le applicazioni da quel server." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Annulla" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Imposta…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "È necessario un account di accesso remoto per utilizzare questo servizo. " "Vorresti creare un account ora?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "È necessario un account di accesso remoto per utilizzare questo servizio. " "Visita %s per creare un account." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "È necessario un account di accesso remoto per utilizzare questo servizo. Per " "maggiori dettagli chiedi all'amministratore del sito." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tipo di server non supportato." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sessione X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Dominio:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Account ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Accedi" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Accesso come %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Riprova" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Riprova come %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Accedi" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sessione ospite temporanea" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Tutti i dati creati durante questa sessione ospite verranno eliminati\n" "al momento della disconnessione e le impostazioni verranno ripristinate.\n" "Per favore salva i file su qualche dispositivo esterno, ad esempio\n" "una chiavetta USB, se vuoi poterci accedere in futuro." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "Un'alternativa è salvare i file nella cartella /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Schermata di benvenuto di Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Se si dispone di un account su un server RDP o Citrix, «Accesso remoto» " #~ "consente di eseguire le applicazioni da quel server." #~ msgid "Email:" #~ msgstr "Email:" #~ msgid "_Back" #~ msgstr "_Indietro" #~ msgid "Favorite Color (blue):" #~ msgstr "Colore preferito (blu):" arctica-greeter-0.99.1.5/po/ja.po0000644000000000000000000002072314007200004013243 0ustar # Japanese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-07-15 14:02+0000\n" "Last-Translator: Ryo Nakano \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.8-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s のパスワードを入力してください" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "パスワード:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ユーザー名:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "パスワードが違います。もう一度お試しください" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "認証に失敗しました" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "セッションの開始に失敗しました" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "ログインしています…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "ログイン画面" #: ../src/main-window.vala:119 msgid "Back" msgstr "戻る" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "オンスクリーンキーボード" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ハイコントラスト" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "スクリーンリーダー" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "セッションのオプション" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "デスクトップ環境を選択してください" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "さようなら。どの操作を行いますか…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "シャットダウン" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "本当にコンピューターをシャットダウンしますか?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "現在、他のユーザーがこのコンピューターにログインしているため、今すぐシャット" "ダウンすると他のセッションも閉じられてしまいます。" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "サスペンド" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "ハイバネート" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "再起動" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (デフォルト)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "リリースバージョンを表示" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "テストモードで実行" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "利用可能なコマンドラインオプションの完全なリストを見るには '%s --help' を実行してください。" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "ゲストセッション" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "完全なメールアドレスを入力してください" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "メールアドレスまたはパスワードが間違っています" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "RDP サーバーまたは X2Go サーバーのアカウントをお持ちの場合は、リモートログインでそのサーバーからアプリケーションを実行できます。" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "キャンセル" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "設定…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "このサービスを利用するには、リモートログオンアカウントが必要です。今すぐアカウントを作成しますか?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "このサービスを利用するためには、リモートログオンアカウントが必要です。アカウントを作成するには、%s を参照してください。" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "このサービスを利用するには、リモートログオンアカウントが必要です。詳細はサイト管理者にお尋ねください。" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "サーバータイプがサポートされていません。" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go セッション:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ドメイン:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "アカウント ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "ログイン" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s としてログイン中" #: ../src/user-list.vala:842 msgid "Retry" msgstr "再試行" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s として再試行" #: ../src/user-list.vala:882 msgid "Login" msgstr "ログイン" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "一時的なゲストセッション" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "このゲストセッション中に作成されたすべてのデータは\n" "ログアウトする際に削除され、設定はデフォルトに\n" "リセットされます。後でファイルに再度アクセスしたい\n" "場合は、USB メモリーなどの外部デバイスに保存してください。" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "/var/guest-data フォルダー内にファイルを\n" "保存するという別の選択肢もあります。" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "RDPかCitrixサーバーのアカウントを持っているなら、Remote Loginはそのサー" #~ "バーからアプリケーションを実行させます" #, fuzzy #~ msgid "Email:" #~ msgstr "メールアドレス:" #~ msgid "_Back" #~ msgstr "戻る(_B)" #~ msgid "Favorite Color (blue):" #~ msgstr "好きな色(青):" arctica-greeter-0.99.1.5/po/ka.po0000644000000000000000000001260214007200004013241 0ustar # Georgian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-02-21 00:39+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Georgian \n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/kk.po0000644000000000000000000001662014007200004013257 0ustar # Kazakh translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2013-05-05 20:20+0000\n" "Last-Translator: jmb_kz \n" "Language-Team: Kazakh \n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Құпия сөз:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Пайдаланушы аты:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Құпия сөз дұрыс емес, қайта енгізіп көріңіз" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Жұмыс ортасын таңдаңыз" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Әдепкі)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Тестілеу күйінде орындау" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Толығымен электрондық поштаңыздың мекен-жайын енгізіңіз" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Құпия сөзі немесе электрондық поштаңыздың мекен-жайы қате" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Сізде RDP серверінде тіркелгі бар болса, қашықтан кіру сізге сол сервердегі " "бағдарламаларды іске қосуына қол жеткізеді." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Болдырмау" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Орнату(Икемдеу)..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Бұл сервиспен қолдану үшін Ubuntu Remote Login-ның тіркелгісі қажет. Қазір " "тіркелгіні тіркеуіңіз келеді ме?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Жақсы(OK)" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Бұл сервиспен қолдану үшін Ubuntu Remote Login-ның тіркелгісі қажет. " "Тіркелгіні орнату үшін, осы сайтқа кіріңіз uccs.canonical.com" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Бұл сервиспен қолдану үшін Ubuntu Remote Login-ның тіркелгісі қажет. Қазір " "тіркелгіні тіркеуіңіз келеді ме?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Бұл сервердің түрі қолдауланбайды." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Үйшік:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Кіру" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Қайталау" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s ретінде қайталау" #: ../src/user-list.vala:882 msgid "Login" msgstr "Кіру" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Сізде RDP немесе Citrix серверінде тіркелгі бар болса, Ubuntu Remote " #~ "Login сізге сол серверден бағдарламаны іске қосуын мүмкіндік береді." #, fuzzy #~ msgid "Email:" #~ msgstr "Эл. пошта мекен-жайы:" #~ msgid "_Back" #~ msgstr "_Артқа" #~ msgid "Favorite Color (blue):" #~ msgstr "Ұнамды түс (көк):" arctica-greeter-0.99.1.5/po/kl.po0000644000000000000000000001414114007200004013254 0ustar # Greenlandic (Kalaallisut) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-03-04 21:48+0000\n" "Last-Translator: Nukartaannguaq Lundblad \n" "Language-Team: Greenlandic (Kalaallisut) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Isertaat uuga %s toortaruk" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Isertaat" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Atuisoq" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Isertaat kukkusuuvoq, misileqqiguk" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "isinngittoorpoq" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Iserfissaq" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Skærm-imi naqitassat" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Kontrast anneq" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Umeruamik atuaasartoq" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Isersimanermi qiningassat" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Sanaaq sorliunersoq takuuk" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Misiliummik igerlatinguk" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "-Arctica-mut Tikilluarit" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "'%s --help' igerlatinguk naalakkiutit qiningassaat takuniarukkit" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Pulaartutut iserit" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Pulaartutut iserit" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Iserit" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s -tut userit" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Iserfissaq" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Pulaartutut iserit" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "-Arctica-mut Tikilluarit" #~ msgid "Other..." #~ msgstr "Alla..." #~ msgid "_Back" #~ msgstr "_Uterit" #~ msgid "Enter username" #~ msgstr "Atuisoq allanguk" #~ msgid "Enter password" #~ msgstr "Isertaat allanguk" #~ msgid "Logging in..." #~ msgstr "Isilerpoq..." arctica-greeter-0.99.1.5/po/km.po0000644000000000000000000002466314007200004013267 0ustar # Khmer translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2017-09-09 10:44+0000\n" "Last-Translator: ប៉ុកណូ រ៉ូយ៉ាល់ \n" "Language-Team: Central Khmer \n" "Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.17-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "បញ្ចូល​ពាក្យ​សម្ងាត់​សម្រាប់ %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "ពាក្យ​សម្ងាត់ ៖" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ឈ្មោះ​អ្នក​ប្រើ ៖" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "ពាក្យ​សម្ងាត់​មិន​ត្រឹមត្រូវ សូម​ព្យាយាម​ម្ដង​ទៀត" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "បានបរាជ័យក្នុងការចាប់ផ្តើមសម័យ" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "កំពុង​ចូល…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "អេក្រង់​​ចូល" #: ../src/main-window.vala:119 msgid "Back" msgstr "ថយក្រោយ" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "ក្ដារចុច​លើ​អេក្រង់" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "កម្រិត​ពណ៌​ខ្ពស់" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "កម្មវិធី​អាន​អេក្រង់" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "ជម្រើស​សម័យ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "ជ្រើស​បរិស្ថាន​ផ្ទៃតុ" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "លាហើយ។ តើ​អ្នក​ចង់…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "បិទ" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "តើ​អ្នក​ពិត​ជា​ចង់​បិទ​កុំព្យូទ័រ?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "នៅ​ពេល​នេះ មាន​អ្នក​ប្រើ​ដទៃ​បាន​ចូល​ប្រើ​កុំព្យូទ័រ​នេះ ដូច្នេះ​ការ​បិទ​កុំព្យូទ័រ​ឥឡូវ​នេះ​ក៏​នឹង​បិទ​សម័យ​ប្រើ​ប្រាស់​" "ផ្សេងៗ​ទៀត​ដែរ។" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "ផ្អាក" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "សម្ងំ" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "ចាប់ផ្ដើម​ឡើង​វិញ" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (លំនាំដើម)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "បង្ហាញ​កំណែ​ចេញ​ផ្សាយ" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "ដំណើរការ​ក្នុង​របៀប​សាកល្បង" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- សារ​ស្វាគមន៍​របស់ Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "ដំណើរការ '%s --help' ដើម្បី​មើល​បញ្ជី​ជម្រើស​បន្ទាត់​ពាក្យ​បញ្ជា​ពេញលេញ ។" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "សម័យ​ភ្ញៀវ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "សូម​បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល​របស់​អ្នក" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "ពាក្យ​សម្ងាត់ ឬ​​អាសយដ្ឋាន​អ៊ីមែល​​មិន​ត្រឹមត្រូវ" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "ប្រសិនបើ​អ្នក​មាន​គណនី​នៅ​លើ​ម៉ាស៊ីន​មេ RDP ចូល​ពី​ចម្ងាយ​អ្នក​អាច​ចូល​ដំណើរការ​កម្មវិធី​ពី​ម៉ាស៊ីន​មេ​នោះ​បាន។" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "បោះបង់" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "រៀបចំ…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "អ្នក​ត្រូវ​ចូល​គណនី​​ពី​ចម្ងាយ​ដើម្បី​ប្រើ​​ម៉ាស៊ីន​មេ​នេះ។ តើ​អ្នក​ចង់​រៀបចំ​គណនី​ឥឡូវ​នេះ​ឬ?" #: ../src/user-list.vala:563 msgid "OK" msgstr "យល់ព្រម" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "អ្នក​ត្រូវ​ចូល​គណនី​ពី​ចម្ងាយ​ដើម្បី​ប្រើ​ម៉ាស៊ីន​មេ​​នេះ។ មើល https://%s ដើម្បី​រៀបចំ​គណនី។" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "អ្នក​ត្រូវ​ចូល​គណនី​​ពី​ចម្ងាយ​ដើម្បី​ប្រើ​​ម៉ាស៊ីន​មេ​នេះ។ តើ​អ្នក​ចង់​រៀបចំ​គណនី​ឥឡូវ​នេះ​ឬ?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "ប្រភេទ​ម៉ាស៊ីន​មេ​មិន​ត្រូវ​បាន​គាំទ្រ។" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "សម័យ ​X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ដែន ៖" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "ចូល" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "ចូល​ជា %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ព្យាយាម​ម្ដង​ទៀត" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "ព្យាយាម​ម្ដងទៀត​ជា %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "ចូល" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "សម័យ អ្នកទស្សនាបណ្ដោះអាសន្ន" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "សារ​ស្វាគមន៍​របស់ Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "ប្រសិនបើ​អ្នក​មាន​គណនី​នៅ​លើ RDP ឬ​ម៉ាស៊ីន​មេ Citrix ចូល​ពី​ចម្ងាយ​​​អ្នក​អាច​ចូល​ដំណើរការ​កម្មវិធី​ពី​ម៉ាស៊ីន​" #~ "មេ​នោះ​បាន។" #~ msgid "Email:" #~ msgstr "​អ៊ីមែល​ ៖" #~ msgid "Guest" #~ msgstr "អ្នកទស្សនា" #~ msgid "Other..." #~ msgstr "ផ្សេង​​ទៀត..." #~ msgid "Enter username" #~ msgstr "បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ" #~ msgid "Enter password" #~ msgstr "បញ្ចូល​ពាក្យ​សម្ងាត់" #~ msgid "Logging in..." #~ msgstr "កំពុង​ចូល​..." #~ msgid "_Back" #~ msgstr "ថយ​ក្រោយ" #~ msgid "Favorite Color (blue):" #~ msgstr "ពណ៌​សំណព្វ (ខៀវ)៖" arctica-greeter-0.99.1.5/po/kn.po0000644000000000000000000002177514007200004013271 0ustar # Kannada translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-05-31 12:37+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kannada \n" "Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s ಗಾಗಿ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "ಗುಪ್ತಪದ" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ಬಳಕೆನಾಮ" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "ಅಸಿಂಧು ಗುಪ್ತಪದ, ದಯವಿಟ್ಟು ಮರುಪ್ರಯತ್ನಿಸಿ" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "ಧೃಡೀಕರಿಸಲು ವಿಫಲವಾಗಿದೆ" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "ಪ್ರವೇಶಿಸುತ್ತಿದೆ..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "ಪ್ರವೇಶ ತೆರೆ" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "ತೆರೆಯ ಕೀಲಿಮಣೆ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ಹೆಚ್ಚಿನ ವೈದೃಶ್ಯ" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "ತೆರೆ ಓದುಗ" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "ಅಧಿವೇಶನದ ಆಯ್ಕೆಗಳು" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "ಡೆಸ್ಕ್ಟಾಪ್ ಪರಿಸರವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s(ಪೂರ್ವನಿಯೋಜಿತ)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "ಬಿಡುಗಡೆ ಆವೃತ್ತಿಯನ್ನು ತೋರಿಸು" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "ಪರೀಕ್ಷಾ ಮಾರ್ಗದಲ್ಲಿ ಓಡಿಸು" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "ಯುನಿಟಿ ಸ್ವಾಗತಕಾರ" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "ಲಭ್ಯವಿರುವ ಕಮ್ಯಾಂಡ್ ಲೈನ್ ಆಯ್ಕೆಗಳ ಪೂರ್ಣ ಪಟ್ಟಿ ನೋಡಲು '%s --help' ಓಡಿಸಿ" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "ಅತಿಥಿ ಅಧಿವೇಶನ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "ದಯವಿಟ್ಟು ಪೂರ್ತಿ ವಿ-ಅಂಚೆ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "ಗುಪ್ತಪದ ಅಥವಾ ವಿ-ಅಂಚೆ ವಿಳಾಸದಲ್ಲಿ ತಪ್ಪಿದೆ" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "ನೀವು RDP ಖಾತೆ ಹೊಂದಿದ್ದಲ್ಲಿ ರಿಮೋಟ್ ಲಾಗಿನ್ ಇಂದ ಅಪ್ಪ್ಲಿಕೇಷನ್ನುಗಳನ್ನು ಚಲಾಯಿಸಬಹುದು" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ರದ್ದುಗೊಳಿಸಿ" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "ಸ್ಥಾಪಿಸು..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "ಈ ಸೇವೆಯನ್ನು ಉಪಯೋಗಿಸಲು ನೀವು ಉಬುಂಟು ರಿಮೋಟ್ ಲಾಗಿನ್ ಖಾತೆ ಹೊಂದಿರುವುದಿಲ್ಲ.ಖಾತೆ " "ತೆರೆಯಲು ಬಯಸುತ್ತೀರ ?" #: ../src/user-list.vala:563 msgid "OK" msgstr "ಸರಿ" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "ಈ ಸೇವೆಯನ್ನು ಉಪಯೋಗಿಸಲು ನೀವು ಉಬುಂಟು ರಿಮೋಟ್ ಲಾಗಿನ್ ಖಾತೆ ಹೊಂದಿರುವುದಿಲ್ಲ.ಖಾತೆ " "ತೆರೆಯಲು ಭೇಟಿಕೊಡಿ uccs.canonical.com" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "ಈ ಸೇವೆಯನ್ನು ಉಪಯೋಗಿಸಲು ನೀವು ಉಬುಂಟು ರಿಮೋಟ್ ಲಾಗಿನ್ ಖಾತೆ ಹೊಂದಿರುವುದಿಲ್ಲ.ಖಾತೆ " "ತೆರೆಯಲು ಬಯಸುತ್ತೀರ ?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "ಸರ್ವರ್ ಬಗೆ ಸಪೋರ್ಟ್ ಮಾಡುತ್ತಿಲ್ಲ" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "ಅತಿಥಿ ಅಧಿವೇಶನ" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ಕ್ಷೇತ್ರ:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "ಪ್ರವೇಶಿಸು" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s ರಂತೆ ಪ್ರವೇಶಿಸು" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ಮರುಪ್ರಯತ್ನಿಸು" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "ಮತ್ತೊಮ್ಮೆ %s ಪ್ರಯತ್ನಿಸಿ" #: ../src/user-list.vala:882 msgid "Login" msgstr "ಪ್ರವೇಶಿಸು" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "ಅತಿಥಿ ಅಧಿವೇಶನ" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "ಯುನಿಟಿ ಸ್ವಾಗತಕಾರ" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "ನೀವು RDP ಅಥವಾ Citrix ಸರ್ವರ್ ಖಾತೆ ಹೊಂದಿದ್ದಲ್ಲಿ ರಿಮೋಟ್ ಲಾಗಿನ್ ಇಂದ " #~ "ಅಪ್ಪ್ಲಿಕೇಷನ್ನುಗಳನ್ನು ಚಲಾಯಿಸಬಹುದು" #, fuzzy #~ msgid "Email:" #~ msgstr "ವಿಅಂಚೆ ವಿಳಾಸ:" #~ msgid "_Back" #~ msgstr "ಹಿಂದಕ್ಕೆ (_B)" #~ msgid "Enter username" #~ msgstr "ಬಳಕೆದಾರರ ಹೆಸರು ಕೊಡಿ" #~ msgid "Enter password" #~ msgstr "ಗುಪ್ತಪದ ಕೊಡಿ" #~ msgid "Logging in..." #~ msgstr "ಪ್ರವೇಶಿಸುತ್ತಿದೆ..." #~ msgid "Favorite Color (blue):" #~ msgstr "ಮೆಚ್ಚಿನ ಬಣ್ಣ(ನೀಲಿ )" arctica-greeter-0.99.1.5/po/ko.po0000644000000000000000000002015514007200004013261 0ustar # Korean translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-01-08 10:21+0000\n" "Last-Translator: Jun Hyung Shin \n" "Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.10.1-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s의 암호를 입력하십시오" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "암호:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "사용자 이름:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "암호가 올바르지 않습니다, 다시 입력해주십시오" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "인증에 실패했습니다" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "세션을 시작할 수 없습니다." #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "로그인 중…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "로그인 화면" #: ../src/main-window.vala:119 msgid "Back" msgstr "뒤로" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "화상 키보드" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "고대비" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "화면 읽기 프로그램" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "세션 옵션" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "데스크톱 환경 선택" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "안녕히 가세요. 수행할 작업은 무엇입니까.…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "컴퓨터 끄기" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "정말 컴퓨터를 끄시겠습니까?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "현재 이 컴퓨터에 다른 사용자가 로그인했습니다. 지금 컴퓨터를 끄면 다른 사용자" "의 세션 역시 닫습니다." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "절전" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "최대 절전" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "다시 시작" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (기본값)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "릴리스 버전을 표시합니다" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "테스트 모드로 실행하기" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- 유니티 로그인 프로그램" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "사용 가능한 모든 옵션의 목록을 보려면 '%s --help' 명령을 실행하십시오." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "게스트 세션" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "전체 전자메일 주소를 입력해주십시오" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "전자메일 주소나 암호가 올바르지 않습니다" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "RDP 또는 X2Go 서버에 계정이 있는 경우, 원격 로그인을 통해 해당 서버에서 프로그램을 실행할 수 있습니다." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "취소" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "설정…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "이 서비스를 이용하기 위해선 원격 로그인 계정이 필요합니다. 계정을 지금 만드시겠습니까?" #: ../src/user-list.vala:563 msgid "OK" msgstr "확인" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "이 서비스를 이용하려면 원격 로그인 계정이 필요합니다. %s 페이지를 방문해 계정을 설정하십시오." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "이 서비스를 이용하려면 원격 로그인 계정이 필요합니다. 사이트 관리자에게 문의해주시길 바랍니다." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "서버 형식을 지원하지 않습니다." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go 세션:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "도메인:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "계정 ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "로그인" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s(으)로 로그인" #: ../src/user-list.vala:842 msgid "Retry" msgstr "다시 시도" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s(으)로 다시 시도" #: ../src/user-list.vala:882 msgid "Login" msgstr "로그인" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "임시 게스트 세션" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "게스트 세션으로 만들어진 데이터는 모두 삭제될 것입니다.\n" "로그아웃을 하면 모든 설정은 초기화 될 것입니다.\n" "데이터를 다시 사용하기 위해서는 이동식 디스크와 같은 \n" "USB에 파일을 저장하시길 바랍니다." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "파일을 저장하는 대안으로는\n" "/var/guest-data 폴더가 있습니다." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica에 어서와" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "RDP 또는 Citrix 서버에 계정이 있는 경우에는 원격 로그인을 통해 서버의 프로" #~ "그램을 실행할 수 있습니다." #, fuzzy #~ msgid "Email:" #~ msgstr "전자메일 주소:" #~ msgid "_Back" #~ msgstr "뒤로(_B)" #~ msgid "Other..." #~ msgstr "기타..." #~ msgid "Enter password" #~ msgstr "암호를 입력하십시오" #~ msgid "Logging in..." #~ msgstr "로그인..." #~ msgid "Favorite Color (blue):" #~ msgstr "선호 색상 (파란색):" arctica-greeter-0.99.1.5/po/ku.po0000644000000000000000000001334514007200004013272 0ustar # Kurdish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-09-26 06:48+0000\n" "Last-Translator: Erdem AYALP \n" "Language-Team: Kurdish \n" "Language: ku\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Nasnav:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Navê bikarhêner:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Nasnavê bê derbazdar, ji kerema xwere dibare bike" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Dîmenderê têketinê" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Klavyeya li ser şaşeyê" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Dijberiya Berz" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Vebijêrkên Danişînê" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Danişîna Mêvanî" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Danişîna Mêvanî" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Wekî %s têkeve" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Têketin" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Danişîna Mêvanî" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "Logging in..." #~ msgstr "Tê dikeve..." #~ msgid "_Back" #~ msgstr "_Paşve" arctica-greeter-0.99.1.5/po/kw.po0000644000000000000000000001625514007200004013277 0ustar # Cornish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-03-30 22:58+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cornish \n" "Language: kw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Entrewgh an ger-tremena rag %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Ger-tremena:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Hanow usyer:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ger-tremena drog, assayewgh arta" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Owth omgelmi…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Skrin omgelmi" #: ../src/main-window.vala:119 msgid "Back" msgstr "War-dhelergh" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Bysowek warskrin" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Gorthwedh ughel" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Redyer skrin" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Dewisyow an esedhek" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Dewisewgh kerghynnedh penn an desk" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Duw genowgh. Eus hwans dhywgh…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Degea dhe'n dor" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Owgh hwi sur bos hwans dhywgh degea dhe'n dor an jynn-amontya?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Kregi" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Dastalleth" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Defowt)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Diskwedhes versyon an dyllans" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Lonchya y'n modh previ" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "Dynargher Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Lonchya '%s --help' rag gweles rol leun a dhewisyow linen-arghadow kavadow." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Esedhek gwester" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Entrewgh trigva ebost dien" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Kamm o an trigva ebost po an ger-tremena" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Mars eus akont dhywgh war servyer RDP, Omgelmi Pell a'gas gas dhe lonchya " "towlennow dhyworth an servyer na." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Hedhi" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Fyttya..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Res yw akont Omgelmi Pell Ubuntu rag usya an servis ma. Eus hwans dhywgh " "formya akont lemmyn?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Res yw akont Omgelmi Pell Ubuntu rag usya an servis ma. Kewgh dhe uccs." "canonical.com rag formya akont." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Res yw akont Omgelmi Pell Ubuntu rag usya an servis ma. Eus hwans dhywgh " "formya akont lemmyn?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Ny skoodhir eghen an servyer." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Esedhek gwester" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Tiredh:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Omgelmi" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Omgelmi avel %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Assaya arta" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Assaya arta avel %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Omgelmi" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Esedhek gwester" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "Dynargher Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Mars eus akont dhywgh war servyer RDP po Citrix, Omgelmi Pell a'gas gas " #~ "dhe lonchya towlennow dhyworth an servyer na." #, fuzzy #~ msgid "Email:" #~ msgstr "Trigva ebost:" #~ msgid "_Back" #~ msgstr "_War-dhelergh" #~ msgid "Enter username" #~ msgstr "Entrowgh hanow usyer" #~ msgid "Enter password" #~ msgstr "Entrowgh ger tremena" #~ msgid "Logging in..." #~ msgstr "Owth omgelmi..." #~ msgid "Favorite Color (blue):" #~ msgstr "Liw moyha kerys (glas):" arctica-greeter-0.99.1.5/po/ky.po0000644000000000000000000001654614007200004013304 0ustar # Kirghiz translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-06-12 17:40+0000\n" "Last-Translator: Ilyas Bakirov \n" "Language-Team: Kyrgyz \n" "Language: ky\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.0.1\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s колдонуучунун сырсөзүн киргизиңиз" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Сырсөз:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Колдонуучу аты:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Туура эмес сырсөз, дагы аракет кылыңыз" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Кирүү оңунан чыккан жок" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Кирүү экраны" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Экран клавиатурасы" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Жогорку карама-каршылуулук" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Экран окугуч" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Сеанстын параметрлери" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Чөйрөнү тандаңыз" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (алдын ала)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Чыгаруунун версиясын көрсөтүү" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Сыноо режиминде жүргүзүү" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica саламдашуу экраны" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Командалык саптын бүт жеткиликтүү параметрлерин көрүү үчүн «%s --help» " "командасын аткарыңыз." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Мейман сеансы" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Электрондук почтанын толук дарегин киргизиңиз" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Туура эмес e-mail дарек же сырсөз" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Эгерде сизде RDP же Citrix серверлеринде колдонуучу атыңыз болсо, анда " "Ubuntu Remote Login ошол серверлерден иштемелерди аткарууга жардам берет." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Жокко чыгаруу" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Ырастоо…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Бул сервер түрү колдолбойт." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go сессиясы:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Домен:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Кирүү" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s болуп кирүү" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Кайталоо" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s болуп кайталоо" #: ../src/user-list.vala:882 msgid "Login" msgstr "Кирүү" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Убактылуу мейман сеансы" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica саламдашуу" #~ msgid "Email:" #~ msgstr "Электрондук почта:" #~ msgid "Logging in..." #~ msgstr "Кирүү аткарылып жатат..." #~ msgid "Favorite Color (blue):" #~ msgstr "Жакшы көргөн түс (көк):" #~ msgid "Enter password" #~ msgstr "Сырсөздү киргизиңиз" #~ msgid "_Back" #~ msgstr "_Артка" #~ msgid "Enter username" #~ msgstr "Колдонуучу атын киргизиңиз" arctica-greeter-0.99.1.5/po/la.po0000644000000000000000000001257414007200004013252 0ustar # Latin translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-07-28 14:22+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latin \n" "Language: la\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/lb.po0000644000000000000000000001564014007200004013250 0ustar # Luxembourgish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Luxembourgish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Passwuert ongëlteg, probéiert nees w.e.g." #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Sessiounstart feelgeschloen" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Umellen..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "Zréck" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Aarbeschtsemgebung wielen" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Eddi. Wëll der ..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Ausmaachen" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "sidd der sécher dass der de Computer ausmaache wëllt?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "De Moment sinn nach aner Benotzer op dësem Computer ugemellt. Wann Däer de " "Computer äusmaacht, ginn dës Benotzer ofgemellt." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Schnaarchmodus" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Wanterschlof" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Nei starten" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Standard)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gaaschtsëtzung" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Gidd w.e.g. eng ganz E-Mails-Adress an" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Falsch(t) E-Mails-Adress oder Passwuert" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Wann Däer en RDP-Server hudd, kënnt Däer iwwert de Fernzougrëff vun dësem " "Server äus Programmer äusféieren." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Ofbriechen" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Ariichten" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Däer bräucht en Ubuntu-Fernzougrëffkonto, fir dësen Dénscht ze benotzen. " "Wëllt Däer elo e Fernzougrëffkonto ariichten?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Däer bräucht en Ubuntu Fernzougrëffskonto fir dësen Dégscht ze benotzen. " "Gidd op uccs.canonical.com, fir en Account anzeriichten." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Däer bräucht en Ubuntu-Fernzougrëffkonto, fir dësen Dénscht ze benotzen. " "Wëllt Däer elo e Fernzougrëffkonto ariichten?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Server-Typ net ënnerstëtzt." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Gaaschtsëtzung" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domän:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Aloggen" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Nach eng Kéier probéieren" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Nach eng kéier probéieren als %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Gaaschtsëtzung" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Wann Däer en Account op engem RDP- oder Citrix-Server hudd, kënnt Däer " #~ "iwwert de Fernzougrëff vun dësem Server äus Programmer äusféieren." #, fuzzy #~ msgid "Email:" #~ msgstr "E-Mails-Adress:" arctica-greeter-0.99.1.5/po/LINGUAS0000644000000000000000000000061514007200004013334 0ustar af am an ar ast az bem be bg bn bo br bs ca ca@valencia ce ckb co crh cs cv cy da de el en_AU en_CA en_GB eo es et eu fa fil fi fo fr_CA fr frp fy ga gd gl gu he hi hr ht hu hy ia id ie is it ja ka kk kl km kn ko ku kw ky la lb lo lt lv mg mhr mi ml mr ms my nb ne nl nn oc os pa pl ps pt_BR pt ro ru sa sc sd se shn si sk sl sq sr sv sw szl ta te tg th ti tr ug uk ur uz vi wae zh_CN zh_HK zh_TW arctica-greeter-0.99.1.5/po/lo.po0000644000000000000000000001256014007200004013263 0ustar # Lao translation for unity-greeter # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the unity-greeter package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: unity-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2014-10-12 09:04+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lao \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/lt.po0000644000000000000000000001770414007200004013275 0ustar # Lithuanian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-09-22 03:39+0000\n" "Last-Translator: Kornelijus Tvarijanavičius \n" "Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " "19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " "1 : 2);\n" "X-Generator: Weblate 4.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Įveskite %s slaptažodį" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Slaptažodis:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Naudotojo vardas:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Neteisingas slaptažodis, mėginkite dar kartą" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Nepavyko nustatyti tapatumo" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Nepavyko pradėti sesijos" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Prisijungiama…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Prisijungimo langas" #: ../src/main-window.vala:119 msgid "Back" msgstr "Atgal" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Klaviatūra ekrane" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Didelis kontrastas" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Ekrano skaityklė" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Seanso parinktys" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Pasirinkite darbastalio aplinką" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Viso gero. Ar norėtumėte…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Išjungti" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ar tikrai norite išjungti kompiuterį?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Prie šio kompiuterio yra prisijungę kiti vartotojai, išjungiant dabar jų " "seansai bus atjungti." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Užmigdyti" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernuoti" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Paleisti iš naujo" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (numatytasis)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Rodyti laidos versiją" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Paleisti bandomąja veiksena" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica pasisveikinimas" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Norėdami pamatyti komandų eilutės parametrų sąrašą, paleiskite „%s --help“." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Svečio seansas" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Įveskite visą el. pašto adresą" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Neteisingas el. pašto adresas ar slaptažodis" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Jei turite paskyrą RDP serveryje ar X2Go serveryje, Nutolęs Prisijungimas " "leis jums vykdyti programas iš to serverio." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Atsisakyti" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Nustatyti…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Norint naudoti šią paslaugą reikia Ubuntu nuotolinio prisijungimo paskyros. " "Ar norėtumėte nustatyti paskyrą dabar?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Gerai" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Norint naudoti šią paslaugą reikia Ubuntu nuotolinio prisijungimo paskyros. " "Aplankykite %s paskyrai gauti." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Norint naudoti šią paslaugą reikia Ubuntu nuotolinio prisijungimo paskyros. " "Susisiekite su savo administratoriumi dėl detalesnės informacijos." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Serverio tipas nepalaikomas." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go sesija :" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Sritis:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Paskyros ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Prisijungti" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Prisijungti kaip %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Pakartoti" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Kartoti kaip %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Prisijungimas" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Laikino svečio sesija" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Visi šio svečio sesijos metu sukurti duomenys bus ištrinti\n" "kai atsijungsite, o nustatymai bus atstatyti pagal numatytuosius " "nustatymus.\n" "Prašome įrašyti failus į išorinį įrenginį, pavyzdžiui, a\n" "USB atmintinė, jei vėliau norėsite prieiti prie jų." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Kita alternatyva yra išsaugoti failus direktorijoje\n" "/ var / guest-data aplanke." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "- Arctica pasisveikinimas" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Jei turite paskyrą RDP ar Citrix serveryje, nuotolinis prisijungimas " #~ "leidžia jums leisti programas iš to serverio." #~ msgid "Email:" #~ msgstr "El. pašto adresas:" #~ msgid "Logging in..." #~ msgstr "Jungiamasi..." #~ msgid "_Back" #~ msgstr "_Atgal" #~ msgid "Favorite Color (blue):" #~ msgstr "Mėgstamiausia spalva (mėlyna):" arctica-greeter-0.99.1.5/po/lv.po0000644000000000000000000001655014007200004013275 0ustar # Latvian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-01-03 01:21+0000\n" "Last-Translator: Mareks Dunkurs \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= " "19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n" "X-Generator: Weblate 3.10\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Ievadi paroli %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Parole:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Lietotājvārds:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Nepareiza parole, mēģini vēlreiz" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Neizdevās autentificēties" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Neizdevās startēt sesiju" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Ienāk sistēmā…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ierakstīšanās ekrāns" #: ../src/main-window.vala:119 msgid "Back" msgstr "Atpakaļ" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sesijas opcijas" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Izvēlieties darbvirsmas vidi" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Uz re dzēšanos. Vai vēlāties..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Beigt darbu" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Vai esat drošs ka vēlaties izslēgt datoru?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Pašlaik šajā datorā ir ierakstījušies citi lietotāji. Datora izslēgšana " "aizvērs arī šo lietotāju sesijas." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Iesnaudināt" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Iemidzināt" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Pārstartēt" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (noklusējuma)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica sveicējs" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Palaidiet “%s --help”, lai redzētu pilnu pieejamo komandrindas opciju " "sarakstu." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Lūdzu, ierakstiet pilnu e-pasta adresi" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Nepareiza e-pasta adrese vai parole" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Ja jums ir konts uz RDP servera, attālinātā pieteikšanās ļauj jums palaist " "lietotnes no tā servera." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Atcelt" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Iestatīt…" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Lai lietotu šo servisu, jāiestata Ubuntu attālinātais konts. Vai vēlaties " "iestatīt kontu tagad?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Labi" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Lai lietotu šo servisu, jāiestata Ubuntu attālinātais konts. Dodieties uz " "uccs.canonical.com, lai iestatītu kontu." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Lai lietotu šo servisu, jāiestata Ubuntu attālinātais konts. Vai vēlaties " "iestatīt kontu tagad?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Servera tips nav atbalstīts." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domēns:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Ierakstīties" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Ierakstīties kā %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Mēģināt vēlreiz" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Mēģināt atkal kā %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Ierakstīties" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica sveicējs" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Ja jums ir konts uz RDP vai Citrix servera, attālinātā pieteikšanās ļauj " #~ "jums palaist lietotnes no tā servera." #, fuzzy #~ msgid "Email:" #~ msgstr "E-pasta adrese:" #~ msgid "_Back" #~ msgstr "_Atpakaļ" #~ msgid "Logging in..." #~ msgstr "Ierakstās..." #~ msgid "Favorite Color (blue):" #~ msgstr "Mīļākā krāsa (zila):" arctica-greeter-0.99.1.5/po/mg.po0000644000000000000000000001344314007200004013255 0ustar # Malagasy translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-04-03 20:38+0000\n" "Last-Translator: Mariot Tsitoara \n" "Language-Team: Malagasy \n" "Language: mg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Ampidiro ny teny fanalahidy ho an'i %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Teny fanalahidy:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Anaran'ny mpampiasa:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Tena fanalahidy diso, mba avereno azafady" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Fifangarihana be" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Mpamaky Efijery" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Hiditra ho i %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Fidirana" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Greeter" #~ msgid "Enter username" #~ msgstr "Ampidiro ny anaran'ny mpampiasa" #~ msgid "Enter password" #~ msgstr "Ampidiro ny teny fanalahidy" #~ msgid "Logging in..." #~ msgstr "Miditra..." arctica-greeter-0.99.1.5/po/mhr.po0000644000000000000000000001316014007200004013434 0ustar # Mari (Meadow) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Mari (Meadow) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Пеҥгыдемдыме семын)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Тичмаш эл.почто адресым пурто" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Эл. почто адрес але шолыпмут сай огыл" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Чараш" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "шындаш," #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "Йӧра" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "вер,кумдык" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ушештараш" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/mi.po0000644000000000000000000001401014007200004013246 0ustar # Maori translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-07-23 04:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Maori \n" "Language: mi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Tāuru kupu whakauru mō %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Kupu whakauru:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Takiuru ingoa:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Muhu e kupu whakauru, ngana anō." #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "I hapa whakatuturutanga" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Mata Takiuru" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Papapātuhi mata" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Whakataerite nui" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Pānui o Mata" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Kōwhiringa Huinga" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Whakaatu te whakaaturanga" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Whakatere momo whakamātautau" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Te Mihia Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Whakatere '%s --help', ka titiro kōwhiringa tono-ā-tuhi." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Huinga Manuhiri" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Huinga Manuhiri" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Takiuru" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Takiuru hei %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Ngana anō" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Takiuru" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Huinga Manuhiri" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Te Mihia Arctica" #~ msgid "_Back" #~ msgstr "_Whakamuri" #~ msgid "Logging in..." #~ msgstr "E takiuru ana..." #~ msgid "Enter username" #~ msgstr "Tāuru takiuru" #~ msgid "Enter password" #~ msgstr "Tāuru kupu whakauru" arctica-greeter-0.99.1.5/po/ml.po0000644000000000000000000002470614007200004013266 0ustar # Malayalam translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-09-09 07:36+0000\n" "Last-Translator: Suraj \n" "Language-Team: Malayalam \n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s-നുള്ള അടയാളവാക്കു് നല്‍കുക" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "അടയാളവാക്ക്:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "നാമം:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "തെറ്റായ അടയാളവാക്ക്, ദയവായി വീണ്ടും ശ്രമിക്കുക" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "ആധികാരികത തെളിയിക്കുന്നതില്‍ പരാജയപ്പെട്ടു" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "സെഷൻ ആരംഭിക്കുന്നതിൽ പരാജയപ്പെട്ടു" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "പ്രവേശിക്കുന്നു" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "പ്രവേശന ജാലകം" #: ../src/main-window.vala:119 msgid "Back" msgstr "പിന്നോട്ട്" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "സ്‌ക്രീന്‍ കീ-ബോര്‍ഡ്" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ഉയർന്ന തെളിച്ചം" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "യവനികാവായനോപാധി" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "വേളയില്‍ തിരഞ്ഞെട‌ുക്കാവ‌ുന്നവ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "ഡെസ്ക്ടോപ്പ് പരിസരം തിരഞ്ഞെടുക്കുക" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "വീണ്ടും കാണാം. താങ്കള്‍ ആഗ്രഹിക്ക‌ുന്ന‌ുവോ…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "പ്രവര്‍ത്തനം നിര്‍ത്ത‌ുക" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "താങ്കള്‍ ഈ കമ്പ്യൂട്ടര്‍ നിര്‍ത്ത‌ുവാന്‍ ഉദ്ദേശിക്കുന്നുണ്ടോ?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "മറ്റ് ഉപയോക്താക്കൾ നിലവിൽ ഈ കമ്പ്യൂട്ടറിലേക്ക് പ്രവേശിച്ചു, ഇപ്പോൾ ഷട്ട്ഡൺ " "മറ്റ് സെഷനുകളും അടയ്‌ക്ക‌ും" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "താത്കാലികനിദ്ര" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "ശിശിരനിദ്ര" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "പുനരാരംഭിക്കുക" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (സ്വതേ)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "പതിപ്പുവിവരം പ്രദര്‍ശിപ്പിക്കുക" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "പരീക്ഷണരൂപേണ പ്രവര്‍ത്തിപ്പിക്കുക" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica സ്വാഗത ജാലകം" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "ലഭ്യമായ കമാന്‍ഡ് ലൈന്‍ ഉപാധികള്‍ക്കായി '%s --help' കാണുക." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "'അതിഥി' വേള" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "പൂര്‍ണമായ ഇമെയില്‍ വിലാസം നല്‍കുക" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "ഇ-മെയില്‍ ഐടിയിലോ അടയാളവാക്കിലോ പിശകുണ്ട്" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "നിങ്ങള്‍ക്ക് RDP-യിലോ, X2Go-യിലോ അക്കൌണ്ട് ഉണ്ടെങ്കിൽ, ആ സര്‍വ്വറില്‍ നിന്ന് " "തന്നെ റിമോട്ട് ലോഗിനിലൂടെ ആപ്ലിക്കേഷനുകള്‍ പ്രവര്‍ത്തിപ്പിക്കാനാകും" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "റദ്ദാക്കുക" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "തയ്യാറാക്കുക" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "നിങ്ങള്ക്ക് ഈ സര്‍വീസ് ഉപയോഗിക്കണമെങ്കില്‍ ഉബുണ്ടു റിമോട്ട് ലോഗിന്‍ " "അക്കൗണ്ട്‌ അത്യാവശ്യമാണ് . നിങ്ങള്‍ ഒരു അക്കൗണ്ട്‌ തുടങ്ങാന്‍ " "താല്പര്യപ്പെടുന്നുണ്ടോ??" #: ../src/user-list.vala:563 msgid "OK" msgstr "ശെരി" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "ഈ സേവനം ഉപയോഗിക്കാൻ ഉബുണ്ടു റിമോട്ട് ലോഗിൻ അക്കൗണ്ട് ആവശ്യമാണ്. പുതിയ " "അക്കൗണ്ട് തുടങ്ങാൻ %s സന്ദർശിക്കുക." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "ഈ സേവനം ഉപയോഗിക്കാൻ റിമോട്ട് ലോഗിൻ അക്കൗണ്ട് ആവശ്യമാണ്. കൂടുതൽ വിവരങ്ങൾക്ക് " "അഡ്മിനിസ്ട്രേറ്ററുമായി ബന്ധപ്പെടുക." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "ഈ തരം സര്‍വ്വര്‍ പിന്‍താങ്ങപ്പെടുന്നതല്ല" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go വേള" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ഡൊമെയിന്‍:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "അക്കൗണ്ട് ഐഡി" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "പ്രവേശിക്കുക" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s- ആയി പ്രവേശിക്കുക" #: ../src/user-list.vala:842 msgid "Retry" msgstr "വീണ്ടും ശ്രമിക്കുക" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s ആയി വീണ്ടും ശ്രമിക്കുക" #: ../src/user-list.vala:882 msgid "Login" msgstr "പ്രവേശിക്കുക" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "'അതിഥി' വേള" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica സ്വാഗത ജാലകം" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "നിങ്ങള്‍ക്ക് RDP-യിലോ Citrix server-ലോ അക്കൌണ്ട് ഉണ്ട് എങ്കില്‍, ആ സര്‍വ്വറില്‍ നിന്ന് തന്നെ " #~ "റിമോട്ട് ലോഗിനിലൂടെ ആപ്ലിക്കേഷനുകള്‍ പ്രവര്‍ത്തിപ്പിക്കാനാകും" #, fuzzy #~ msgid "Email:" #~ msgstr "ഇ-മെയില്‍ വിലാസം" #~ msgid "Favorite Color (blue):" #~ msgstr "ഇഷ്ടപ്പെട്ട നിറം (നീല):" arctica-greeter-0.99.1.5/po/mr.po0000644000000000000000000002332314007200004013266 0ustar # Marathi translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-01-06 19:21+0000\n" "Last-Translator: Prachi Joshi \n" "Language-Team: Marathi \n" "Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.10\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s साठी गुप्तशब्द दाखल करा" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "गुप्तशब्द:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "युजरनेम:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "अवैध गुप्तशब्द, कृपया पुनः प्रयत्न करा" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "प्रमाणीकरण करण्यात अयशस्वी" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "सत्र प्रारंभ करण्यात अयशस्वी" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "लॉग इन करीत आहे…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "लॉगिन स्क्रीन" #: ../src/main-window.vala:119 msgid "Back" msgstr "मागे" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "ऑनस्क्रीन कीबोर्ड" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "उच्च विरोधाभास" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "पटल वाचक" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "सत्रासाठी पर्याय" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "डेस्कटॉप वातावरण निवडा" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "निरोप आपल्याला हे आवडेल …" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "पूर्णपणे बंद करा" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "आपल्याला खात्री आहे की आपण संगणक बंद करू इच्छिता?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "अन्य वापरकर्ते सध्या या संगणकावर लॉग इन आहेत, आता बंद केल्याने ही इतर सत्रे " "बंद होतील." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "निलंबित करा" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "निष्क्रिय करा" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "पुन्हा सुरू करा" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (डीफॉल्ट)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "प्रकाशन आवृत्ती दर्शवा" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "चाचणी अवस्थेत चालवा" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- आर्कटिका ग्रीटर" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "उपलब्ध कमांड लाइन पर्यायांची पूर्ण यादी पाहण्यासाठी '%s --help' चालवा." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "अतिथी सत्र" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "कृपया एक पूर्ण ई-मेल पत्ता प्रविष्ट करा" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "चुकीचा ई-मेल पत्ता किंवा संकेतशब्द" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "आपल्याकडे आरडीपी सर्व्हर किंवा एक्स 2 गो सर्व्हरवर खाते असल्यास, रिमोट लॉगिन " "आपल्याला त्या सर्व्हरवरून अनुप्रयोग चालवू देते." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "रद्द करा" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "सेट अप करा…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "या सेवेचा लाभ घेण्याकरिता तुम्हाला उबुंतू दूरस्थ खाते वापरणे आवश्यक आहे. " "तुम्हाला आता खाते काढणे आवडेल का ?" #: ../src/user-list.vala:563 msgid "OK" msgstr "ठीक" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "आपल्याला ही सेवा वापरण्यासाठी रिमोट लॉगऑन खाते आवश्यक आहे. खात्याची विनंती " "करण्यासाठी %s ला भेट द्या." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "आपल्याला ही सेवा वापरण्यासाठी रिमोट लॉगऑन खाते आवश्यक आहे. कृपया तपशीलांसाठी " "आपल्या साइट प्रशासकाला विचारा." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "सर्व्हर प्रकार समर्थित नाही." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go सत्र:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "डोमेन:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "खाते आयडी" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "लॉग इन करा" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s म्हणून प्रवेश करा" #: ../src/user-list.vala:842 msgid "Retry" msgstr "पुन्हा प्रयत्न करा" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s म्हणून पुन्हा प्रयत्न करा" #: ../src/user-list.vala:882 msgid "Login" msgstr "लॉगिन" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "तात्पुरते अतिथी सत्र" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "या अतिथी सत्रादरम्यान तयार केलेला सर्व डेटा हटविला जाईल\n" "आपण लॉग आउट करता तेव्हा सेटिंग्ज डीफॉल्टवर रीसेट केल्या जातील.\n" "आपण नंतर पुन्हा फायलीत प्रवेश करू इच्छित असल्यास\n" "कृपया काही बाह्य डिव्हाइसवर जतन करा, उदाहरणार्थ यूएसबी स्टिक." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "मधील दुसरा पर्याय म्हणजे फायली सेव्ह करणे\n" "/var/guest-data फोल्डर मध्ये." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "आर्कटिका ग्रीटर" arctica-greeter-0.99.1.5/po/ms.po0000644000000000000000000001734314007200004013274 0ustar # Malay translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-12-08 13:29+0000\n" "Last-Translator: Jacque Fresco \n" "Language-Team: Malay \n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Masuk kata laluan untuk %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Kata Laluan:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nama Pengguna:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Kata laluan tidak sah, sila cuba lagi" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Gagal disahkan" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Gagal memulakan sesi" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Mendaftar masuk…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Skrin Daftar Masuk" #: ../src/main-window.vala:119 msgid "Back" msgstr "Undur" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Papan kekunci atas skrin" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Kontras Tinggi" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Pembaca Skrin" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Pilihan Sesi" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Pilih persekitaran desktop" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Bye. Adakah anda mahu…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Matikan" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Anda pasti mahu matikan komputer?" #: ../src/shutdown-dialog.vala:138 #, fuzzy msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Lain-lain pengguna yang sedang log masuk ke komputer ini, menutup komputer " "sekarang akan juga menutup lain-lain sesi ini." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Tangguh" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernasi" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Mula Semula" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Lalai)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Papar versi keluaran" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 #, fuzzy msgid "Run in test mode" msgstr "Aktifkan dalam mod ujian" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Aluan Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format, fuzzy msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Aktifkan '%s --help' untuk lihat senarai penuh pilihan baris perintah yang " "ada." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesi Tetamu" #: ../src/user-list.vala:440 #, fuzzy msgid "Please enter a complete e-mail address" msgstr "Sila masukkan alamat lengkap e-mel" #: ../src/user-list.vala:520 #, fuzzy msgid "Incorrect e-mail address or password" msgstr "Alamat e-mel atau kata laluan salah" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Jika anda mempunyai akaun pada pelayan RDP atau pelayan X2Go, Daftar Masuk " "membenarkan anda akses aplikasi melalui pelayan tersebut." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Batal" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Persediaan…" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Anda perlu akaun Remot Login untuk akses perkhidmatan ini. Anda ingin buka " "akaun sekarang?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format, fuzzy msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Anda perlu akaun Remot Login untuk akses perkhidmatan ini. Layari %s untuk " "buka akaun." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Anda perlu akaun Remot Login untuk akses perkhidmatan ini. Sila hubungi " "pentadbir laman untuk info lanjut." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Jenis pelayan tidak disokong." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sesi X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domin:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID akaun" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Daftar Masuk" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Daftar masuk sebagai %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Cuba lagi" #: ../src/user-list.vala:843 #, c-format, fuzzy msgid "Retry as %s" msgstr "Cuba lagi sebagai %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Daftar Masuk" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sesi Tetamu Sementara" #: ../arctica-greeter-guest-session-auto.sh:36 #, fuzzy, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Semua data dicipta semasa sesi tetamu akan dinyahhapus\n" "bila anda log keluar, seting disetkan kepada asal.\n" "Simpankan fail di storan luaran, gunakan\n" "stik USB, jika anda ingin akses kemudian." #: ../arctica-greeter-guest-session-auto.sh:40 #, fuzzy, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Alternatif lain untuk simpan fail didalam\n" "/var/tetamu-folder data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Kata Aluan Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Jika anda mempunyai pelayan RDP atau Citrix, Daftar Masuk Jauh benarkan " #~ "anda jalani aplikasi dari pelayan tersebut." #~ msgid "Email:" #~ msgstr "Emel:" #~ msgid "Logging in..." #~ msgstr "Mendaftar masuk..." #~ msgid "Enter username" #~ msgstr "Masukkan nama pengguna" #~ msgid "Enter password" #~ msgstr "Masukkan kata laluan" #~ msgid "_Back" #~ msgstr "_Undur" #~ msgid "Favorite Color (blue):" #~ msgstr "Warna Kegemaran (biru):" arctica-greeter-0.99.1.5/po/my.po0000644000000000000000000002265614007200004013305 0ustar # Burmese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-07-31 04:41+0000\n" "Last-Translator: Sithu Aung \n" "Language-Team: Burmese \n" "Language: my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s အတွက် စကားဝှက် ရိုက်ထည့်ပါ" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "စကားဝှက်:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "အသုံးပြုသူအမည်:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "စကားဝှက် မှားနေပါသည် ကျေးဇူးပြု၍ ထပ်မံကြိုးစားပါ။" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "ခွင့်ပြုချက် ရယူနိုင်ခြင်းမရှိပါ။" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "ဆက်ရှင် စတင်ခြင်း မအောင်မြင်ပါ" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "အလုပ် လုပ်နေသည်…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "ဝင်ရန် မျက်နှာပြင်" #: ../src/main-window.vala:119 msgid "Back" msgstr "နောက်သို့" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "လက်ကွက်ဖော်ပြ ဖန်သားပြင်" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ပုံကြီးချဲ့ကြည့်ရန်" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "စကားလုံးပြ ဖန်သားပြင်" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Session များ ရွေးချယ်ရန်" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "desktop ပုံစံရွေးရန်" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "လုံးဝ ပိတ်မည်" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "ဆိုင်းငံ့ထားမည်" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "လက်ရှိ အခြေအနေတိုင်းမှတ်သား၍ အပြီးထွက်မည်" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "အစမှ ပြန်ဖွင့်မည်" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (မူလ)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "အမိန့်ပေး စာရင်း အပြည့်အစုံမြင်ရရန် '%s--help' ဖြင့် ခိုင်းပါ" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "ဧည့်သည်သုံး Session" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "ကျေးဇူးပြုပြီး ပြည့်စုံသော အီးမေးလိပ်စာကိုရိုက်ထည့်ပါ" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "အီးမေးလ်လိပ်စာ (သို့) စကားဝှက် မမှန်ကန်ပါ" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "အကယ်၍ သင့်၌ RDP ဆာဗာ (သို့) Citrix ဆာဗာ များ၏ အကောင့် ရှိလျှင် ၎င်းဆာဗာများမှ " "အပ္ပလီကေးရှင်းများကို အဝေးမှ အကောင့်ဖွင့်၍ အလုပ်လုပ်စေနိုင်သည်။" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "အကောင့် ဖွင့် ခြင်း ...." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "ဤဝန်ဆောင်မှုစနစ်အားအသုံးပြုရန် သင့်ထံ၌ Ubuntu အဝေးမှ စနစ်တွင်းဝင်၍ရသည့် အကောင့် ရှိရန် လိုအပ်သည်။ သင်သည် " "ယခု အကောင့်သစ် ဖွင့်လိုပါသလား ?" #: ../src/user-list.vala:563 msgid "OK" msgstr "အိုကေ" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "ဤဝန်ဆောင်မှုစနစ်အားအသုံးပြုရန် သင့်ထံ၌ Ubuntu အဝေးမှ စနစ်တွင်းဝင်၍ရသည့် အကောင့် ရှိရန် လိုအပ်သည်။ " "အကောင့်အသစ် ဖွင့်ရန် uccs.canonical.com သို့ သွားပါ။" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "ဤဝန်ဆောင်မှုစနစ်အားအသုံးပြုရန် သင့်ထံ၌ Ubuntu အဝေးမှ စနစ်တွင်းဝင်၍ရသည့် အကောင့် ရှိရန် လိုအပ်သည်။ သင်သည် " "ယခု အကောင့်သစ် ဖွင့်လိုပါသလား ?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "ဆာဗာအမျိုးအစားကိုမထောက်ပံ့ပါ" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "ဧည့်သည်သုံး Session" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ဒိုမိန်း -" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "ဝင်ရန်" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s အနေဖြင့် စနစ်တွင်းသို့ ဝင်သည်။" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ထပ်ကြိုးစားပါ" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s ကဲ့သို့ ပြန်ကြိုးစားမည်" #: ../src/user-list.vala:882 msgid "Login" msgstr "ဝင်ရန်" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "ဧည့်သည်သုံး Session" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "Arctica Greeter" #, fuzzy #~ msgid "Email:" #~ msgstr "အီးမေးလ်လိပ်စာ -" #~ msgid "_Back" #~ msgstr "_Bနောက်သို့" #~ msgid "Favorite Color (blue):" #~ msgstr "အကြိုက်နှစ်သက်ဆုံးအရောင် (အပြာရောင်) −" arctica-greeter-0.99.1.5/po/nb.po0000644000000000000000000001713214007200004013250 0ustar # Norwegian Bokmal translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-08-28 16:28+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Skriv inn passord for %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Passord:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Brukernavn:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Feil passord. Prøv igjen" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Klarte ikke å autentisere" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Klarte ikke å starte økt" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Logger inn …" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Innloggingsskjerm" #: ../src/main-window.vala:119 msgid "Back" msgstr "Tilbake" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Skjermtastatur" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Høy kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Skjermleser" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Øktvalg" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Velg skrivebordsmiljø" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Ha det bra. Vil du …" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Slå av" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Er du sikker på at du vil slå av datamaskinen?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Andre brukere er logget inn på denne datamaskinen. Hvis du slår av nå, blir " "også disse brukerne logget ut." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Hvilemodus" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Dvalemodus" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Start på nytt" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (standard)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Vis utgivelsesversjon" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Kjør i testmodus" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica velkomstskjerm" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Kjør «%s --help» for å se en liste over tilgjengelige kommandolinjevalg." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gjesteøkt" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Skriv inn en fullstendig e-postadresse" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Feil e-postadresse eller passord" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Hvis du har en konto på en RDP- eller X2Go-tjener, kan du kjøre programmer " "derfra med «Remote Login»." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Avbryt" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Sett opp …" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Du trenger en fjerninnloggingskonto for å bruke denne tjenesten. Vil du lage " "en konto nå?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Du trenger en fjerninnloggingskonto for å bruke denne tjenesten. Besøk %s " "for å forespørre konto." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Du trenger en fjerninnloggingskonto for å bruke denne tjenesten. Spør " "administratoren for siden om detaljer." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tjenertypen støttes ikke." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "x2Go-økt:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domene:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Konto-ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Logg inn" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Logg inn som %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Prøv igjen" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Prøv igjen som %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Innloggingsnavn" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Midlertidig gjesteøkt" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "All data opprettet under denne gjesteøkta vil bli slettet\n" "når du logger ut, og innstillinger vil tilbakestilles til forvalg.\n" "Flytt filer til et eksternt lagringsmedium, for eksempel en\n" "USB-minnepinne, hvis du ikke vil at det skal gå tapt." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Et annet alternativ er å lagre filer i\n" "/var/guest-data -mappen." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica-velkomstskjerm" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Hvis du har en konto på en RDP- eller Citrix-tjener, kan du kjøre " #~ "programmer fra denne med «Remote Login»." #~ msgid "Email:" #~ msgstr "E-postadresse:" #~ msgid "Guest" #~ msgstr "Gjest" #~ msgid "_Back" #~ msgstr "_Tilbake" #~ msgid "Favorite Color (blue):" #~ msgstr "Favorittfarge (blå):" #~ msgid "Logging in..." #~ msgstr "Logger inn …" arctica-greeter-0.99.1.5/po/ne.po0000644000000000000000000001445314007200004013256 0ustar # Nepali translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-04-03 18:31+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Nepali \n" "Language: ne\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s को लागि पासवर्ड प्रविष्ट गर्नुहोस्" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "पासवर्ड:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "प्रयोगकर्तानाम:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "अवैध पासवर्ड, कृपया फेरि प्रयास गर्नुहोस्" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "प्रमाणीकरण गर्न असफल भयो" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "सत्र सुरू गर्न असफल भयो" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "लग इन गर्दै …" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "लग इन स्क्रिन" #: ../src/main-window.vala:119 msgid "Back" msgstr "पछाडि" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "अनस्क्रिन किबोर्ड" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "उच्च कन्ट्रास्ट" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "स्क्रिन रिडर" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "सत्र विकल्पहरू" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "डेस्कटप वातावरण चयन गर्नुहोस्" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "फेरिभेटौँला, के तपाईँ …" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "बन्द गर्नुहोस्" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/nl.po0000644000000000000000000001714414007200004013265 0ustar # Dutch translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-10-11 12:51+0000\n" "Last-Translator: Jennifer \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Wachtwoord voor %s invoeren" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Wachtwoord:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Gebruikersnaam:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ongeldig wachtwoord, probeer opnieuw" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Authenticatie mislukt" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Sessie starten mislukt" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Aanmelden…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Aanmeldscherm" #: ../src/main-window.vala:119 msgid "Back" msgstr "Terug" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Schermtoetsenbord" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Hoog contrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Schermlezer" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sessie-eigenschappen" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Bureaubladomgeving selecteren" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Tot ziens. Wilt u misschien…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Afsluiten" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Weet u zeker dat u de computer wilt afsluiten?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Er zijn thans andere gebruikers aangemeld op deze computer; nu afsluiten zal " "ook hun sessies sluiten." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Pauzestand" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Slaapstand" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Herstarten" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Standaard)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Uitgaveversie tonen" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "In testmodus uitvoeren" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica-aanmeldscherm (greeter)" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Voer ‘%s --help’ uit voor een lijst van alle opdrachtregelopties." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gastsessie" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Gelieve een volledig e-mailadres in te voeren" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Onjuist e-mailadres of wachtwoord" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Als u een account heeft op een RDP of X2Go server kunt u met Remote Login " "toepassingen vanaf die server draaien." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Annuleren" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Instellen…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "U heeft een Remote Login-account nodig om van deze dienst gebruik te maken. " "Wilt u nu een account instellen?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Ok" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "U heeft een Remote Login-account nodig om van deze dienst gebruik te maken. " "Bezoek %s om een account aan te maken." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "U heeft een Remote Login-account nodig om van deze dienst gebruik te maken. " "Informeer bij uw beheerder voor meer details." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Servertype wordt niet ondersteund." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go sessie:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domein:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Account ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Aanmelden" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Aanmelden als %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Opnieuw proberen" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Opnieuw proberen als %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Aanmelden" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Tijdelijke gast sessie" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Alle data van deze gast sessie zal worden verwijderd\n" "wanneer u uitlogt, instellingen worden teruggezet naar standaard.\n" "Aub bestanden opslaan op een externe harde schijf, bijvoorbeeld\n" "een USB stick, als u deze later opnieuw wilt benaderen." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Een ander alternatief is om bestanden op te slaan in\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica-aanmeldscherm" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Indien u een account op een RDP- of Citrixserver heeft, dan stelt Remote " #~ "Login u in staat toepassingen van die server te draaien." #, fuzzy #~ msgid "Email:" #~ msgstr "E-mailadres:" #~ msgid "_Back" #~ msgstr "_Terug" #~ msgid "Favorite Color (blue):" #~ msgstr "Favoriete kleur (blauw):" arctica-greeter-0.99.1.5/po/nn.po0000644000000000000000000001500314007200004013257 0ustar # Norwegian Nynorsk translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Vel skrivebordsmiljø" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Standard)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Oppgje ei fullstendig e-postadresse" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Feil e-postadresse eller passord" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Dersom du har ein brukarkonto på ein RDP-tenar, kan du bruke fjerninnlogging " "for å køyre program på tenaren." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Avbryt" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Set opp …" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Du treng ein konto for Ubuntu fjerninnlogging for å bruka denne tenesta. Vil " "du laga ein konto no?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Du treng ein konto for Ubuntu fjerninnlogging for å bruka denne tenesta. Gå " "til uccs.canonical.com for å lage ein konto." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Du treng ein konto for Ubuntu fjerninnlogging for å bruka denne tenesta. Vil " "du laga ein konto no?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tenartypen er ikkje støtta." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domene:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Logg inn" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Prøv på nytt" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Prøv på nytt som %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Dersom du har ein brukarkonto på ein RDP- eller Citrix-tenar, kan du " #~ "bruka fjerninnlogging for å køyre program på tenaren." #, fuzzy #~ msgid "Email:" #~ msgstr "E-postadresse:" #~ msgid "_Back" #~ msgstr "_Tilbake" #~ msgid "Favorite Color (blue):" #~ msgstr "Favorittfarge (blå):" arctica-greeter-0.99.1.5/po/oc.po0000644000000000000000000001767214007200004013263 0ustar # Occitan (post 1500) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-08-30 21:36+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.2.1-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Picatz lo senhal per %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Senhal :" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nom d'utilizaire :" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Senhal invalid, ensajatz tornarmai" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Fracàs de l'autentificacion" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "La sesilha a pas pogut s'aviar" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "En cors de connexion…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Fenèstra de connexion" #: ../src/main-window.vala:119 msgid "Back" msgstr "En arrièr" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Clavièr virtual" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contraste elevat" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Lector d'ecran" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcions de la sesilha" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Seleccionar l'environament de burèu" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Al reveire. Volètz…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Atudar" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Sètz segur que volètz arrestar l'ordenador ?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "D'autres utilizaires son actualament connectats a aqueste ordenador, atudar " "ara tamparà tanben las autras sessions." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Metre en velha" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Ivernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Tornar aviar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Per defaut)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Aficha la version del logicial" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Aviar en mòde tèst" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Ecran de benvenguda d'Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Executatz « %s --help » per veire la lista completa d’opcions disponiblas en " "linha de comanda." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesilha convidat" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Mercé de picar una adreça de corrièr electronic completa" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Adreça de corrièr electronic o senhal invalid" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "S’avètz un compte sus un servidor RDP o X2Go, la « Connexion distanta » vos " "permet d’aviar d’aplicacions a partir d’aqueste servidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Abandonar" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configuracion…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Avètz besonh d’un compte d’accès a distància Ubuntu per utilizar aqueste " "servici. Volètz crear un compte ara ?" #: ../src/user-list.vala:563 msgid "OK" msgstr "D'acòrdi" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Avètz besonh d’un compte d’accès a distància Ubuntu per utilizar aqueste " "servici. Consultatz %s per demandar un compte." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Avètz besonh d’un compte d’accès a distància Ubuntu per utilizar aqueste " "servici. Contactatz l’administrator del site per mai de detalhs." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tipe de servidor pas pres en carga." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Session X2Go :" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domeni :" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Id del compte" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Se connectar" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Se connectar en tant que %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Tornar ensajar" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Tornar ensajar en tant que %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Identificant" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Session temporària convidat" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Totas las donadas creadas pendent aquesta session convida seràn escafadas\n" "quand vos desconnectaretz e los paramètres restablits.\n" "Enregistratz los fichièrs sus un periferic extèrn, per exemple\n" "una clau USB, se volètz i accedir mai tard." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Una autra alternativa es d’enregistrar los fichièrs sul\n" "dossièr /var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Aculhença d’Artica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "S'avètz un compte sus un servidor RDP o Citrix, vòstre compte a distància " #~ "vos permet d'aviar d'aplicacions dempuèi aqueste servidor." #, fuzzy #~ msgid "Email:" #~ msgstr "Adreça electronica :" #~ msgid "_Back" #~ msgstr "En a_rrièr" #~ msgid "Favorite Color (blue):" #~ msgstr "Color preferida (blau) :" arctica-greeter-0.99.1.5/po/os.po0000644000000000000000000001754414007200004013301 0ustar # Ossetian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-05-14 18:29+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ossetian \n" "Language: os\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Ныффыс %s`ы пароль" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Пароль:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Ном:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ӕвзӕр пароль, ногӕй бафӕлвар" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Нӕ рауад бахизын" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Бахизыны экран" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Экраны клавиатурӕ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Стыр контраст" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Экранӕй фӕрсын" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Сеансы миниуджытӕ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Куыстуаты алфамбылай равзарын" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Разӕвӕрд)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Рауагъды верси равдисын" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Тест уагы суадзынӕн" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Арфӕ" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Ныффыс '%s --help' цӕмӕй фенай командон хаххы алкӕцы миниуӕг дӕр." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Уазӕджы сеанс" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Дӕ хорзӕхӕй, ӕнӕхъӕн e-mail адрис бафысс" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Ӕнӕраст e-mail кӕнӕ пароль" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Кӕд дын RDP серверы аккаунт ис, уӕд дын Дардӕй Бахизын фадат раддзӕнис уыцы " "серверы программӕтӕ иу кӕнын." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Ныууадзын" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Саразын..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Дӕу хъӕуы Убунтумӕ Дардӕй Бахизӕн аккаунт, цӕмӕй ацы сервисӕй спайда кӕнай. " "Фӕнды дӕ еныр аккаунт саразын?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Хорз" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Дӕу хъӕуы Убунтумӕ Дардӕй Бахизӕн аккаунт, цӕмӕй ацы сервисӕй спайда кӕнай. " "Бацу uccs.canonical.com-мӕ, аккаунт аразынӕн." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Дӕу хъӕуы Убунтумӕ Дардӕй Бахизӕн аккаунт, цӕмӕй ацы сервисӕй спайда кӕнай. " "Фӕнды дӕ еныр аккаунт саразын?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Ацы серверы хуыз нӕй гӕнӕн." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Уазӕджы сеанс" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Домен:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Бахизын" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Бахизын куыд %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Ногӕй" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Ногӕй куыд %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Бахизын" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Уазӕджы сеанс" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Арфӕ" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Кӕд дын ис RDP кӕнӕ Citrix серверы аккаунт, уӕд Дардӕй Бахизӕнӕй дӕ бон у " #~ "уыцы сервертӕй ӕфтуантӕ иу кӕнын." #, fuzzy #~ msgid "Email:" #~ msgstr "Email адрис:" #~ msgid "_Back" #~ msgstr "_Фӕстӕмӕ" #~ msgid "Enter username" #~ msgstr "Ныффыс ном" #~ msgid "Enter password" #~ msgstr "Ныффыс парол" #~ msgid "Logging in..." #~ msgstr "Хизӕм..." #~ msgid "Favorite Color (blue):" #~ msgstr "Уарзон хуыз (арвгъуыз):" arctica-greeter-0.99.1.5/po/pa.po0000644000000000000000000002267614007200004013262 0ustar # Punjabi translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-09-19 13:36+0000\n" "Last-Translator: Satnam S Virdi \n" "Language-Team: Punjabi \n" "Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s ਲਈ ਪਾਸਵਰਡ ਭਰੋ" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "ਪਾਸਵਰਡ:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ਵਰਤੋਂਕਾਰ-ਨਾਂ:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "ਪਾਸਵਰਡ ਗਲਤ ਹੈ, ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "ਪੁਸ਼ਟੀ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਰਹੇ" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "ਸੈਸ਼ਨ ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਰਹੇ" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "ਲਾਗਇਨ ਕਰ ਰਿਹਾ ਹੈ…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "ਲਾਗਇਨ ਸਕਰੀਨ" #: ../src/main-window.vala:119 msgid "Back" msgstr "ਪਿੱਛੇ ਜਾਓ" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "ਆਨਸਕਰੀਨ ਕੀਬੋਰਡ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ਵੱਧ ਕਨਟਰਾਸਟ" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "ਸਕਰੀਨ ਪਾਠਕ" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "ਸ਼ੈਸ਼ਨ ਦੀਆਂ ਚੋਣਾਂ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "ਡੈਸਕਟਾਪ ਦਾ ਮਹੌਲ ਚੁਣੋ" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "ਅਲਵਿਦਾ। ਕੀ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ ਕਿ…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "ਬੰਦ ਕਰੋ" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "ਕੀ ਤੁਸੀਂ ਪੱਕਾ ਕੰਪਿਊਟਰ ਨੂੰ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "ਹੋਰ ਯੂਜ਼ਰ ਮੌਜੂਦਾ ਤੌਰ ਤੇ ਇਸ ਕੰਪਿਊਟਰ ਤੇ ਲਾਗਇਨ ਹਨ, ਹੁਣੇ ਹੀ ਬੰਦ ਕਰਨਾ ਇਹਨਾਂ ਹੋਰ ਸੈਸ਼ਨਾਂ ਨੂੰ ਵੀ ਬੰਦ ਕਰ " "ਦੇਵੇਗਾ।" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "ਮੁੱਅਤਲ" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "ਹਾਈਬਰਨੇਟ" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "ਮੁੜ-ਚਾਲੂ ਕਰੋ" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (ਮੂਲ)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "ਰੀਲਿਜ਼ ਵਰਜਨ ਵੇਖਾਓ" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "ਜਾਂਚ ਮੋਡ ਵਿੱਚ ਚਲਾਓ" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- ਯੂਨਟੀ ਸਵਾਗਤੀ" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "ਪੂਰੀਆਂ ਉਪਲੱਬਧ ਕਮਾਂਡ ਲਾਈਨ ਚੋਣਾਂ ਵੇਖਣ ਵਾਸਤੇ '%s --help' ਚਲਾਓ।" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "ਮਹਿਮਾਨ ਸੈਸ਼ਨ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "ਕਿਰਪਾ ਕਰਕੇ ਪੂਰਾ ਈ-ਮੇਲ ਪਤਾ ਭਰੋ" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "ਈ-ਮੇਲ ਪਤਾ ਜਾਂ ਪਾਸਵਰਡ ਗਲਤ ਹੈ" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "ਜੇਕਰ ਤੁਹਾਡੇ ਕੋਲ ਇੱਕ RDP ਸਰਵਰ ਖਾਤਾ ਹੈ, ਰੀਮੋਟ ਲਾਗਇਨ ਤੁਹਾਨੂੰ ਉਸ ਸਰਵਰ ਤੋਂ ਐਪਲੀਕੇਸ਼ਨਾਂ ਚਲਾਉਣ " "ਦੇਵੇਗਾ।" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "ਸੈੱਟ ਕਰੋ..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "ਤੁਹਾਨੂੰ ਇਸ ਸਰਵਿਸ ਦੀ ਵਰਤੋਂ ਕਰਨ ਲਈ ਇੱਕ ਉਬੰਤੂ ਰੀਮੋਟ ਲਾਗਇਨ ਖਾਤੇ ਦੀ ਲੋੜ ਹੈ। ਕਿ ਤੁਸੀਂ ਹੁਣੇ ਹੀ ਇੱਕ " "ਖਾਤਾ ਸੈੱਟ ਕਰਨਾ ਚਾਹੋਗੇ?" #: ../src/user-list.vala:563 msgid "OK" msgstr "ਠੀਕ ਹੈ" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "ਤੁਹਾਨੂੰ ਇਸ ਸਰਵਿਸ ਨੂੰ ਵਰਤਣ ਲਈ ਇੱਕ ਉਬੰਤੂ ਰੀਮੋਟ ਲਾਗਇਨ ਖਾਤੇ ਦੀ ਲੋੜ ਹੈ। ਇੱਕ ਖਾਤਾ ਬਣਾਉਣ ਲਈ uccs." "canonical.com ਤੇ ਜਾਓ।" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "ਤੁਹਾਨੂੰ ਇਸ ਸਰਵਿਸ ਦੀ ਵਰਤੋਂ ਕਰਨ ਲਈ ਇੱਕ ਉਬੰਤੂ ਰੀਮੋਟ ਲਾਗਇਨ ਖਾਤੇ ਦੀ ਲੋੜ ਹੈ। ਕਿ ਤੁਸੀਂ ਹੁਣੇ ਹੀ ਇੱਕ " "ਖਾਤਾ ਸੈੱਟ ਕਰਨਾ ਚਾਹੋਗੇ?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "ਸਰਵਰ ਟਾਈਪ ਸਹਿਯੋਗ ਨਹੀਂ।" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "ਮਹਿਮਾਨ ਸ਼ੈਸ਼ਨ" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ਡੋਮੇਨ:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ਖਾਤੇ ਦੀ ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "ਲਾਗ ਇਨ" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s ਵਜੋਂ ਲਾਗਇਨ" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ਮੁੜ-ਕੋਸ਼ਿਸ਼" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s ਦੇ ਤੌਰ ਤੇ ਮੁੜ ਕੋਸ਼ਿਸ" #: ../src/user-list.vala:882 msgid "Login" msgstr "ਲਾਗ-ਇਨ" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "ਮਹਿਮਾਨ ਸ਼ੈਸ਼ਨ" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- ਯੂਨਟੀ ਸਵਾਗਤੀ" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "ਜੇਕਰ ਤੁਹਾਡੇ ਕੋਲ ਇੱਕ RDP ਜਾਂ Citrix ਸਰਵਰ ਖਾਤਾ ਹੈ, ਰੀਮੋਟ ਲਾਗਇਨ ਤੁਹਾਨੂੰ ਉਸ ਸਰਵਰ ਤੋਂ " #~ "ਐਪਲੀਕੇਸ਼ਨਾਂ ਚਲਾਉਣ ਦੇਵੇਗਾ।" #, fuzzy #~ msgid "Email:" #~ msgstr "ਈਮੇਲ ਪਤਾ:" #~ msgid "_Back" #~ msgstr "ਪਿੱਛੇ(_B)" #~ msgid "Enter username" #~ msgstr "ਯੂਜ਼ਰ-ਨਾਂ ਦਿਓ" #~ msgid "Other..." #~ msgstr "ਹੋਰ..." #~ msgid "Enter password" #~ msgstr "ਪਾਸਵਰਡ ਦਿਓ" #~ msgid "Logging in..." #~ msgstr "ਲਾਗਇਨ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." arctica-greeter-0.99.1.5/po/pl.po0000644000000000000000000001741714007200004013272 0ustar # Polish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-11-25 07:28+0000\n" "Last-Translator: Jakub Fabijan \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.4-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Wprowadź hasło dla %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Hasło:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nazwa użytkownika:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Nieprawidłowe hasło, proszę spróbować ponownie" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Nie udało się uwierzytelnić" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Nie udało się uruchomić sesji" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Logowanie…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ekran logowania" #: ../src/main-window.vala:119 msgid "Back" msgstr "Cofnij" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Klawiatura ekranowa" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Wysoki kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Czytnik ekranowy" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opcje sesji" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Proszę wybrać środowisko graficzne" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Do zobaczenia. Czy chcesz…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Wyłącz" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Czy na pewno chcesz wyłączyć komputer?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Do tego komputera są zalogowani inni użytkownicy. Wyłączenie systemu " "spowoduje zakończenie ich sesji." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Uśpij" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernacja" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Uruchom ponownie" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Domyślne)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Pokaż informacje o wersji" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Uruchom w trybie testowym" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Ekran logowania Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Proszę wprowadzić '%s --help', aby zobaczyć pełną listę dostępnych opcji." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gość" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Proszę wprowadzić pełny adres e-mail" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Nieprawidłowy adres e-mail lub hasło" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Jeśli masz konto na serwerze RDP lub X2Go, zdalne logowanie umożliwi Ci " "uruchamianie programów zainstalowanych na tym serwerze." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Anuluj" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Ustaw…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Do korzystania z tej usługi potrzebne jest konto logowania zdalnego. Czy " "chcesz teraz założyć konto?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Do korzystania z tej usługi potrzebne jest konto logowania zdalnego. Odwiedź " "stronę %s aby je założyć." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Do korzystania z tej usługi potrzebne jest konto logowania zdalnego. Poproś " "administratora witryny o szczegóły." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Nieobsługiwany typ serwera." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sesja X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domena:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID konta" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Zaloguj" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Zaloguj jako użytkownik %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Ponów" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Ponów jako %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Zaloguj" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Tymczasowa sesja gościa" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Wszystkie dane utworzone podczas tej sesji gościa zostaną usunięte\n" "po wylogowaniu się ustawienia zostaną przywrócone do wartości domyślnych.\n" "Proszę zapisać pliki na jakimś urządzeniu zewnętrznym, na przykład\n" "pamięć USB, jeśli chcesz uzyskać do niej dostęp później." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Inną alternatywą jest zapisanie plików w\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Ekran logowania Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Zdalne logowanie pozwala uruchamiać programy za pośrednictwem kont na " #~ "serwerach RDP lub Citrix." #, fuzzy #~ msgid "Email:" #~ msgstr "Adres e-mail:" #~ msgid "Logging in..." #~ msgstr "Logowanie..." #~ msgid "_Back" #~ msgstr "_Wstecz" #~ msgid "Favorite Color (blue):" #~ msgstr "Ulubiony kolor (niebieski):" arctica-greeter-0.99.1.5/po/POTFILES.in0000644000000000000000000000130714007200004014063 0ustar # List of source files containing translatable strings. # Please keep this file sorted alphabetically. src/animate-timer.vala src/background.vala src/cached-image.vala src/dash-box.vala src/dash-button.vala src/dash-entry.vala src/fadable-box.vala src/fadable.vala src/fading-label.vala src/flat-button.vala src/greeter-list.vala src/list-stack.vala src/main-window.vala src/menubar.vala src/menu.vala src/prompt-box.vala src/session-list.vala src/settings-daemon.vala src/settings.vala src/shutdown-dialog.vala src/toggle-box.vala src/arctica-greeter.vala src/user-list.vala src/user-prompt-box.vala arctica-greeter-guest-account-script.in arctica-greeter-guest-session-auto.sh data/arctica-greeter.desktop.in arctica-greeter-0.99.1.5/po/POTFILES.skip0000644000000000000000000000107014007200004014420 0ustar src/animate-timer.c src/background.c src/cached-image.c src/dash-box.c src/dash-button.c src/dash-entry.c src/fadable-box.c src/fadable.c src/fading-label.c src/flat-button.c src/greeter-list.c src/list-stack.c src/main-window.c src/menubar.c src/menu.c src/prompt-box.c src/session-list.c src/settings-daemon.c src/settings.c src/shutdown-dialog.c src/toggle-box.c src/arctica-greeter.c src/user-list.c src/user-prompt-box.c tests/greeter-list.c tests/main-window.c tests/prompt-box.c tests/session-list.c tests/shutdown-dialog.c tests/toggle-box.c tests/user-list.c arctica-greeter-0.99.1.5/po/ps.po0000644000000000000000000001257614007200004013302 0ustar # Pashto translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Pashto \n" "Language: ps\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/pt_BR.po0000644000000000000000000001742614007200004013665 0ustar # Brazilian Portuguese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-04-20 21:32+0000\n" "Last-Translator: Rui Mendes \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.6\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Informe a senha para %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Senha:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nome de usuário:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Senha inválida, por favor tente novamente" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Falha ao autenticar" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Falha ao iniciar a sessão" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Inicializando…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Tela de início de sessão" #: ../src/main-window.vala:119 msgid "Back" msgstr "Voltar" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Teclado na tela" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Alto contraste" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Leitor de tela" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opções de sessão" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Selecionar ambiente da área de trabalho" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Adeus. Você gostaria de…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Desligar" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Você tem certeza que deseja desligar o computador?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Outros usuários estão atualmente logados neste computador, desligar agora " "irá também fechar outras sessões." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspender" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reiniciar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (padrão)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Mostrar versão do lançamento" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Executar em modo de teste" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Tela de boas-vindas do Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Execute '%s --help' para ver a lista completa de opções disponíveis para " "linha de comando." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sessão convidado" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Por favor, informe um endereço de e-mail completo" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Senha ou endereço de e-mail incorreto" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Se você tem uma conta em um servidor RDP ou um servidor X2Go, o login remoto " "lhe permite executar aplicativos nesse servidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancelar" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configurar…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Você precisa de uma conta de login remoto para usar esse serviço. Gostaria " "de configurar uma agora?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Você precisa de uma conta de login remoto para usar esse serviço. Visite %s " "para solicitar uma conta." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Você precisa de uma conta de login remoto para usar esse serviço. Pergunte " "ao administrador do site para mais detalhes." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tipo de servidor não suportado." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sessão X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domínio:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID da conta" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Iniciar sessão" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Iniciar sessão como %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Repetir" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Tentar novamente como %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Iniciar sessão" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sessão de convidado temporário" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Todo dado criado durante essa sessão de convidado será deletada\n" "quando você deslogar, e as configurações serão resetadas.\n" "Por favor salve os arquivos em dispositivo externo, para um\n" "USB, se você quiser acessar os dados depois." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Como alternativa, pode salvar os arquivos na pasta\n" "/var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Bem-vindo ao Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Se você possui uma conta em um servidor RDP ou Citrix, o Acesso Remoto " #~ "permite a você executar aplicativos daquele servidor." #~ msgid "Email:" #~ msgstr "E-mail:" #~ msgid "Logging in..." #~ msgstr "Iniciando a sessão..." #~ msgid "_Back" #~ msgstr "_Voltar" #~ msgid "Favorite Color (blue):" #~ msgstr "Cor favorita (azul):" arctica-greeter-0.99.1.5/po/pt.po0000644000000000000000000001745114007200004013300 0ustar # Portuguese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-09-14 17:36+0000\n" "Last-Translator: ssantos \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Introduza a palavra-passe para %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Palavra-passe:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nome de utilizador:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Palavra-passe inválida, tente novamente" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "A autenticação falhou" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Falha ao iniciar a sessão" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "A iniciar a sessão…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ecrã de Início de Sessão" #: ../src/main-window.vala:119 msgid "Back" msgstr "Retroceder" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Teclado no ecrã" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Alto contraste" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Leitor de Ecrã" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Opções de Sessão" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Selecione o ambiente de trabalho" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Adeus. Gostaria de…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Encerrar" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Tem a certeza que deseja encerrar o computador?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Existem outros utilizadores com sessão iniciada neste computador, se o " "desligar agora irá fechar estas outras sessões." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspender" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernar" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reiniciar" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (predefinido)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Mostrar versão de lançamento" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Executar no modo de teste" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Bem-vindo ao Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Execute '%s --help' para ver uma lista completa das opções de linha de " "comandos disponíveis." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sessão de Convidado" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Por favor, insira um endereço de e-mail completo" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Palavra-passe ou endereço de e-mail incorreto" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Se tem uma conta num servidor RDP ou num servidor X2Go, a 'Autenticação " "Remota' permite-lhe executar aplicações desse servidor." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cancelar" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configurar…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Precisa de uma conta de 'Acesso Remoto' para utilizar este serviço. Gostaria " "de configurar agora uma conta?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Aceitar" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Precisa de uma conta de 'Acesso Remoto' para utilizar este serviço. Visite %" "s para solicitar uma conta." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Precisa de uma conta de 'Acesso Remoto'para utilizar este serviço. Por " "favor, peça detalhes ao administrador do seu site." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tipo de servidor não suportado." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sessão X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domínio:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Id. da Conta" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Iniciar Sessão" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Iniciar sessão como %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Repetir" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Repetir como %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Iniciar sessão" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sessão de Convidado Temporária" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Todos os dados criados durante esta sessão de convidado\n" "serão eliminados quando terminar a sessão e as definições\n" "serão redefinidas para as predefinições. Por favor, grave\n" "os ficheiros num aparelho externo, por exemplo, uma\n" "pen USB, se pretender aceder aos mesmos mais tarde." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Como alternativa, pode guardar os ficheiros\n" "na pasta /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Bem-vindo ao Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Se tem uma conta num servidor RDP ou Citrix, o login remoto permite-lhe " #~ "executar aplicações desse servidor." #, fuzzy #~ msgid "Email:" #~ msgstr "Endereço de email:" #~ msgid "_Back" #~ msgstr "_Retroceder" #~ msgid "Favorite Color (blue):" #~ msgstr "Cor Favorita (azul):" arctica-greeter-0.99.1.5/po/ro.po0000644000000000000000000001664714007200004013303 0ustar # Romanian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-03-24 12:46+0000\n" "Last-Translator: Buescu Bogdan \n" "Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Introduceți parola pentru %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Parola:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nume de utilizator:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Parola invalidă, încearcă din nou" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Autentificare esuata" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Eșec la pornirea sesiunii" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Autentificare în curs…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Autentificare" #: ../src/main-window.vala:119 msgid "Back" msgstr "Înapoi" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Tastatura virtuala" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contrast mare" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Optiuni sesiune" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Alege mediul desktop" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "La revedere. Ați dori să…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Oprire" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Sigur doriți să închideți calculatorul?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Pe acest calculator sunt autentificați și alți utilizatori, oprirea " "calculatorului va închide și sesiunile acestora." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Suspendare" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernare" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Repornire" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Implicit)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Arata versiune" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Ruleaza in mod test" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Rulează '%s --help' pentru a vedea lista completa de opțiuni disponibile " "pentru comanda." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesiune neautentificata" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Introduceți o adresă de email completă" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Adresă de e-mail sau parolă incorectă" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Dacă aveți un cont pe un server RDP sau X2Go, Autentificare la Distanță vă " "permite să rulați aplicații de pe serverul respectiv." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Anulare" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Configurare…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Pentru a utiliza acest serviciu aveți nevoie de un cont de Conectare la " "Distanta. Doriți să creați un cont acum?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Pentru a utiliza acest serviciu aveți nevoie de un cont Autentificare la " "Distanță. Pentru a crea un cont vizitați %s." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Pentru a utiliza acest serviciu aveți nevoie de un cont de Conectare la " "Distanță. Va rugam sa cereți detalii de la administratorul site-ului." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Tipul de server nu este suportat." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Sesiune X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domeniu:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID utilizator" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Autentificare" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Autentificare ca %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Încearcă din nou" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Reîncearcă ca %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Autentificare" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sesiune temporara vizitator" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Dacă aveți un cont pe un server RDP sau Citrix, Autentificare la Distanță " #~ "vă permite să rulați aplicații de pe serverul respectiv." #~ msgid "Email:" #~ msgstr "E-mail:" #~ msgid "_Back" #~ msgstr "Îna_poi" #~ msgid "Favorite Color (blue):" #~ msgstr "Culoarea preferată (albastru):" arctica-greeter-0.99.1.5/po/ru.po0000644000000000000000000002262214007200004013277 0ustar # Russian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-09-29 12:55+0000\n" "Last-Translator: Juri Grabowski \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Введите пароль для %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Пароль:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Имя пользователя:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Неправильный пароль, попробуйте ещё раз" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Не удалось выполнить вход" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Не удалось запустить сеанс" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Вход в систему…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Экран входа в систему" #: ../src/main-window.vala:119 msgid "Back" msgstr "Назад" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Экранная клавиатура" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Высокая контрастность" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Экранный диктор" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Параметры сеанса" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Выберите окружение" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "До свидания. Вы хотите…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Завершить работу" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Вы действительно хотите выключить компьютер?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "В настоящее время на данном компьютере запущены сеансы других пользователей, " "выключение приведёт к завершению всех сеансов." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Перейти в режим ожидания" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Перейти в спящий режим" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Перезагрузить компьютер" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (по умолчанию)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Показать версию выпуска" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Запуск в режиме тестирования" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "— Экран приветствия Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Выполните «%s --help» для просмотра полного списка доступных параметров " "командной строки." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Гостевой сеанс" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Укажите полный адрес электронной почты" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Неправильный адрес электронной почты или пароль" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Если у вас есть учётная запись на сервере RDP или X2Go, удаленный вход " "позволит запустить приложения, расположенные на том сервере." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Отменить" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Настройка…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Для пользования этим сервисом вам нужна учётная запись удалённого входа в " "систему. Вы хотите настроить её?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Для пользования этим сервисом вам нужна учётная запись удалённого входа в " "систему. Чтобы настроить её, посетите сайт %s." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Для пользования этим сервисом вам нужна учётная запись удалённого входа в " "систему. Подробности можно уточнить у вашего администратора." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Этот тип сервера не поддерживается." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Сеанс X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Домен:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID учетной записи" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Войти" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Войти от имени %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Повтор" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Повторить как %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Войти" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Временный гостевой сеанс" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Все данные, созданные в данном сеансе, будут утеряны\n" "после выхода, а настройки сброшены. Сохраняйте файлы\n" "на внешние устройства, например USB-накопители,\n" "чтобы использовать их в дальнейшем." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Также файлы можно сохранить в каталоге\n" "/var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Экран приветствия Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Если у вас есть учётная запись на сервере RDP или Citrix, Ubuntu Remote " #~ "Login позволит вам запускать приложения с этого сервера." #, fuzzy #~ msgid "Email:" #~ msgstr "Адрес электронной почты:" #~ msgid "Logging in..." #~ msgstr "Выполняется вход..." #~ msgid "_Back" #~ msgstr "_Назад" #~ msgid "Favorite Color (blue):" #~ msgstr "Предпочитаемый цвет (голубой):" arctica-greeter-0.99.1.5/po/sa.po0000644000000000000000000001570014007200004013253 0ustar # Sanskrit translation for arctica-greeter # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2014-06-01 10:05+0000\n" "Last-Translator: उज्ज्वल राजपूत \n" "Language-Team: Sanskrit \n" "Language: sa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s इत्यस्मै कूटसङ्केतः प्रवेश्यताम्" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "कूटसङ्केतः-" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "उपयोक्तृनाम-" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "अपुष्टः सङ्केतः" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "वैफल्यं प्रमाणप्राप्तौ" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "वैफल्यं सत्रारम्भे" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "संप्रवेशो भवति" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "नामाभिलेखनपटलः" #: ../src/main-window.vala:119 msgid "Back" msgstr "प्रतिगम्यताम्" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "पटलस्थं कीलफलकम्" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "सत्रसम्बन्धिनो विकल्पाः" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "किं क्रियेत..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "पिधीयताम्" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "अपि सङ्गणकं पिधातुं निश्चयः कृतः?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "लम्ब्यताम्" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "पुनःप्रवर्त्यताम्" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (औत्सर्गिकम्)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "दर्श्यतां विमोचनसंस्करणनाम" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "परीक्षणावस्थायां चाल्यताम्" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 #, fuzzy msgid "- Arctica Greeter" msgstr "-Unity अभिनन्दकः" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "अभ्यागतसत्रम्" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "निवर्त्यताम्" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "उदाह्रियताम्..." #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "अस्तु" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "वितरकप्रकारो न समर्थितः।" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "अभ्यागतसत्रम्" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "प्रविश्यताम्" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s-वत् प्रविश्यताम्" #: ../src/user-list.vala:842 msgid "Retry" msgstr "पुनर्यत्यताम्" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s-वत् पुनर्यत्यताम्" #: ../src/user-list.vala:882 msgid "Login" msgstr "प्रविश्यताम्" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "अभ्यागतसत्रम्" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "-Unity अभिनन्दकः" arctica-greeter-0.99.1.5/po/sc.po0000644000000000000000000001446014007200004013257 0ustar # Sardinian translation for arctica-greeter # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2013-02-27 22:16+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Sardinian \n" "Language: sc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Introdue sa crae pro %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Crae:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Nùmene" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Crae non bàlida, intenta·lu torra" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Errore a s'ora de s'autenticare" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ischermu de atzessu" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Tastiera in s'ischermu" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Contrastu elevadu" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Letore de ischermu" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Optziones de sa sessione" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Seletziona s'ambiente de su desktop" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (predeterminadu)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Mustra sa versione" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "Ritzevidore de Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sessione de Istràngiu" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Introdue un'indiritzu de curreu eletrònicu cumpletu" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Indiritzu email o password incurretos" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Si tenes unu contu in su Server RDP o Citrix, s'atzessu remotu ti permit de " "eseguire aplicatzione dae su server." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Cantzella" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "configura" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "Andat bene" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sessione de Istràngiu" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domìniu" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Cumentzare sa sessione" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Intrare comente %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "intena·lu torra" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Intenta·lu torra comente %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Intra" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sessione de Istràngiu" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "Ritzevidore de Arctica" #, fuzzy #~ msgid "Email:" #~ msgstr "indiritzu EMail" #~ msgid "Logging in..." #~ msgstr "Cumentzende sa sessione" #~ msgid "Favorite Color (blue):" #~ msgstr "Colore disigiadu (biaitu)" arctica-greeter-0.99.1.5/po/sd.po0000644000000000000000000001613614007200004013262 0ustar # Sindhi translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Sindhi \n" "Language: sd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "ناقص ڳجهو لفظ، ٻيهر ڪوشش ڪريو" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "تصديق ڪرڻ ۾ ناڪام" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "داخل ٿيندي..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "گهڻو چٽو" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "اجلاس جا اختيارات" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "ڊيسڪٽاپ جو ماحول چونڊيو" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (ڊيفالٽ)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "مڪمل ايميل پتو داخل ڪريو" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "غلط ايميل پتو يا ڳجهو لفظ" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "جيڪڏهن توهان جو ڪنهن RDP سرور تي کاتو آهي، ته ريموٽ لاگِن توهان کي انهيءَ سرور " "تان پروگرام هلائڻ ڏيندو." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "رد" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "جوڙيو..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "هن سهولت استعمال ڪرڻ لاءِ اوبنٽو ريموٽ لاگِن جو کاتو گهرجي. ڇا توهان اهو کاتو " "کولڻ چاهيو ٿا؟" #: ../src/user-list.vala:563 msgid "OK" msgstr "ٺيڪ" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "هي سهولت استعمال ڪرڻ لاءِ توهان کي اوبنٽو ريموٽ لاگِن جو اڪائونٽ گهرجي. اهڙو " "اڪائونٽ ٺاهڻ لاءِ uccs.canonical.com تي وڃو." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "هن سهولت استعمال ڪرڻ لاءِ اوبنٽو ريموٽ لاگِن جو کاتو گهرجي. ڇا توهان اهو کاتو " "کولڻ چاهيو ٿا؟" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "سرور جو قسم تصديق ٿيل ناهي" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "ڊومين:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "داخل ٿيو" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ٻيهر آزمايو" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s طور ٻيهر آزمايو" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "جيڪڏهن توهان جو ڪنهن RDP يا Citrix سرور تي کاتو آهي، ته ريموٽ لاگِن توهان " #~ "کي انهيءَ سرور تان پروگرام هلائڻ ڏيندو." #, fuzzy #~ msgid "Email:" #~ msgstr "ايميل پتو:" #~ msgid "_Back" #~ msgstr "_پوئتي" #~ msgid "Favorite Color (blue):" #~ msgstr "پسنديده رنگ (نيرو):" arctica-greeter-0.99.1.5/po/se.po0000644000000000000000000001307214007200004013257 0ustar # Northern Sami translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-07-31 00:32+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Beassansátni:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Geavaheaddjinamma:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Vuoje geahččalandoaibmanvuogis" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Gaskkalduhte" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Váldu:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Geahččal ođđasit" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Čále sisa" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #, fuzzy #~ msgid "Email:" #~ msgstr "E-boastačujuhus:" arctica-greeter-0.99.1.5/po/shn.po0000644000000000000000000001616114007200004013442 0ustar # Shan translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Shan \n" "Language: shn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "ပေႃ့သႂ်ႇ မၢႆလပ့် တွၼ်ႈတႃႇ %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "မၢႆလပ့်:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ၸိုဝ်ႈၽူႈၸႂ့်တိုဝ်း:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "မၢႆလပ့်ဢမ်ႇမႅၼ်ႈ၊ ၶတ်းၸႂ်တူၺ်းထႅင်ႈ" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "ၵၢၼ်ထတ်းသၢင်ႈတႃႇၵပ်းသိုပ်ႇ ဢမ်ႇၶႅမ့်လႅပ်ႈ" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "ၽိဝ်ၼႃႈ ၽွမ့်ၶဝ်ႈ" #: ../src/main-window.vala:119 msgid "Back" msgstr "ႁူၼ်လင်" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "လွၵ်းမိုဝ်းၽိဝ်ၼႃႈ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ႁႂ်ႈႁၼ်ၸႅင်ႈလႅင်းလီ" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "တႃႇလူ ၽိဝ်ၼႃႈ" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "ၵၼ်လိူၵ်ႈသၢင်ႈ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "ၵိုတ်းၸၢၵ်ႈ" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "ၵိုတ်းလိုဝ်ႈ" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "ၶွမ်းၼွၼ်း" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "ၼႄမၢႆသွႆ့ဢၼ်ပိုၼ်ဢွၵ်ႇဝႆ့" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "ပိုတ်ႇၸၢမ်းတူၺ်း" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "ပေႃ့ '%s--help' တွၼ်ႈတႃႇ တေလႆႈႁၼ် ၵၼ်လိူၵ်ႈသၢင်ႈ သဵၼ်ႈမၢႆ ၶေႃႈပူင်ဢၼ်ၸႂ့်လႆႈ" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "ၵၼ်တွၼ်ႈၶႅၵ်ႇ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "လူတ်းပႅတ်ႈ" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "တူၵ်းလူင်း" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "ၵၼ်တွၼ်ႈၶႅၵ်ႇ" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "ၽွမ့်ၶဝ်ႈ ၼင်ႇ %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ၶိုၼ်းၶတ်းၸႂ်" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "ၽွမ့်ၶဝ်ႈ" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "ၵၼ်တွၼ်ႈၶႅၵ်ႇ" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Greeter" #~ msgid "Other..." #~ msgstr "ၵၼ်တၢင်ႇၸိူဝ်း..." #~ msgid "Enter username" #~ msgstr "ပေႃ့သႂ်ႇ ၸိုဝ်ႈၽူႈၸႂ့်တိုဝ်း" #~ msgid "Enter password" #~ msgstr "ပေႃ့သႂ်ႇ မၢႆလပ့်" #~ msgid "Logging in..." #~ msgstr "တိုၵ့်ၽွမ့်ၶဝ်ႈယူႇ" arctica-greeter-0.99.1.5/po/si.po0000644000000000000000000001465114007200004013267 0ustar # Sinhalese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-05-28 07:21+0000\n" "Last-Translator: පසිඳු කාවින්ද \n" "Language-Team: Sinhalese \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s සඳහා මුරපදය යොදන්න" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "මුරපදය:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "පරිශීලක නාමය:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "වලංගු නොවන මුරපදය, කරුණාකර නැවත උත්සහ කරන්න" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "සත්‍යවත් කිරීම ආසාර්ථක විය" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "නිකුතු අනුවාදය පෙන්වන්න" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "අත්හදා බැලීම් ක්‍රමයෙන් ධාවනය කරන්න" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- යුනිටි ග්‍රීටර්" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "ලබා ගත හැකි විධාන රේඛා විකල්ප සම්පූර්ණ ලැයිස්තුවක් බැලීමට '%s --උදව්' ධාවනය කරන්න." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "අමුත්තාගේ සැසිය" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "අමුත්තාගේ සැසිය" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "පිවිසෙන්න" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "නැවත උත්සාහ කරන්න" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "අමුත්තාගේ සැසිය" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- යුනිටි ග්‍රීටර්" #~ msgid "_Back" #~ msgstr "ආපසු (_B)" arctica-greeter-0.99.1.5/po/sk.po0000644000000000000000000001752014007200004013267 0ustar # Slovak translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-05 12:23+0000\n" "Last-Translator: Matúš Baňas \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 3.8-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Zadajte heslo pre %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Heslo:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Používateľské meno:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Nesprávne heslo, skúste to znova prosím" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Overovanie zlyhalo" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Zlyhalo spustenie relácie" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Prihlasuje sa…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Prihlasovacia obrazovka" #: ../src/main-window.vala:119 msgid "Back" msgstr "Späť" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Klávesnica na obrazovke" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Vysoký kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Čítačka obrazovky" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Možnosti relácie" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Vyberte pracovné prostredie" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Dovidenia. Chceli by ste…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Vypnúť" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ste si istý, že chcete vypnúť počítač?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "K počítaču sú prihlásení aj iní používatelia, ak teraz počítač vypnete, " "ukončia sa aj tieto relácie." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Uspať" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Hibernovať" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Reštartovať" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Predvolené)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Zobraziť verziu vydania" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Spustiť v skúšobnom režime" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- uvítacia obrazovka Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Spustite „%s --help“ pre zobrazenie úplného zoznamu dostupných možností " "príkazového riadka." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Relácia pre hosťa" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Prosím, vložte úplnú emailovú adresu" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Nesprávna emailová adresa alebo heslo" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Ak máte účet na RDP serveri alebo X2Go serveri, vzdialené prihlásenie vám " "umožní spúšťať aplikácie z tohto serveru." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Zrušiť" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Nastaviť…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Na používanie tejto služby potrebujete konto vzdialeného prihlásenia. Chcete " "nastaviť účet teraz?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Ok" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Na používanie tejto služby potrebujete konto vzdialeného prihlásenia. Ak " "chcete požiadať o účet, navštívte lokalitu %s." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Na používanie tejto služby potrebujete konto vzdialeného prihlásenia. " "Podrobnosti si vyžiadajte u správcu lokality." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Typ servera nie je podporovaný." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go relácia:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Doména:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID účtu" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Prihlásiť sa" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Prihlásiť sa ako %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Skúsiť znova" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Skúsiť znova ako %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Prihlásiť sa" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Dočasná relácia pre hosťa" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Všetky údaje vytvorené počas tejto relácie pre hosťa sa odstránia\n" "keď sa odhláste, a nastavenia sa obnovia na predvolené hodnoty.\n" "Prosíme, uložte si súbory na niektoré externé zariadenia, napríklad\n" "USB kľúč, ak by ste ich chceli znova získať neskôr." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Ďalšia možnosť je uložiť súbory v zložke\n" "/var/guest-data folder." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Ak máte používateľský účet na RDP alebo Citrix serveri, Vzdialené " #~ "prihlásenie vám umožní spúšťať aplikácie z tohto servera." #, fuzzy #~ msgid "Email:" #~ msgstr "Emailová adresa:" #~ msgid "_Back" #~ msgstr "_Späť" #~ msgid "Favorite Color (blue):" #~ msgstr "Obľúbená farba (modrá):" arctica-greeter-0.99.1.5/po/sl.po0000644000000000000000000001660714007200004013275 0ustar # Slovenian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-01-24 12:28+0000\n" "Last-Translator: Tamir Azaz \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3;\n" "X-Generator: Weblate 2.19-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Vnesite geslo za %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Geslo:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Uporabniško ime:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Geslo ni veljavno; poskusite znova." #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Overitev je spodletela" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Začenjanje seje je spodletelo" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Prijavljanje ..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Prijavni zaslon" #: ../src/main-window.vala:119 msgid "Back" msgstr "Nazaj" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Zaslonska tipkovnica" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Visok kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Zaslonski bralnik" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Možnosti seje" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Izberite namizno okolje" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Nasvidenje. Ali želite ..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Izklop" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ali ste prepričani, da želite izklopiti računalnik?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Trenutno so tudi drugi uporabniki prijavljeni na ta računalnik. Izklop bo " "zaprl tudi njihove seje." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "V pripravljenost" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "V mirovanje" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Ponovni zagon" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (privzeto)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Pokaži podrobnosti različice" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Zaženi v preizkusnem načinu" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Pozdrav Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Za popoln seznam možnosti ukazne vrstice zaženite '%s --help'." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Seja za goste" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Vnesite celoten naslov elektronske pošte" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Nepravilen naslov elektronske pošte ali geslo" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Če imate račun na strežniku RDP, vam oddaljena prijava omogoča izvajanje " "programov s tega strežnika." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Prekliči" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Nastavi ..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Za uporabo te storitve potrebujete račun oddaljene prijave Ubuntu. Ali " "želite račun ustvariti?" #: ../src/user-list.vala:563 msgid "OK" msgstr "V redu" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Za uporabo te storitve potrebujete račun oddaljene prijave Ubuntu. Obiščite " "uccs.canonical.com za nastavitev računa." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Za uporabo te storitve potrebujete račun oddaljene prijave Ubuntu. Ali " "želite račun ustvariti?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Vrsta strežnika ni podprta." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "X2Go seja:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domena:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Prijava" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Prijavite se kot %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Poskusi znova" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Poskusi znova kot %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Prijava" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Seja za goste" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Pozdrav Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Če imate račun na strežniku RDP ali Citrix, vam oddaljena prijava " #~ "dovoljuje zagon programa s tega strežnika." #~ msgid "Email:" #~ msgstr "Elektronski naslov:" #~ msgid "Logging in..." #~ msgstr "Prijavljanje ..." #~ msgid "_Back" #~ msgstr "_Nazaj" #~ msgid "Favorite Color (blue):" #~ msgstr "Najljubša barva (modra):" arctica-greeter-0.99.1.5/po/sq.po0000644000000000000000000001757514007200004013307 0ustar # Albanian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-11-03 15:03+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "futni fjalëkalimin per %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "fjalëkalim:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Emri i përdoruesit:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Fjalëkalim i pavlefshëm" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "dështoi të vërtetonte" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "dështoi të fillonte seancën" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "lidhje…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ekrani për tu identifikuar" #: ../src/main-window.vala:119 msgid "Back" msgstr "Mbrapsht" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "tastierë në ekran" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "kontrast të lartë" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "lexues ekran" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "opsionet e sesionit" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Zgjidh ambientin e desktopit" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Mirupafshim. A do të donit…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Fike" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Jeni i sigurtë që dëshironi ta fikni kompjuterin tuaj?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Përdorues të tjerë kanë hyrë për momentin në këtë kompjuter, fikja do mbyllë " "gjithashtu këto seksione të tjera." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Ndërpres" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Prehem" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Rindiz" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (E parazgjedhur)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Shfaq versionin e publikuar" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Aksesoje në modelin test" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 #, fuzzy msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format, fuzzy msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Ekzekuto '%s --ndihmë' për të parë listën e plotë të opsioneve të command " "line" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesion mik" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Ju lutem vendosni një adresë email të plotë" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Adresë e-mail ose fjalëkalim i pasaktë" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Nëse keni llogari në një server RDP, Hyrja në Distancë ju lejon të nisni " "programet nga ai server." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Anullo" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Instalo…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Ju nevojitet një llogari e Hyrjes në Distancë nga Ubuntu për ta përdorur " "këtë shërbim. Do të dëshironit të krijonit një llogari tani?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Ju nevojitet një llogari e Hyrjes në Distancë nga Ubuntu për ta përdorur " "këtë shërbim. Vizitoni uccs.canonical.com për të krijuar një llogari." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Ju nevojitet një llogari e Hyrjes në Distancë nga Ubuntu për ta përdorur " "këtë shërbim. Do të dëshironit të krijonit një llogari tani?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Lloji i serverit nuk suportohet." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sesion X2Go" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domain:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID e llogarisë" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Logohu" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "logohi si %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Provo përsëri" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Riprovoje si %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Logohu" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Sesion Mik i Përkohshëm" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Të gjitha të dhënat e krijuara gjatë sesionit mik do të fshihen\n" "kur të ç'logoheni, dhe rregullimet do të rivendosen në gjendjen e " "paracaktuar.\n" "Ju lutem ruani skedarët në ndonjë pajisje të jashtme, për shembull një\n" "USB stick, nëse dëshironi ti aksesoni ato më vonë." #: ../arctica-greeter-guest-session-auto.sh:40 #, fuzzy, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Një alternativë tjetër është duke ruajtur skedarët në \n" "dosjen /var/guest-data" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Nëse keni një llogari në një server RDP apo Citrix, Hyrja në Distancë ju " #~ "lejon të nisni programet nga ai server." #, fuzzy #~ msgid "Email:" #~ msgstr "Adresa email:" #~ msgid "_Back" #~ msgstr "_Mbrapa" #~ msgid "Favorite Color (blue):" #~ msgstr "Ngjyra e Favorizuar (blu):" arctica-greeter-0.99.1.5/po/sr.po0000644000000000000000000002075714007200004013304 0ustar # Serbian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # Марко М. Костић , 2013. msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2013-03-06 21:46+0000\n" "Last-Translator: Марко М. Костић \n" "Language-Team: Ubuntu Serbian Translators\n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Унесите лозинку за %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Лозинка:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Корисничко име:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Неисправна лозинка, унесите је поново" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Пријава није успела" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Нисам успео да покренем сесију" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Пријављивање..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Пријавни екран" #: ../src/main-window.vala:119 msgid "Back" msgstr "Назад" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Тастатура на екрану" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Јак контраст" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Читач екрана" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Поставке сесије" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Изаберите графичко окружење" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Довиђења. Желите ли да се рачунар..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Искључи" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Да ли сте сигурни да желите да искључите рачунар?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Други корисници су тренутно пријављени на овом рачунару, а искључивање ће " "такође затворити и њихове сесије." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Обустави" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Замрзне" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Поново покрене" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (подразумевано)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Прикажи издање програма" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Покрени у пробном режиму" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "Јунитијев екран добродошлице" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Покрените „%s --help“ за потпуни списак свих могућности из командне линије." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Сесија за госта" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Унесите потпуну е-адресу" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Нетачна е-адреса или лозинка" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Уколико имате налог на РДП серверу, удаљена пријава вам омогућује да " "покрећете програме са тог сервера." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Откажи" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Подеси..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Потребан вам је налог за коришћење Убунтуове удаљене пријаве. Да ли желите " "да направите налог?" #: ../src/user-list.vala:563 msgid "OK" msgstr "У реду" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Потребан вам је налог за коришћење Убунтуове удаљене пријаве. Посетите uccs." "canonical.com да бисте направили налог." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Потребан вам је налог за коришћење Убунтуове удаљене пријаве. Да ли желите " "да направите налог?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Тип сервера није подржан." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Сесија за госта" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Домен:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Пријави ме" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Пријави ме као %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Покушај поново" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Покушај поново као %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Пријава" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Сесија за госта" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "Јунитијев екран добродошлице" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Уколико имате налог на РДП или Цитрикс серверу, удаљена пријава вам " #~ "омогућава да покрећете програме са тог сервера." #, fuzzy #~ msgid "Email:" #~ msgstr "Е-адреса:" #~ msgid "_Back" #~ msgstr "_Назад" #~ msgid "Favorite Color (blue):" #~ msgstr "Омиљена боја (плава):" #~ msgid "Logging in..." #~ msgstr "Пријављивање у току..." arctica-greeter-0.99.1.5/po/sv.po0000644000000000000000000001732314007200004013303 0ustar # Swedish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-10-24 14:53+0000\n" "Last-Translator: Mattias Münster \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9.1-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Ange lösenord för %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Lösenord:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Användarnamn:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Ogiltigt lösenord. Försök igen" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Misslyckades med att autentisera" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Misslyckades med att starta sessionen" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Loggar in…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Inloggningsskärm" #: ../src/main-window.vala:119 msgid "Back" msgstr "Bakåt" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Skärmtangentbord" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Hög kontrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Skärmläsare" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Sessionsalternativ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Välj skrivbordsmiljö" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Hej då. Vill du…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Stäng av" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Är du säker på att du vill stänga av datorn?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Andra användare är för nuvarande inloggade på den här datorn, att stänga ner " "nu kommer också stänga ner de andra sessionerna." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Vänteläge" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Viloläge" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Starta om" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Förval)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Visa utgåvans version" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Kör i testläge" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica-hälsare" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Kör ”%s --help” för en komplett lista över tillgängliga kommandoradsflaggor." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gästsession" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Ange en fullständig e-postadress" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Felaktig e-postadress eller lösenord" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Om du har ett konto på en RDP-server eller X2Go-server så kan " "fjärrinloggning tillåta dig att köra applikationer från den servern." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Avbryt" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Ställ in…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Du behöver ett fjärrinloggningskonto för att använda den här tjänsten. Vill " "du skapa ett konto nu?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Ok" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Du behöver ett fjärrinloggningskonto för att använda den här tjänsten. Besök " "%s för att skapa ett konto." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Du behöver ett fjärrinloggningskonto för att använda den här tjänsten. Fråga " "din webbplatsadministratör för mer information." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Servertypen stöds inte." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go-session:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domän:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Konto-ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Logga in" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Logga in som %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Försök igen" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Försök på nytt som %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Logga in" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Tillfällig gästsession" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Alla data som skapas under denna gästsession kommer\n" "att tas bort då du loggar ut, och inställningar kommer att\n" "återställas till standardvärden.\n" "Spara filer på någon extern enhet, t.ex. en USB-sticka, om\n" "du vill kunna komma åt dem senare." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Ett annat alternativ är att spara filer i\n" "mappen /var/guest-data." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica-hälsare" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Om du har ett konto på en RDP- eller Citrix-server kan du via " #~ "fjärrinloggning köra program från den servern." #~ msgid "Email:" #~ msgstr "E-post:" #~ msgid "Guest" #~ msgstr "Gäst" #~ msgid "Logging in..." #~ msgstr "Loggar in..." #~ msgid "_Back" #~ msgstr "_Bakåt" #~ msgid "Favorite Color (blue):" #~ msgstr "Favoritfärg (blå):" arctica-greeter-0.99.1.5/po/sw.po0000644000000000000000000001260014007200004013275 0ustar # Swahili translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-05-03 16:35+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swahili \n" "Language: sw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/szl.po0000644000000000000000000001406014007200004013456 0ustar # Silesian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-05-06 07:06+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Silesian \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Wkludźcie hasło dlŏ %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Hasło:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Używŏcz:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Złe hasło. Sprōbujcie, proszã, jeszcze rŏz" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Uwierzytelniyniy niy zdarziło sie" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Ôbrŏz logowaniŏ" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Tastatura na ôbrŏzie" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Wysoki kōntrast" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Czytŏcz ôbrŏzu" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Ôpcyje sesyje" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Pokazowaniy wersyje" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Włōncz w testowym trybie" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "Wkludźcie '%s --help' coby ôbejrzeć cŏlkõ listã ôpcyji linije byfeli." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Sesyjŏ gościa" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Sesyjŏ gościa" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Wchōd" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Logowaniy jako %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Jeszcze rŏz" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "Login" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Sesyjŏ gościa" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Greeter" #~ msgid "_Back" #~ msgstr "_Nazod" #~ msgid "Enter username" #~ msgstr "Wkludźcie miano używŏcza" #~ msgid "Enter password" #~ msgstr "Wkludźcie hasło" #~ msgid "Logging in..." #~ msgstr "Logowaniy..." arctica-greeter-0.99.1.5/po/ta.po0000644000000000000000000002251514007200004013256 0ustar # Tamil translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-12-26 08:08+0000\n" "Last-Translator: Yadhesh Assassin \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.4-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format, fuzzy msgid "Enter password for %s" msgstr "கடவு சொல்லை" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "கடவு சொல்" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 #, fuzzy msgid "Username:" msgstr "பயனாளர் பெயர்" #: ../src/greeter-list.vala:877 #, fuzzy msgid "Invalid password, please try again" msgstr "தவறான கடவு சொல், மீண்டும் முயற்சிக்கவும்." #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "அமர்வை தொடக்குவதில் தோல்வியடைந்தது" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "உள்நுழைகிறது..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "உள்நுழைவு திரை" #: ../src/main-window.vala:119 msgid "Back" msgstr "பின்செல்" #: ../src/menubar.vala:226 #, fuzzy msgid "Onscreen keyboard" msgstr "திரை தட்டச்சு பலகை" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "திசைமேசை சூளலை தேர்ந்தெடு" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "நன்றி வணக்கம். நீங்கள் விரும்புகிறீர்களா..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "பணி நிறுத்தம்" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "நீங்கள் கண்டிப்பாக பணிநிறுத்தம் செய்ய வேண்டுமா?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "மற்ற பயனர்களும் இந்த கணினியில் உள்நுழைந்துள்ளார்கள், இப்போது பணிநிறுத்தம் செய்தால் " "மற்றஅமர்வுகளை மூடிவிடும்." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "இடைநிறுத்தம்" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "இடை உறக்கம்" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "மீள்துவக்கம்" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (முன்னிருப்பு)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "தயவுச்செய்து மின்னஞ்சல் முகவரியை முழுமையாக உள்ளிடவும்" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "மின்னஞ்சல் அல்லது கடவுச்சொல் தவறானது" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "உங்களுக்கு ஆர்டிபி சேவகனில் கணக்கிருந்தால், அந்த சேவகனிலிருந்து தொலைவிலிருந்து " "உள்நுழைந்து பயன்பாடுகளை இயக்க வழிவகுக்கும்." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "இரத்துசெய்" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "அமைக்க..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "இந்த சேவையை பயன்படுத்த உங்களுக்கு உபுண்டுவின் உள்நுழைவு கணக்கு தேவை. இப்போது உங்களுடைய " "கணக்கை அமைத்துக்கொள்ள விருப்பமா?" #: ../src/user-list.vala:563 msgid "OK" msgstr "சரி" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "இந்த சேவையை பயன்படுத்த உங்களுக்கு உபுண்டுவின் உள்நுழைவு கணக்கு தேவை. uccs.canonical." "com பக்கத்தை பார்த்து கணக்கை அமைத்துக்கொள்ளவும்." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "இந்த சேவையை பயன்படுத்த உங்களுக்கு உபுண்டுவின் உள்நுழைவு கணக்கு தேவை. இப்போது உங்களுடைய " "கணக்கை அமைத்துக்கொள்ள விருப்பமா?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "சேவகன் வகை ஆதரிக்கப்படதாதது" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "செயற்களம்:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "மீண்டும் முயற்சி செய்" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s ஆக மீண்டும் முயற்சி" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "உங்களுக்கு ஆர்டிபி அல்லது சிட்ரிக்ஸ் சேவகனில் கணக்கிருந்தால், அந்த சேவகனிலிருந்து " #~ "தொலைவிலிருந்து உள்நுழைந்து பயன்பாடுகளை இயக்க வழிவகுக்கும்." #, fuzzy #~ msgid "Email:" #~ msgstr "மின்னஞ்சல் முகவரி:" #~ msgid "_Back" #~ msgstr "பின் (_B)" arctica-greeter-0.99.1.5/po/te.po0000644000000000000000000002443114007200004013261 0ustar # Telugu translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-05-31 20:46+0000\n" "Last-Translator: Aashish Chenna \n" "Language-Team: Telugu \n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.0-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s కొరకు పాస్ వర్డ్ వ్రాయండి" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "పాస్ వర్డ్:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "వాడుక పేరు:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "గుర్తింపు పదము/పాస్ వర్డ్ తప్పు, మళ్ళీ ప్రయత్నించండి" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "దీనిని ధ్రువీకరించలేము" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "సమావేశం మొదలు పెట్టటం విఫలమైంది" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "లాగిన్/ప్రవేశ చేయబడుతుంది…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "లాగిన్/ప్రవేశ తెర" #: ../src/main-window.vala:119 msgid "Back" msgstr "వెనుకకి" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "తెర పైన కీబోర్డ్" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "అధిక కాంట్రాస్ట్" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "తెర పైన చదువరి" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "సమావేశ ఎంపికలు" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "డెస్క్టాప్ వాతావరణాన్ని ఎంచుకో" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "సెలవు. మీరు…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "మూసివేయి" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "మీరు ఖచ్చితంగా మూసివేయాలని కోరుతున్నారా?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "వేరే వాడుకదారి ప్రస్తుతం లాగిన్ చేసి ఉన్నారు. ఇప్పుడు మూసివేస్తే వారి సమావేశాలు కూడా మూసివేయబడతాయి." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "తాత్కాలికంగా మూసివేయి" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "సోమరి" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "మరల ప్రారంభించు" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (డిఫాల్ట్)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "విడుదల వెర్షన్ను చూపించు" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "శోధన స్థితిలో నడిపించు" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- అర్క్టికా గ్రీటర్" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "పూర్తి కమాండ్ లైన్ విషయసూచిక కొరకు '%s --help' ను నడపండి." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "అతిధి సమావేశం" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "దయచేసి పూర్తి ఈమెయిల్ అడ్డ్రెస్ రాయండి" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "ఇమెయిల్ అడ్రస్ లేదా పాస్ వర్డ్ తప్పు" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "మీకు RDP సర్వర్ లో అకౌంట్ ఉంటె, రిమోట్ లాగిన్ ఆ సర్వర్ నుంచి అప్లికేషన్స్ నడపనిస్తుంది." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "రద్దుచేయి" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "సెట్ అప్…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "ఈ సేవను పొందటానికి మీకు రిమోట్ లాగాన్ ఖాతాకావాలి. ఇప్పుడు ఒక ఖాతా ని సెటప్ చేయాలని కోరుతున్నారా?" #: ../src/user-list.vala:563 msgid "OK" msgstr "సరే" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "ఈ సేవ వాడటానికి మీకు రిమోట్ లాగిన్ ఖాతా అవసరము ఉన్నాది. ఖాతా కొరకు https://%s కి వెళ్ళండి." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "ఈ సేవను పొందటానికి మీకు రిమోట్ లాగాన్ ఖాతాకావాలి. ఇప్పుడు ఒక ఖాతా ని సెటప్ చేయాలని కోరుతున్నారా?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "సర్వర్ రకానికి మద్దతు లేదు." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go సమావేశం:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "డొమైన్/అధికార పరిధి:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "ప్రవేశించండి" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s వలె ప్రవేశించండి" #: ../src/user-list.vala:842 msgid "Retry" msgstr "మరలా ప్రయత్నించు" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s వలె మళ్ళీ ప్రయత్నించండి" #: ../src/user-list.vala:882 msgid "Login" msgstr "ప్రవేశించండి" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "తాత్కాలిక అతిధి సమావేశం" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "తాత్కాలిక అతిధి సమావేశ కాలము ముగించిన తరువాత మీ మొత్తం సమాచారం తొలగించబడుతుంది, మరియు సెట్టింగ్లు " "అన్ని డిఫాల్ట్కు రీసెట్ చేయబడతాయి. మీకు వాటిని మళ్ళి చూడాలని ఉంటే మీ ఫైళ్లను ఎదో ఒక బాహ్య పరికరం, " "ఉదాహరణము గా USB పుల్ల, లోకి కాపాడుకోండి." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "మరొక ప్రత్యామ్నాయం /var/guest-data లోకి మీ డేటాను కాపాడుకోవచ్చు." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "అర్క్టికా గ్రీటర్" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "మీకు అర్డిపి లేదా క్రిటిక్స్ సర్వర్లో ఖాతా ఉంటే, రిమోట్ లాగిన్ మిమ్మల్ని అప్లికేషనులు ఆ సర్వర్ ద్వారా " #~ "నడపగలగనిన్స్తుంది." #~ msgid "Email:" #~ msgstr "ఈమెయిల్ :" #~ msgid "_Back" #~ msgstr "వెనుకకు (_B)" arctica-greeter-0.99.1.5/po/tg.po0000644000000000000000000002150114007200004013256 0ustar # Tajik translation for arctica-greeter # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2013-04-15 09:13+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tajik \n" "Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Паролро барои %s ворид кунед" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Парол:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Номи корбар:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Пароли беэътибор, лутфан, амалро такрор кунед" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Санҷиши эътибор ба анҷом нарасид" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Оғози ҷаласа қатъ шуд" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Ворид шуда истодааст..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Экрани воридшавӣ" #: ../src/main-window.vala:119 msgid "Back" msgstr "Қафо" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Клавиатураи экранӣ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Контрасти баланд" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Хонандаи экран" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Имконоти ҷаласа" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Муҳити мизи кориро интихоб кунед" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Худо ҳофиз! Шумо мехоҳед, ки..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Анҷоми кор" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Шумо мутмаин ҳастед, ки мехоҳед компютерро хомӯш кунед?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Дар айни ҳол корбарони дигар ба ин компютер ворид шудаанд. Агар компютерро " "ҳозир хомӯш кунед, ҷаласаҳои дигар ҳам хомӯш карда мешаванд." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Таваққуф" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Гибернатсия" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Бозоғозӣ" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Пешфарз)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Намоиш додани ҷаласаи релиз" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Иҷро кардан дар ҳолати санҷишӣ" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Барои дидани рӯйхати пурраи имконоти дастрасӣ сатри фармон, фармони \"%s --" "help\"-ро иҷро кунед." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Ҷаласаи меҳмон" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Лутфан, суроғаи пурраи почтаи электрониро ворид кунед" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Суроғаи почтаи электронӣ ё пароли нодуруст" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Агар шумо дар сервери RDP ҳисоб дошта бошед, Воридшавии дурдаст ба шумо " "имконият медиҳад, ки барномаҳоро аз он сервер иҷро кунед." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Бекор кардан" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Танзим кардан..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Барои истифодаи ин хидмат ба шумо ҳисоби Воридшавии дурдасти Ubuntu лозим " "аст. Шумо мехоҳед, ки ҳисобро ҳозир танзим кунед?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Барои истифодаи ин хидмат ба шумо ҳисоби Воридшавии дурдасти Ubuntu лозим " "аст. Барои танзим кардани ҳисоб, ба uccs.canonical.com ташриф оред." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Барои истифодаи ин хидмат ба шумо ҳисоби Воридшавии дурдасти Ubuntu лозим " "аст. Шумо мехоҳед, ки ҳисобро ҳозир танзим кунед?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Намуди сервер дастгирӣ намешавад." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Ҷаласаи меҳмон" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Домен:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Ворид шудан" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Ворид шудан ҳамчун %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Такрор кардан" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Такрор кардан ҳамчун %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Ворид шудан" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Ҷаласаи меҳмон" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica Greeter" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Агар шумо дар сервери RDP ё Citrix ҳисоб дошта бошед, Воридшавии дурдаст " #~ "ба шумо имконият медиҳад, ки барномаҳоро аз он сервер иҷро кунед." #, fuzzy #~ msgid "Email:" #~ msgstr "Суроғаи почтаи электронӣ:" #~ msgid "Logging in..." #~ msgstr "Воридшавӣ рафта истодааст..." #~ msgid "Favorite Color (blue):" #~ msgstr "Ранги дӯстдошта (кабуд):" arctica-greeter-0.99.1.5/po/th.po0000644000000000000000000002106314007200004013262 0ustar # Thai translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-06-22 18:41+0000\n" "Last-Translator: CHAIWIT PHONKHEN <5911110222@mutacth.com>\n" "Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "ใส่รหัสผ่านสำหรับ %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "รหัสผ่าน:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ชื่อผู้ใช้งาน:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "รหัสผ่านไม่ถูกต้อง, กรุณาลองอีกครั้ง" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "ยืนยันตัวบุคคลไม่สำเร็จ" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "เริ่มต้นเซสชั่นไม่สำเร็จ" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "กำลังเข้าสู่ระบบ…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "หน้าจอเข้าสู่ระบบ" #: ../src/main-window.vala:119 msgid "Back" msgstr "ย้อนกลับ" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "แป้นพิมพ์บนจอภาพ" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "ความเปรียบต่างสูง" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "การอ่านหน้าจอ" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "ตัวเลือกวาระ" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "เลือกสภาพแวดล้อมพื้นโต๊ะ" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "ลาก่อน คุณต้องการที่จะ …" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "ปิดเครื่อง" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "คุณแน่ใจหรือไม่ที่จะปิดเครื่องคอมพิวเตอร์?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "ผู้ใช้อื่นยังอยู่ในระบบของคอมพิวเตอร์นี้ การปิดเครื่องทันทีจะปิดวาระอื่นด้วย" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "พักเครื่อง" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "พักเครื่อง" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "เริ่มเปิดเครื่องใหม่" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (ปริยาย)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "แสดงเลขรุ่น" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "โหมดดำเนินงานทดสอบ" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Greeter" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "เรียก '%s --help' เพื่อดูตัวเลือกทั้งหมดที่มีของบรรทัดคำสั่ง" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "บุคคลทั่วไป" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "โปรดป้อนอีเมล" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "อีเมลหรือรหัสผ่านไม่ถูกต้อง" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "ถ้าคุณมีบัญชีเซิร์ฟเวอร์ RDP " "การเข้าระบบระยะไกลจะทำให้คุณใช้แอปพลิเคชั่นจากเซิร์ฟเวอร์ได้" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ยกเลิก" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "ติดตั้ง…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "คุณต้องมีบัญชีเข้าสู่ระบบระยะไกลเพื่อใช้บริการนี้คุณต้องการตั้งค่าบัญชีตอนนี้" "หรือไม่?" #: ../src/user-list.vala:563 msgid "OK" msgstr "ตกลง" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "ประเภทของเซิร์ฟเวอร์ไม่สนับสนุน" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "โดเมน:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "เข้าระบบ" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "เข้าสู่ระบบด้วย %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "ลองอีกครั้ง" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "ลองอีกครั้งเมื่อ %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "เข้่าสู่ระบบ" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "ถ้าคุณมีบัญชี RDP หรือเซิร์ฟเวอร์ Citrix " #~ "การเข้าระบบระยะไกลจะทำให้คุณใช้แอปพลิเคชั่นจากเซิร์ฟเวอร์ได้" #~ msgid "Email:" #~ msgstr "อีเมล:" #~ msgid "_Back" #~ msgstr "_ถอยกลับ" arctica-greeter-0.99.1.5/po/ti.po0000644000000000000000000001260214007200004013262 0ustar # Tigrinya translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tigrinya \n" "Language: ti\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" arctica-greeter-0.99.1.5/po/tr.po0000644000000000000000000001767114007200004013306 0ustar # Turkish translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-08-08 19:32+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s için parola girin" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Parola:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Kullanıcı Adı:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Geçersiz parola, lütfen yeniden deneyin" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Kimlik doğrulama başarısız" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Oturum başlatılamadı" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Oturum açılıyor…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Giriş Ekranı" #: ../src/main-window.vala:119 msgid "Back" msgstr "Geri" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Ekran klavyesi" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Yüksek Karşıtlık" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Ekran Okuyucu" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Oturum Seçenekleri" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Masaüstü ortamını seçin" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Görüşmek Üzere. Eğer isterseniz…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Kapat" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Bilgisayarı kapatmak istediğinize emin misiniz?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Şu anda bu bilgisayara bağlı diğer kullanıcılar var. Şimdi bilgisayarı " "kapatmak, diğer oturumları da kapatacaktır." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Askıya Al" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Uykuya Al" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Yeniden Başlat" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Öntanımlı)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Dağıtımın sürümünü göster" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Sınama kipinde çalıştır" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica Karşılayıcısı" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Kullanılabilir komut satırı seçeneklerinin tam listesini görmek için '%s --" "help' komutunu çalıştırın." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Konuk Oturumu" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Lütfen tam bir e-posta adresi girin" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "E-posta ya da parola yanlış" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Eğer bir RDP veya X2Go sunucusunda bir hesabınız varsa, Uzaktan Erişim " "yöntemi ile uygulamaların ilgili sunucuda çalışmasına olanak tanınır." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Vazgeç" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Kurulum…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Bu hizmeti kullanmak için Uzaktan Giriş hesabınız olması gerekir. Şimdi bir " "hesap açmak ister miydiniz?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Tamam" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Bu hizmeti kullanmak için Uzaktan Giriş hesabınız olması gerekir. Bir hesap " "kurmak için %s adresini ziyaret edin." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Bu hizmeti kullanmak için Uzaktan Giriş hesabınız olması gerekir. Detaylar " "için web sitesi yöneticisi ile iletişime geçiniz." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Sunucu türü desteklenmiyor." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go Oturumu:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Alan adı:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "Hesap Kodu" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Oturum aç" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s olarak oturum aç" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Yeniden dene" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s olarak yeniden dene" #: ../src/user-list.vala:882 msgid "Login" msgstr "Oturum aç" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Geçici Konuk Oturumu" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Bu misafir oturumu sırasında oluşturulan tüm veriler, oturumu\n" "kapattığınızda silinecek ve ayarlar öntanımlı değerlerine\n" "sıfırlanacaktır. Daha sonra yeniden erişmek istiyorsanız, lütfen\n" "USB bellek gibi harici bir aygıta dosyaları kaydedin." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Alternetif olarak dosyalarınızı\n" "/var/guest-data dizininde saklayabilirsiniz." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica Selamlayıcısı" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Eğer bir RDP ya da Citrix sunucusu üzerinde bir hesabınız varsa, Uzaktan " #~ "Giriş uygulamaları bu sunucudan çalıştırmanızı sağlar." #, fuzzy #~ msgid "Email:" #~ msgstr "E-posta adresi:" #~ msgid "Logging in..." #~ msgstr "Oturum açılıyor..." #~ msgid "_Back" #~ msgstr "_Geri" #~ msgid "Enter password" #~ msgstr "Parola girin" #~ msgid "Favorite Color (blue):" #~ msgstr "Tercih Edilen Renk (mavi):" arctica-greeter-0.99.1.5/po/ug.po0000644000000000000000000002226614007200004013270 0ustar # Uyghur translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-05-09 07:12+0000\n" "Last-Translator: Abdusalam <1810010207@s.upc.edu.cn>\n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s نىڭ شىفىرىنى كىرگۈزۈڭ" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "شىفىر:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "ئىشلەتكۈچى ئاتى:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "شىفىر خاتا، قايتا سىناڭ" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "كىملىك دەلىللەش مەغلۇپ بولدى" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "باسقۇچنى باشلاش مەغلۇپ بولدى" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "كىرىۋاتىدۇ…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "كىرىش ئېكرانى" #: ../src/main-window.vala:119 msgid "Back" msgstr "كەينى" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "ئېكران ھەرپتاختىسى" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "يۇقىرى ئاق-قارىلىق" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "ئېكران ئوقۇغۇچ" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "ئەڭگىمە تاللانمىسى" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "ئۈستەلئۈستى مۇھىتىنى تاللاڭ" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "خوش. سىز قانداق قىلماقچى…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "تاقا" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "كومپيۇتېرنى ئۆچۈرەمسىز؟" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "باشقا ئىشلەتكۈچىلەرمۇ ھازىر كومپيۇتېرنى ئىشلىتىۋاتىدۇ. تاقالسا، ھەممىسى " "تاقىلىپ كېتىدۇ." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "توڭلات" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "ئۈچەككە كىر" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "قايتا قوزغات" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (كۆڭۈلدىكى)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "نەشرىنى كۆرسىتىدۇ" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "سىناق ھالەتتە ئىجرا قىلىدۇ" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica كۈتۈۋالغۇچىسى" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "«%s --help» كىرگۈزسىڭىز بۇيرۇق قۇرىدا ئىشلەتكىلى بولىدىغان بارلىق " "تاللانمىلارنى كۆرەلەيسىز." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "مېھمان" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "ئېلخەت ئادرېسىنى كىرگۈزۈڭ" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "ئېلخەت ئادرېسى ياكى ئىم توغرا ئەمەس" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "سىزنىڭ RDP مۇلازىمېتىرىدا ھېساباتىڭىز بولسا، يىراقتىن كىرىش ئارقىلىق، شۇ " "مۇلازىمېتىر ئۈستىدىكى پروگراممىلارنى ئىجرا قىلالايسىز." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "ۋاز كەچ" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "ھېساب قۇرۇش…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "مەزكۇر مۇلازىمەتنى ئىشلىتىش ئۈچۈن چوقۇم ئۇبۇنتۇ يىراقتىن كىرىش ھېساباتى " "زۆرۈردۇر. ھازىرلا ھېساب قۇرامسىز؟" #: ../src/user-list.vala:563 msgid "OK" msgstr "تامام" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "مەزكۇر مۇلازىمەتنى ئىشلىتىش ئۈچۈن چوقۇم ئۇبۇنتۇ يىراقتىن كىرىش ھېساباتى " "زۆرۈردۇر. ھېساب قۇرۇش ئۈچۈن https://%s نى زىيارەت قىلىڭ." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "بۇ مۇلازىمەتنى ئىشلىتىش ئۈچۈن يىراقتىن كىرىش ھېساباتىڭىز لازىم. تەپسىلاتىنى " "تور بېتىڭىز باشقۇرغۇچىدىن سوراڭ." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "مۇلازىمېتىر تىپىنى ئىشلەتكىلى بولمايدۇ." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go باسقۇچى:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "دائىرە:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ھېسابات كىملىك نۇمۇرى" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "كىر" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "%s سۈپىتىدە كىرىڭ" #: ../src/user-list.vala:842 msgid "Retry" msgstr "قايتا سىنا" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "قايتا سىنا (%s سۈپىتىدە)" #: ../src/user-list.vala:882 msgid "Login" msgstr "كىر" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "ۋاقىتلىق مېھمان باسقۇچى" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "سىز تىزىمدىن چىققاندا مىھمان باسقۇچىدا قۇرۇلغان بارلىق سانلىق مەلۇماتلار " "ئۆچۈرۈلىدۇ،ۋە خاسلىقلار سۈكۈت ھالىتىگە قايتۇرىلىدۇ. سىرتقى ئۈسكۈنىگە " "ھۆججەتلەرنى ساقلىۋېلىڭ،مەسىلەن بارماق دىسكا دېگەندەك، بۇنداق بولغاندا كېيىن " "خالىغىنىڭىزدا ئۇ ھۆججەتلەرنى زىيارەت قىلالايسىز." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "يەنە بىر ئۇسۇل بولسا ھۆججەتلەرنى var/guest-data/ قىسقۇچىغا ساقلاش." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "ئاركتىكا كۈتۈۋالغۇچىسى" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "ئەگەر سىزنىڭ RDP ياكى Citrix مۇلازىمېتىرىدا ھېساباتىڭىز بار بولسا، " #~ "يىراقتىن كىرىش ئارقىلىق بۇ مۇلازىمېتىرلاردىكى پروگراممىلارنى ئىجرا " #~ "قىلالايسىز." #~ msgid "Email:" #~ msgstr "ئېلخەت:" #~ msgid "Logging in..." #~ msgstr "كىرىۋاتىدۇ…" #~ msgid "_Back" #~ msgstr "كەينىگە(_B)" #~ msgid "Favorite Color (blue):" #~ msgstr "ئامراق رەڭ (كۆك):" arctica-greeter-0.99.1.5/po/uk.po0000644000000000000000000002310414007200004013264 0ustar # Ukrainian translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2018-09-28 13:35+0000\n" "Last-Translator: Володимир Бриняк \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Введіть пароль для %s" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Пароль:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Ім'я користувача:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "Некоректний пароль, повторіть спробу" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "Помилка автентифікації" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Не вдалося розпочати сеанс" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Входимо…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Вікно входу" #: ../src/main-window.vala:119 msgid "Back" msgstr "Назад" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Екранна клавіатура" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Висока контрастність" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Читання з екрана" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Параметри сеансу" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Виберіть стільничне середовище" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "До побачення. Хочете…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Вимкнути комп’ютер" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Ви справді хочете вимкнути комп’ютер?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Зараз у системі працюють інші користувачі. Вимикання комп’ютера призведе до " "завершення сеансів роботи цих користувачів." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Призупинити роботу" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Приспати комп’ютер" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Перезавантажити комп’ютер" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (типове)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "Показати версію випуску" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "Запустити в тестовому режимі" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Вітальне вікно Arctica" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" "Виконайте « %s --help», щоб побачити повний перелік доступних параметрів " "командного рядка." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Гостьовий сеанс" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Вкажіть адресу електронної пошти повністю" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Некоректна адреса електронної пошти або пароль" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Якщо у вас є обліковий запис на сервері RDP або сервері X2Go, віддалений " "вхід дозволяє запускати програми з цього сервера." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Скасувати" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Налаштувати…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Для використання цієї служби потрібен обліковий запис віддаленого входу. " "Хочете створити обліковий запис зараз?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Гаразд" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Для використання цієї служби потрібен обліковий запис віддаленого входу. " "Відвідайте %s, щоб замовити обліковий запис." #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Для використання цієї служби потрібен обліковий запис віддаленого входу. " "Будь ласка, запитайте адміністратора вашого сайту докладніше." #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Підтримки серверів цього типу не передбачено." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "Сесія X2Go:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Домен:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "ID облікового запису" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Увійти" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Увійти від імені %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Повторити" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Повторити як %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "Увійти" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "Тимчасова гостьова сесія" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "Усі дані, створені під час гостьового сеансу, будуть видалені\n" "коли ви виходите, налаштування буде скинуто до значень за замовчанням.\n" "Збережіть файли на деякому зовнішньому пристрої, наприклад\n" "USB-накопичувач, якщо ви хочете пізніше отримати доступ до них." #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "Ще однією альтернативою є збереження файлів у\n" "/var/guest-data папці." #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Вітальне вікно Arctica" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Якщо у вас є обліковий запис на сервері RDP або Citrix, за допомогою " #~ "віддаленого входу ви зможете запускати програми з цього сервера." #~ msgid "Email:" #~ msgstr "Електронна пошта:" #~ msgid "Guest" #~ msgstr "Гість" #~ msgid "Logging in..." #~ msgstr "Вхід до системи…" #~ msgid "_Back" #~ msgstr "_Назад" #~ msgid "Favorite Color (blue):" #~ msgstr "Улюблений колір (блакитний):" arctica-greeter-0.99.1.5/po/ur.po0000644000000000000000000001466714007200004013311 0ustar # Urdu translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-07-22 14:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu \n" "Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "%s کے لیے حروف شناخت لکھیں" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "حروف شناخت:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "صارف کا نام:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "غلط حروف شناخت، براہ کرم درست حروف شناخت مہیا کر کے دوبارہ کوشش کریں" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "توثیق کرنے میں ناکامی ہوئی" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "لاگ ان سکرین" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "تختۂ کلید سکرین پر دیکھیں" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "تیز رنگ" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "سکرین ریڈر" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "دورانیہ کے اختیارات" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "اجرأ کا ورزن/ نسخہ دکھائیں" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "آزمائشی انداز میں چلائیں" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "یونٹی گریٹر" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "چلائیں '%s --مدد' کمانڈ لائن آپشنز کی مکمل فہرست دیکھنے کے لیے." #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "مِہمان کا دورانیہ" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "مِہمان کا دورانیہ" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "لاگ ان" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "لاگ ان بطور %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "دوبارہ کوشش" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "" #: ../src/user-list.vala:882 msgid "Login" msgstr "لاگ ان" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "مِہمان کا دورانیہ" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "یونٹی گریٹر" #~ msgid "Enter username" #~ msgstr "صارف کا نام لکھیں" #~ msgid "Enter password" #~ msgstr "حروف شناخت لکھیں" #~ msgid "_Back" #~ msgstr "_پیچھے" #~ msgid "Logging in..." #~ msgstr "لاگ ان کیا جا رہا ہے" arctica-greeter-0.99.1.5/po/uz.po0000644000000000000000000001511014007200004013301 0ustar # Uzbek translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-08-28 11:24+0000\n" "Last-Translator: leela <53352@protonmail.com>\n" "Language-Team: Uzbek \n" "Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "Махфий сўз" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Фойдаланувчи:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "Сеансни ишга тушириб бўлмади" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Тизимга кирилмоқда..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "Орқага" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Иш столи муҳитини танланг" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Хайр. Нима қилмоқчисиз…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Ўчириш" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Kompyuterni ochirmoqchiligingizga ishonchingiz komilmi?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" "Kompyuterga boshqa foydalanuvchilar ham kirgan, hozir o'chirish ushbu boshqa " "sessiyalarni ham yakunlaydi." #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Кутиш усули" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Уйқуга кетиш" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Ўчириб-ёқиш" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (odatiy)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Elektron pochtangizni to‘liq kiriting" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Elektron pochta manzili yoki parol noto‘g‘ri" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Agarda RDP yoki Citrix serverlarida sizning qaydingiz mavjud bo‘lsa, Ubuntu " "Remote Login sizga ushbu serverdan ishga tushirib beradi" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Bekor qilish" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "O‘rnatish" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Сервер тури кўллаб-қувватланмайди." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Кириш" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Қайтадан уриниш" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "%s сифатида бошқатдан уриниб кўриш" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #, fuzzy #~ msgid "Email:" #~ msgstr "Электрон почта манзили" #~ msgid "_Back" #~ msgstr "_Орқага" #~ msgid "Favorite Color (blue):" #~ msgstr "Танланган ранг (кўк)" arctica-greeter-0.99.1.5/po/vi.po0000644000000000000000000001617114007200004013271 0ustar # Vietnamese translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "Đang đăng nhập" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "Chọn môi trường làm việc chính" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "Goodbye. Bạn có muốn..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "Tắt máy" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "Bạn có chắc chắn muốn tắt máy không?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "Tạm dừng" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "Ngủ đông" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "Khởi động lại" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Mặc định)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Vui lòng nhập đầy đủ địa chỉ thư điện tử" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Địa chỉ thư điện tử hay mật khẩu không đúng" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Nếu bạn có tài khoản trên máy chủ RDP, hệ thống Đăng nhập Từ xa sẽ cho phép " "bạn chạy ứng dụng từ chính máy chủ đó." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Hủy" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Thiết đặt..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Bạn phải có tài khoản Đăng nhập từ xa dành cho Ubuntu thì mới có thể sử dụng " "được dịch vụ này. Bạn có muốn thiết đặt một tài khoản ngay bây giờ không?" #: ../src/user-list.vala:563 msgid "OK" msgstr "Đồng ý" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Bạn phải có tài khoản Đăng nhập từ xa dành cho Ubuntu thì mới có thể sử dụng " "được dịch vụ này. Ghé thăm trang uccs.canonical.com để thiết đặt tài khoản." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Bạn phải có tài khoản Đăng nhập từ xa dành cho Ubuntu thì mới có thể sử dụng " "được dịch vụ này. Bạn có muốn thiết đặt một tài khoản ngay bây giờ không?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Loại máy chủ không được hỗ trợ." #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Miền:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Đăng nhập" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Thử lại" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Thử lại theo như %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Nếu bạn có tài khoản trên RDP hay máy chủ Citrix, tính năng Đăng nhập từ " #~ "xa cho phép bạn chạy các ứng dụng từ chính máy chủ đó." #, fuzzy #~ msgid "Email:" #~ msgstr "Địa chỉ thư điện tử:" #~ msgid "_Back" #~ msgstr "_Lùi" #~ msgid "Favorite Color (blue):" #~ msgstr "Màu ưa dùng (xanh):" arctica-greeter-0.99.1.5/po/wae.po0000644000000000000000000001513714007200004013430 0ustar # Walser translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2012-01-24 16:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Walser \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" "X-Generator: Launchpad (build 17656)\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "Z password fer %s igä" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "Username" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "Loginbildširm" #: ../src/main-window.vala:119 msgid "Back" msgstr "" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "Bildschirmtaschtatür" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "Schtarčä kontrašt" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "Bildširmläser" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "Session Optionä" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "D desktopumgäbig üsläse" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (Default)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "Gascht login" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "Bitte en kompletti e-mail adräs igä" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "Falschi e-mail adräss oder password" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "" "Wennt es login fer en RDP server hesch, chansch di mit Remote Login üf dem " "server ilogge." #: ../src/user-list.vala:556 msgid "Cancel" msgstr "Abbräče" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "Ischtelle" #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "" "Dü brüchsch en Ubuntu Remote Login benutzer um dischä service z brüche. " "Willt jetzt en account erstelle?" #: ../src/user-list.vala:563 msgid "OK" msgstr "OK" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "Dü brüchsch en Ubuntu Remote Login benutzer um dischä service z brüche. Gang " "derfir üf uccs.canonical.com." #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "" "Dü brüchsch en Ubuntu Remote Login benutzer um dischä service z brüche. " "Willt jetzt en account erstelle?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "Server typ isch nit unerstitzt." #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "Gascht login" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "Domain:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "Iloġe" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "Iloġe als %s" #: ../src/user-list.vala:842 msgid "Retry" msgstr "Numal probiere" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "Numal probiere als %s" #: ../src/user-list.vala:882 msgid "Login" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "Gascht login" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "Wennt es login fer en RDP oder Citrix server hesch, chansch di mit Remote " #~ "Login üf dem server ilogge." #, fuzzy #~ msgid "Email:" #~ msgstr "E-mail adräss:" #~ msgid "Favorite Color (blue):" #~ msgstr "Lieblingsfarb (blau):" arctica-greeter-0.99.1.5/po/zh_CN.po0000644000000000000000000001576514007200004013664 0ustar # Chinese (Simplified) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-09-29 12:55+0000\n" "Last-Translator: yzqzss <2361769788@qq.com>\n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.9-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "为 %s账号输入密码" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "密码:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "用户名:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "密码不可用,请重试" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "认证失败" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "启动会话失败" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "正在登录..." #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "登陆界面" #: ../src/main-window.vala:119 msgid "Back" msgstr "后退" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "屏幕小键盘" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "高对比度" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "屏幕阅读器" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "会话选项" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "选择桌面环境" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "再见。您想..." #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "关机" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "您确定要关闭此计算机吗?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "当前已有其他用户登录此电脑,如果关机,其它用户的会话也将被终止。" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "挂起" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "休眠" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "重启" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (默认)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "显示已发布的版本" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "在测试模式下运行" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format, fuzzy msgid "Run '%s --help' to see a full list of available command line options." msgstr "当提供未知的命令行参数时打印出文本" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "请输入一个完整的电子邮件地址" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "邮件地址/密码错误" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "如果您在 RDP 服务器上有账户,可以使用远程登陆功能运行服务器上的程序。" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "取消" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "设置..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "您需要一个 Ubuntu 远程账户以使用该服务。您现在要设置一个账户吗?" #: ../src/user-list.vala:563 msgid "OK" msgstr "确定" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "您需要使用 Ubuntu 远程登陆帐号以使用该项服务。访问 uccs.canonical.com 以注册" "帐号。" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "您需要一个 Ubuntu 远程账户以使用该服务。您现在要设置一个账户吗?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "不支持该服务类型" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "域:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "登录" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "" #: ../src/user-list.vala:842 msgid "Retry" msgstr "重试" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "以 %s 重试" #: ../src/user-list.vala:882 msgid "Login" msgstr "登录" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "如果您在 RDP 或 Citrix 服务器上有帐号,可以使用远程登陆运行服务器上的应用" #~ "程序。" #, fuzzy #~ msgid "Email:" #~ msgstr "电子邮件地址:" #~ msgid "_Back" #~ msgstr "后退(_B)" #~ msgid "Favorite Color (blue):" #~ msgstr "喜欢的颜色(蓝色):" arctica-greeter-0.99.1.5/po/zh_HK.po0000644000000000000000000001625714007200004013663 0ustar # Chinese (Hong Kong) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2020-07-24 10:41+0000\n" "Last-Translator: lingcas \n" "Language-Team: Chinese (Traditional, Hong Kong) \n" "Language: zh_HK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.2-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "為 %s 輸入密碼" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "密碼:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "使用者名稱:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "密碼無效,請重試" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "身分核證失敗" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "無法啟動作業階段" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "正在登入…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "登入畫面" #: ../src/main-window.vala:119 msgid "Back" msgstr "返回" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "螢幕鍵盤" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "高對比" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "螢幕閱讀器" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "作業階段選項" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "選取桌面環境" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "再見。請問您想…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "關機" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "您確定您想關閉電腦嗎?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "其他用戶當前已登錄到這台電腦,現在關機也將關閉這些其餘的作業階段。" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "暫停" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "休眠" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "重新啟動" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (預設)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "顯示發行版本" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "以測試模式執行" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica 歡迎程式" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "執行「%s --help」來查看所有命令列可用選項的完整清單。" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "訪客作業階段" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "請輸入完整的電子郵件地址" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "電子郵件地址或密碼不正確" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 #, fuzzy msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "若你有 RDP 伺服器的帳號,「遠端登入」可讓你自該伺服器執行應用程式。" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "取消" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "設置..." #: ../src/user-list.vala:559 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "你要有 Ubuntu 遠端登入帳號才能使用此服務。想要馬上設置帳號嗎?" #: ../src/user-list.vala:563 msgid "OK" msgstr "確定" #: ../src/user-list.vala:565 #, fuzzy, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "" "你要有 Ubuntu 遠端登入帳號才能使用此服務。請造訪 uccs.canonical.com 來設置帳" "號。" #: ../src/user-list.vala:567 #, fuzzy msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "你要有 Ubuntu 遠端登入帳號才能使用此服務。想要馬上設置帳號嗎?" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "伺服器類型尚未支援。" #: ../src/user-list.vala:712 #, fuzzy msgid "X2Go Session:" msgstr "訪客作業階段" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "網域:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "登入" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "以 %s 身份登入" #: ../src/user-list.vala:842 msgid "Retry" msgstr "重試" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "以 %s 身份重試" #: ../src/user-list.vala:882 msgid "Login" msgstr "登入" #: ../arctica-greeter-guest-session-auto.sh:35 #, fuzzy, sh-format msgid "Temporary Guest Session" msgstr "訪客作業階段" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" #: ../data/arctica-greeter.desktop.in.h:1 #, fuzzy msgid "Arctica Greeter" msgstr "- Arctica 歡迎程式" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "若你有 RDP 或 Citrix 伺服器的帳號,「遠端登入」讓你可自該伺服器執行應用程" #~ "式。" #, fuzzy #~ msgid "Email:" #~ msgstr "電子郵件地址:" #~ msgid "_Back" #~ msgstr "返回(_B)" #~ msgid "Favorite Color (blue):" #~ msgstr "喜好色彩 (藍):" arctica-greeter-0.99.1.5/po/zh_TW.po0000644000000000000000000001712114007200004013702 0ustar # Chinese (Traditional) translation for arctica-greeter # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the arctica-greeter package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: arctica-greeter\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-08-17 09:58+0200\n" "PO-Revision-Date: 2019-01-12 17:06+0000\n" "Last-Translator: Louies \n" "Language-Team: Chinese (Traditional) \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.4-dev\n" "X-Launchpad-Export-Date: 2015-08-05 05:27+0000\n" #: ../src/greeter-list.vala:298 #, c-format msgid "Enter password for %s" msgstr "輸入 %s 的密碼" #: ../src/greeter-list.vala:820 ../src/user-list.vala:706 msgid "Password:" msgstr "密碼:" #: ../src/greeter-list.vala:822 ../src/user-list.vala:700 msgid "Username:" msgstr "使用者名稱:" #: ../src/greeter-list.vala:877 msgid "Invalid password, please try again" msgstr "無效的密碼,請重試" #: ../src/greeter-list.vala:888 msgid "Failed to authenticate" msgstr "身分核對失敗" #: ../src/greeter-list.vala:934 msgid "Failed to start session" msgstr "未能啟動作業階段" #: ../src/greeter-list.vala:949 msgid "Logging in…" msgstr "正在登入…" #: ../src/main-window.vala:55 msgid "Login Screen" msgstr "登入畫面" #: ../src/main-window.vala:119 msgid "Back" msgstr "返回" #: ../src/menubar.vala:226 msgid "Onscreen keyboard" msgstr "螢幕鍵盤" #: ../src/menubar.vala:231 msgid "High Contrast" msgstr "高反差" #: ../src/menubar.vala:237 msgid "Screen Reader" msgstr "螢幕閱讀器" #: ../src/prompt-box.vala:238 msgid "Session Options" msgstr "作業階段選項" #: ../src/session-list.vala:42 msgid "Select desktop environment" msgstr "選取桌面環境" #: ../src/shutdown-dialog.vala:103 msgid "Goodbye. Would you like to…" msgstr "再見了。您是否想要…" #: ../src/shutdown-dialog.vala:109 ../src/shutdown-dialog.vala:209 msgid "Shut Down" msgstr "關機" #: ../src/shutdown-dialog.vala:113 msgid "Are you sure you want to shut down the computer?" msgstr "是否確定要關掉電腦?" #: ../src/shutdown-dialog.vala:138 msgid "" "Other users are currently logged in to this computer, shutting down now will " "also close these other sessions." msgstr "目前還有其他使用者登入到此電腦,馬上關機會令此等工作階段也結束。" #: ../src/shutdown-dialog.vala:155 msgid "Suspend" msgstr "暫停" #: ../src/shutdown-dialog.vala:172 msgid "Hibernate" msgstr "休眠" #: ../src/shutdown-dialog.vala:190 msgid "Restart" msgstr "重新啟動" #. Translators: %s is a session name like KDE or Ubuntu #: ../src/toggle-box.vala:129 #, c-format msgid "%s (Default)" msgstr "%s (預設)" #. Help string for command line --version flag #: ../src/arctica-greeter.vala:669 msgid "Show release version" msgstr "顯示發行版本" #. Help string for command line --test-mode flag #: ../src/arctica-greeter.vala:672 msgid "Run in test mode" msgstr "以測試模式執行" #. Arguments and description for --help text #: ../src/arctica-greeter.vala:690 msgid "- Arctica Greeter" msgstr "- Arctica 歡迎程式" #. Text printed out when an unknown command-line argument provided #: ../src/arctica-greeter.vala:701 #, c-format msgid "Run '%s --help' to see a full list of available command line options." msgstr "執行「%s --help」來查看指令列所有可用選項的完整清單。" #: ../src/user-list.vala:47 msgid "Guest Session" msgstr "訪客作業階段" #: ../src/user-list.vala:440 msgid "Please enter a complete e-mail address" msgstr "請輸入完整的電子郵件位址" #: ../src/user-list.vala:520 msgid "Incorrect e-mail address or password" msgstr "不正確的電子郵件位址或密碼" #. dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); #. For 12.10 we still don't support Citrix #: ../src/user-list.vala:553 msgid "" "If you have an account on an RDP server or X2Go server, Remote Login lets " "you run applications from that server." msgstr "如果您在 RDP 伺服器或 X2Go 伺服器上有一個帳戶,則遠端登入允許您從該伺服器運行應用程式。" #: ../src/user-list.vala:556 msgid "Cancel" msgstr "取消" #: ../src/user-list.vala:557 msgid "Set Up…" msgstr "設置…" #: ../src/user-list.vala:559 msgid "" "You need a Remote Logon account to use this service. Would you like to set " "up an account now?" msgstr "您需要有遠端登入帳號才能使用此服務。您想要馬上設置帳號嗎?" #: ../src/user-list.vala:563 msgid "OK" msgstr "確定" #: ../src/user-list.vala:565 #, c-format msgid "" "You need a Remote Logon account to use this service. Visit %s to request an " "account." msgstr "您需要一個遠端登入帳戶才能使用此服務。訪問 %s 以請求帳戶。" #: ../src/user-list.vala:567 msgid "" "You need a Remote Logon account to use this service. Please ask your site " "administrator for details." msgstr "您需要有遠端登入帳號才能使用此服務。有關詳細資訊,請諮詢網站管理員。" #: ../src/user-list.vala:684 msgid "Server type not supported." msgstr "伺服器類型尚未支援。" #: ../src/user-list.vala:712 msgid "X2Go Session:" msgstr "X2Go Session:" #: ../src/user-list.vala:732 msgid "Domain:" msgstr "網域:" #: ../src/user-list.vala:793 msgid "Account ID" msgstr "帳戶 ID" #. 'Log In' here is the button for logging in. #: ../src/user-list.vala:837 msgid "Log In" msgstr "登入" #: ../src/user-list.vala:838 #, c-format msgid "Login as %s" msgstr "以 %s 身分登入" #: ../src/user-list.vala:842 msgid "Retry" msgstr "重試" #: ../src/user-list.vala:843 #, c-format msgid "Retry as %s" msgstr "以 %s 身分重試" #: ../src/user-list.vala:882 msgid "Login" msgstr "登入" #: ../arctica-greeter-guest-session-auto.sh:35 #, sh-format msgid "Temporary Guest Session" msgstr "訪客作業階段" #: ../arctica-greeter-guest-session-auto.sh:36 #, sh-format msgid "" "All data created during this guest session will be deleted\n" "when you log out, and settings will be reset to defaults.\n" "Please save files on some external device, for instance a\n" "USB stick, if you would like to access them again later." msgstr "" "在此來賓會話期間創建的所有資料都將被刪除\n" "當您登出時,設置將重置為預設值。\n" "請將檔保存在某些外部設備上,例如\n" "USB隨身碟,如果你想以後再訪問它們。" #: ../arctica-greeter-guest-session-auto.sh:40 #, sh-format msgid "" "Another alternative is to save files in the\n" "/var/guest-data folder." msgstr "" "另一種方法是將檔案保存在\n" "/var/guest-data folder上。" #: ../data/arctica-greeter.desktop.in.h:1 msgid "Arctica Greeter" msgstr "Arctica 歡迎程式" #~ msgid "" #~ "If you have an account on an RDP or Citrix server, Remote Login lets you " #~ "run applications from that server." #~ msgstr "" #~ "若您有個 RDP 或 Citrix 伺服器的帳號,「遠端登入」讓您可從該伺服器執行應用" #~ "程式。" #, fuzzy #~ msgid "Email:" #~ msgstr "電子郵件位址:" #~ msgid "Logging in..." #~ msgstr "正在登入..." #~ msgid "Enter username" #~ msgstr "輸入使用者名稱" #~ msgid "Enter password" #~ msgstr "輸入密碼" #~ msgid "_Back" #~ msgstr "返回(_B)" #~ msgid "Favorite Color (blue):" #~ msgstr "喜好色彩 (藍):" arctica-greeter-0.99.1.5/README0000644000000000000000000000006214007200003012544 0ustar https://github.com/ArcticaProject/arctica-greeter arctica-greeter-0.99.1.5/src/animate-timer.vala0000644000000000000000000001101514007200004016055 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ private class AnimateTimer : Object { /* x and y are 0.0 to 1.0 */ public delegate double EasingFunc (double x); /* The following are the same intervals that Unity uses */ public const int INSTANT = 150; /* Good for animations that don't convey any information */ public const int FAST = 250; /* Good for animations that convey duplicated information */ public const int NORMAL = 500; public const int SLOW = 1000; /* Good for animations that convey information that is only presented in the animation */ /* speed is in milliseconds */ public unowned EasingFunc easing_func { get; private set; } public int speed { get; set; } public bool is_running { get { return timeout != 0; } } public double progress { get; private set; } /* progress is from 0.0 to 1.0 */ public signal void animate (double progress); /* AnimateTimer requires two things: an easing function and a speed. The speed is just the duration of the animation in milliseconds. The easing function describes how fast the animation occurs at different parts of the duration. See http://hosted.zeh.com.br/tweener/docs/en-us/misc/transitions.html for examples of various easing functions. A few are provided with this class, notably ease_in_out and ease_out_quint. */ /* speed is in milliseconds */ public AnimateTimer (EasingFunc func, int speed) { Object (speed: speed); this.easing_func = func; } ~AnimateTimer () { stop (); } /* temp_speed is in milliseconds */ public void reset (int temp_speed = -1) { stop (); timeout = Timeout.add (16, animate_cb); progress = 0; start_time = 0; extra_time = 0; extra_progress = 0; if (temp_speed == -1) temp_speed = speed; length = temp_speed * TimeSpan.MILLISECOND; } public void stop () { if (timeout != 0) Source.remove (timeout); timeout = 0; } private uint timeout = 0; private TimeSpan start_time = 0; private TimeSpan length = 0; private TimeSpan extra_time = 0; private double extra_progress = 0.0; private bool animate_cb () { if (start_time == 0) start_time = GLib.get_monotonic_time (); var time_progress = normalize_time (GLib.get_monotonic_time ()); progress = calculate_progress (time_progress); animate (progress); if (time_progress >= 1.0) { timeout = 0; return false; } else return true; } /* Returns 0.0 to 1.0 where 1.0 is at or past end_time */ private double normalize_time (TimeSpan now) { if (length == 0) return 1.0f; return (((double)(now - start_time)) / length).clamp (0.0, 1.0); } /* Returns 0.0 to 1.0 where 1.0 is done. time is not normalized yet! */ private double calculate_progress (double time_progress) { var y = easing_func (time_progress); return y.clamp (0.0, 1.0); } public static double ease_in_out (double x) { return (1 - Math.cos (Math.PI * x)) / 2; } /*public static double ease_in_quad (double x) { return Math.pow (x, 2); }*/ /*public static double ease_out_quad (double x) { return -1 * Math.pow (x - 1, 2) + 1; }*/ /*public static double ease_in_quint (double x) { return Math.pow (x, 5); }*/ public static double ease_out_quint (double x) { return Math.pow (x - 1, 5) + 1; } } arctica-greeter-0.99.1.5/src/arctica-greeter.vala0000644000000000000000000011016114007200004016364 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011 Canonical Ltd * Copyright (C) 2015-2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Mike Gabriel */ public const int grid_size = 40; public class ArcticaGreeter { public static ArcticaGreeter singleton; public signal void show_message (string text, LightDM.MessageType type); public signal void show_prompt (string text, LightDM.PromptType type); public signal void authentication_complete (); public signal void starting_session (); public bool test_mode = false; private string state_file; private KeyFile state; private Cairo.XlibSurface background_surface; private SettingsDaemon settings_daemon; public bool orca_needs_kick; private MainWindow main_window; private LightDM.Greeter greeter; private Canberra.Context canberra_context; private static Timer log_timer; private DialogDBusInterface dbus_object; private SettingsDaemonDBusInterface settings_daemon_proxy; public signal void xsettings_ready (); public signal void greeter_ready (); private ArcticaGreeter (bool test_mode_) { singleton = this; test_mode = test_mode_; greeter = new LightDM.Greeter (); greeter.show_message.connect ((text, type) => { show_message (text, type); }); greeter.show_prompt.connect ((text, type) => { show_prompt (text, type); }); greeter.autologin_timer_expired.connect (() => { try { greeter.authenticate_autologin (); } catch (Error e) { warning ("Failed to autologin authenticate: %s", e.message); } }); greeter.authentication_complete.connect (() => { authentication_complete (); }); var connected = false; try { connected = greeter.connect_to_daemon_sync (); } catch (Error e) { warning ("Failed to connect to LightDM daemon: %s", e.message); } if (!connected && !test_mode) Posix.exit (Posix.EXIT_FAILURE); if (!test_mode) { settings_daemon = new SettingsDaemon (); settings_daemon.start (); } var state_dir = Path.build_filename (Environment.get_user_cache_dir (), "arctica-greeter"); DirUtils.create_with_parents (state_dir, 0775); var xdg_seat = GLib.Environment.get_variable("XDG_SEAT"); var state_file_name = xdg_seat != null && xdg_seat != "seat0" ? xdg_seat + "-state" : "state"; state_file = Path.build_filename (state_dir, state_file_name); state = new KeyFile (); try { state.load_from_file (state_file, KeyFileFlags.NONE); } catch (Error e) { if (!(e is FileError.NOENT)) warning ("Failed to load state from %s: %s\n", state_file, e.message); } if (!test_mode) { /* Render things after xsettings is ready */ xsettings_ready.connect ( xsettings_ready_cb ); GLib.Bus.watch_name (BusType.SESSION, "org.mate.SettingsDaemon", BusNameWatcherFlags.NONE, (c, name, owner) => { try { settings_daemon_proxy = GLib.Bus.get_proxy_sync ( BusType.SESSION, "org.mate.SettingsDaemon", "/org/mate/SettingsDaemon"); settings_daemon_proxy.plugin_activated.connect ( (name) => { if (name == "xsettings") { debug ("xsettings is ready"); xsettings_ready (); } } ); } catch (Error e) { debug ("Failed to get MSD proxy, proceed anyway"); xsettings_ready (); } }, null); } else xsettings_ready_cb (); } public string? get_state (string key) { try { return state.get_value ("greeter", key); } catch (Error e) { return null; } } public void set_state (string key, string value) { state.set_value ("greeter", key, value); var data = state.to_data (); try { FileUtils.set_contents (state_file, data); } catch (Error e) { debug ("Failed to write state: %s", e.message); } } public void push_list (GreeterList widget) { main_window.push_list (widget); } public void pop_list () { main_window.pop_list (); } public static void add_style_class (Gtk.Widget widget) { /* Add style context class lightdm-user-list */ var ctx = widget.get_style_context (); ctx.add_class ("lightdm"); } public static string? get_default_session () { var sessions = new List (); sessions.append ("lightdm-xsession"); // FIXME: this list should be obtained from AGSettings, ideally... sessions.append ("mate"); sessions.append ("xfce"); sessions.append ("kde-plasma"); sessions.append ("kde"); sessions.append ("gnome"); sessions.append ("cinnamon"); foreach (string session in sessions) { var path = Path.build_filename ("/usr/share/xsessions/", session.concat(".desktop"), null); if (FileUtils.test (path, FileTest.EXISTS)) { return session; } } warning ("Could not find a default session."); return null; } public static string validate_session (string? session) { /* Make sure the given session actually exists. Return it if it does. * otherwise, return the default session. */ if (session != null) { var path = Path.build_filename ("/usr/share/xsessions/", session.concat(".desktop"), null); if (!FileUtils.test (path, FileTest.EXISTS) ) { debug ("Invalid session: '%s'", session); session = null; } } if (session == null) { var default_session = ArcticaGreeter.get_default_session (); debug ("Invalid session: '%s'. Using session '%s' instead.", session, default_session); return default_session; } return session; } public bool start_session (string? session, Background bg) { /* Explicitly set the right scale before closing window */ var display = Gdk.Display.get_default(); var monitor = display.get_primary_monitor(); var scale = monitor.get_scale_factor (); background_surface.set_device_scale (scale, scale); main_window.before_session_start(); if (test_mode) { debug ("Successfully logged in! Quitting..."); Gtk.main_quit (); return true; } if (!session_is_valid (session)) { debug ("Session %s is not available, using system default %s instead", session, greeter.default_session_hint); session = greeter.default_session_hint; } var result = false; try { result = LightDM.greeter_start_session_sync (greeter, session); } catch (Error e) { warning ("Failed to start session: %s", e.message); } if (result) starting_session (); return result; } private bool session_is_valid (string? session) { if (session == null) return true; foreach (var s in LightDM.get_sessions ()) if (s.key == session) return true; return false; } private bool ready_cb () { debug ("starting system-ready sound"); /* Launch canberra */ Canberra.Context.create (out canberra_context); if (AGSettings.get_boolean (AGSettings.KEY_PLAY_READY_SOUND)) canberra_context.play (0, Canberra.PROP_CANBERRA_XDG_THEME_NAME, "arctica-greeter", Canberra.PROP_EVENT_ID, "system-ready"); return false; } public void show () { debug ("Showing main window"); if (!test_mode) main_window.set_decorated (false); main_window.show (); main_window.get_window ().focus (Gdk.CURRENT_TIME); main_window.set_keyboard_state (); } public bool is_authenticated () { return greeter.is_authenticated; } public void authenticate (string? userid = null) { try { greeter.authenticate (userid); } catch (Error e) { warning ("Failed to authenticate: %s", e.message); } } public void authenticate_as_guest () { try { greeter.authenticate_as_guest (); } catch (Error e) { warning ("Failed to authenticate as guest: %s", e.message); } } public void authenticate_remote (string? session, string? userid) { try { ArcticaGreeter.singleton.greeter.authenticate_remote (session, userid); } catch (Error e) { warning ("Failed to remote authenticate: %s", e.message); } } public void cancel_authentication () { try { greeter.cancel_authentication (); } catch (Error e) { warning ("Failed to cancel authentication: %s", e.message); } } public void respond (string response) { try { greeter.respond (response); } catch (Error e) { warning ("Failed to respond: %s", e.message); } } public string authentication_user () { return greeter.authentication_user; } public string default_session_hint () { return greeter.default_session_hint; } public string select_user_hint () { return greeter.select_user_hint; } public bool show_manual_login_hint () { return greeter.show_manual_login_hint; } public bool show_remote_login_hint () { return greeter.show_remote_login_hint; } public bool hide_users_hint () { return greeter.hide_users_hint; } public bool has_guest_account_hint () { return greeter.has_guest_account_hint; } private Gdk.FilterReturn focus_upon_map (Gdk.XEvent gxevent, Gdk.Event event) { var xevent = (X.Event*)gxevent; if (xevent.type == X.EventType.MapNotify) { var display = Gdk.X11.Display.lookup_for_xdisplay (xevent.xmap.display); var xwin = xevent.xmap.window; var win = new Gdk.X11.Window.foreign_for_display (display, xwin); if (win != null && !xevent.xmap.override_redirect) { /* Check to see if this window is our onboard window, since we don't want to focus it. */ X.Window keyboard_xid = 0; if (main_window.menubar.keyboard_window != null) keyboard_xid = (main_window.menubar.keyboard_window.get_window () as Gdk.X11.Window).get_xid (); if (xwin != keyboard_xid && win.get_type_hint() != Gdk.WindowTypeHint.NOTIFICATION) { win.focus (Gdk.CURRENT_TIME); /* Make sure to keep keyboard above */ if (main_window.menubar.keyboard_window != null) main_window.menubar.keyboard_window.get_window ().raise (); } } } else if (xevent.type == X.EventType.UnmapNotify) { // Since we aren't keeping track of focus (for example, we don't // track the Z stack of windows) like a normal WM would, when we // decide here where to return focus after another window unmaps, // we don't have much to go on. X will tell us if we should take // focus back. (I could not find an obvious way to determine this, // but checking if the X input focus is RevertTo.None seems // reliable.) X.Window xwin; int revert_to; xevent.xunmap.display.get_input_focus (out xwin, out revert_to); if (revert_to == X.RevertTo.None) { main_window.get_window ().focus (Gdk.CURRENT_TIME); /* Make sure to keep keyboard above */ if (main_window.menubar.keyboard_window != null) main_window.menubar.keyboard_window.get_window ().raise (); } } return Gdk.FilterReturn.CONTINUE; } private void start_fake_wm () { /* We want new windows (e.g. the shutdown dialog) to gain focus. We don't really need anything more than that (don't need alt-tab since any dialog should be "modal" or at least dealt with before continuing even if not actually marked as modal) */ var root = Gdk.get_default_root_window (); root.set_events (root.get_events () | Gdk.EventMask.SUBSTRUCTURE_MASK); root.add_filter (focus_upon_map); } private void kill_fake_wm () { var root = Gdk.get_default_root_window (); root.remove_filter (focus_upon_map); } private static Cairo.XlibSurface? create_root_surface (Gdk.Screen screen) { var visual = screen.get_system_visual (); unowned X.Display display = (screen.get_display () as Gdk.X11.Display).get_xdisplay (); unowned X.Screen xscreen = (screen as Gdk.X11.Screen).get_xscreen (); var pixmap = X.CreatePixmap (display, (screen.get_root_window () as Gdk.X11.Window).get_xid (), xscreen.width_of_screen (), xscreen.height_of_screen (), visual.get_depth ()); /* Convert into a Cairo surface */ var surface = new Cairo.XlibSurface (display, pixmap, (visual as Gdk.X11.Visual).get_xvisual (), xscreen.width_of_screen (), xscreen.height_of_screen ()); return surface; } private static void log_cb (string? log_domain, LogLevelFlags log_level, string message) { string prefix; switch (log_level & LogLevelFlags.LEVEL_MASK) { case LogLevelFlags.LEVEL_ERROR: prefix = "ERROR:"; break; case LogLevelFlags.LEVEL_CRITICAL: prefix = "CRITICAL:"; break; case LogLevelFlags.LEVEL_WARNING: prefix = "WARNING:"; break; case LogLevelFlags.LEVEL_MESSAGE: prefix = "MESSAGE:"; break; case LogLevelFlags.LEVEL_INFO: prefix = "INFO:"; break; case LogLevelFlags.LEVEL_DEBUG: prefix = "DEBUG:"; break; default: prefix = "LOG:"; break; } stderr.printf ("[%+.2fs] %s %s\n", log_timer.elapsed (), prefix, message); } private void xsettings_ready_cb () { /* Prepare to set the background */ debug ("Creating background surface"); background_surface = create_root_surface (Gdk.Screen.get_default ()); main_window = new MainWindow (); main_window.destroy.connect(() => { kill_fake_wm (); }); main_window.delete_event.connect(() => { Gtk.main_quit(); return false; }); Bus.own_name (BusType.SESSION, "org.ayatana.Greeter", BusNameOwnerFlags.NONE); dbus_object = new DialogDBusInterface (); dbus_object.open_dialog.connect ((type) => { ShutdownDialogType dialog_type; switch (type) { default: case 1: dialog_type = ShutdownDialogType.SHUTDOWN; break; case 2: dialog_type = ShutdownDialogType.RESTART; break; } main_window.show_shutdown_dialog (dialog_type); }); dbus_object.close_dialog.connect ((type) => { main_window.close_shutdown_dialog (); }); Bus.own_name (BusType.SESSION, "org.ayatana.Desktop", BusNameOwnerFlags.NONE, (c) => { try { c.register_object ("/org/gnome/SessionManager/EndSessionDialog", dbus_object); } catch (Error e) { warning ("Failed to register /org/gnome/SessionManager/EndSessionDialog: %s", e.message); } }, null, () => debug ("Failed to acquire name org.ayatana.Desktop")); start_fake_wm (); Gdk.threads_add_idle (ready_cb); greeter_ready (); } private static void set_keyboard_layout () { /* Avoid expensive Python execution where possible */ if (!FileUtils.test("/etc/default/keyboard", FileTest.EXISTS)) { return; } try { Process.spawn_command_line_sync(Path.build_filename (Config.PKGLIBEXECDIR, "arctica-greeter-set-keyboard-layout"), null, null, null); } catch (Error e){ warning ("Error while setting the keyboard layout: %s", e.message); } } private static void activate_numlock () { try { Process.spawn_command_line_sync("/usr/bin/numlockx on", null, null, null); } catch (Error e){ warning ("Error while activating numlock: %s", e.message); } } private static void activate_upower () { /* hacky approach, but does what's needed: activate the upower service over DBus */ try { Process.spawn_command_line_sync("/usr/bin/upower --version", null, null, null); } catch (Error e){ warning ("Error while triggering UPower activation: %s", e.message); } } private static void check_hidpi () { try { string output; Process.spawn_command_line_sync(Path.build_filename (Config.PKGLIBEXECDIR, "arctica-greeter-check-hidpi"), out output, null, null); output = output.strip(); if (output == "2") { debug ("Activating HiDPI (2x scale ratio)"); GLib.Environment.set_variable ("GDK_SCALE", "2", true); } } catch (Error e){ warning ("Error while setting HiDPI support: %s", e.message); } } public static int main (string[] args) { /* Protect memory from being paged to disk, as we deal with passwords According to systemd-dev, "mlockall() is generally a bad idea and certainly has no place in a graphical program. A program like this uses lots of memory and it is crucial that this memory can be paged out to relieve memory pressure." With systemd version 239 the ulimit for RLIMIT_MEMLOCK was set to 16 MiB and therefore the mlockall call would fail. This is lucky becasue the subsequent mmap would not fail. With systemd version 240 the RLIMIT_MEMLOCK is now set to 64 MiB and now the mlockall no longer fails. However, it not possible to mmap in all the memory and because that would still exceed the MEMLOCK limit. " See https://bugzilla.redhat.com/show_bug.cgi?id=1662857 & https://github.com/CanonicalLtd/lightdm/issues/55 RLIMIT_MEMLOCK = 64 MiB means, arctica-greeter will most likely fail with 64 bit and will always fail on 32 bit systems. Hence we better disable it. */ /*Posix.mlockall (Posix.MCL_CURRENT | Posix.MCL_FUTURE);*/ /* Disable the stupid global menubar */ Environment.unset_variable ("UBUNTU_MENUPROXY"); /* Initialize i18n */ Intl.setlocale (LocaleCategory.ALL, ""); Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.LOCALEDIR); Intl.bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8"); Intl.textdomain (Config.GETTEXT_PACKAGE); /* Set up the accessibility stack, in case the user needs it for screen reading etc. */ Environment.set_variable ("GTK_MODULES", "atk-bridge", false); /* Fix for https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1024482 Slick-greeter sets the mouse cursor on the root window. Without GDK_CORE_DEVICE_EVENTS set, the DE is unable to apply its own cursor theme and size. */ GLib.Environment.set_variable ("GDK_CORE_DEVICE_EVENTS", "1", true); log_timer = new Timer (); Log.set_default_handler (log_cb); bool do_show_version = false; bool do_test_mode = false; OptionEntry versionOption = { "version", 'v', 0, OptionArg.NONE, ref do_show_version, /* Help string for command line --version flag */ N_("Show release version"), null }; OptionEntry testOption = { "test-mode", 0, 0, OptionArg.NONE, ref do_test_mode, /* Help string for command line --test-mode flag */ N_("Run in test mode"), null }; OptionEntry nullOption = { null }; OptionEntry[] options = { versionOption, testOption, nullOption }; if (!do_test_mode) { var hidpi = AGSettings.get_string (AGSettings.KEY_ENABLE_HIDPI); debug ("HiDPI support: %s", hidpi); if (hidpi == "auto") { check_hidpi (); } else if (hidpi == "on") { GLib.Environment.set_variable ("GDK_SCALE", "2", true); } } debug ("Loading command line options"); var c = new OptionContext (/* Arguments and description for --help text */ _("- Arctica Greeter")); c.add_main_entries (options, Config.GETTEXT_PACKAGE); c.add_group (Gtk.get_option_group (true)); try { c.parse (ref args); } catch (Error e) { stderr.printf ("%s\n", e.message); stderr.printf (/* Text printed out when an unknown command-line argument provided */ _("Run '%s --help' to see a full list of available command line options."), args[0]); stderr.printf ("\n"); return Posix.EXIT_FAILURE; } if (do_show_version) { /* Note, not translated so can be easily parsed */ stderr.printf ("arctica-greeter %s\n", Config.VERSION); return Posix.EXIT_SUCCESS; } if (do_test_mode) debug ("Running in test mode"); /* Set the keyboard layout */ set_keyboard_layout (); /* Set the numlock state */ if (AGSettings.get_boolean (AGSettings.KEY_ACTIVATE_NUMLOCK)) { debug ("Activating numlock"); activate_numlock (); } Pid atspi_pid = 0; if (!do_test_mode) { try { string[] argv = null; if (FileUtils.test ("/usr/lib/at-spi2-core/at-spi-bus-launcher", FileTest.EXISTS)) { // Debian & derivatives... Shell.parse_argv ("/usr/lib/at-spi2-core/at-spi-bus-launcher --launch-immediately", out argv); } else if (FileUtils.test ("/usr/libexec/at-spi-bus-launcher", FileTest.EXISTS)) { // Fedora & derivatives... Shell.parse_argv ("/usr/libexec/at-spi-bus-launcher --launch-immediately", out argv); } if (argv != null) Process.spawn_async (null, argv, null, SpawnFlags.SEARCH_PATH, null, out atspi_pid); debug ("Launched at-spi-bus-launcher. PID: %d", atspi_pid); } catch (Error e) { warning ("Error starting the at-spi registry: %s", e.message); } } Gtk.init (ref args); Ido.init (); debug ("Starting arctica-greeter %s UID=%d LANG=%s", Config.VERSION, (int) Posix.getuid (), Environment.get_variable ("LANG")); /* Set the cursor to not be the crap default */ debug ("Setting cursor"); Gdk.get_default_root_window ().set_cursor (new Gdk.Cursor.for_display (Gdk.Display.get_default (), Gdk.CursorType.LEFT_PTR)); /* Set GTK+ settings */ debug ("Setting GTK+ settings"); var settings = Gtk.Settings.get_default (); var value = AGSettings.get_string (AGSettings.KEY_THEME_NAME); if (value != "") settings.set ("gtk-theme-name", value, null); value = AGSettings.get_string (AGSettings.KEY_ICON_THEME_NAME); if (value != "") settings.set ("gtk-icon-theme-name", value, null); value = AGSettings.get_string (AGSettings.KEY_FONT_NAME); if (value != "") settings.set ("gtk-font-name", value, null); var double_value = AGSettings.get_double (AGSettings.KEY_XFT_DPI); if (double_value != 0.0) settings.set ("gtk-xft-dpi", (int) (1024 * double_value), null); var boolean_value = AGSettings.get_boolean (AGSettings.KEY_XFT_ANTIALIAS); settings.set ("gtk-xft-antialias", boolean_value, null); value = AGSettings.get_string (AGSettings.KEY_XFT_HINTSTYLE); if (value != "") settings.set ("gtk-xft-hintstyle", value, null); value = AGSettings.get_string (AGSettings.KEY_XFT_RGBA); if (value != "") settings.set ("gtk-xft-rgba", value, null); debug ("Creating Arctica Greeter"); var greeter = new ArcticaGreeter (do_test_mode); string systemd_stderr; int systemd_exitcode = 0; Pid marco_pid = 0; Pid nmapplet_pid = 0; var indicator_list = AGSettings.get_strv(AGSettings.KEY_INDICATORS); var update_indicator_list = false; for (var i = 0; i < indicator_list.length; i++) { if (indicator_list[i] == "ug-keyboard") { indicator_list[i] = "org.ayatana.indicator.keyboard"; update_indicator_list = true; } } if (update_indicator_list) AGSettings.set_strv(AGSettings.KEY_INDICATORS, indicator_list); var launched_indicator_services = new List(); if (!do_test_mode) { activate_upower(); try { string[] argv; Shell.parse_argv ("marco", out argv); Process.spawn_async (null, argv, null, SpawnFlags.SEARCH_PATH, null, out marco_pid); debug ("Launched marco WM. PID: %d", marco_pid); } catch (Error e) { warning ("Error starting the Marco Window Manager: %s", e.message); } greeter.greeter_ready.connect (() => { debug ("Showing greeter"); greeter.show (); }); var indicator_service = ""; foreach (unowned string indicator in indicator_list) { if ("ug-" in indicator && ! ("." in indicator)) continue; if ("org.ayatana.indicator." in indicator) indicator_service = "ayatana-indicator-%s".printf(indicator.split_set(".")[3]); else if ("ayatana-" in indicator) indicator_service = "ayatana-indicator-%s".printf(indicator.split_set("-")[1]); else indicator_service = indicator; try { /* Start the indicator service */ string[] argv; Shell.parse_argv ("systemctl --user start %s".printf(indicator_service), out argv); Process.spawn_sync (null, argv, null, SpawnFlags.SEARCH_PATH, null, null, out systemd_stderr, out systemd_exitcode); if (systemd_exitcode == 0) { launched_indicator_services.append(indicator_service); debug ("Successfully started Indicator Service '%s'", indicator_service); } else { warning ("Systemd failed to start Indicator Service '%s': %s", indicator_service, systemd_stderr); } } catch (Error e) { warning ("Error starting Indicator Service '%s': %s", indicator_service, e.message); } } /* Make nm-applet hide items the user does not have permissions to interact with */ Environment.set_variable ("NM_APPLET_HIDE_POLICY_ITEMS", "1", true); try { string[] argv; Shell.parse_argv ("nm-applet --indicator", out argv); Process.spawn_async (null, argv, null, SpawnFlags.SEARCH_PATH, null, out nmapplet_pid); debug ("Launched nm-applet. PID: %d", nmapplet_pid); } catch (Error e) { warning ("Error starting the Network Manager Applet: %s", e.message); } } else greeter.show (); /* Setup a handler for TERM so we quit cleanly */ GLib.Unix.signal_add(GLib.ProcessSignal.TERM, () => { debug("Got a SIGTERM"); Gtk.main_quit(); return true; }); debug ("Starting main loop"); Gtk.main (); debug ("Cleaning up"); if (!do_test_mode) { foreach (unowned string indicator_service in launched_indicator_services) { try { /* Stop this indicator service */ string[] argv; Shell.parse_argv ("systemctl --user stop %s".printf(indicator_service), out argv); Process.spawn_sync (null, argv, null, SpawnFlags.SEARCH_PATH, null, null, out systemd_stderr, out systemd_exitcode); if (systemd_exitcode == 0) { debug ("Successfully stopped Indicator Service '%s' via systemd", indicator_service); } else { warning ("Systemd failed to stop Indicator Service '%s': %s", indicator_service, systemd_stderr); } } catch (Error e) { warning ("Error stopping Indicator Service '%s': %s", indicator_service, e.message); } } greeter.settings_daemon.stop(); if (nmapplet_pid != 0) { #if VALA_0_40 Posix.kill (nmapplet_pid, Posix.Signal.TERM); #else Posix.kill (nmapplet_pid, Posix.SIGTERM); #endif int status; Posix.waitpid (nmapplet_pid, out status, 0); if (Process.if_exited (status)) debug ("Network Manager Applet exited with return value %d", Process.exit_status (status)); else debug ("Network Manager Applet terminated with signal %d", Process.term_sig (status)); nmapplet_pid = 0; } if (atspi_pid != 0) { #if VALA_0_40 Posix.kill (atspi_pid, Posix.Signal.KILL); #else Posix.kill (atspi_pid, Posix.SIGKILL); #endif int status; Posix.waitpid (atspi_pid, out status, 0); if (Process.if_exited (status)) debug ("AT-SPI exited with return value %d", Process.exit_status (status)); else debug ("AT-SPI terminated with signal %d", Process.term_sig (status)); atspi_pid = 0; } if (marco_pid != 0) { #if VALA_0_40 Posix.kill (marco_pid, Posix.Signal.TERM); #else Posix.kill (marco_pid, Posix.SIGTERM); #endif int status; Posix.waitpid (marco_pid, out status, 0); if (Process.if_exited (status)) debug ("Marco Window Manager exited with return value %d", Process.exit_status (status)); else debug ("Marco Window Manager terminated with signal %d", Process.term_sig (status)); marco_pid = 0; } } var screen = Gdk.Screen.get_default (); unowned X.Display xdisplay = (screen.get_display () as Gdk.X11.Display).get_xdisplay (); var window = xdisplay.default_root_window(); var atom = xdisplay.intern_atom ("AT_SPI_BUS", true); if (atom != X.None) { xdisplay.delete_property (window, atom); Gdk.flush(); } debug ("Exiting"); return Posix.EXIT_SUCCESS; } } [DBus (name="org.gnome.SessionManager.EndSessionDialog")] public class DialogDBusInterface : Object { public signal void open_dialog (uint32 type); public signal void close_dialog (); public void open (uint32 type, uint32 timestamp, uint32 seconds_to_stay_open, ObjectPath[] inhibitor_object_paths) { open_dialog (type); } public void close () { close_dialog (); } } [DBus (name="org.mate.SettingsDaemon")] private interface SettingsDaemonDBusInterface : Object { public signal void plugin_activated (string name); public signal void plugin_deactivated (string name); } arctica-greeter-0.99.1.5/src/background.vala0000644000000000000000000006147614007200004015460 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015-2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ class BackgroundLoader : Object { public string filename { get; private set; } public Cairo.Surface logo { get; set; } public int[] widths; public int[] heights; public Cairo.Pattern[] patterns; public Gdk.RGBA average_color; private Cairo.Surface target_surface; private bool draw_grid; private Thread thread; private Gdk.Pixbuf[] images; private bool finished; private uint ready_id; public signal void loaded (); public BackgroundLoader (Cairo.Surface target_surface, string filename, int[] widths, int[] heights, bool draw_grid) { this.target_surface = target_surface; this.filename = filename; this.widths = widths; this.heights = heights; patterns = new Cairo.Pattern[widths.length]; images = new Gdk.Pixbuf[widths.length]; this.draw_grid = draw_grid; } public bool load () { /* Already loaded */ if (finished) return true; /* Currently loading */ if (thread != null) return false; /* No monitor data */ if (widths.length == 0) return false; var text = "Making background %s at %dx%d".printf (filename, widths[0], heights[0]); for (var i = 1; i < widths.length; i++) text += ",%dx%d".printf (widths[i], heights[i]); debug (text); var color = Gdk.RGBA (); if (color.parse (filename)) { var pattern = new Cairo.Pattern.rgba (color.red, color.green, color.blue, color.alpha); for (var i = 0; i < widths.length; i++) patterns[i] = pattern; average_color = color; finished = true; debug ("Render of background %s complete", filename); return true; } else { try { this.ref (); thread = new Thread.try ("background-loader", load_and_scale); } catch (Error e) { this.unref (); finished = true; return true; } } return false; } public Cairo.Pattern? get_pattern (int width, int height) { for (var i = 0; i < widths.length; i++) { if (widths[i] == width && heights[i] == height) return patterns[i]; } return null; } ~BackgroundLoader () { if (ready_id > 0) Source.remove (ready_id); ready_id = 0; } private bool ready_cb () { ready_id = 0; debug ("Render of background %s complete", filename); thread.join (); thread = null; finished = true; for (var i = 0; i < widths.length; i++) { if (images[i] != null) { patterns[i] = create_pattern (images[i]); if (i == 0) pixbuf_average_value (images[i], out average_color); images[i] = null; } else { debug ("images[%d] was null for %s", i, filename); patterns[i] = null; } } loaded (); this.unref (); return false; } private void* load_and_scale () { try { var image = new Gdk.Pixbuf.from_file (filename); for (var i = 0; i < widths.length; i++) images[i] = scale (image, widths[i], heights[i]); } catch (Error e) { debug ("Error loading background: %s", e.message); } ready_id = Gdk.threads_add_idle (ready_cb); return null; } private Gdk.Pixbuf? scale (Gdk.Pixbuf? image, int width, int height) { var target_aspect = (double) width / height; var aspect = (double) image.width / image.height; double scale, offset_x = 0, offset_y = 0; if (aspect > target_aspect) { /* Fit height and trim sides */ scale = (double) height / image.height; offset_x = (image.width * scale - width) / 2; } else { /* Fit width and trim top and bottom */ scale = (double) width / image.width; offset_y = (image.height * scale - height) / 2; } var scaled_image = new Gdk.Pixbuf (image.colorspace, image.has_alpha, image.bits_per_sample, width, height); image.scale (scaled_image, 0, 0, width, height, -offset_x, -offset_y, scale, scale, Gdk.InterpType.BILINEAR); return scaled_image; } private Cairo.Pattern? create_pattern (Gdk.Pixbuf image) { var grid_x_offset = get_grid_offset (image.width); var grid_y_offset = get_grid_offset (image.height); /* Create background */ var surface = new Cairo.Surface.similar (target_surface, Cairo.Content.COLOR, image.width, image.height); var bc = new Cairo.Context (surface); Gdk.cairo_set_source_pixbuf (bc, image, 0, 0); bc.paint (); /* Draw logo */ if (logo != null) { bc.save (); var y = (int) (image.height / grid_size - 2) * grid_size + grid_y_offset; bc.translate (grid_x_offset, y); bc.set_source_surface (logo, 0, 0); bc.paint_with_alpha (0.5); bc.restore (); } var pattern = new Cairo.Pattern.for_surface (surface); pattern.set_extend (Cairo.Extend.REPEAT); return pattern; } /* The following color averaging algorithm was originally written for Unity in C++, then patched into gnome-desktop3 in C. I've taken it and put it here in Vala. It would be nice if we could get gnome-desktop3 to expose this for our use instead of copying the code... */ const int QUAD_MAX_LEVEL_OF_RECURSION = 16; const int QUAD_MIN_LEVEL_OF_RECURSION = 2; const int QUAD_CORNER_WEIGHT_NW = 3; const int QUAD_CORNER_WEIGHT_NE = 1; const int QUAD_CORNER_WEIGHT_SE = 1; const int QUAD_CORNER_WEIGHT_SW = 3; const int QUAD_CORNER_WEIGHT_CENTER = 2; const int QUAD_CORNER_WEIGHT_TOTAL = (QUAD_CORNER_WEIGHT_NW + QUAD_CORNER_WEIGHT_NE + QUAD_CORNER_WEIGHT_SE + QUAD_CORNER_WEIGHT_SW + QUAD_CORNER_WEIGHT_CENTER); /* Pixbuf utilities */ private Gdk.RGBA get_pixbuf_sample (uint8[] pixels, int rowstride, int channels, int x, int y) { var sample = Gdk.RGBA (); double dd = 0xFF; int offset = ((y * rowstride) + (x * channels)); sample.red = pixels[offset++] / dd; sample.green = pixels[offset++] / dd; sample.blue = pixels[offset++] / dd; sample.alpha = 1.0f; return sample; } private bool is_color_different (Gdk.RGBA color_a, Gdk.RGBA color_b) { var diff = Gdk.RGBA (); diff.red = color_a.red - color_b.red; diff.green = color_a.green - color_b.green; diff.blue = color_a.blue - color_b.blue; diff.alpha = 1.0f; if (GLib.Math.fabs (diff.red) > 0.15 || GLib.Math.fabs (diff.green) > 0.15 || GLib.Math.fabs (diff.blue) > 0.15) return true; return false; } private Gdk.RGBA get_quad_average (int x, int y, int width, int height, int level_of_recursion, uint8[] pixels, int rowstride, int channels) { // samples four corners // c1-----c2 // | | // c3-----c4 var average = Gdk.RGBA (); var corner1 = get_pixbuf_sample (pixels, rowstride, channels, x , y ); var corner2 = get_pixbuf_sample (pixels, rowstride, channels, x + width, y ); var corner3 = get_pixbuf_sample (pixels, rowstride, channels, x , y + height); var corner4 = get_pixbuf_sample (pixels, rowstride, channels, x + width, y + height); var centre = get_pixbuf_sample (pixels, rowstride, channels, x + (width / 2), y + (height / 2)); /* If we're over the max we want to just take the average and be happy with that value */ if (level_of_recursion < QUAD_MAX_LEVEL_OF_RECURSION) { /* Otherwise we want to look at each value and check it's distance from the center color and take the average if they're far apart. */ /* corner 1 */ if (level_of_recursion < QUAD_MIN_LEVEL_OF_RECURSION || is_color_different(corner1, centre)) { corner1 = get_quad_average (x, y, width/2, height/2, level_of_recursion + 1, pixels, rowstride, channels); } /* corner 2 */ if (level_of_recursion < QUAD_MIN_LEVEL_OF_RECURSION || is_color_different(corner2, centre)) { corner2 = get_quad_average (x + width/2, y, width/2, height/2, level_of_recursion + 1, pixels, rowstride, channels); } /* corner 3 */ if (level_of_recursion < QUAD_MIN_LEVEL_OF_RECURSION || is_color_different(corner3, centre)) { corner3 = get_quad_average (x, y + height/2, width/2, height/2, level_of_recursion + 1, pixels, rowstride, channels); } /* corner 4 */ if (level_of_recursion < QUAD_MIN_LEVEL_OF_RECURSION || is_color_different(corner4, centre)) { corner4 = get_quad_average (x + width/2, y + height/2, width/2, height/2, level_of_recursion + 1, pixels, rowstride, channels); } } average.red = ((corner1.red * QUAD_CORNER_WEIGHT_NW) + (corner3.red * QUAD_CORNER_WEIGHT_SW) + (centre.red * QUAD_CORNER_WEIGHT_CENTER) + (corner2.red * QUAD_CORNER_WEIGHT_NE) + (corner4.red * QUAD_CORNER_WEIGHT_SE)) / QUAD_CORNER_WEIGHT_TOTAL; average.green = ((corner1.green * QUAD_CORNER_WEIGHT_NW) + (corner3.green * QUAD_CORNER_WEIGHT_SW) + (centre.green * QUAD_CORNER_WEIGHT_CENTER) + (corner2.green * QUAD_CORNER_WEIGHT_NE) + (corner4.green * QUAD_CORNER_WEIGHT_SE)) / QUAD_CORNER_WEIGHT_TOTAL; average.blue = ((corner1.blue * QUAD_CORNER_WEIGHT_NW) + (corner3.blue * QUAD_CORNER_WEIGHT_SW) + (centre.blue * QUAD_CORNER_WEIGHT_CENTER) + (corner2.blue * QUAD_CORNER_WEIGHT_NE) + (corner4.blue * QUAD_CORNER_WEIGHT_SE)) / QUAD_CORNER_WEIGHT_TOTAL; average.alpha = 1.0f; return average; } private void pixbuf_average_value (Gdk.Pixbuf pixbuf, out Gdk.RGBA result) { var average = get_quad_average (0, 0, pixbuf.get_width () - 1, pixbuf.get_height () - 1, 1, pixbuf.get_pixels (), pixbuf.get_rowstride (), pixbuf.get_n_channels ()); result = Gdk.RGBA (); result.red = average.red; result.green = average.green; result.blue = average.blue; result.alpha = average.alpha; } } public class Monitor { public int x; public int y; public int width; public int height; public Monitor (int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } public bool equals (Monitor? other) { if (other != null) return (x == other.x && y == other.y && width == other.width && height == other.height); return false; } } public class Background : Gtk.Fixed { public enum DrawFlags { NONE, GRID, } /* Fallback bgcolor - shown upon first startup, until an async background loader finishes, * or until a user background or default background is loaded. */ private string _fallback_bgcolor = null; public string fallback_bgcolor { get { if (_fallback_bgcolor == null) { var settings_bgcolor = AGSettings.get_string (AGSettings.KEY_BACKGROUND_COLOR); var color = Gdk.RGBA (); if (settings_bgcolor == "" || !color.parse (settings_bgcolor)) { settings_bgcolor = "#000000"; } _fallback_bgcolor = settings_bgcolor; } return _fallback_bgcolor; } } private string _system_background; public string? system_background { get { if (_system_background == null) { var system_bg = AGSettings.get_string (AGSettings.KEY_BACKGROUND); if (system_bg == "") { system_bg = fallback_bgcolor; } _system_background = system_bg; } return _system_background; } } /* Current background - whatever the background object is or should be showing right now. * This could be a simple color or a file name - the BackgroundLoader takes care of deciding * how to deal with it, we just ensure whatever we're sending is valid. */ private string _current_background; public string? current_background { get { if (_current_background != "") { return _current_background; } else { return fallback_bgcolor; } } set { if (value == null || value == "") { _current_background = system_background; } else { _current_background = value; } reload (); } } public bool draw_grid { get; set; default = true; } public double alpha { get; private set; default = 1.0; } public Gdk.RGBA average_color { get { return current.average_color; } } private Cairo.Surface target_surface; private List monitors = null; private Monitor? active_monitor = null; private AnimateTimer timer; private BackgroundLoader current; private BackgroundLoader old; private HashTable loaders; private Cairo.Surface? version_logo_surface = null; private int version_logo_width; private int version_logo_height; public Background () { target_surface = null; timer = null; resize_mode = Gtk.ResizeMode.QUEUE; draw_grid = AGSettings.get_boolean (AGSettings.KEY_DRAW_GRID); loaders = new HashTable (str_hash, str_equal); show (); } public void set_surface (Cairo.Surface target_surface) { this.target_surface = target_surface; timer = new AnimateTimer (AnimateTimer.ease_in_out, 700); set_logo (AGSettings.get_string (AGSettings.KEY_LOGO)); timer.animate.connect (animate_cb); } public void set_logo (string version_logo) { version_logo_surface = load_image (version_logo, out version_logo_width, out version_logo_height); } private Cairo.Surface? load_image (string filename, out int width, out int height) { width = height = 0; try { if (filename != "") { var image = new Gdk.Pixbuf.from_file (filename); width = image.width; height = image.height; var surface = new Cairo.Surface.similar (target_surface, Cairo.Content.COLOR_ALPHA, image.width, image.height); var c = new Cairo.Context (surface); Gdk.cairo_set_source_pixbuf (c, image, 0, 0); c.paint (); return surface; } } catch (Error e) { debug ("Failed to load background component %s: %s", filename, e.message); } return null; } public void set_monitors (List monitors) { this.monitors = new List (); foreach (var m in monitors) this.monitors.append (m); queue_draw (); } public void set_active_monitor (Monitor? monitor) { active_monitor = monitor; } public override void size_allocate (Gtk.Allocation allocation) { if(!get_realized()) { return; } var resized = allocation.height != get_allocated_height () || allocation.width != get_allocated_width (); base.size_allocate (allocation); /* Regenerate backgrounds */ if (resized) { debug ("Regenerating backgrounds"); loaders.remove_all (); load_background (null); reload (); } } public override bool draw (Cairo.Context c) { var flags = DrawFlags.NONE; if (draw_grid) flags |= DrawFlags.GRID; draw_full (c, flags); return base.draw (c); } public void draw_full (Cairo.Context c, DrawFlags flags) { c.save (); /* Test whether we ran into an error loading this background */ if (current == null || (current.load () && current.patterns[0] == null)) { /* We couldn't load it, so swap it out for the default background and remember that choice */ var new_background = load_background (null); if (current != null) loaders.insert (current.filename, new_background); if (old == current) old = new_background; current = new_background; publish_average_color (); } /* Fade to this background when loaded */ if (current.load () && current != old && !timer.is_running) { alpha = 0.0; timer.reset (); } c.set_source_rgba (0.0, 0.0, 0.0, 0.0); var old_painted = false; /* Draw old background */ if (old != null && old.load () && (alpha < 1.0 || !current.load ())) { draw_background (c, old, 1.0); old_painted = true; } /* Draw new background */ if (current.load () && alpha > 0.0) draw_background (c, current, old_painted ? alpha : 1.0); c.restore (); if ((flags & DrawFlags.GRID) != 0) overlay_grid (c); } private void draw_background (Cairo.Context c, BackgroundLoader background, double alpha) { foreach (var monitor in monitors) { var pattern = background.get_pattern (monitor.width, monitor.height); if (pattern == null) continue; c.save (); pattern = background.get_pattern (monitor.width, monitor.height); var matrix = Cairo.Matrix.identity (); matrix.translate (-monitor.x, -monitor.y); pattern.set_matrix (matrix); c.set_source (pattern); c.rectangle (monitor.x, monitor.y, monitor.width, monitor.height); c.clip (); c.paint_with_alpha (alpha); c.restore (); } } private void animate_cb (double progress) { alpha = progress; queue_draw (); /* Stop when we get there */ if (alpha >= 1.0) old = current; } private void reload () { if (get_realized ()) { var new_background = load_background (current_background); if (current != new_background) { old = current; current = new_background; alpha = 1.0; /* if the timer isn't going, we should always be at 1.0 */ timer.stop (); } queue_draw (); publish_average_color (); } } private BackgroundLoader load_background (string? filename) { if (filename == null) { filename = fallback_bgcolor; } else { try { var file = File.new_for_path(filename); var fileInfo = file.query_info(FileAttribute.ACCESS_CAN_READ, FileQueryInfoFlags.NONE, null); if (!fileInfo.get_attribute_boolean(FileAttribute.ACCESS_CAN_READ)) { debug ("Can't read background file %s, falling back to %s", filename, system_background); filename = system_background; } } catch { filename = system_background; } } var b = loaders.lookup (filename); if (b == null) { /* Load required sizes to draw background */ var widths = new int[monitors.length ()]; var heights = new int[monitors.length ()]; var n_sizes = 0; foreach (var monitor in monitors) { if (monitor_is_unique_size (monitor)) { widths[n_sizes] = monitor.width; heights[n_sizes] = monitor.height; n_sizes++; } } widths.resize (n_sizes); heights.resize (n_sizes); b = new BackgroundLoader (target_surface, filename, widths, heights, draw_grid); b.logo = version_logo_surface; b.loaded.connect (() => { reload (); }); b.load (); loaders.insert (filename, b); } return b; } /* Check if a monitor has a unique size */ private bool monitor_is_unique_size (Monitor monitor) { foreach (var m in monitors) { if (m == monitor) break; else if (m.width == monitor.width && m.height == monitor.height) return false; } return true; } private void overlay_grid (Cairo.Context c) { var width = get_allocated_width (); var height = get_allocated_height (); var grid_x_offset = get_grid_offset (width); var grid_y_offset = get_grid_offset (height); /* Overlay grid */ var overlay_surface = new Cairo.Surface.similar (target_surface, Cairo.Content.COLOR_ALPHA, grid_size, grid_size); var oc = new Cairo.Context (overlay_surface); oc.rectangle (0, 0, 1, 1); oc.rectangle (grid_size - 1, 0, 1, 1); oc.rectangle (0, grid_size - 1, 1, 1); oc.rectangle (grid_size - 1, grid_size - 1, 1, 1); oc.set_source_rgba (1.0, 1.0, 1.0, 0.25); oc.fill (); var overlay = new Cairo.Pattern.for_surface (overlay_surface); var matrix = Cairo.Matrix.identity (); matrix.translate (-grid_x_offset, -grid_y_offset); overlay.set_matrix (matrix); overlay.set_extend (Cairo.Extend.REPEAT); /* Draw overlay */ c.save (); c.set_source (overlay); c.rectangle (0, 0, width, height); c.fill (); c.restore (); } void publish_average_color () { notify_property ("average-color"); if (!ArcticaGreeter.singleton.test_mode) { var rgba = current.average_color.to_string (); var root = get_screen ().get_root_window (); Gdk.property_change (root, Gdk.Atom.intern_static_string ("_GNOME_BACKGROUND_REPRESENTATIVE_COLORS"), Gdk.Atom.intern_static_string ("STRING"), 8, Gdk.PropMode.REPLACE, rgba.data, rgba.data.length); } } } arctica-greeter-0.99.1.5/src/cached-image.vala0000644000000000000000000000367614007200004015626 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry */ public class CachedImage : Gtk.Image { private static HashTable surface_table; public static Cairo.Surface? get_cached_surface (Cairo.Context c, Gdk.Pixbuf pixbuf) { if (surface_table == null) surface_table = new HashTable (direct_hash, direct_equal); var surface = surface_table.lookup (pixbuf); if (surface == null) { surface = new Cairo.Surface.similar (c.get_target (), Cairo.Content.COLOR_ALPHA, pixbuf.width, pixbuf.height); var new_c = new Cairo.Context (surface); Gdk.cairo_set_source_pixbuf (new_c, pixbuf, 0, 0); new_c.paint (); surface_table.insert (pixbuf, surface); } return surface; } public CachedImage (Gdk.Pixbuf? pixbuf) { Object (pixbuf: pixbuf); } public override bool draw (Cairo.Context c) { if (pixbuf != null) { var cached_surface = get_cached_surface (c, pixbuf); if (cached_surface != null) { c.set_source_surface (cached_surface, 0, 0); c.paint (); } } return false; } } arctica-greeter-0.99.1.5/src/cairo-utils.vala0000644000000000000000000001202414007200004015555 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2013 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Marco Trevisan * Mirco "MacSlow" Mueller */ namespace CairoUtils { public void rounded_rectangle (Cairo.Context c, double x, double y, double width, double height, double radius) { var w = width - radius * 2; var h = height - radius * 2; var kappa = 0.5522847498 * radius; c.move_to (x + radius, y); c.rel_line_to (w, 0); c.rel_curve_to (kappa, 0, radius, radius - kappa, radius, radius); c.rel_line_to (0, h); c.rel_curve_to (0, kappa, kappa - radius, radius, -radius, radius); c.rel_line_to (-w, 0); c.rel_curve_to (-kappa, 0, -radius, kappa - radius, -radius, -radius); c.rel_line_to (0, -h); c.rel_curve_to (0, -kappa, radius - kappa, -radius, radius, -radius); } class ExponentialBlur { /* Exponential Blur, based on the Nux version */ const int APREC = 16; const int ZPREC = 7; public static void surface (Cairo.ImageSurface surface, int radius) { if (radius < 1) return; // before we mess with the surface execute any pending drawing surface.flush (); unowned uchar[] pixels = surface.get_data (); var width = surface.get_width (); var height = surface.get_height (); var format = surface.get_format (); switch (format) { case Cairo.Format.ARGB32: blur (pixels, width, height, 4, radius); break; case Cairo.Format.RGB24: blur (pixels, width, height, 3, radius); break; case Cairo.Format.A8: blur (pixels, width, height, 1, radius); break; default : // do nothing break; } // inform cairo we altered the surfaces contents surface.mark_dirty (); } static void blur (uchar[] pixels, int width, int height, int channels, int radius) { // calculate the alpha such that 90% of // the kernel is within the radius. // (Kernel extends to infinity) int alpha = (int) ((1 << APREC) * (1.0f - Math.expf(-2.3f / (radius + 1.0f)))); for (int row = 0; row < height; ++row) blurrow (pixels, width, height, channels, row, alpha); for (int col = 0; col < width; ++col) blurcol (pixels, width, height, channels, col, alpha); } static void blurrow (uchar[] pixels, int width, int height, int channels, int line, int alpha) { var scanline = &(pixels[line * width * channels]); int zR = *scanline << ZPREC; int zG = *(scanline + 1) << ZPREC; int zB = *(scanline + 2) << ZPREC; int zA = *(scanline + 3) << ZPREC; for (int index = 0; index < width; ++index) { blurinner (&scanline[index * channels], alpha, ref zR, ref zG, ref zB, ref zA); } for (int index = width - 2; index >= 0; --index) { blurinner (&scanline[index * channels], alpha, ref zR, ref zG, ref zB, ref zA); } } static void blurcol (uchar[] pixels, int width, int height, int channels, int x, int alpha) { var ptr = &(pixels[x * channels]); int zR = *ptr << ZPREC; int zG = *(ptr + 1) << ZPREC; int zB = *(ptr + 2) << ZPREC; int zA = *(ptr + 3) << ZPREC; for (int index = width; index < (height - 1) * width; index += width) { blurinner (&ptr[index * channels], alpha, ref zR, ref zG, ref zB, ref zA); } for (int index = (height - 2) * width; index >= 0; index -= width) { blurinner (&ptr[index * channels], alpha, ref zR, ref zG, ref zB, ref zA); } } static void blurinner (uchar *pixel, int alpha, ref int zR, ref int zG, ref int zB, ref int zA) { int R; int G; int B; uchar A; R = *pixel; G = *(pixel + 1); B = *(pixel + 2); A = *(pixel + 3); zR += (alpha * ((R << ZPREC) - zR)) >> APREC; zG += (alpha * ((G << ZPREC) - zG)) >> APREC; zB += (alpha * ((B << ZPREC) - zB)) >> APREC; zA += (alpha * ((A << ZPREC) - zA)) >> APREC; *pixel = zR >> ZPREC; *(pixel + 1) = zG >> ZPREC; *(pixel + 2) = zB >> ZPREC; *(pixel + 3) = zA >> ZPREC; } } } arctica-greeter-0.99.1.5/src/config.vapi0000644000000000000000000000060114007200004014601 0ustar [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")] namespace Config { public const string GETTEXT_PACKAGE; public const string LOCALEDIR; public const string VERSION; public const string INDICATOR_FILE_DIR; public const string PKGDATADIR; public const string PKGLIBEXECDIR; public const string INDICATORDIR; public const string SD_BINARY; } arctica-greeter-0.99.1.5/src/dash-box.vala0000644000000000000000000001527414007200004015041 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry * Mike Gabriel */ public class DashBox : Gtk.Box { public Background? background { get; construct; default = null; } public bool has_base { get; private set; default = false; } public double base_alpha { get; private set; default = 1.0; } private enum Mode { NORMAL, PUSH_FADE_OUT, PUSH_FADE_IN, POP_FADE_OUT, POP_FADE_IN, } private GreeterList pushed; private Gtk.Widget orig = null; private FadeTracker orig_tracker; private int orig_height = -1; private Mode mode; public DashBox (Background bg) { Object (background: bg); } construct { mode = Mode.NORMAL; } /* Does not actually add w to this widget, as doing so would potentially mess with w's placement. */ public void set_base (Gtk.Widget? w) { if (!ArcticaGreeter.singleton.test_mode) { return_if_fail (pushed == null); return_if_fail (mode == Mode.NORMAL); } if (orig != null) orig.size_allocate.disconnect (base_size_allocate_cb); orig = w; if (orig != null) { orig.size_allocate.connect (base_size_allocate_cb); orig_tracker = new FadeTracker (orig); orig_tracker.notify["alpha"].connect (() => { base_alpha = orig_tracker.alpha; queue_draw (); }); orig_tracker.done.connect (fade_done_cb); base_alpha = orig_tracker.alpha; has_base = true; } else { orig_height = -1; get_preferred_height (null, out orig_height); /* save height */ orig_tracker = null; base_alpha = 1.0; has_base = false; } queue_resize (); } public void push (GreeterList l) { /* This isn't designed to push more than one widget at a time yet */ return_if_fail (pushed == null); return_if_fail (orig != null); return_if_fail (mode == Mode.NORMAL); get_preferred_height (null, out orig_height); pushed = l; pushed.fade_done.connect (fade_done_cb); mode = Mode.PUSH_FADE_OUT; orig_tracker.reset (FadeTracker.Mode.FADE_OUT); queue_resize (); } public void pop () { return_if_fail (pushed != null); return_if_fail (orig != null); return_if_fail (mode == Mode.NORMAL); mode = Mode.POP_FADE_OUT; pushed.fade_out (); } private void fade_done_cb () { switch (mode) { case Mode.PUSH_FADE_OUT: mode = Mode.PUSH_FADE_IN; orig.hide (); pushed.fade_in (); break; case Mode.PUSH_FADE_IN: mode = Mode.NORMAL; pushed.grab_focus (); break; case Mode.POP_FADE_OUT: mode = Mode.POP_FADE_IN; orig_tracker.reset (FadeTracker.Mode.FADE_IN); orig.show (); break; case Mode.POP_FADE_IN: mode = Mode.NORMAL; pushed.fade_done.disconnect (fade_done_cb); pushed.destroy (); pushed = null; queue_resize (); orig.grab_focus (); break; } } private void base_size_allocate_cb () { queue_resize (); } public override void get_preferred_height (out int min, out int nat) { if (orig == null) { /* Return cached height if we have it. This makes transitions between two base widgets smoother. */ if (orig_height >= 0) { min = orig_height; nat = orig_height; } else { min = grid_size * GreeterList.DEFAULT_BOX_HEIGHT - GreeterList.BORDER * 2; nat = grid_size * GreeterList.DEFAULT_BOX_HEIGHT - GreeterList.BORDER * 2; } } else { if (pushed == null) orig.get_preferred_height (out min, out nat); else { pushed.selected_entry.get_preferred_height (out min, out nat); min = int.max (orig_height, min); nat = int.max (orig_height, nat); } } } public override void get_preferred_width (out int min, out int nat) { min = grid_size * GreeterList.BOX_WIDTH - GreeterList.BORDER * 2; nat = grid_size * GreeterList.BOX_WIDTH - GreeterList.BORDER * 2; } public override bool draw (Cairo.Context c) { if (background != null) { int x, y; background.translate_coordinates (this, 0, 0, out x, out y); c.save (); c.translate (x, y); background.draw_full (c, Background.DrawFlags.NONE); c.restore (); } /* Draw darker background with a rounded border */ var box_r = 0.3 * grid_size; int box_y = 0; int box_w; int box_h; get_preferred_width (null, out box_w); get_preferred_height (null, out box_h); if (mode == Mode.PUSH_FADE_OUT) { /* Grow dark bg to fit new pushed object */ var new_box_h = box_h - (int) ((box_h - orig_height) * base_alpha); box_h = new_box_h; } else if (mode == Mode.POP_FADE_IN) { /* Shrink dark bg to fit orig */ var new_box_h = box_h - (int) ((box_h - orig_height) * base_alpha); box_h = new_box_h; } c.save (); CairoUtils.rounded_rectangle (c, 0, box_y, box_w, box_h, box_r); c.set_source_rgba (0.1, 0.1, 0.1, 0.4); c.fill_preserve (); c.set_source_rgba (0.4, 0.4, 0.4, 0.4); c.set_line_width (1); c.stroke (); c.restore (); return base.draw (c); } } arctica-greeter-0.99.1.5/src/dash-button.vala0000644000000000000000000000610514007200004015555 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * Copyright (C) 2014,2015 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry * Mike Gabriel */ public class DashButton : FlatButton, Fadable { protected FadeTracker fade_tracker { get; protected set; } private Gtk.Label text_label; public static string font = AGSettings.get_string (AGSettings.KEY_FONT_NAME); public static string font_family = font.split_set(" ")[0]; public static int font_size = int.parse(font.split_set(" ")[1]); private string _text = ""; public string text { get { return _text; } set { _text = value; text_label.set_markup ("%s".printf (font_family, font_size+2, value)); } } public DashButton (string text) { fade_tracker = new FadeTracker (this); var hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); if (font_size < 6) font_size = 6; /* Add text */ text_label = new Gtk.Label (""); text_label.use_markup = true; text_label.hexpand = true; text_label.halign = Gtk.Align.START; hbox.add (text_label); this.text = text; /* Add chevron */ var path = Path.build_filename (Config.PKGDATADIR, "arrow_right.png", null); try { var pixbuf = new Gdk.Pixbuf.from_file (path); var image = new CachedImage (pixbuf); image.valign = Gtk.Align.CENTER; hbox.add (image); } catch (Error e) { debug ("Error loading image %s: %s", path, e.message); } hbox.show_all (); add (hbox); try { var style = new Gtk.CssProvider (); style.load_from_data ("* {padding: 6px 8px 6px 8px; outline-width: 0px; }", -1); this.get_style_context ().add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading session chooser style: %s", e.message); } } public override bool draw (Cairo.Context c) { c.push_group (); base.draw (c); c.pop_group_to_source (); c.paint_with_alpha (fade_tracker.alpha); return false; } } arctica-greeter-0.99.1.5/src/dash-entry.vala0000644000000000000000000002243614007200004015410 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * Copyright (C) 2015 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry * Mike Gabriel */ /* Vala's vapi for gtk3 is broken for lookup_color (it forgets the out keyword) */ [CCode (cheader_filename = "gtk/gtk.h")] extern bool gtk_style_context_lookup_color (Gtk.StyleContext ctx, string color_name, out Gdk.RGBA color); public class DashEntry : Gtk.Entry, Fadable { public static string font = AGSettings.get_string (AGSettings.KEY_FONT_NAME); public static string font_family = font.split_set(" ")[0]; public static int font_size = int.parse(font.split_set(" ")[1]); public signal void respond (); public string constant_placeholder_text { get; set; } public bool can_respond { get; set; default = true; } private bool _did_respond; public bool did_respond { get { return _did_respond; } set { _did_respond = value; if (value) set_state_flags (Gtk.StateFlags.ACTIVE, false); else unset_state_flags (Gtk.StateFlags.ACTIVE); queue_draw (); } } protected FadeTracker fade_tracker { get; protected set; } private Gdk.Window arrow_win; private static Gdk.Pixbuf arrow_pixbuf; construct { fade_tracker = new FadeTracker (this); notify["can-respond"].connect (queue_draw); button_press_event.connect (button_press_event_cb); if (arrow_pixbuf == null) { var filename = Path.build_filename (Config.PKGDATADIR, "arrow_right.png"); try { arrow_pixbuf = new Gdk.Pixbuf.from_file (filename); } catch (Error e) { debug ("Internal error loading arrow icon: %s", e.message); } } var style_ctx = get_style_context (); try { var padding_provider = new Gtk.CssProvider (); var css = "* {padding-right: %dpx;}".printf (get_arrow_size ()); padding_provider.load_from_data (css, -1); style_ctx.add_provider (padding_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading padding style: %s", e.message); } if (font_size < 6) font_size = 6; try { var font_provider = new Gtk.CssProvider (); var css = "* {font-family: %s; font-size: %dpt;}".printf (font_family, font_size+3); font_provider.load_from_data (css, -1); style_ctx.add_provider (font_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading font style (%s, %dpt): %s", font_family, font_size+3, e.message); } } public override bool draw (Cairo.Context c) { var style_ctx = get_style_context (); // See construct method for explanation of why we remove classes style_ctx.save (); c.save (); c.push_group (); base.draw (c); c.pop_group_to_source (); c.paint_with_alpha (fade_tracker.alpha); c.restore (); style_ctx.restore (); /* Now draw the prompt text */ if (get_text_length () == 0 && constant_placeholder_text.length > 0) draw_prompt_text (c); /* Draw activity spinner if we need to */ if (did_respond) draw_spinner (c); else if (can_respond && get_text_length () > 0) draw_arrow (c); return false; } private void draw_spinner (Cairo.Context c) { c.save (); var style_ctx = get_style_context (); var arrow_size = get_arrow_size (); Gtk.cairo_transform_to_window (c, this, arrow_win); style_ctx.render_activity (c, 0, 0, arrow_size, arrow_size); c.restore (); } private void draw_arrow (Cairo.Context c) { if (arrow_pixbuf == null) return; c.save (); var arrow_size = get_arrow_size (); Gtk.cairo_transform_to_window (c, this, arrow_win); c.translate (arrow_size - arrow_pixbuf.get_width () - 1, 0); // right align Gdk.cairo_set_source_pixbuf (c, arrow_pixbuf, 0, 0); c.paint (); c.restore (); } private void draw_prompt_text (Cairo.Context c) { c.save (); /* Position text */ int x, y; get_layout_offsets (out x, out y); c.move_to (x, y); /* Set foreground color */ var fg = Gdk.RGBA (); var context = get_style_context (); if (!gtk_style_context_lookup_color (context, "placeholder_text_color", out fg)) fg.parse ("#888"); c.set_source_rgba (fg.red, fg.green, fg.blue, fg.alpha); /* Draw text */ var layout = create_pango_layout (constant_placeholder_text); layout.set_font_description (Pango.FontDescription.from_string ("%s %d".printf(font_family, font_size+2))); Pango.cairo_show_layout (c, layout); c.restore (); } public override void activate () { base.activate (); if (can_respond) { did_respond = true; respond (); } else { get_toplevel ().child_focus (Gtk.DirectionType.TAB_FORWARD); } } public bool button_press_event_cb (Gdk.EventButton event) { if (event.window == arrow_win && get_text_length () > 0) { activate (); return true; } else return false; } private int get_arrow_size () { // height is larger than width for the arrow, so we measure using that if (arrow_pixbuf != null) return arrow_pixbuf.get_height (); else return 20; // Shouldn't happen } private void get_arrow_location (out int x, out int y) { var arrow_size = get_arrow_size (); Gtk.Allocation allocation; get_allocation (out allocation); // height is larger than width for the arrow, so we measure using that var margin = (allocation.height - arrow_size) / 2; x = allocation.x + allocation.width - margin - arrow_size; y = allocation.y + margin; } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); if (arrow_win == null) return; int arrow_x, arrow_y; get_arrow_location (out arrow_x, out arrow_y); var arrow_size = get_arrow_size (); arrow_win.move_resize (arrow_x, arrow_y, arrow_size, arrow_size); } public override void realize () { base.realize (); var cursor = new Gdk.Cursor.for_display (get_display (), Gdk.CursorType.LEFT_PTR); var attrs = Gdk.WindowAttr (); attrs.x = 0; attrs.y = 0; attrs.width = 1; attrs.height = 1; attrs.cursor = cursor; attrs.wclass = Gdk.WindowWindowClass.INPUT_ONLY; attrs.window_type = Gdk.WindowType.CHILD; attrs.event_mask = get_events () | Gdk.EventMask.BUTTON_PRESS_MASK; arrow_win = new Gdk.Window (get_window (), attrs, Gdk.WindowAttributesType.X | Gdk.WindowAttributesType.Y | Gdk.WindowAttributesType.CURSOR); arrow_win.ref (); arrow_win.set_user_data (this); } public override void unrealize () { if (arrow_win != null) { arrow_win.destroy (); arrow_win = null; } base.unrealize (); } public override void map () { base.map (); if (arrow_win != null) arrow_win.show (); } public override void unmap () { if (arrow_win != null) arrow_win.hide (); base.unmap (); } public override bool key_press_event (Gdk.EventKey event) { // This is a workaroud for bug https://launchpad.net/bugs/944159 // The problem is that orca seems to not notice that it's in a password // field on startup. We just need to kick orca in the pants. if (ArcticaGreeter.singleton.orca_needs_kick) { Signal.emit_by_name (get_accessible (), "focus-event", true); ArcticaGreeter.singleton.orca_needs_kick = false; } return base.key_press_event (event); } } arctica-greeter-0.99.1.5/src/email-autocompleter.vala0000644000000000000000000000514014007200004017273 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ public class EmailAutocompleter { private Gtk.Entry entry; private string[] domains; private string prevText = ""; private void entry_changed () { if (entry.text.length < prevText.length) { /* Do nothing on erases of text */ prevText = entry.text; return; } prevText = entry.text; int first_at = entry.text.index_of ("@"); if (first_at != -1) { int second_at = entry.text.index_of ("@", first_at + 1); if (second_at == -1) { /* We have exactly one @ */ string text_after_at = entry.text.slice (first_at + 1, entry.text.length); /* Find first prefix match */ int match = -1; for (int i = 0; match == -1 && i < domains.length; ++i) { if (domains[i].has_prefix (text_after_at)) match = i; } if (match != -1) { /* Calculate the suffix part we need to add */ var best_match = domains[match]; var text_to_add = best_match.slice (text_after_at.length, best_match.length); if (text_to_add.length > 0) { entry.text = entry.text + text_to_add; /* TODO This is quite ugly/hacky :-/ */ Timeout.add (0, () => { entry.select_region (entry.text.length - text_to_add.length, entry.text.length); return false; }); } } } } } public EmailAutocompleter (Gtk.Entry e, string[] email_domains) { entry = e; domains = email_domains; entry.changed.connect (entry_changed); } } arctica-greeter-0.99.1.5/src/fadable-box.vala0000644000000000000000000000256014007200004015472 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Michael Terry */ public class FadableBox : Gtk.EventBox, Fadable { public signal void fade_done (); protected FadeTracker fade_tracker { get; protected set; } construct { visible_window = false; fade_tracker = new FadeTracker (this); fade_tracker.done.connect (() => { fade_done (); }); } protected virtual void draw_full_alpha (Cairo.Context c) { base.draw (c); } public override bool draw (Cairo.Context c) { c.push_group (); draw_full_alpha (c); c.pop_group_to_source (); c.paint_with_alpha (fade_tracker.alpha); return false; } } arctica-greeter-0.99.1.5/src/fadable.vala0000644000000000000000000000451114007200004014702 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry */ public class FadeTracker : Object { public signal void done (); public double alpha { get; set; default = 1.0; } public Gtk.Widget widget { get; construct; } public enum Mode { FADE_IN, FADE_OUT, } public FadeTracker (Gtk.Widget widget) { Object (widget: widget); } public void reset (Mode mode) { this.mode = mode; animate_cb (0.0); widget.show (); timer.reset (); } private AnimateTimer timer; private Mode mode; construct { timer = new AnimateTimer (AnimateTimer.ease_out_quint, AnimateTimer.INSTANT); timer.animate.connect (animate_cb); } private void animate_cb (double progress) { if (mode == Mode.FADE_IN) { alpha = progress; if (progress == 1.0) { done (); } } else { alpha = 1.0 - progress; if (progress == 1.0) { widget.hide (); /* finish the job */ done (); } } widget.queue_draw (); } } public interface Fadable : Gtk.Widget { protected abstract FadeTracker fade_tracker { get; protected set; } public void fade_in () { fade_tracker.reset (FadeTracker.Mode.FADE_IN); } public void fade_out () { fade_tracker.reset (FadeTracker.Mode.FADE_OUT); } /* In case you want to control fade manually */ public void set_alpha (double alpha) { fade_tracker.alpha = alpha; queue_draw (); } } arctica-greeter-0.99.1.5/src/fading-label.vala0000644000000000000000000000502714007200004015634 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry */ public class FadingLabel : Gtk.Label { private Cairo.Surface cached_surface; public FadingLabel (string text) { Object (label: text); } public override void get_preferred_width (out int minimum, out int natural) { base.get_preferred_width (out minimum, out natural); minimum = 0; } public override void get_preferred_width_for_height (int height, out int minimum, out int natural) { base.get_preferred_width_for_height (height, out minimum, out natural); minimum = 0; } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); cached_surface = null; } private Cairo.Surface make_surface (Cairo.Context orig_c) { int w, h; get_layout ().get_pixel_size (out w, out h); var bw = get_allocated_width (); var bh = get_allocated_height (); var surface = new Cairo.Surface.similar (orig_c.get_target (), Cairo.Content.COLOR_ALPHA, bw, bh); var c = new Cairo.Context (surface); if (w > bw) { c.push_group (); base.draw (c); c.pop_group_to_source (); var mask = new Cairo.Pattern.linear (0, 0, bw, 0); mask.add_color_stop_rgba (1.0 - 27.0 / bw, 1.0, 1.0, 1.0, 1.0); mask.add_color_stop_rgba (1.0 - 21.6 / bw, 1.0, 1.0, 1.0, 0.5); mask.add_color_stop_rgba (1.0, 1.0, 1.0, 1.0, 0.0); c.mask (mask); } else base.draw (c); return surface; } public override bool draw (Cairo.Context c) { if (cached_surface == null) cached_surface = make_surface (c); c.set_source_surface (cached_surface, 0, 0); c.paint (); return false; } } arctica-greeter-0.99.1.5/src/fixes.vapi0000644000000000000000000000246714007200004014466 0ustar #if !VALA_0_22 namespace Posix { [CCode (cheader_filename = "sys/mman.h")] public const int MCL_CURRENT; [CCode (cheader_filename = "sys/mman.h")] public const int MCL_FUTURE; [CCode (cheader_filename = "sys/mman.h")] public int mlockall (int flags); [CCode (cheader_filename = "sys/mman.h")] public int munlockall (); } #endif // See https://bugzilla.gnome.org/show_bug.cgi?id=727113 [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "X11/Xlib.h")] namespace X { [CCode (cname = "XCreatePixmap")] public int CreatePixmap (X.Display display, X.Drawable d, uint width, uint height, uint depth); [CCode (cname = "XSetWindowBackgroundPixmap")] public int SetWindowBackgroundPixmap (X.Display display, X.Window w, int Pixmap); [CCode (cname = "XClearWindow")] public int ClearWindow (X.Display display, X.Window w); public const int RetainPermanent; } namespace Gtk { namespace RGB { // Fixed in Vala 0.24 public void to_hsv (double r, double g, double b, out double h, out double s, out double v); } public void button_set_focus_on_click (Gtk.Button button, bool focus_on_click); } // Note, fixed in 1.10.0 namespace LightDM { bool greeter_start_session_sync (LightDM.Greeter greeter, string session) throws GLib.Error; } arctica-greeter-0.99.1.5/src/flat-button.vala0000644000000000000000000000411014007200004015556 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * Copyright (C) 2015-2016, Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry * Mike Gabriel */ public class FlatButton : Gtk.Button { private bool did_press; construct { ArcticaGreeter.add_style_class (this); try { var style = new Gtk.CssProvider (); style.load_from_data ("* {outline-width: 1px; }", -1); get_style_context ().add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading session chooser style: %s", e.message); } } public override bool button_press_event (Gdk.EventButton event) { // Do nothing. The normal handler sets priv->button_down which // internally causes draw() to draw a special border and background // that we don't want. did_press = true; return true; } public override bool button_release_event (Gdk.EventButton event) { if (did_press) { event.type = Gdk.EventType.BUTTON_PRESS; base.button_press_event (event); // fake an insta-click did_press = false; } event.type = Gdk.EventType.BUTTON_RELEASE; return base.button_release_event (event); } } arctica-greeter-0.99.1.5/src/greeter-list.vala0000644000000000000000000006673114007200004015746 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * Copyright (C) 2015-2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Scott Sweeny * Mike Gabriel */ private const int MAX_FIELD_SIZE = 200; private int get_grid_offset (int size) { return (int) (size % grid_size) / 2; } [DBus (name="org.ayatana.Greeter.List")] public class ListDBusInterface : Object { private GreeterList list; public ListDBusInterface (GreeterList list) { this.list = list; this.list.entry_selected.connect ((name) => { entry_selected (name); }); } public string get_active_entry () { return list.get_active_entry (); } public void set_active_entry (string entry_name) { list.set_active_entry (entry_name); } public signal void entry_selected (string entry_name); } public abstract class GreeterList : FadableBox { public Background background { get; construct; } public MenuBar menubar { get; construct; } public PromptBox? selected_entry { get; private set; default = null; } public bool start_scrolling { get; set; default = true; } protected string greeter_authenticating_user; protected bool _always_show_manual = false; public bool always_show_manual { get { return _always_show_manual; } set { _always_show_manual = value; if (value) add_manual_entry (); else if (have_entries ()) remove_entry ("*other"); } } protected List entries = null; private ListDBusInterface dbus_object; private double scroll_target_location; private double scroll_start_location; private double scroll_location; private double scroll_direction; private AnimateTimer scroll_timer; private Gtk.Fixed fixed; public DashBox greeter_box; private int cached_box_height = -1; protected enum Mode { ENTRY, SCROLLING, } protected Mode mode = Mode.ENTRY; public const int BORDER = 4; public const int BOX_WIDTH = 8; /* in grid_size blocks */ public const int DEFAULT_BOX_HEIGHT = 3; /* in grid_size blocks */ private uint n_above = 4; private uint n_below = 4; private int box_x { get { return 0; } } private int box_y { get { /* First, get grid row number as if menubar weren't there */ var row = (MainWindow.MENUBAR_HEIGHT + get_allocated_height ()) / grid_size; row = row - DEFAULT_BOX_HEIGHT; /* and no default dash box */ row = row / 2; /* and in the middle */ /* Now calculate y pixel spot keeping in mind menubar's allocation */ return row * grid_size - MainWindow.MENUBAR_HEIGHT; } } public signal void entry_selected (string? name); public signal void entry_displayed_start (); public signal void entry_displayed_done (); protected virtual string? get_selected_id () { if (selected_entry == null) return null; return selected_entry.id; } private string? _manual_name = null; public string? manual_name { get { return _manual_name; } set { _manual_name = value; if (find_entry ("*other") != null) add_manual_entry (); } } private PromptBox _scrolling_entry = null; private PromptBox scrolling_entry { get { return _scrolling_entry; } set { /* When we swap out a scrolling entry, make sure to hide its * image button, else it will appear in the tab chain. */ if (_scrolling_entry != null) _scrolling_entry.set_options_image (null); _scrolling_entry = value; } } internal GreeterList (Background bg, MenuBar mb) { Object (background: bg, menubar: mb); } construct { can_focus = false; visible_window = false; fixed = new Gtk.Fixed (); fixed.show (); add (fixed); greeter_box = new DashBox (background); greeter_box.notify["base-alpha"].connect (() => { queue_draw (); }); greeter_box.show (); greeter_box.size_allocate.connect (greeter_box_size_allocate_cb); add_with_class (greeter_box); scroll_timer = new AnimateTimer (AnimateTimer.ease_out_quint, AnimateTimer.FAST); scroll_timer.animate.connect (animate_scrolling); try { Bus.get.begin (BusType.SESSION, null, on_bus_acquired); } catch (IOError e) { debug ("Error getting session bus: %s", e.message); } } private void on_bus_acquired (Object? obj, AsyncResult res) { try { var conn = Bus.get.end (res); this.dbus_object = new ListDBusInterface (this); conn.register_object ("/list", this.dbus_object); } catch (IOError e) { debug ("Error registering user list dbus object: %s", e.message); } } public enum ScrollTarget { START, END, UP, DOWN, } public override void get_preferred_width (out int min, out int nat) { min = BOX_WIDTH * grid_size; nat = BOX_WIDTH * grid_size; } public override void get_preferred_height (out int min, out int nat) { base.get_preferred_height (out min, out nat); min = 0; } public void cancel_authentication () { ArcticaGreeter.singleton.cancel_authentication (); entry_selected (selected_entry.id); } public void scroll (ScrollTarget target) { if (!sensitive) return; switch (target) { case ScrollTarget.START: select_entry (entries.nth_data (0), -1.0); break; case ScrollTarget.END: select_entry (entries.nth_data (entries.length () - 1), 1.0); break; case ScrollTarget.UP: var index = entries.index (selected_entry) - 1; if (index < 0) index = 0; select_entry (entries.nth_data (index), -1.0); break; case ScrollTarget.DOWN: var index = entries.index (selected_entry) + 1; if (index >= (int) entries.length ()) index = (int) entries.length () - 1; select_entry (entries.nth_data (index), 1.0); break; } } protected void add_with_class (Gtk.Widget widget) { fixed.add (widget); ArcticaGreeter.add_style_class (widget); } protected void redraw_greeter_box () { Gtk.Allocation allocation; greeter_box.get_allocation (out allocation); queue_draw_area (allocation.x, allocation.y, allocation.width, allocation.height); } public void show_message (string text, bool is_error = false) { if (will_clear) { selected_entry.clear (); will_clear = false; } selected_entry.add_message (text, is_error); } public DashEntry add_prompt (string text, bool secret = false) { if (will_clear) { selected_entry.clear (); will_clear = false; } string accessible_text = null; if (selected_entry != null && selected_entry.label != null) accessible_text = _("Enter password for %s").printf (selected_entry.label); var prompt = selected_entry.add_prompt (text, accessible_text, secret); if (mode != Mode.SCROLLING) selected_entry.show_prompts (); focus_prompt (); redraw_greeter_box (); return prompt; } public Gtk.ComboBox add_combo (GenericArray texts, bool read_only) { if (will_clear) { selected_entry.clear (); will_clear = false; } var combo = selected_entry.add_combo (texts, read_only); focus_prompt (); redraw_greeter_box (); return combo; } public override void grab_focus () { focus_prompt (); } public virtual void focus_prompt () { selected_entry.sensitive = true; selected_entry.grab_focus (); } public abstract void show_authenticated (bool successful = true); protected PromptBox? find_entry (string id) { foreach (var entry in entries) { if (entry.id == id) return entry; } return null; } protected static int compare_entry (PromptBox a, PromptBox b) { if (a.id.has_prefix ("*") || b.id.has_prefix ("*")) { /* Special entries go after normal ones */ if (!a.id.has_prefix ("*")) return -1; if (!b.id.has_prefix ("*")) return 1; /* Manual comes before guest */ if (a.id == "*other") return -1; if (a.id == "*guest") return 1; } /* Alphabetical by label */ return a.label.ascii_casecmp (b.label); } protected bool have_entries () { foreach (var e in entries) { if (e.id != "*other") return true; } return false; } protected virtual void insert_entry (PromptBox entry) { entries.insert_sorted (entry, compare_entry); } protected abstract void add_manual_entry (); protected void add_entry (PromptBox entry) { entry.expand = true; entry.set_size_request (grid_size * BOX_WIDTH - BORDER * 2, -1); add_with_class (entry); insert_entry (entry); entry.name_clicked.connect (entry_clicked_cb); if (selected_entry == null) select_entry (entry, 1.0); else select_entry (selected_entry, 1.0); move_names (); } public string get_active_entry () { string entry = ""; if (selected_entry != null && selected_entry.id != null) entry = selected_entry.id; return entry; } public void set_active_entry (string ?name) { var e = find_entry (name); if (e != null) { var direction = 1.0; if (selected_entry != null && entries.index (selected_entry) > entries.index (e)) { direction = -1.0; } select_entry (e, direction); } } public void set_active_first_entry_with_prefix (string prefix) { foreach (var e in entries) { if (e.id.has_prefix (prefix)) { select_entry (e, 1.0); break; } } } public void remove_entry (string? name) { remove_entry_by_entry (find_entry (name)); } public void remove_entries_with_prefix (string prefix) { int i = 0; while (i < entries.length ()) { PromptBox e = entries.nth_data (i); if (e.id.has_prefix (prefix)) remove_entry_by_entry (e); else i++; } } public void remove_entry_by_entry (PromptBox? entry) { if (entry == null) return; var index = entries.index (entry); /* Select another entry if the selected one was removed */ if (entry == selected_entry) { if (index > 0) { index--; if (entries.nth_data (index) != null) select_entry (entries.nth_data (index), -1.0); } else if (index < entries.length () -1 ) { index++; if (entries.nth_data (index) != null) select_entry (entries.nth_data (index), +1.0); } } entries.remove (entry); entry.destroy (); /* Show a manual login if no users and no remote login entry */ if (!have_entries () && !ArcticaGreeter.singleton.show_remote_login_hint ()) add_manual_entry (); queue_draw (); } protected int get_greeter_box_height () { int height; greeter_box.get_preferred_height (null, out height); return height; } protected int get_greeter_box_height_grids () { int height = get_greeter_box_height (); return height / grid_size + 1; /* +1 because we'll be slightly under due to BORDER */ } protected int get_greeter_box_x () { return box_x + BORDER; } protected int get_greeter_box_y () { return box_y + BORDER; } protected virtual int get_position_y (double position) { // Most position heights are just the grid height. Except for the // greeter box itself. int box_height = get_greeter_box_height_grids () * grid_size; double offset; if (position < 0) offset = position * grid_size; else if (position < 1) offset = position * box_height; else offset = (position - 1) * grid_size + box_height; return box_y + (int)Math.round(offset); } private void move_entry (PromptBox entry, double position) { var alpha = 1.0; if (position < 0) alpha = 1.0 + position / (n_above + 1); else alpha = 1.0 - position / (n_below + 1); entry.set_alpha (alpha); /* Some entry types may care where they are (e.g. wifi prompt) */ entry.position = position; Gtk.Allocation allocation; get_allocation (out allocation); var child_allocation = Gtk.Allocation (); child_allocation.width = grid_size * BOX_WIDTH - BORDER * 2; entry.get_preferred_height_for_width (child_allocation.width, null, out child_allocation.height); child_allocation.x = allocation.x + get_greeter_box_x (); child_allocation.y = allocation.y + get_position_y (position); fixed.move (entry, child_allocation.x, child_allocation.y); entry.size_allocate (child_allocation); } public void greeter_box_size_allocate_cb (Gtk.Allocation allocation) { /* If the greeter box allocation changes while not moving fix the entries position */ if (scrolling_entry == null && allocation.height != cached_box_height) { /* We run in idle because it's kind of a recursive loop and * ends up positioning the entries in the wrong place if we try * to do it during an existing allocation. */ Idle.add (() => { move_names (); return false; }); } cached_box_height = allocation.height; } public void move_names () { var index = 0; foreach (var entry in entries) { var position = index - scroll_location; /* Draw entries above, in and below the box */ if (position > -1 * (int)(n_above + 1) && position < n_below + 1) { move_entry (entry, position); // Sometimes we will be overlayed by another widget like the // session chooser. In such cases, don't try to show ourselves var is_hidden = (position == 0 && greeter_box.has_base && greeter_box.base_alpha == 0.0); if (!is_hidden) entry.show (); } else entry.hide (); index++; } queue_draw (); } private void animate_scrolling (double progress) { /* Total height of list */ var h = entries.length (); /* How far we have to go in total, either up or down with wrapping */ var distance = scroll_target_location - scroll_start_location; if (scroll_direction * distance < 0) distance += scroll_direction * h; /* How far we've gone so far */ distance *= progress; /* Go that far and wrap around */ scroll_location = scroll_start_location + distance; if (scroll_location > h) scroll_location -= h; if (scroll_location < 0) scroll_location += h; move_names (); if (progress >= 0.975 && !greeter_box.has_base) { setup_prompt_box (); entry_displayed_start (); } /* Stop when we get there */ if (progress >= 1.0) finished_scrolling (); } private void finished_scrolling () { scrolling_entry = null; selected_entry.show_prompts (); /* set prompts to be visible immediately */ focus_prompt (); entry_displayed_done (); mode = Mode.ENTRY; #if HAVE_GTK_3_20_0 queue_allocate (); #endif } protected void select_entry (PromptBox entry, double direction, bool do_scroll = true) { if (!get_realized ()) { /* Just note it for the future if we haven't been realized yet */ selected_entry = entry; return; } if (scroll_target_location != entries.index (entry)) { var new_target = entries.index (entry); var new_direction = direction; var new_start = scroll_location; if (scroll_location != new_target && do_scroll) { var new_distance = new_direction * (new_target - new_start); /* Base rate is 350 (250 + 100). If we find ourselves going further, slow down animation */ scroll_timer.reset (250 + int.min ((int)(100 * (Math.fabs (new_distance))), 500)); mode = Mode.SCROLLING; } scrolling_entry = selected_entry; scroll_target_location = new_target; scroll_direction = new_direction; scroll_start_location = new_start; } if (selected_entry != entry) { greeter_box.set_base (null); if (selected_entry != null) selected_entry.clear (); selected_entry = entry; entry_selected (selected_entry.id); if (mode == Mode.ENTRY) { /* don't need to move, but make sure we trigger the same side effects */ setup_prompt_box (); scroll_timer.reset (0); } } } protected virtual void setup_prompt_box (bool fade = true) { greeter_box.set_base (selected_entry); selected_entry.add_static_prompts (); if (fade) selected_entry.fade_in_prompts (); else selected_entry.show_prompts (); } public override void realize () { base.realize (); /* NOTE: This is going to cause the entry_selected signal to be emitted even if selected_entry has not changed */ var saved_entry = selected_entry; selected_entry = null; select_entry (saved_entry, 1, start_scrolling); move_names (); } private void allocate_greeter_box () { Gtk.Allocation allocation; get_allocation (out allocation); var child_allocation = Gtk.Allocation (); greeter_box.get_preferred_width (null, out child_allocation.width); greeter_box.get_preferred_height (null, out child_allocation.height); child_allocation.x = allocation.x + get_greeter_box_x (); child_allocation.y = allocation.y + get_greeter_box_y (); fixed.move (greeter_box, child_allocation.x, child_allocation.y); greeter_box.size_allocate (child_allocation); foreach (var entry in entries) { entry.set_zone (greeter_box); } } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); if (!get_realized ()) return; allocate_greeter_box (); move_names (); } public override bool draw (Cairo.Context c) { c.push_group (); c.save (); fixed.propagate_draw (greeter_box, c); /* Always full alpha */ c.restore (); if (greeter_box.base_alpha != 0.0) { c.save (); c.push_group (); c.rectangle (get_greeter_box_x (), get_greeter_box_y () - n_above * grid_size, grid_size * BOX_WIDTH - BORDER * 2, grid_size * (n_above + n_below + get_greeter_box_height_grids ())); c.clip (); foreach (var child in fixed.get_children ()) { if (child != greeter_box) fixed.propagate_draw (child, c); } c.pop_group_to_source (); c.paint_with_alpha (greeter_box.base_alpha); c.restore (); } c.pop_group_to_source (); c.paint_with_alpha (fade_tracker.alpha); return false; } private void entry_clicked_cb (PromptBox entry) { if (mode != Mode.ENTRY) return; var index = entries.index (entry); var position = index - scroll_location; if (position < 0.0) select_entry (entry, -1.0); else if (position >= 1.0) select_entry (entry, 1.0); } /* Not all subclasses are going to be interested in talking to lightdm, but for those that are, make it easy. */ protected bool will_clear = false; protected bool prompted = false; protected bool unacknowledged_messages = false; protected void connect_to_lightdm () { ArcticaGreeter.singleton.show_message.connect (show_message_cb); ArcticaGreeter.singleton.show_prompt.connect (show_prompt_cb); ArcticaGreeter.singleton.authentication_complete.connect (authentication_complete_cb); } protected void show_message_cb (string text, LightDM.MessageType type) { unacknowledged_messages = true; show_message (text, type == LightDM.MessageType.ERROR); } protected virtual void show_prompt_cb (string text, LightDM.PromptType type) { /* Notify the greeter on what user has been logged */ if (get_selected_id () == "*other" && manual_name == null) { if (ArcticaGreeter.singleton.test_mode) manual_name = test_username; else manual_name = ArcticaGreeter.singleton.authentication_user(); } prompted = true; if (text == "Password: ") text = _("Password:"); if (text == "login:") text = _("Username:"); var entry = add_prompt (text, type == LightDM.PromptType.SECRET); /* Limit the number of characters in case a cat is sitting on the keyboard... */ entry.max_length = MAX_FIELD_SIZE; } protected virtual void authentication_complete_cb () { /* Not the best of the solutions but seems the asynchrony * when talking to lightdm process means that you can * go to the "Guest" account, start authenticating as guest * keep moving down to some of the remote servers * and the answer will come after that, and even calling * greeter.cancel_authentication won't help * so basically i'm just ignoring any authentication callback * if we are not in the same place in the list as we were * when we called greeter.authenticate* */ if (greeter_authenticating_user != selected_entry.id) return; bool is_authenticated; if (ArcticaGreeter.singleton.test_mode) is_authenticated = test_is_authenticated; else is_authenticated = ArcticaGreeter.singleton.is_authenticated(); if (is_authenticated) { /* Login immediately if prompted and user has acknowledged all messages */ if (prompted && !unacknowledged_messages) { login_complete (); if (ArcticaGreeter.singleton.test_mode) start_session (); else { if (background.alpha == 1.0) start_session (); else background.notify["alpha"].connect (background_loaded_cb); } } else { prompted = true; show_authenticated (); } } else { if (prompted) { /* Show an error if one wasn't provided */ if (will_clear) show_message (_("Invalid password, please try again"), true); selected_entry.reset_spinners (); /* Restart authentication */ start_authentication (); } else { /* Show an error if one wasn't provided */ if (!selected_entry.has_errors) show_message (_("Failed to authenticate"), true); /* Stop authentication */ show_authenticated (false); } } } protected virtual void start_authentication () { prompted = false; unacknowledged_messages = false; /* Reset manual username */ manual_name = null; will_clear = false; greeter_authenticating_user = get_selected_id (); if (ArcticaGreeter.singleton.test_mode) test_start_authentication (); else { if (get_selected_id () == "*other") ArcticaGreeter.singleton.authenticate (); else if (get_selected_id () == "*guest") ArcticaGreeter.singleton.authenticate_as_guest (); else ArcticaGreeter.singleton.authenticate (get_selected_id ()); } } private void background_loaded_cb (ParamSpec pspec) { if (background.alpha == 1.0) { background.notify["alpha"].disconnect (background_loaded_cb); start_session (); } } private void start_session () { if (!ArcticaGreeter.singleton.start_session (get_lightdm_session (), background)) { show_message (_("Failed to start session"), true); start_authentication (); return; } /* Set the background */ background.draw_grid = false; background.queue_draw (); } public void login_complete () { sensitive = false; selected_entry.clear (); selected_entry.add_message (_("Logging in…"), false); redraw_greeter_box (); } protected virtual string get_lightdm_session () { return ArcticaGreeter.get_default_session (); } /* Testing code below this */ protected string? test_username = null; protected bool test_is_authenticated = false; protected virtual void test_start_authentication () { } } arctica-greeter-0.99.1.5/src/idle-monitor.vala0000644000000000000000000001635014007200004015732 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2014 Canonical Ltd * Copyright (C) 2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ public delegate void IdleMonitorWatchFunc (IdleMonitor monitor, uint id); public class IdleMonitor { private unowned X.Display display; private HashTable watches; private GenericSet alarms; private int sync_event_base; private X.ID counter; private X.ID user_active_alarm; private int serial = 0; public IdleMonitor () { watches = new HashTable (null, null); alarms = new GenericSet (null, null); init_xsync (); } ~IdleMonitor () { foreach (var watch in watches.get_values ()) remove_watch (watch.id); if (user_active_alarm != X.None) X.Sync.DestroyAlarm (display, user_active_alarm); /* Note this is a bit weird, since we need to pass null as the window by Vala treats this as a method */ Gdk.Window w = null; w.remove_filter (xevent_filter); } public uint add_idle_watch (uint64 interval_msec, IdleMonitorWatchFunc callback) { var watch = make_watch (xsync_alarm_set (X.Sync.TestType.PositiveTransition, interval_msec, true), callback); alarms.add ((uint32) watch.xalarm); return watch.id; } public uint add_user_active_watch (IdleMonitorWatchFunc callback) { set_alarm_enabled (display, user_active_alarm, true); var watch = make_watch (user_active_alarm, callback); return watch.id; } public void remove_watch (uint id) { var watch = watches.lookup (id); watches.remove (id); if (watch.xalarm != user_active_alarm) X.Sync.DestroyAlarm (display, watch.xalarm); } private void init_xsync () { var d = Gdk.Display.get_default (); if (!(d is Gdk.X11.Display)) { warning ("Only support idle monitor under X"); return; } display = (d as Gdk.X11.Display).get_xdisplay (); int sync_error_base; var res = X.Sync.QueryExtension (display, out sync_event_base, out sync_error_base); if (res == 0) { warning ("IdleMonitor: Sync extension not present"); return; } int major, minor; res = X.Sync.Initialize (display, out major, out minor); if (res == 0) { warning ("IdleMonitor: Unable to initialize Sync extension"); return; } counter = find_idletime_counter (); /* IDLETIME counter not found? */ if (counter == X.None) return; user_active_alarm = xsync_alarm_set (X.Sync.TestType.NegativeTransition, 1, false); /* Note this is a bit weird, since we need to pass null as the window by Vala treats this as a method */ Gdk.Window w = null; w.add_filter (xevent_filter); } private Gdk.FilterReturn xevent_filter (Gdk.XEvent xevent, Gdk.Event event) { var ev = (X.Event*) xevent; if (ev.xany.type != sync_event_base + X.Sync.AlarmNotify) return Gdk.FilterReturn.CONTINUE; var alarm_event = (X.Sync.AlarmNotifyEvent*) xevent; handle_alarm_notify_event (alarm_event); return Gdk.FilterReturn.CONTINUE; } private IdleMonitorWatch make_watch (X.ID xalarm, IdleMonitorWatchFunc callback) { var watch = new IdleMonitorWatch (); watch.id = get_next_watch_serial (); watch.callback = callback; watch.xalarm = xalarm; watches.insert (watch.id, watch); return watch; } private X.ID xsync_alarm_set (X.Sync.TestType test_type, uint64 interval, bool want_events) { var attr = X.Sync.AlarmAttributes (); X.Sync.Value delta; X.Sync.IntToValue (out delta, 0); attr.trigger.counter = counter; attr.trigger.value_type = X.Sync.ValueType.Absolute; attr.delta = delta; attr.events = want_events; X.Sync.IntsToValue (out attr.trigger.wait_value, (uint) interval, (int) (interval >> 32)); attr.trigger.test_type = test_type; return X.Sync.CreateAlarm (display, X.Sync.CA.Counter | X.Sync.CA.ValueType | X.Sync.CA.TestType | X.Sync.CA.Value | X.Sync.CA.Delta | X.Sync.CA.Events, attr); } private void ensure_alarm_rescheduled (X.Display dpy, X.ID alarm) { /* Some versions of Xorg have an issue where alarms aren't * always rescheduled. Calling X.Sync.ChangeAlarm, even * without any attributes, will reschedule the alarm. */ var attr = X.Sync.AlarmAttributes (); X.Sync.ChangeAlarm (dpy, alarm, 0, attr); } private void set_alarm_enabled (X.Display dpy, X.ID alarm, bool enabled) { var attr = X.Sync.AlarmAttributes (); attr.events = enabled; X.Sync.ChangeAlarm (dpy, alarm, X.Sync.CA.Events, attr); } private void handle_alarm_notify_event (X.Sync.AlarmNotifyEvent* alarm_event) { if (alarm_event.state != X.Sync.AlarmState.Active) return; var alarm = alarm_event.alarm; var has_alarm = false; if (alarm == user_active_alarm) { set_alarm_enabled (display, alarm, false); has_alarm = true; } else if (alarms.contains ((uint32) alarm)) { ensure_alarm_rescheduled (display, alarm); has_alarm = true; } if (has_alarm) { foreach (var watch in watches.get_values ()) fire_watch (watch, alarm); } } private void fire_watch (IdleMonitorWatch watch, X.ID alarm) { if (watch.xalarm != alarm) return; if (watch.callback != null) watch.callback (this, watch.id); if (watch.xalarm == user_active_alarm) remove_watch (watch.id); } private X.ID find_idletime_counter () { X.ID counter = X.None; int ncounters; var counters = X.Sync.ListSystemCounters (display, out ncounters); for (var i = 0; i < ncounters; i++) { if (counters[i].name != null && strcmp (counters[i].name, "IDLETIME") == 0) { counter = counters[i].counter; break; } } X.Sync.FreeSystemCounterList (counters); return counter; } private uint32 get_next_watch_serial () { AtomicInt.inc (ref serial); return serial; } } public class IdleMonitorWatch { public uint id; public unowned IdleMonitorWatchFunc callback; public X.ID xalarm; } arctica-greeter-0.99.1.5/src/indicator.vapi0000644000000000000000000003073014007200004015316 0ustar [CCode (cprefix = "Indicator", lower_case_cprefix = "indicator_")] namespace Indicator { [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public class DesktopShortcuts : GLib.Object { [CCode (has_construct_function = false)] public DesktopShortcuts (string file, string identity); public unowned string get_nicks (); public bool nick_exec (string nick); public unowned string nick_get_name (string nick); public string desktop_file { construct; } [NoAccessorMethod] public string identity { owned get; construct; } } [CCode (cheader_filename = "libayatana-indicator/indicator-object.h")] public class Object : GLib.Object { [CCode (has_construct_function = false)] protected Object (); public bool check_environment (string env); [NoWrapper] public virtual void entry_activate (Indicator.ObjectEntry entry, uint timestamp); [NoWrapper] public virtual void entry_close (Indicator.ObjectEntry entry, uint timestamp); [CCode (has_construct_function = false)] public Object.from_file (string file); [NoWrapper] public virtual unowned string get_accessible_desc (); public virtual GLib.List get_entries (); public unowned string[] get_environment (); [NoWrapper] public virtual unowned Gtk.Image get_image (); [NoWrapper] public virtual unowned Gtk.Label get_label (); public virtual uint get_location (Indicator.ObjectEntry entry); [NoWrapper] public virtual unowned Gtk.Menu get_menu (); [NoWrapper] public virtual unowned string get_name_hint (); public virtual bool get_show_now (Indicator.ObjectEntry entry); public virtual int get_position (); [NoWrapper] public virtual void reserved1 (); [NoWrapper] public virtual void reserved2 (); [NoWrapper] public virtual void reserved3 (); [NoWrapper] public virtual void reserved4 (); [NoWrapper] public virtual void reserved5 (); public void set_environment (string[] env); public virtual signal void accessible_desc_update (Indicator.ObjectEntry entry); public virtual signal void entry_added (Indicator.ObjectEntry entry); public virtual signal void entry_moved (Indicator.ObjectEntry entry, uint old_pos, uint new_pos); public virtual signal void entry_removed (Indicator.ObjectEntry entry); public virtual signal void entry_scrolled (Indicator.ObjectEntry entry, uint delta, Indicator.ScrollDirection direction); public virtual signal void menu_show (Indicator.ObjectEntry entry, uint timestamp); public virtual signal void show_now_changed (Indicator.ObjectEntry entry, bool show_now_state); } [CCode (cheader_filename = "libayatana-indicator/indicator-ng.h")] public class Ng : Object { [CCode (has_construct_function = false)] public Ng.for_profile (string filename, string profile) throws GLib.Error; } [Compact] [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public class ObjectEntry { public weak string accessible_desc; public weak Gtk.Image image; public weak Gtk.Label label; public weak Gtk.Menu menu; public weak string name_hint; public weak GLib.Callback reserved1; public weak GLib.Callback reserved2; public weak GLib.Callback reserved3; public weak GLib.Callback reserved4; public static void activate (Indicator.Object io, Indicator.ObjectEntry entry, uint timestamp); public static void close (Indicator.Object io, Indicator.ObjectEntry entry, uint timestamp); } [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public class Service : GLib.Object { [CCode (has_construct_function = false)] public Service (string name); [NoWrapper] public virtual void indicator_service_reserved1 (); [NoWrapper] public virtual void indicator_service_reserved2 (); [NoWrapper] public virtual void indicator_service_reserved3 (); [NoWrapper] public virtual void indicator_service_reserved4 (); [CCode (has_construct_function = false)] public Service.version (string name, uint version); [NoAccessorMethod] public string name { owned get; set; } public virtual signal void shutdown (); } [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public class ServiceManager : GLib.Object { [CCode (has_construct_function = false)] public ServiceManager (string dbus_name); public bool connected (); [NoWrapper] public virtual void indicator_service_manager_reserved1 (); [NoWrapper] public virtual void indicator_service_manager_reserved2 (); [NoWrapper] public virtual void indicator_service_manager_reserved3 (); [NoWrapper] public virtual void indicator_service_manager_reserved4 (); public void set_refresh (uint time_in_ms); [CCode (has_construct_function = false)] public ServiceManager.version (string dbus_name, uint version); [NoAccessorMethod] public string name { owned get; set; } public virtual signal void connection_change (bool connected); } [CCode (cprefix = "INDICATOR_OBJECT_SCROLL_", has_type_id = false, cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public enum ScrollDirection { UP, DOWN, LEFT, RIGHT } [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h", has_target = false)] public delegate GLib.Type get_type_t (); [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h", has_target = false)] public delegate unowned string get_version_t (); [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string GET_TYPE_S; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string GET_VERSION_S; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string OBJECT_SIGNAL_ACCESSIBLE_DESC_UPDATE; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string OBJECT_SIGNAL_ENTRY_ADDED; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string OBJECT_SIGNAL_ENTRY_MOVED; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string OBJECT_SIGNAL_ENTRY_REMOVED; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string OBJECT_SIGNAL_ENTRY_SCROLLED; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string OBJECT_SIGNAL_MENU_SHOW; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string OBJECT_SIGNAL_SHOW_NOW_CHANGED; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string SERVICE_MANAGER_SIGNAL_CONNECTION_CHANGE; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string SERVICE_SIGNAL_SHUTDOWN; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const int SET_VERSION; [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public const string VERSION; [CCode (cname = "get_version", cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public static unowned string get_version (); [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public static unowned Gtk.Image image_helper (string name); [CCode (cheader_filename = "gtk/gtk.h,libayatana-indicator/indicator.h,libayatana-indicator/indicator-desktop-shortcuts.h,libayatana-indicator/indicator-image-helper.h,libayatana-indicator/indicator-object.h,libayatana-indicator/indicator-service.h,libayatana-indicator/indicator-service-manager.h")] public static void image_helper_update (Gtk.Image image, string name); } [CCode (cheader_filename="libayatana-ido/libayatana-ido.h", lower_case_cprefix = "ido_")] namespace Ido { public void init (); } arctica-greeter-0.99.1.5/src/list-stack.vala0000644000000000000000000000512014007200004015377 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry * Mike Gabriel */ public class ListStack : Gtk.Fixed { public uint num_children { get { var children = get_children (); return children.length (); } } private int width; construct { // Hack to avoid gtk 3.20's new allocate logic, which messes us up. resize_mode = Gtk.ResizeMode.QUEUE; width = grid_size * GreeterList.BOX_WIDTH; } public GreeterList? top () { var children = get_children (); if (children == null) return null; else return children.last ().data as GreeterList; } public void push (GreeterList pushed) { return_if_fail (pushed != null); var children = get_children (); pushed.start_scrolling = false; pushed.set_size_request (width, -1); add (pushed); if (children != null) { var current = children.last ().data as GreeterList; /* Clear any errors so when we come back, they will be gone. */ current.selected_entry.reset_state (); current.greeter_box.push (pushed); } } public void pop () { var children = get_children (); return_if_fail (children != null); unowned List prev = children.last ().prev; if (prev != null) (prev.data as GreeterList).greeter_box.pop (); } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); var children = get_children (); foreach (var child in children) { child.size_allocate (allocation); } } public override void get_preferred_width (out int min, out int nat) { min = width; nat = width; } } arctica-greeter-0.99.1.5/src/logo-generator.vala0000644000000000000000000000367014007200004016255 0ustar public class Main : Object { private static string? file = null; private static string? text = null; private static string? result = null; private static int width = 245; private static int height = 44; private const OptionEntry[] options = { {"logo", 0, 0, OptionArg.FILENAME, ref file, "Path to logo", "LOGO"}, {"text", 0, 0, OptionArg.STRING, ref text, "Sublogo text", "TEXT"}, {"width", 0, 0, OptionArg.INT, ref width, "Logo width", "WIDTH"}, {"height", 0, 0, OptionArg.INT, ref height, "Logo height", "HEIGHT"}, {"output", 0, 0, OptionArg.FILENAME, ref result, "Path to rendered output", "OUTPUT"}, {null} }; public static int main(string[] args) { try { var opt_context = new OptionContext ("- OptionContext example"); opt_context.set_help_enabled (true); opt_context.add_main_entries (options, null); opt_context.parse (ref args); } catch (OptionError e) { stdout.printf ("error: %s\n", e.message); stdout.printf ("Run '%s --help' to see a full list of available command line options.\n", args[0]); return 0; } Cairo.ImageSurface surface = new Cairo.ImageSurface (Cairo.Format.ARGB32, width, height); Cairo.Context context = new Cairo.Context (surface); Cairo.ImageSurface logo = new Cairo.ImageSurface.from_png (file); context.set_source_surface (logo, 0, 0); context.paint(); context.set_source_rgb (0.7, 0.7, 0.7); context.translate ( logo.get_width(), logo.get_height() - 0.1*logo.get_height() ); context.move_to (0.2*logo.get_height(), 0); var font_description = new Pango.FontDescription(); font_description.set_family("Droid Sans"); font_description.set_size((int)(0.35*logo.get_height() * Pango.SCALE)); var layout = Pango.cairo_create_layout (context); layout.set_font_description (font_description); layout.set_spacing (10); layout.set_text (text, -1); Pango.cairo_show_layout_line(context, layout.get_line(0)); surface.write_to_png(result); return 0; } } arctica-greeter-0.99.1.5/src/main-window.vala0000644000000000000000000004011314007200004015553 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015-2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ public class MainWindow : Gtk.Window { public MenuBar menubar; private List monitors; private Monitor? primary_monitor; private Monitor active_monitor; private string only_on_monitor; private bool monitor_setting_ok; private Background background; private Gtk.Box login_box; private Gtk.Box hbox; private Gtk.Button back_button; private ShutdownDialog? shutdown_dialog = null; private int window_size_x; private int window_size_y; public ListStack stack; // Menubar is smaller, but with shadow, we reserve more space public const int MENUBAR_HEIGHT = 32; construct { events |= Gdk.EventMask.POINTER_MOTION_MASK; var accel_group = new Gtk.AccelGroup (); add_accel_group (accel_group); var bg_color = Gdk.RGBA (); bg_color.parse (AGSettings.get_string (AGSettings.KEY_BACKGROUND_COLOR)); override_background_color (Gtk.StateFlags.NORMAL, bg_color); get_accessible ().set_name (_("Login Screen")); has_resize_grip = false; ArcticaGreeter.add_style_class (this); background = new Background (); add (background); ArcticaGreeter.add_style_class (background); login_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); login_box.show (); background.add (login_box); /* Box for menubar shadow */ var menubox = new Gtk.EventBox (); var menualign = new Gtk.Alignment (0.0f, 0.0f, 1.0f, 0.0f); var shadow_path = Path.build_filename (Config.PKGDATADIR, "shadow.png", null); var shadow_style = ""; if (FileUtils.test (shadow_path, FileTest.EXISTS)) { shadow_style = "background-image: url('%s'); background-repeat: repeat;".printf(shadow_path); } try { var style = new Gtk.CssProvider (); style.load_from_data ("* {background-color: transparent; %s }".printf(shadow_style), -1); var context = menubox.get_style_context (); context.add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading menubox style: %s", e.message); } menubox.set_size_request (-1, MENUBAR_HEIGHT); menubox.show (); menualign.show (); menubox.add (menualign); login_box.add (menubox); ArcticaGreeter.add_style_class (menualign); ArcticaGreeter.add_style_class (menubox); menubar = new MenuBar (background, accel_group); menubar.show (); menualign.add (menubar); ArcticaGreeter.add_style_class (menubar); hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); hbox.expand = true; hbox.show (); login_box.add (hbox); var align = new Gtk.Alignment (0.5f, 0.5f, 0.0f, 0.0f); // Hack to avoid gtk 3.20's new allocate logic, which messes us up. align.resize_mode = Gtk.ResizeMode.QUEUE; align.set_size_request (grid_size, -1); align.margin_bottom = MENUBAR_HEIGHT; /* offset for menubar at top */ align.show (); hbox.add (align); back_button = new FlatButton (); back_button.get_accessible ().set_name (_("Back")); Gtk.button_set_focus_on_click (back_button, false); var image = new Gtk.Image.from_file (Path.build_filename (Config.PKGDATADIR, "arrow_left.png", null)); image.show (); back_button.set_size_request (grid_size - GreeterList.BORDER * 2, grid_size - GreeterList.BORDER * 2); try { var style = new Gtk.CssProvider (); style.load_from_data ("* {background-color: transparent; %s }".printf(shadow_style), -1); var context = back_button.get_style_context(); context.add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading back button style: %s", e.message); } back_button.add (image); back_button.clicked.connect (pop_list); align.add (back_button); align = new Gtk.Alignment (0.0f, 0.5f, 0.0f, 1.0f); align.show (); hbox.add (align); stack = new ListStack (); stack.show (); align.add (stack); add_user_list (); window_size_x = 0; window_size_y = 0; primary_monitor = null; only_on_monitor = AGSettings.get_string(AGSettings.KEY_ONLY_ON_MONITOR); monitor_setting_ok = only_on_monitor == "auto"; if (ArcticaGreeter.singleton.test_mode) { /* Simulate an 800x600 monitor to the left of a 640x480 monitor */ monitors = new List (); monitors.append (new Monitor (0, 0, 800, 600)); monitors.append (new Monitor (800, 120, 640, 480)); background.set_monitors (monitors); move_to_monitor (monitors.nth_data (0)); resize (800 + 640, 600); } else { var screen = get_screen (); screen.monitors_changed.connect (monitors_changed_cb); monitors_changed_cb (screen); } } public void push_list (GreeterList widget) { stack.push (widget); if (stack.num_children > 1) back_button.show (); } public void pop_list () { if (stack.num_children <= 2) back_button.hide (); stack.pop (); } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); if (hbox != null) { hbox.margin_left = get_grid_offset (get_allocated_width ()) + grid_size; hbox.margin_right = get_grid_offset (get_allocated_width ()); hbox.margin_top = get_grid_offset (get_allocated_height ()); hbox.margin_bottom = get_grid_offset (get_allocated_height ()); } } public void before_session_start() { debug ("Cleaning up menu bar related processes (i.e. orca, onboard"); menubar.cleanup(); } public override void realize () { base.realize (); Gdk.DrawingContext background_context; background_context = get_window().begin_draw_frame(get_window().get_visible_region()); background.set_surface (background_context.get_cairo_context().get_target()); get_window().end_draw_frame(background_context); } private void monitors_changed_cb (Gdk.Screen screen) { Gdk.Display display; display = screen.get_display(); Gdk.Rectangle geometry; Gdk.Monitor primary = display.get_primary_monitor(); geometry = primary.get_geometry(); window_size_x = 0; window_size_y = 0; monitors = new List (); primary_monitor = null; for (var i = 0; i < display.get_n_monitors (); i++) { Gdk.Monitor monitor = display.get_monitor(i); geometry = monitor.get_geometry (); debug ("Monitor %d is %dx%d pixels at %d,%d", i, geometry.width, geometry.height, geometry.x, geometry.y); if (window_size_x < geometry.x + geometry.width) { window_size_x = geometry.x + geometry.width; } if (window_size_y < geometry.y + geometry.height) { window_size_y = geometry.y + geometry.height; } if (monitor_is_unique_position (display, i)) { var greeter_monitor = new Monitor (geometry.x, geometry.y, geometry.width, geometry.height); var plug_name = monitor.get_model(); monitors.append (greeter_monitor); if (plug_name == only_on_monitor) monitor_setting_ok = true; if (plug_name == only_on_monitor || primary_monitor == null || primary == monitor) primary_monitor = greeter_monitor; } } debug ("MainWindow is %dx%d pixels", window_size_x, window_size_y); background.set_monitors (monitors); resize (window_size_x, window_size_y); move (0, 0); move_to_monitor (primary_monitor); } /* Check if a monitor has a unique position */ private bool monitor_is_unique_position (Gdk.Display display, int n) { Gdk.Rectangle g0; Gdk.Monitor mon0; mon0 = display.get_monitor(n); g0 = mon0.get_geometry (); for (var i = n + 1; i < display.get_n_monitors (); i++) { Gdk.Rectangle g1; Gdk.Monitor mon1; mon1 = display.get_monitor(i); g1 = mon1.get_geometry(); if (g0.x == g1.x && g0.y == g1.y) return false; } return true; } public override bool motion_notify_event (Gdk.EventMotion event) { if (!monitor_setting_ok || only_on_monitor == "auto") { var x = (int) (event.x + 0.5); var y = (int) (event.y + 0.5); /* Get motion event relative to this widget */ if (event.window != get_window ()) { int w_x, w_y; get_window ().get_origin (out w_x, out w_y); x -= w_x; y -= w_y; event.window.get_origin (out w_x, out w_y); x += w_x; y += w_y; } foreach (var m in monitors) { if (x >= m.x && x <= m.x + m.width && y >= m.y && y <= m.y + m.height) { move_to_monitor (m); break; } } } return false; } private void move_to_monitor (Monitor monitor) { active_monitor = monitor; login_box.set_size_request (monitor.width, monitor.height); background.set_active_monitor (monitor); background.move (login_box, monitor.x, monitor.y); if (shutdown_dialog != null) { shutdown_dialog.set_active_monitor (monitor); background.move (shutdown_dialog, monitor.x, monitor.y); } } private void add_user_list () { GreeterList greeter_list; greeter_list = new UserList (background, menubar); greeter_list.show (); ArcticaGreeter.add_style_class (greeter_list); push_list (greeter_list); } public override bool key_press_event (Gdk.EventKey event) { var top = stack.top (); if (stack.top () is UserList) { var user_list = stack.top () as UserList; if (!user_list.show_hidden_users) { var shift_mask = Gdk.ModifierType.CONTROL_MASK | Gdk.ModifierType.MOD1_MASK; var control_mask = Gdk.ModifierType.SHIFT_MASK | Gdk.ModifierType.MOD1_MASK; var alt_mask = Gdk.ModifierType.CONTROL_MASK | Gdk.ModifierType.SHIFT_MASK; if (((event.keyval == Gdk.Key.Shift_L || event.keyval == Gdk.Key.Shift_R) && (event.state & shift_mask) == shift_mask) || ((event.keyval == Gdk.Key.Control_L || event.keyval == Gdk.Key.Control_R) && (event.state & control_mask) == control_mask) || ((event.keyval == Gdk.Key.Alt_L || event.keyval == Gdk.Key.Alt_R) && (event.state & alt_mask) == alt_mask)) { debug ("Hidden user key combination detected"); user_list.show_hidden_users = true; return true; } } } switch (event.keyval) { case Gdk.Key.Escape: if (login_box.sensitive) top.cancel_authentication (); if (shutdown_dialog != null) shutdown_dialog.cancel (); return true; case Gdk.Key.Page_Up: case Gdk.Key.KP_Page_Up: if (login_box.sensitive) top.scroll (GreeterList.ScrollTarget.START); return true; case Gdk.Key.Page_Down: case Gdk.Key.KP_Page_Down: if (login_box.sensitive) top.scroll (GreeterList.ScrollTarget.END); return true; case Gdk.Key.Up: case Gdk.Key.KP_Up: if (login_box.sensitive) top.scroll (GreeterList.ScrollTarget.UP); return true; case Gdk.Key.Down: case Gdk.Key.KP_Down: if (login_box.sensitive) top.scroll (GreeterList.ScrollTarget.DOWN); return true; case Gdk.Key.Left: case Gdk.Key.KP_Left: if (shutdown_dialog != null) shutdown_dialog.focus_prev (); return true; case Gdk.Key.Right: case Gdk.Key.KP_Right: if (shutdown_dialog != null) shutdown_dialog.focus_next (); return true; case Gdk.Key.F10: if (login_box.sensitive) menubar.select_first (false); return true; case Gdk.Key.PowerOff: show_shutdown_dialog (ShutdownDialogType.SHUTDOWN); return true; case Gdk.Key.Print: debug ("Taking screenshot"); var root = Gdk.get_default_root_window (); var screenshot = Gdk.pixbuf_get_from_window (root, 0, 0, root.get_width (), root.get_height ()); try { screenshot.save ("Screenshot.png", "png", null); } catch (Error e) { warning ("Failed to save screenshot: %s", e.message); } return true; case Gdk.Key.z: if (ArcticaGreeter.singleton.test_mode && (event.state & Gdk.ModifierType.MOD1_MASK) != 0) { show_shutdown_dialog (ShutdownDialogType.SHUTDOWN); return true; } break; case Gdk.Key.Z: if (ArcticaGreeter.singleton.test_mode && (event.state & Gdk.ModifierType.MOD1_MASK) != 0) { show_shutdown_dialog (ShutdownDialogType.RESTART); return true; } break; } return base.key_press_event (event); } public void set_keyboard_state () { menubar.set_keyboard_state (); } public void show_shutdown_dialog (ShutdownDialogType type) { if (shutdown_dialog != null) shutdown_dialog.destroy (); /* Stop input to login box */ login_box.sensitive = false; shutdown_dialog = new ShutdownDialog (type, background); shutdown_dialog.closed.connect (close_shutdown_dialog); background.add (shutdown_dialog); move_to_monitor (active_monitor); shutdown_dialog.visible = true; } public void close_shutdown_dialog () { if (shutdown_dialog == null) return; shutdown_dialog.destroy (); shutdown_dialog = null; login_box.sensitive = true; } } arctica-greeter-0.99.1.5/src/Makefile.am0000644000000000000000000000326014007200004014513 0ustar # -*- Mode: Automake; indent-tabs-mode: t; tab-width: 4 -*- sbin_PROGRAMS = arctica-greeter noinst_PROGRAMS = logo-generator arctica_greeter_SOURCES = \ config.vapi \ fixes.vapi \ indicator.vapi \ pam_freerdp2.vapi \ pam_x2go.vapi \ xsync.vapi \ animate-timer.vala \ background.vala \ cached-image.vala \ cairo-utils.vala \ email-autocompleter.vala \ dash-box.vala \ dash-button.vala \ dash-entry.vala \ fadable.vala \ fadable-box.vala \ fading-label.vala \ flat-button.vala \ greeter-list.vala \ idle-monitor.vala \ list-stack.vala \ main-window.vala \ menu.vala \ menubar.vala \ prompt-box.vala \ session-list.vala \ remote-logon-service.vala \ settings.vala \ settings-daemon.vala \ shutdown-dialog.vala \ toggle-box.vala \ arctica-greeter.vala \ user-list.vala \ user-prompt-box.vala logo_generator_SOURCES = logo-generator.vala arctica_greeter_CFLAGS = \ $(ARCTICA_GREETER_CFLAGS) \ -w \ -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \ -DLOCALEDIR=\""$(localedir)"\" \ -DVERSION=\"$(VERSION)\" \ -DPKGDATADIR=\""$(pkgdatadir)"\" \ -DPKGLIBEXECDIR=\""$(pkglibexecdir)"\" \ -DINDICATORDIR=\""$(INDICATORDIR)"\" logo_generator_CFLAGS = $(arctica_greeter_CFLAGS) arctica_greeter_VALAFLAGS = \ $(AM_VALAFLAGS) \ --debug \ --pkg posix \ --pkg gtk+-3.0 \ --pkg gdk-x11-3.0 \ --pkg gio-unix-2.0 \ --pkg x11 \ --pkg liblightdm-gobject-1 \ --pkg libcanberra \ --pkg gio-2.0 \ --pkg pixman-1 \ --target-glib 2.32 logo_generator_VALAFLAGS = $(arctica_greeter_VALAFLAGS) arctica_greeter_LDADD = \ $(ARCTICA_GREETER_LIBS) \ -lm logo_generator_LDADD = $(arctica_greeter_LDADD) arctica_greeter_vala.stamp: $(top_srcdir)/config.h DISTCLEANFILES = \ Makefile.in arctica-greeter-0.99.1.5/src/menubar.vala0000644000000000000000000004733514007200004014770 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015-2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ private class IndicatorMenuItem : Gtk.MenuItem { public unowned Indicator.ObjectEntry entry; private Gtk.Box hbox; public IndicatorMenuItem (Indicator.ObjectEntry entry) { this.entry = entry; this.hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 3); this.add (this.hbox); this.hbox.show (); if (entry.label != null) { entry.label.show.connect (this.visibility_changed_cb); entry.label.hide.connect (this.visibility_changed_cb); hbox.pack_start (entry.label, false, false, 0); } if (entry.image != null) { entry.image.show.connect (visibility_changed_cb); entry.image.hide.connect (visibility_changed_cb); hbox.pack_start (entry.image, false, false, 0); } if (entry.accessible_desc != null) get_accessible ().set_name (entry.accessible_desc); if (entry.menu != null) set_submenu (entry.menu); if (has_visible_child ()) show (); } public bool has_visible_child () { return (entry.image != null && entry.image.get_visible ()) || (entry.label != null && entry.label.get_visible ()); } public void visibility_changed_cb (Gtk.Widget widget) { visible = has_visible_child (); } } public class MenuBar : Gtk.MenuBar { public Background? background { get; construct; default = null; } public bool high_contrast { get; private set; default = false; } public Gtk.Window? keyboard_window { get; private set; default = null; } public Gtk.AccelGroup? accel_group { get; construct; } private const int HEIGHT = 32; public MenuBar (Background bg, Gtk.AccelGroup ag) { Object (background: bg, accel_group: ag); } public override bool draw (Cairo.Context c) { if (background != null) { int x, y; background.translate_coordinates (this, 0, 0, out x, out y); c.save (); c.translate (x, y); background.draw_full (c, Background.DrawFlags.NONE); c.restore (); } c.set_source_rgb (0.1, 0.1, 0.1); c.paint_with_alpha (0.4); foreach (var child in get_children ()) { propagate_draw (child, c); } return false; } /* Due to LP #973922 the keyboard has to be loaded after the main window * is shown and given focus. Therefore we don't enable the active state * until now. */ public void set_keyboard_state () { if (!ArcticaGreeter.singleton.test_mode) onscreen_keyboard_item.set_active (AGSettings.get_boolean (AGSettings.KEY_ONSCREEN_KEYBOARD)); } private string default_theme_name; private List indicator_objects; private Gtk.CheckMenuItem high_contrast_item; private Pid keyboard_pid = 0; private Pid reader_pid = 0; private Gtk.CheckMenuItem onscreen_keyboard_item; construct { Gtk.Settings.get_default ().get ("gtk-theme-name", out default_theme_name); pack_direction = Gtk.PackDirection.RTL; if (AGSettings.get_boolean (AGSettings.KEY_SHOW_HOSTNAME)) { var label = new Gtk.Label (Posix.utsname ().nodename); label.show (); var hostname_item = new Gtk.MenuItem (); hostname_item.add (label); hostname_item.sensitive = false; hostname_item.right_justified = true; hostname_item.show (); append (hostname_item); /* Hack to get a label showing on the menubar */ var fg = label.get_style_context ().get_color (Gtk.StateFlags.NORMAL); label.override_color (Gtk.StateFlags.INSENSITIVE, fg); } /* Prevent dragging the window by the menubar */ try { var style = new Gtk.CssProvider (); style.load_from_data ("* {-GtkWidget-window-dragging: false;}", -1); get_style_context ().add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading menubar style: %s", e.message); } setup_indicators (); ArcticaGreeter.singleton.starting_session.connect (cleanup); } private void close_pid (ref Pid pid) { if (pid > 0) { #if VALA_0_40 Posix.kill (pid, Posix.Signal.TERM); #else Posix.kill (pid, Posix.SIGTERM); #endif int status; Posix.waitpid (pid, out status, 0); pid = 0; } } public void cleanup () { close_pid (ref keyboard_pid); close_pid (ref reader_pid); } public override void get_preferred_height (out int min, out int nat) { min = HEIGHT; nat = HEIGHT; } private void greeter_set_env (string key, string val) { GLib.Environment.set_variable (key, val, true); /* And also set it in the DBus activation environment so that any * indicator services pick it up. */ try { var proxy = new GLib.DBusProxy.for_bus_sync (GLib.BusType.SESSION, GLib.DBusProxyFlags.NONE, null, "org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", null); var builder = new GLib.VariantBuilder (GLib.VariantType.ARRAY); builder.add ("{ss}", key, val); proxy.call_sync ("UpdateActivationEnvironment", new GLib.Variant ("(a{ss})", builder), GLib.DBusCallFlags.NONE, -1, null); } catch (Error e) { warning ("Could not get set environment for indicators: %s", e.message); return; } } private Gtk.Widget make_a11y_indicator () { var a11y_item = new Gtk.MenuItem (); var hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 3); hbox.show (); a11y_item.add (hbox); var image = new Gtk.Image.from_file (Path.build_filename (Config.PKGDATADIR, "a11y.svg")); image.show (); hbox.add (image); a11y_item.show (); a11y_item.set_submenu (new Gtk.Menu ()); onscreen_keyboard_item = new Gtk.CheckMenuItem.with_label (_("Onscreen keyboard")); onscreen_keyboard_item.toggled.connect (keyboard_toggled_cb); onscreen_keyboard_item.show (); unowned Gtk.Menu submenu = a11y_item.submenu; submenu.append (onscreen_keyboard_item); high_contrast_item = new Gtk.CheckMenuItem.with_label (_("High Contrast")); high_contrast_item.toggled.connect (high_contrast_toggled_cb); high_contrast_item.add_accelerator ("activate", accel_group, Gdk.Key.h, Gdk.ModifierType.CONTROL_MASK, Gtk.AccelFlags.VISIBLE); high_contrast_item.show (); submenu.append (high_contrast_item); high_contrast_item.set_active (AGSettings.get_boolean (AGSettings.KEY_HIGH_CONTRAST)); var item = new Gtk.CheckMenuItem.with_label (_("Screen Reader")); item.toggled.connect (screen_reader_toggled_cb); item.add_accelerator ("activate", accel_group, Gdk.Key.s, Gdk.ModifierType.SUPER_MASK | Gdk.ModifierType.MOD1_MASK, Gtk.AccelFlags.VISIBLE); item.show (); submenu.append (item); item.set_active (AGSettings.get_boolean (AGSettings.KEY_SCREEN_READER)); return a11y_item; } private Indicator.Object? load_indicator_file (string indicator_name) { string dir = Config.INDICATOR_FILE_DIR; string path; Indicator.Object io; /* To stay backwards compatible, use org.ayatana.indicator as the default prefix */ if (indicator_name.index_of_char ('.') < 0) path = @"$dir/org.ayatana.indicator.$indicator_name"; else path = @"$dir/$indicator_name"; try { io = new Indicator.Ng.for_profile (path, "desktop_greeter"); } catch (FileError error) { /* the calling code handles file-not-found; don't warn here */ return null; } catch (Error error) { warning ("unable to load %s: %s", indicator_name, error.message); return null; } return io; } private Indicator.Object? load_indicator_library (string indicator_name) { // Find file, if it exists string[] names_to_try = {"lib" + indicator_name + ".so", indicator_name + ".so", indicator_name}; foreach (var filename in names_to_try) { var full_path = Path.build_filename (Config.INDICATORDIR, filename); var io = new Indicator.Object.from_file (full_path); if (io != null) return io; } return null; } private void load_indicator (string indicator_name) { if (!ArcticaGreeter.singleton.test_mode) { if (indicator_name == "ug-accessibility") { var a11y_item = make_a11y_indicator (); insert (a11y_item, (int) get_children ().length () - 1); } else { var io = load_indicator_file (indicator_name); if (io == null) io = load_indicator_library (indicator_name); if (io != null) { indicator_objects.append (io); io.entry_added.connect (indicator_added_cb); io.entry_removed.connect (indicator_removed_cb); foreach (var entry in io.get_entries ()) indicator_added_cb (io, entry); } } } } private void setup_indicators () { /* Set indicators to run with reduced functionality */ greeter_set_env ("INDICATOR_GREETER_MODE", "1"); /* Don't allow virtual file systems? */ greeter_set_env ("GIO_USE_VFS", "local"); greeter_set_env ("GVFS_DISABLE_FUSE", "1"); /* Hint to have mate-settings-daemon run in greeter mode */ greeter_set_env ("RUNNING_UNDER_GDM", "1"); /* Let indicators know about our unique dbus name */ try { var conn = Bus.get_sync (BusType.SESSION); greeter_set_env ("ARCTICA_GREETER_DBUS_NAME", conn.get_unique_name ()); } catch (IOError e) { debug ("Could not set DBUS_NAME: %s", e.message); } debug ("LANG=%s LANGUAGE=%s", Environment.get_variable ("LANG"), Environment.get_variable ("LANGUAGE")); var indicator_list = AGSettings.get_strv(AGSettings.KEY_INDICATORS); var update_indicator_list = false; for (var i = 0; i < indicator_list.length; i++) { if (indicator_list[i] == "ug-keyboard") { indicator_list[i] = "org.ayatana.indicator.keyboard"; update_indicator_list = true; } } if (update_indicator_list) AGSettings.set_strv(AGSettings.KEY_INDICATORS, indicator_list); foreach (var indicator in indicator_list) load_indicator(indicator); indicator_objects.sort((a, b) => { int pos_a = a.get_position (); int pos_b = b.get_position (); if (pos_a < 0) pos_a = 1000; if (pos_b < 0) pos_b = 1000; return pos_a - pos_b; }); debug ("LANG=%s LANGUAGE=%s", Environment.get_variable ("LANG"), Environment.get_variable ("LANGUAGE")); } private void keyboard_toggled_cb (Gtk.CheckMenuItem item) { /* FIXME: The below would be sufficient if gnome-session were running * to notice and run a screen keyboard in /etc/xdg/autostart... But * since we're not running gnome-session, we hardcode onboard here. */ /* var settings = new Settings ("org.gnome.desktop.a11y.applications");*/ /*settings.set_boolean ("screen-keyboard-enabled", item.active);*/ AGSettings.set_boolean (AGSettings.KEY_ONSCREEN_KEYBOARD, item.active); if (keyboard_window == null) { int id = 0; try { string[] argv; int onboard_stdout_fd; Shell.parse_argv ("onboard --xid", out argv); Process.spawn_async_with_pipes (null, argv, null, SpawnFlags.SEARCH_PATH, null, out keyboard_pid, null, out onboard_stdout_fd, null); var f = FileStream.fdopen (onboard_stdout_fd, "r"); var stdout_text = new char[1024]; if (f.gets (stdout_text) != null) id = int.parse ((string) stdout_text); } catch (Error e) { warning ("Error setting up keyboard: %s", e.message); return; } var keyboard_socket = new Gtk.Socket (); keyboard_socket.show (); keyboard_window = new Gtk.Window (); keyboard_window.accept_focus = false; keyboard_window.focus_on_map = false; keyboard_window.add (keyboard_socket); keyboard_socket.add_id (id); /* Put keyboard at the bottom of the screen */ var display = get_display (); var monitor = display.get_monitor_at_window (get_window ()); Gdk.Rectangle geom; geom = monitor.get_geometry (); keyboard_window.move (geom.x, geom.y + geom.height - 200); keyboard_window.resize (geom.width, 200); } keyboard_window.visible = item.active; } private void high_contrast_toggled_cb (Gtk.CheckMenuItem item) { var settings = Gtk.Settings.get_default (); if (item.active) settings.set ("gtk-theme-name", "HighContrastInverse"); else settings.set ("gtk-theme-name", default_theme_name); high_contrast = item.active; AGSettings.set_boolean (AGSettings.KEY_HIGH_CONTRAST, high_contrast); } private void screen_reader_toggled_cb (Gtk.CheckMenuItem item) { /* FIXME: The below would be sufficient if gnome-session were running * to notice and run a screen reader in /etc/xdg/autostart... But * since we're not running gnome-session, we hardcode orca here. /*var settings = new Settings ("org.gnome.desktop.a11y.applications");*/ /*settings.set_boolean ("screen-reader-enabled", item.active);*/ AGSettings.set_boolean (AGSettings.KEY_SCREEN_READER, item.active); /* Hardcoded orca: */ if (item.active) { try { string[] argv; Shell.parse_argv ("orca --replace --no-setup --disable splash-window,", out argv); Process.spawn_async (null, argv, null, SpawnFlags.SEARCH_PATH, null, out reader_pid); // This is a workaroud for bug https://launchpad.net/bugs/944159 // The problem is that orca seems to not notice that it's in a // password field on startup. We just need to kick orca in the // pants. We do this two ways: a racy way and a non-racy way. // We kick it after a second which is ideal if we win the race, // because the user gets to hear what widget they are in, and // the first character will be masked. Otherwise, if we lose // that race, the first time the user types (see // DashEntry.key_press_event), we will kick orca again. While // this is not racy with orca startup, it is racy with whether // orca will read the first character or not out loud. Hence // why we do both. Ideally this would be fixed in orca itself. ArcticaGreeter.singleton.orca_needs_kick = true; Timeout.add_seconds (1, () => { Signal.emit_by_name ((get_toplevel () as Gtk.Window).get_focus ().get_accessible (), "focus-event", true); return false; }); } catch (Error e) { warning ("Failed to run Orca: %s", e.message); } } else close_pid (ref reader_pid); } private uint get_indicator_index (Indicator.Object object) { uint index = 0; foreach (var io in indicator_objects) { if (io == object) return index; index++; } return index; } private Indicator.Object? get_indicator_object_from_entry (Indicator.ObjectEntry entry) { foreach (var io in indicator_objects) { foreach (var e in io.get_entries ()) { if (e == entry) return io; } } return null; } private void indicator_added_cb (Indicator.Object object, Indicator.ObjectEntry entry) { var index = get_indicator_index (object); var pos = 0; foreach (var child in get_children ()) { if (!(child is IndicatorMenuItem)) break; var menuitem = (IndicatorMenuItem) child; var child_object = get_indicator_object_from_entry (menuitem.entry); var child_index = get_indicator_index (child_object); if (child_index > index) break; pos++; } debug ("Adding indicator object %p at position %d", entry, pos); var menuitem = new IndicatorMenuItem (entry); insert (menuitem, pos); } private void indicator_removed_cb (Indicator.Object object, Indicator.ObjectEntry entry) { debug ("Removing indicator object %p", entry); foreach (var child in get_children ()) { var menuitem = (IndicatorMenuItem) child; if (menuitem.entry == entry) { remove (child); return; } } warning ("Indicator object %p not in menubar", entry); } } arctica-greeter-0.99.1.5/src/menu.vala0000644000000000000000000000260414007200004014271 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Andrea Cimitan */ public class Menu : Gtk.Menu { public Background? background { get; construct; default = null; } public Menu (Background bg) { Object (background: bg); } public override bool draw (Cairo.Context c) { if (background != null) { int x, y, bg_x, bg_y; background.get_window ().get_origin (out bg_x, out bg_y); get_window ().get_origin (out x, out y); c.save (); c.translate (bg_x - x, bg_y - y); background.draw_full (c, Background.DrawFlags.NONE); c.restore (); } base.draw (c); return false; } } arctica-greeter-0.99.1.5/src/pam_freerdp2.vapi0000644000000000000000000000046214007200004015707 0ustar [CCode (cprefix = "PAM_FREERDP2_", cheader_filename = "security/pam-freerdp2.h")] namespace pam_freerdp2 { public const string PROMPT_GUESTLOGIN; public const string PROMPT_USER; public const string PROMPT_HOST; public const string PROMPT_DOMAIN; public const string PROMPT_PASSWORD; } arctica-greeter-0.99.1.5/src/pam_x2go.vapi0000644000000000000000000000044714007200004015060 0ustar [CCode (cprefix = "PAM_X2GO_", cheader_filename = "security/pam-x2go.h")] namespace pam_x2go { public const string PROMPT_GUESTLOGIN; public const string PROMPT_USER; public const string PROMPT_HOST; public const string PROMPT_COMMAND; public const string PROMPT_PASSWORD; } arctica-greeter-0.99.1.5/src/prompt-box.vala0000644000000000000000000005411714007200004015442 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015,2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ public class PromptBox : FadableBox { public signal void respond (string[] response); public signal void login (); public signal void show_options (); public signal void name_clicked (); public static string font = AGSettings.get_string (AGSettings.KEY_FONT_NAME); public static string font_family = font.split_set(" ")[0]; public static int font_size = int.parse(font.split_set(" ")[1]); public bool has_errors { get; set; default = false; } public string id { get; construct; } public string label { get { return name_label.label; } set { name_label.label = value; small_name_label.label = value; } } public double position { get; set; default = 0; } private Gtk.Fixed fixed; private Gtk.Widget zone; /* when overlapping zone we are fully expanded */ /* Expanded widgets */ protected Gtk.Grid box_grid; protected Gtk.Grid name_grid; private ActiveIndicator active_indicator; protected FadingLabel name_label; protected FlatButton option_button; private CachedImage option_image; private CachedImage message_image; /* Condensed widgets */ protected Gtk.Widget small_box_widget; private ActiveIndicator small_active_indicator; protected FadingLabel small_name_label; private CachedImage small_message_image; protected const int COL_ACTIVE = 0; protected const int COL_CONTENT = 1; protected const int COL_SPACER = 2; protected const int ROW_NAME = 0; protected const int COL_NAME_LABEL = 0; protected const int COL_NAME_MESSAGE = 1; protected const int COL_NAME_OPTIONS = 2; protected const int COL_ENTRIES_START = 1; protected const int COL_ENTRIES_END = 1; protected const int COL_ENTRIES_WIDTH = 1; protected int start_row; protected int last_row; private enum PromptVisibility { HIDDEN, FADING, SHOWN, } private PromptVisibility prompt_visibility = PromptVisibility.HIDDEN; public PromptBox (string id) { Object (id: id); } construct { // Hack to avoid gtk 3.20's new allocate logic, which messes us up. resize_mode = Gtk.ResizeMode.QUEUE; set_start_row (); reset_last_row (); expand = true; fixed = new Gtk.Fixed (); fixed.show (); add (fixed); box_grid = new Gtk.Grid (); box_grid.column_spacing = 4; box_grid.row_spacing = 3; box_grid.margin_top = GreeterList.BORDER; box_grid.margin_bottom = 6; box_grid.expand = true; /** Grid layout: 0 1 2 3 4 > Name M S < Message....... Entry......... */ if (font_size < 6) font_size = 6; active_indicator = new ActiveIndicator (); active_indicator.valign = Gtk.Align.START; active_indicator.margin_top = (grid_size - ActiveIndicator.HEIGHT) / 2; active_indicator.show (); box_grid.attach (active_indicator, COL_ACTIVE, last_row, 1, 1); /* Add a second one on right just for equal-spacing purposes */ var dummy_indicator = new ActiveIndicator (); dummy_indicator.show (); box_grid.attach (dummy_indicator, COL_SPACER, last_row, 1, 1); box_grid.show (); /* Create fully expanded version of ourselves */ name_grid = create_name_grid (); box_grid.attach (name_grid, COL_CONTENT, last_row, 1, 1); /* Now prep small versions of the above normal widgets. These are * used when scrolling outside of the main dash box. */ var small_box_grid = new Gtk.Grid (); small_box_grid.column_spacing = 4; small_box_grid.row_spacing = 6; small_box_grid.hexpand = true; small_box_grid.show (); small_active_indicator = new ActiveIndicator (); small_active_indicator.valign = Gtk.Align.START; small_active_indicator.margin_top = (grid_size - ActiveIndicator.HEIGHT) / 2; small_active_indicator.show (); small_box_grid.attach (small_active_indicator, 0, 0, 1, 1); var small_name_grid = create_small_name_grid (); small_box_grid.attach (small_name_grid, 1, 0, 1, 1); /* Add a second indicator on right just for equal-spacing purposes */ var small_dummy_indicator = new ActiveIndicator (); small_dummy_indicator.show (); small_box_grid.attach (small_dummy_indicator, 3, 0, 1, 1); var small_box_eventbox = new Gtk.EventBox (); small_box_eventbox.visible_window = false; small_box_eventbox.button_release_event.connect (() => { name_clicked (); return true; }); small_box_eventbox.add (small_box_grid); small_box_eventbox.show (); small_box_widget = small_box_eventbox; fixed.add (small_box_widget); fixed.add (box_grid); } protected virtual Gtk.Grid create_name_grid () { var name_grid = new Gtk.Grid (); name_grid.column_spacing = 4; name_grid.hexpand = true; name_label = new FadingLabel (""); var style_ctx = name_label.get_style_context(); try { var font_provider = new Gtk.CssProvider (); var css = "* {font-family: %s; font-size: %dpt;}".printf (font_family, font_size+2); font_provider.load_from_data (css, -1); style_ctx.add_provider (font_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading font style (%s, %dpt): %s", font_family, font_size+2, e.message); } name_label.override_color (Gtk.StateFlags.NORMAL, { 1.0f, 1.0f, 1.0f, 1.0f }); name_label.valign = Gtk.Align.START; name_label.vexpand = true; name_label.yalign = 0.5f; name_label.xalign = 0.0f; name_label.margin_left = 2; name_label.set_size_request (-1, grid_size); name_label.show (); name_grid.attach (name_label, COL_NAME_LABEL, ROW_NAME, 1, 1); message_image = new CachedImage (null); try { message_image.pixbuf = new Gdk.Pixbuf.from_file (Path.build_filename (Config.PKGDATADIR, "message.png", null)); } catch (Error e) { debug ("Error loading message image: %s", e.message); } var align = new Gtk.Alignment (0.5f, 0.5f, 0.0f, 0.0f); align.valign = Gtk.Align.START; align.set_size_request (-1, grid_size); align.add (message_image); align.show (); name_grid.attach (align, COL_NAME_MESSAGE, ROW_NAME, 1, 1); option_button = new FlatButton (); option_button.get_style_context ().add_class ("option-button"); option_button.hexpand = true; option_button.halign = Gtk.Align.END; option_button.valign = Gtk.Align.START; // Keep as much space on top as on the right option_button.margin_top = ActiveIndicator.WIDTH + box_grid.column_spacing; Gtk.button_set_focus_on_click (option_button, false); option_button.relief = Gtk.ReliefStyle.NONE; option_button.get_accessible ().set_name (_("Session Options")); option_button.clicked.connect (option_button_clicked_cb); option_image = new CachedImage (null); option_image.show (); option_button.add (option_image); name_grid.attach (option_button, COL_NAME_OPTIONS, ROW_NAME, 1, 1); name_grid.show (); return name_grid; } protected virtual Gtk.Grid create_small_name_grid () { var small_name_grid = new Gtk.Grid (); small_name_grid.column_spacing = 4; small_name_label = new FadingLabel (""); var style_ctx = small_name_label.get_style_context(); try { var font_provider = new Gtk.CssProvider (); var css = "* {font-family: %s; font-size: %dpt;}".printf (font_family, font_size); font_provider.load_from_data (css, -1); style_ctx.add_provider (font_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading font style (%s, %dpt): %s", font_family, font_size, e.message); } small_name_label.override_color (Gtk.StateFlags.NORMAL, { 1.0f, 1.0f, 1.0f, 1.0f }); small_name_label.yalign = 0.5f; small_name_label.xalign = 0.0f; small_name_label.margin_left = 2; small_name_label.set_size_request (-1, grid_size); small_name_label.show (); small_name_grid.attach (small_name_label, 1, 0, 1, 1); small_message_image = new CachedImage (null); small_message_image.pixbuf = message_image.pixbuf; var align = new Gtk.Alignment (0.5f, 0.5f, 0.0f, 0.0f); align.set_size_request (-1, grid_size); align.add (small_message_image); align.show (); small_name_grid.attach (align, 2, 0, 1, 1); small_name_grid.show (); return small_name_grid; } protected virtual void set_start_row () { start_row = 0; } protected virtual void reset_last_row () { last_row = start_row; } #if HAVE_GTK_3_20_0 private int round_to_grid (int size) { var num_grids = size / grid_size; var remainder = size % grid_size; if (remainder > 0) num_grids += 1; num_grids = int.max (num_grids, 3); return num_grids * grid_size; } public override void get_preferred_height (out int min, out int nat) { base.get_preferred_height (out min, out nat); min = round_to_grid (min + GreeterList.BORDER * 2) - GreeterList.BORDER * 2; nat = round_to_grid (nat + GreeterList.BORDER * 2) - GreeterList.BORDER * 2; if (position <= -1 || position >= 1) min = nat = grid_size; } #endif public void set_zone (Gtk.Widget zone) { this.zone = zone; queue_draw (); } public void set_options_image (Gdk.Pixbuf? image) { if (option_button == null) return; option_image.pixbuf = image; if (image == null) option_button.hide (); else option_button.show (); } private void option_button_clicked_cb (Gtk.Button button) { show_options (); } public void set_show_message_icon (bool show) { message_image.visible = show; small_message_image.visible = show; } public void set_is_active (bool active) { active_indicator.active = active; small_active_indicator.active = active; } protected void foreach_prompt_widget (Gtk.Callback cb) { var prompt_widgets = new List (); var i = start_row + 1; while (i <= last_row) { var c = box_grid.get_child_at (COL_ENTRIES_START, i); if (c != null) /* c might have been deleted from selective clear */ prompt_widgets.append (c); i++; } foreach (var w in prompt_widgets) cb (w); } public void clear () { prompt_visibility = PromptVisibility.HIDDEN; /* Hold a ref while removing the prompt widgets - * if we just do w.destroy() we get this warning: * CRITICAL: pango_layout_get_cursor_pos: assertion 'index >= 0 && index <= layout->length' failed * by GtkWidget's screen-changed signal being called on * widget when we destroy it. */ foreach_prompt_widget ((w) => { #if HAVE_GTK_3_20_0 w.ref (); w.get_parent().remove(w); w.unref (); #else w.destroy (); #endif }); reset_last_row (); has_errors = false; } /* Clears error messages */ public void reset_messages () { has_errors = false; foreach_prompt_widget ((w) => { var is_error = w.get_data ("prompt-box-is-error"); if (is_error) w.destroy (); }); } /* Stops spinners */ public void reset_spinners () { foreach_prompt_widget ((w) => { if (w is DashEntry) { var e = w as DashEntry; e.did_respond = false; } }); } /* Clears error messages and stops spinners. Basically gets the box back to a filled-by-user-but-no-status state. */ public void reset_state () { reset_messages (); reset_spinners (); } public virtual void add_static_prompts () { /* Subclasses may want to add prompts that are always present here */ } private void update_prompt_visibility (Gtk.Widget w) { switch (prompt_visibility) { case PromptVisibility.HIDDEN: w.hide (); break; case PromptVisibility.FADING: var f = w as Fadable; w.sensitive = true; if (f != null) f.fade_in (); else w.show (); break; case PromptVisibility.SHOWN: w.show (); w.sensitive = true; break; } } public void fade_in_prompts () { prompt_visibility = PromptVisibility.FADING; show (); foreach_prompt_widget ((w) => { update_prompt_visibility (w); }); } public void show_prompts () { prompt_visibility = PromptVisibility.SHOWN; show (); foreach_prompt_widget ((w) => { update_prompt_visibility (w); }); } protected void attach_item (Gtk.Widget w, bool add_style_class = true) { w.set_data ("prompt-box-widget", this); if (add_style_class) ArcticaGreeter.add_style_class (w); last_row += 1; box_grid.attach (w, COL_ENTRIES_START, last_row, COL_ENTRIES_WIDTH, 1); update_prompt_visibility (w); queue_resize (); } public void add_message (string text, bool is_error) { var label = new FadingLabel (text); var style_ctx = label.get_style_context(); try { var font_provider = new Gtk.CssProvider (); var css = "* {font-family: %s; font-size: %dpt;}".printf (font_family, font_size-1); font_provider.load_from_data (css, -1); style_ctx.add_provider (font_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading font style (%s, %dpt): %s", font_family, font_size-1, e.message); } Gdk.RGBA color = { 1.0f, 1.0f, 1.0f, 1.0f }; if (is_error) color.parse ("#df382c"); label.override_color (Gtk.StateFlags.NORMAL, color); label.xalign = 0.0f; label.set_data ("prompt-box-is-error", is_error); attach_item (label); if (is_error) has_errors = true; } public DashEntry add_prompt (string text, string? accessible_text, bool is_secret) { /* Stop other entry's arrows/spinners from showing */ foreach_prompt_widget ((w) => { if (w is DashEntry) { var e = w as DashEntry; if (e != null) e.can_respond = false; } }); var entry = new DashEntry (); entry.sensitive = false; if (text.contains ("\n")) { add_message (text, false); entry.constant_placeholder_text = ""; } else { /* Strip trailing colon if present (also handle CJK version) */ var placeholder = text; if (placeholder.has_suffix (":") || placeholder.has_suffix (":")) { var len = placeholder.char_count (); placeholder = placeholder.substring (0, placeholder.index_of_nth_char (len - 1)); } entry.constant_placeholder_text = placeholder; } var accessible = entry.get_accessible (); if (accessible_text != null) accessible.set_name (accessible_text); else accessible.set_name (text); if (is_secret) { entry.visibility = false; entry.caps_lock_warning = true; } entry.respond.connect (entry_activate_cb); attach_item (entry); return entry; } public Gtk.ComboBox add_combo (GenericArray texts, bool read_only) { Gtk.ComboBoxText combo; if (read_only) combo = new Gtk.ComboBoxText (); else combo = new Gtk.ComboBoxText.with_entry (); combo.get_style_context ().add_class ("lightdm-combo"); combo.get_child ().get_style_context ().add_class ("lightdm-combo"); var style_ctx = combo.get_child ().get_style_context(); try { var font_provider = new Gtk.CssProvider (); var css = "* {font-family: %s; font-size: %dpt;}".printf (DashEntry.font_family, DashEntry.font_size); font_provider.load_from_data (css, -1); style_ctx.add_provider (font_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading font style (%s, %dpt): %s", font_family, font_size+2, e.message); } attach_item (combo, false); texts.foreach ((text) => { combo.append_text (text); }); if (texts.length > 0) combo.active = 0; return combo; } protected void entry_activate_cb () { var response = new string[0]; foreach_prompt_widget ((w) => { if (w is Gtk.Entry) { var e = w as Gtk.Entry; if (e != null) response += e.text; } }); respond (response); } public void add_button (string text, string? accessible_text) { var button = new DashButton (text); var accessible = button.get_accessible (); accessible.set_name (accessible_text); button.clicked.connect (button_clicked_cb); attach_item (button); } private void button_clicked_cb (Gtk.Button button) { login (); } public override void grab_focus () { var done = false; Gtk.Widget best = null; foreach_prompt_widget ((w) => { if (done) return; best = w; /* last entry wins, all else considered */ var e = w as Gtk.Entry; var b = w as Gtk.Button; var c = w as Gtk.ComboBox; /* We've found ideal entry (first empty one), so stop looking */ if ((e != null && e.text == "") || b != null || c != null) done = true; }); if (best != null) best.grab_focus (); } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); box_grid.size_allocate (allocation); int small_height; small_box_widget.get_preferred_height (null, out small_height); allocation.height = small_height; small_box_widget.size_allocate (allocation); } public override void draw_full_alpha (Cairo.Context c) { /* Draw either small or normal version of ourselves, depending on where our allocation put us relative to our zone */ int x, y; zone.translate_coordinates (this, 0, 0, out x, out y); Gtk.Allocation alloc, zone_alloc; this.get_allocation (out alloc); zone.get_allocation (out zone_alloc); /* Draw main grid only in that area */ c.save (); c.rectangle (x, y, zone_alloc.width, zone_alloc.height); c.clip (); fixed.propagate_draw (box_grid, c); c.restore (); /* Do actual drawing */ c.save (); if (y > 0) c.rectangle (x, 0, zone_alloc.width, y); else c.rectangle (x, y + zone_alloc.height, zone_alloc.width, -y); c.clip (); fixed.propagate_draw (small_box_widget, c); c.restore (); } } private class ActiveIndicator : Gtk.Image { public bool active { get; set; } public const int WIDTH = 8; public const int HEIGHT = 7; construct { var filename = Path.build_filename (Config.PKGDATADIR, "active.png"); try { pixbuf = new Gdk.Pixbuf.from_file (filename); } catch (Error e) { debug ("Could not load active image: %s", e.message); } notify["active"].connect (() => { queue_draw (); }); xalign = 0.0f; } public override void get_preferred_width (out int min, out int nat) { min = WIDTH; nat = min; } public override void get_preferred_height (out int min, out int nat) { min = HEIGHT; nat = min; } public override bool draw (Cairo.Context c) { if (!active) return false; return base.draw (c); } } arctica-greeter-0.99.1.5/src/remote-logon-service.vala0000644000000000000000000000415014007200004017370 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * Copyright (C) 2015-2016 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ protected struct RemoteServerField { public string type; public bool required; public Variant default_value; public HashTable properties; } protected struct RemoteServerApplication { public string application_id; public int pin_position; } protected struct RemoteServer { public string type; public string name; public string url; public bool last_used_server; public RemoteServerField[] fields; public RemoteServerApplication[] applications; } [DBus (name = "org.ArcticaProject.RemoteLogon")] interface RemoteLogonService : Object { public abstract async void get_servers (out RemoteServer[] serverList) throws IOError; public abstract async void get_servers_for_login (string url, string emailAddress, string password, bool allowCache, out bool loginSuccess, out string dataType, out RemoteServer[] serverList) throws IOError; public abstract async void get_cached_domains_for_server (string url, out string[] domains) throws IOError; public abstract async void set_last_used_server (string uccsUrl, string serverUrl) throws IOError; public signal void servers_updated (RemoteServer[] serverList); public signal void login_servers_updated (string url, string emailAddress, string dataType, RemoteServer[] serverList); public signal void login_changed (string url, string emailAddress); } arctica-greeter-0.99.1.5/src/session-list.vala0000644000000000000000000001425614007200004015767 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * Copyright (C) 2015-2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry * Mike Gabriel */ public class SessionPrompt : PromptBox { public string session { get; construct; } public string default_session { get; construct; } public SessionPrompt (string id, string? session, string? default_session) { Object (id: id, session: session, default_session: default_session); } private unowned GLib.List sessions_sorted_ci (GLib.List sessions) { sessions.sort_with_data((a, b) => GLib.strcmp (a.name.casefold(), b.name.casefold())); return sessions; } private ToggleBox box; construct { label = _("Select desktop environment"); name_label.vexpand = false; box = new ToggleBox (default_session, session); if (ArcticaGreeter.singleton.test_mode) { box.add_item ("gnome", "GNOME", SessionList.get_badge ("gnome")); box.add_item ("kde", "KDE", SessionList.get_badge ("kde")); box.add_item ("ubuntu", "Ubuntu", SessionList.get_badge ("ubuntu")); } else { foreach (var session in sessions_sorted_ci( LightDM.get_sessions() ) ) { debug ("Adding session %s (%s)", session.key, session.name); box.add_item (session.key, session.name, SessionList.get_badge (session.key)); } } box.notify["selected-key"].connect (selected_cb); box.show (); attach_item (box); } private void selected_cb () { respond ({ box.selected_key }); } } public class SessionList : GreeterList { public signal void session_clicked (string session); public string session { get; construct; } public string default_session { get; construct; } private SessionPrompt prompt; public SessionList (Background bg, MenuBar mb, string? session, string? default_session) { Object (background: bg, menubar: mb, session: session, default_session: default_session); } construct { prompt = add_session_prompt ("session"); } private SessionPrompt add_session_prompt (string id) { var e = new SessionPrompt (id, session, default_session); e.respond.connect ((responses) => { session_clicked (responses[0]); }); add_entry (e); return e; } protected override void add_manual_entry () {} public override void show_authenticated (bool successful = true) {} private static string? get_badge_name (string session) { switch (session) { case "awesome": return "awesome_badge.png"; case "budgie-desktop": return "budgie_badge.png"; case "ubuntu": case "ubuntu-2d": case "unity": return "ubuntu_badge.png"; case "gnome-classic": case "gnome-flashback-compiz": case "gnome-flashback-metacity": case "gnome-shell": case "gnome-wayland": case "gnome": case "openbox-gnome": return "gnome_badge.png"; case "wmaker-common": return "gnustep_badge.png"; case "kde": case "kde-plasma": case "openbox-kde": case "plasma": return "kde_badge.png"; case "i3": case "i3-with-shmlog": return "i3_badge.png"; case "lightdm-xsession": return "xsession_badge.png"; case "lxde": case "LXDE": return "lxde_badge.png"; case "matchbox": return "matchbox_badge.png"; case "mate": return "mate_badge.png"; case "openbox": return "openbox_badge.png"; case "sugar": return "sugar_badge.png"; case "surf-display": return "surf_badge.png"; case "twm": return "twm_badge.png"; case "xfce": return "xfce_badge.png"; case "xterm": return "recovery_console_badge.png"; case "xmonad": return "xmonad_badge.png"; case "remote-login": return "remote_login_help.png"; default: return null; } } private static HashTable badges; /* cache of badges */ public static Gdk.Pixbuf? get_badge (string session) { var name = get_badge_name (session); if (name == null) { /* Not a known name, but let's see if we have a custom badge before giving up entirely and using the unknown badget. */ var maybe_name = "custom_%s_badge.png".printf (session); var maybe_path = Path.build_filename (Config.PKGDATADIR, maybe_name, null); if (FileUtils.test (maybe_path, FileTest.EXISTS)) name = maybe_name; else name = "unknown_badge.png"; } if (badges == null) badges = new HashTable (str_hash, str_equal); var pixbuf = badges.lookup (name); if (pixbuf == null) { try { pixbuf = new Gdk.Pixbuf.from_file (Path.build_filename (Config.PKGDATADIR, name, null)); badges.insert (name, pixbuf); } catch (Error e) { debug ("Error loading badge %s: %s", name, e.message); } } return pixbuf; } } arctica-greeter-0.99.1.5/src/settings-daemon.vala0000644000000000000000000002433314007200004016431 0ustar /* -*- Mode:Vala; indent-tabs-mode:nil; tab-width:4 -*- * * Copyright (C) 2011 Canonical Ltd * Copyright (C) 2015,2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Michael Terry * Mike Gabriel */ public class SettingsDaemon : Object { private int sd_pid = 0; private int logind_inhibit_fd = -1; private ScreenSaverInterface screen_saver; private SessionManagerInterface session_manager; private int n_names = 2; public void start () { string[] disabled = { "org.mate.settings-daemon.plugins.background", "org.mate.settings-daemon.plugins.clipboard", "org.mate.settings-daemon.plugins.housekeeping", "org.mate.settings-daemon.plugins.keybindings", "org.mate.settings-daemon.plugins.keyboard", "org.mate.settings-daemon.plugins.media-keys", "org.mate.settings-daemon.plugins.mouse", "org.mate.settings-daemon.plugins.mpris", "org.mate.settings-daemon.plugins.smartcard", "org.mate.settings-daemon.plugins.sound", "org.mate.settings-daemon.plugins.typing-break", "org.mate.settings-daemon.plugins.xrdb" }; string[] enabled = { "org.mate.settings-daemon.plugins.a11y-keyboard", "org.mate.settings-daemon.plugins.a11y-settings", "org.mate.settings-daemon.plugins.xrandr", "org.mate.settings-daemon.plugins.xsettings" }; foreach (var schema in disabled) set_plugin_enabled (schema, false); foreach (var schema in enabled) set_plugin_enabled (schema, true); /* Pretend to be MATE/GNOME session */ session_manager = new SessionManagerInterface (); GLib.Bus.own_name (BusType.SESSION, "org.gnome.SessionManager", BusNameOwnerFlags.NONE, (c) => { try { c.register_object ("/org/gnome/SessionManager", session_manager); } catch (Error e) { warning ("Failed to register /org/gnome/SessionManager: %s", e.message); } }, () => { debug ("Acquired org.gnome.SessionManager"); start_settings_daemon (); }, () => debug ("Failed to acquire name org.gnome.SessionManager")); /* The power plugin does the screen saver screen blanking and disables * the builtin X screen saver. It relies on mate-screensaver to generate * the event to trigger this (which actually comes from mate-session). * We implement the mate-screensaver inteface and start the settings * daemon once it is registered on the bus so mate-screensaver is not * started when it accesses this interface */ screen_saver = new ScreenSaverInterface (); GLib.Bus.own_name (BusType.SESSION, "org.gnome.ScreenSaver", BusNameOwnerFlags.NONE, (c) => { try { c.register_object ("/org/gnome/ScreenSaver", screen_saver); } catch (Error e) { warning ("Failed to register /org/gnome/ScreenSaver: %s", e.message); } }, () => { debug ("Acquired org.gnome.ScreenSaver"); start_settings_daemon (); }, () => debug ("Failed to acquire name org.gnome.ScreenSaver")); /* The media-keys plugin inhibits the power key, but we don't want all the other keys doing things. So inhibit it ourselves */ /* NOTE: We are using the synchronous method here since there is a bug in Vala/GLib in that * g_dbus_connection_call_with_unix_fd_list_finish and g_dbus_proxy_call_with_unix_fd_list_finish * don't have the GAsyncResult as the second argument. * https://bugzilla.gnome.org/show_bug.cgi?id=688907 */ try { var b = Bus.get_sync (BusType.SYSTEM); UnixFDList fd_list; var result = b.call_with_unix_fd_list_sync ("org.freedesktop.login1", "/org/freedesktop/login1", "org.freedesktop.login1.Manager", "Inhibit", new Variant ("(ssss)", "handle-power-key", Environment.get_user_name (), "Arctica Greeter handling keypresses", "block"), new VariantType ("(h)"), DBusCallFlags.NONE, -1, null, out fd_list); int32 index = -1; result.get ("(h)", &index); logind_inhibit_fd = fd_list.get (index); } catch (Error e) { warning ("Failed to inhibit power keys: %s", e.message); } } public void stop () { stop_settings_daemon(); } private void set_plugin_enabled (string schema_name, bool enabled) { var source = SettingsSchemaSource.get_default (); var schema = source.lookup (schema_name, false); if (schema != null) { var settings = new Settings (schema_name); settings.set_boolean ("active", enabled); } } private void start_settings_daemon () { n_names--; if (n_names != 0) return; debug ("All bus names acquired, starting %s", Config.SD_BINARY); try { string[] argv; Shell.parse_argv (Config.SD_BINARY, out argv); Process.spawn_async (null, argv, null, SpawnFlags.SEARCH_PATH, null, out sd_pid); debug ("Launched %s. PID: %d", Config.SD_BINARY, sd_pid); } catch (Error e) { debug ("Could not start %s: %s", Config.SD_BINARY, e.message); } } private void stop_settings_daemon () { if (sd_pid != 0) { #if VALA_0_40 Posix.kill (sd_pid, Posix.Signal.KILL); #else Posix.kill (sd_pid, Posix.SIGKILL); #endif int status; Posix.waitpid (sd_pid, out status, 0); if (Process.if_exited (status)) debug ("SettingsDaemon exited with return value %d", Process.exit_status (status)); else debug ("SettingsDaemon terminated with signal %d", Process.term_sig (status)); sd_pid = 0; } } } [DBus (name="org.gnome.ScreenSaver")] public class ScreenSaverInterface : Object { public signal void active_changed (bool value); private IdleMonitor idle_monitor; private bool _active = false; private uint idle_watch = 0; public ScreenSaverInterface () { idle_monitor = new IdleMonitor (); _set_active (false); } private void _set_active (bool value) { _active = value; if (idle_watch != 0) idle_monitor.remove_watch (idle_watch); idle_watch = 0; if (value) idle_monitor.add_user_active_watch (() => set_active (false)); else { var timeout = AGSettings.get_integer (AGSettings.KEY_IDLE_TIMEOUT); if (timeout > 0) idle_watch = idle_monitor.add_idle_watch (timeout * 1000, () => set_active (true)); } } public void set_active (bool value) { if (_active == value) return; if (value) debug ("Screensaver activated"); else debug ("Screensaver disabled"); _set_active (value); active_changed (value); } public bool get_active () { return _active; } public uint32 get_active_time () { return 0; } public void lock () {} public void show_message (string summary, string body, string icon) {} public void simulate_user_activity () {} } [DBus (name="org.gnome.SessionManager")] public class SessionManagerInterface : Object { public bool session_is_active { get { return true; } } public string session_name { get { return "greeter"; } } public uint32 inhibited_actions { get { return 0; } } } arctica-greeter-0.99.1.5/src/settings.vala0000644000000000000000000001032314007200004015162 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015,2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ public class AGSettings { public const string KEY_BACKGROUND = "background"; public const string KEY_BACKGROUND_COLOR = "background-color"; public const string KEY_DRAW_USER_BACKGROUNDS = "draw-user-backgrounds"; public const string KEY_DRAW_GRID = "draw-grid"; public const string KEY_SHOW_HOSTNAME = "show-hostname"; public const string KEY_LOGO = "logo"; public const string KEY_THEME_NAME = "theme-name"; public const string KEY_ICON_THEME_NAME = "icon-theme-name"; public const string KEY_FONT_NAME = "font-name"; public const string KEY_XFT_ANTIALIAS = "xft-antialias"; public const string KEY_XFT_DPI = "xft-dpi"; public const string KEY_XFT_HINTSTYLE = "xft-hintstyle"; public const string KEY_XFT_RGBA = "xft-rgba"; public const string KEY_ONSCREEN_KEYBOARD = "onscreen-keyboard"; public const string KEY_HIGH_CONTRAST = "high-contrast"; public const string KEY_SCREEN_READER = "screen-reader"; public const string KEY_PLAY_READY_SOUND = "play-ready-sound"; public const string KEY_INDICATORS = "indicators"; public const string KEY_HIDDEN_USERS = "hidden-users"; public const string KEY_GROUP_FILTER = "group-filter"; public const string KEY_IDLE_TIMEOUT = "idle-timeout"; public const string KEY_ACTIVATE_NUMLOCK = "activate-numlock"; public const string KEY_ONLY_ON_MONITOR = "only-on-monitor"; public const string KEY_REMOTE_SERVICE_CONFIGURE_URI = "remote-service-configure-uri"; public const string KEY_TOGGLEBOX_FONT_FGCOLOR = "togglebox-font-fgcolor"; public const string KEY_TOGGLEBOX_BUTTON_BGCOLOR = "togglebox-button-bgcolor"; public const string KEY_ENABLE_HIDPI = "enable-hidpi"; public static bool get_boolean (string key) { var gsettings = new Settings (SCHEMA); return gsettings.get_boolean (key); } /* LP: 1006497 - utility function to make sure we have the key before trying to read it (which will segfault if the key isn't there) */ public static bool safe_get_boolean (string key, bool default) { var gsettings = new Settings (SCHEMA); string[] keys = gsettings.list_keys (); foreach (var k in keys) if (k == key) return gsettings.get_boolean (key); /* key not in child list */ return default; } public static int get_integer (string key) { var gsettings = new Settings (SCHEMA); return gsettings.get_int (key); } public static double get_double (string key) { var gsettings = new Settings (SCHEMA); return gsettings.get_double (key); } public static string get_string (string key) { var gsettings = new Settings (SCHEMA); return gsettings.get_string (key); } public static bool set_boolean (string key, bool value) { var gsettings = new Settings (SCHEMA); return gsettings.set_boolean (key, value); } public static string[] get_strv (string key) { var gsettings = new Settings (SCHEMA); return gsettings.get_strv (key); } public static bool set_strv (string key, string[] value) { var gsettings = new Settings (SCHEMA); return gsettings.set_strv (key, value); } private const string SCHEMA = "org.ArcticaProject.arctica-greeter"; } arctica-greeter-0.99.1.5/src/shutdown-dialog.vala0000644000000000000000000005446614007200004016452 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2013 Canonical Ltd * Copyright (C) 2015,2016 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Marco Trevisan * Mike Gabriel */ public enum ShutdownDialogType { LOGOUT, SHUTDOWN, RESTART } public class ShutdownDialog : Gtk.Fixed { public signal void closed (); private Cairo.ImageSurface? bg_surface = null; private Cairo.ImageSurface? corner_surface = null; private Cairo.ImageSurface? left_surface = null; private Cairo.ImageSurface? top_surface = null; private Cairo.Pattern? corner_pattern = null; private Cairo.Pattern? left_pattern = null; private Cairo.Pattern? top_pattern = null; private const int BORDER_SIZE = 30; private const int BORDER_INTERNAL_SIZE = 10; private const int BORDER_EXTERNAL_SIZE = BORDER_SIZE - BORDER_INTERNAL_SIZE; private const int CLOSE_OFFSET = 3; private const int BUTTON_TEXT_SPACE = 9; private const int BLUR_RADIUS = 8; private Monitor monitor; private weak Background background; private Gdk.RGBA avg_color; private Gtk.Box vbox; private DialogButton close_button; private Gtk.Box button_box; private Gtk.EventBox monitor_events; private Gtk.EventBox vbox_events; private AnimateTimer animation; private bool closing = false; public ShutdownDialog (ShutdownDialogType type, Background bg) { background = bg; background.notify["alpha"].connect (rebuild_background); background.notify["average-color"].connect (update_background_color); update_background_color (); // This event box covers the monitor size, and closes the dialog on click. monitor_events = new Gtk.EventBox (); monitor_events.visible = true; monitor_events.set_visible_window (false); monitor_events.events |= Gdk.EventMask.BUTTON_PRESS_MASK; monitor_events.button_press_event.connect (() => { close (); return true; }); add (monitor_events); vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 10); vbox.visible = true; vbox.margin = BORDER_INTERNAL_SIZE; vbox.margin_top += 9; vbox.margin_left += 20; vbox.margin_right += 20; vbox.margin_bottom += 2; // This event box consumes the click events inside the vbox vbox_events = new Gtk.EventBox(); vbox_events.visible = true; vbox_events.set_visible_window (false); vbox_events.events |= Gdk.EventMask.BUTTON_PRESS_MASK; vbox_events.button_press_event.connect (() => { return true; }); vbox_events.add (vbox); monitor_events.add (vbox_events); string text; if (type == ShutdownDialogType.SHUTDOWN) { text = _("Goodbye. Would you like to…"); } else { var title_label = new Gtk.Label (null); title_label.visible = true; title_label.set_markup ("%s".printf (AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_FONT_FGCOLOR), _("Shut Down"))); title_label.set_alignment (0.0f, 0.5f); vbox.pack_start (title_label, false, false, 0); text = _("Are you sure you want to shut down the computer?"); } var have_open_sessions = false; try { var b = Bus.get_sync (BusType.SYSTEM); var result = b.call_sync ("org.freedesktop.DisplayManager", "/org/freedesktop/DisplayManager", "org.freedesktop.DBus.Properties", "Get", new Variant ("(ss)", "org.freedesktop.DisplayManager", "Sessions"), new VariantType ("(v)"), DBusCallFlags.NONE, -1, null); Variant value; result.get ("(v)", out value); have_open_sessions = value.n_children () > 0; } catch (Error e) { warning ("Failed to check sessions from logind: %s", e.message); } if (have_open_sessions) text = "%s\n\n%s".printf (_("Other users are currently logged in to this computer, shutting down now will also close these other sessions."), text); var label = new Gtk.Label (null); label.set_line_wrap (true); label.set_markup ("%s".printf (AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_FONT_FGCOLOR), text)); label.set_alignment (0.0f, 0.5f); label.visible = true; vbox.pack_start (label, false, false, 0); button_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 20); button_box.visible = true; vbox.pack_start (button_box, false, false, 0); if (type == ShutdownDialogType.SHUTDOWN) { if (LightDM.get_can_suspend ()) { var button = add_button (_("Suspend"), Path.build_filename (Config.PKGDATADIR, "suspend.png"), Path.build_filename (Config.PKGDATADIR, "suspend_highlight.png")); button.clicked.connect (() => { try { LightDM.suspend (); close (); } catch (Error e) { warning ("Failed to suspend: %s", e.message); } }); } if (LightDM.get_can_hibernate ()) { var button = add_button (_("Hibernate"), Path.build_filename (Config.PKGDATADIR, "hibernate.png"), Path.build_filename (Config.PKGDATADIR, "hibernate_highlight.png")); button.clicked.connect (() => { try { LightDM.hibernate (); close (); } catch (Error e) { warning ("Failed to hibernate: %s", e.message); } }); } } if (LightDM.get_can_restart ()) { var button = add_button (_("Restart"), Path.build_filename (Config.PKGDATADIR, "restart.png"), Path.build_filename (Config.PKGDATADIR, "restart_highlight.png")); button.clicked.connect (() => { try { LightDM.restart (); close (); } catch (Error e) { warning ("Failed to restart: %s", e.message); } }); if (type == ShutdownDialogType.RESTART) show.connect(() => { button.grab_focus (); }); } if (LightDM.get_can_shutdown ()) { var button = add_button (_("Shut Down"), Path.build_filename (Config.PKGDATADIR, "shutdown.png"), Path.build_filename (Config.PKGDATADIR, "shutdown_highlight.png")); button.clicked.connect (() => { try { LightDM.shutdown (); close (); } catch (Error e) { warning ("Failed to shutdown: %s", e.message); } }); if (type == ShutdownDialogType.SHUTDOWN) show.connect(() => { button.grab_focus (); }); } close_button = new DialogButton (Path.build_filename (Config.PKGDATADIR, "dialog_close.png"), Path.build_filename (Config.PKGDATADIR, "dialog_close_highlight.png"), Path.build_filename (Config.PKGDATADIR, "dialog_close_press.png")); close_button.can_focus = false; close_button.clicked.connect (() => { close (); }); close_button.visible = true; add (close_button); animation = new AnimateTimer ((x) => { return x; }, AnimateTimer.INSTANT); animation.animate.connect (() => { queue_draw (); }); show.connect (() => { animation.reset(); }); } public void close () { var start_value = 1.0f - animation.progress; animation = new AnimateTimer ((x) => { return start_value + x; }, AnimateTimer.INSTANT); animation.animate.connect ((p) => { queue_draw (); if (p >= 1.0f) { animation.stop (); closed (); } }); closing = true; animation.reset(); } private void rebuild_background () { bg_surface = null; queue_draw (); } private void update_background_color () { // Apply the same color corrections we do in Unity // For reference, see unity's unity-shared/BGHash.cpp double hue, saturation, value; const double COLOR_ALPHA = 0.72f; Gdk.RGBA color = background.average_color; Gtk.RGB.to_hsv (color.red, color.green, color.blue, out hue, out saturation, out value); if (saturation < 0.08) { // Got a grayscale image avg_color = {0.18f, 0.20f, 0.21f, COLOR_ALPHA }; } else { const Gdk.RGBA[] cmp_colors = { {84/255.0f, 14/255.0f, 68/255.0f, 1.0f}, {110/255.0f, 11/255.0f, 42/255.0f, 1.0f}, {132/255.0f, 22/255.0f, 23/255.0f, 1.0f}, {132/255.0f, 55/255.0f, 27/255.0f, 1.0f}, {134/255.0f, 77/255.0f, 32/255.0f, 1.0f}, {133/255.0f, 127/255.0f, 49/255.0f, 1.0f}, {29/255.0f, 99/255.0f, 49/255.0f, 1.0f}, {17/255.0f, 88/255.0f, 46/255.0f, 1.0f}, {14/255.0f, 89/255.0f, 85/255.0f, 1.0f}, {25/255.0f, 43/255.0f, 89/255.0f, 1.0f}, {27/255.0f, 19/255.0f, 76/255.0f, 1.0f}, {2/255.0f, 192/255.0f, 212/255.0f, 1.0f} }; avg_color = {0, 0, 0, 1}; double closest_diff = 200.0f; foreach (var c in cmp_colors) { double cmp_hue, cmp_sat, cmp_value; Gtk.RGB.to_hsv (c.red, c.green, c.blue, out cmp_hue, out cmp_sat, out cmp_value); double color_diff = Math.fabs (hue - cmp_hue); if (color_diff < closest_diff) { avg_color = c; closest_diff = color_diff; } } double new_hue, new_saturation, new_value; Gtk.RGB.to_hsv (avg_color.red, avg_color.green, avg_color.blue, out new_hue, out new_saturation, out new_value); saturation = double.min (saturation, new_saturation); saturation *= (2.0f - saturation); value = double.min (double.min (value, new_value), 0.26f); Gtk.HSV.to_rgb (hue, saturation, value, out avg_color.red, out avg_color.green, out avg_color.blue); avg_color.alpha = COLOR_ALPHA; } rebuild_background (); } public void set_active_monitor (Monitor m) { if (m == this.monitor || m.equals (this.monitor)) return; monitor = m; rebuild_background (); set_size_request (monitor.width, monitor.height); } public void focus_next () { (get_toplevel () as Gtk.Window).move_focus (Gtk.DirectionType.TAB_FORWARD); } public void focus_prev () { (get_toplevel () as Gtk.Window).move_focus (Gtk.DirectionType.TAB_BACKWARD); } public void cancel () { var widget = (get_toplevel () as Gtk.Window).get_focus (); if (widget is DialogButton) (get_toplevel () as Gtk.Window).set_focus (null); else close (); } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); monitor_events.size_allocate (allocation); var content_allocation = Gtk.Allocation (); int minimum_width, natural_width, minimum_height, natural_height; vbox_events.get_preferred_width (out minimum_width, out natural_width); vbox_events.get_preferred_height_for_width (minimum_width, out minimum_height, out natural_height); content_allocation.x = allocation.x + (allocation.width - minimum_width) / 2; content_allocation.y = allocation.y + (allocation.height - minimum_height) / 2; content_allocation.width = minimum_width; content_allocation.height = minimum_height; vbox_events.size_allocate (content_allocation); var a = Gtk.Allocation (); close_button.get_preferred_width (out minimum_width, out natural_width); close_button.get_preferred_height (out minimum_height, out natural_height); a.x = content_allocation.x - BORDER_EXTERNAL_SIZE + CLOSE_OFFSET; a.y = content_allocation.y - BORDER_EXTERNAL_SIZE + CLOSE_OFFSET; a.width = minimum_width; a.height = minimum_height; close_button.size_allocate (a); } public override bool draw (Cairo.Context c) { if (corner_surface == null) { corner_surface = new Cairo.ImageSurface.from_png (Path.build_filename (Config.PKGDATADIR, "switcher_corner.png")); left_surface = new Cairo.ImageSurface.from_png (Path.build_filename (Config.PKGDATADIR, "switcher_left.png")); top_surface = new Cairo.ImageSurface.from_png (Path.build_filename (Config.PKGDATADIR, "switcher_top.png")); corner_pattern = new Cairo.Pattern.for_surface (corner_surface); left_pattern = new Cairo.Pattern.for_surface (left_surface); left_pattern.set_extend (Cairo.Extend.REPEAT); top_pattern = new Cairo.Pattern.for_surface (top_surface); top_pattern.set_extend (Cairo.Extend.REPEAT); } int width = vbox_events.get_allocated_width (); int height = vbox_events.get_allocated_height (); int x = (get_allocated_width () - width) / 2; int y = (get_allocated_height () - height) / 2; if (animation.is_running) c.push_group (); /* Darken background */ c.set_source_rgba (0, 0, 0, 0.25); c.paint (); if (bg_surface == null || animation.is_running) { /* Create a new blurred surface of the current surface */ bg_surface = new Cairo.ImageSurface (Cairo.Format.ARGB32, width, height); var bg_cr = new Cairo.Context (bg_surface); bg_cr.set_source_surface (c.get_target (), -x - monitor.x, -y - monitor.y); bg_cr.rectangle (0, 0, width, height); bg_cr.fill (); CairoUtils.ExponentialBlur.surface (bg_surface, BLUR_RADIUS); } /* Background */ c.save (); c.translate (x, y); CairoUtils.rounded_rectangle (c, 0, 0, width, height, 4); c.set_source_surface (bg_surface, 0, 0); c.fill_preserve (); c.set_source_rgba (avg_color.red, avg_color.green, avg_color.blue, avg_color.alpha); c.fill (); c.restore(); /* Draw borders */ x -= BORDER_EXTERNAL_SIZE; y -= BORDER_EXTERNAL_SIZE; width += BORDER_EXTERNAL_SIZE * 2; height += BORDER_EXTERNAL_SIZE * 2; c.save (); c.translate (x, y); /* Top left */ var m = Cairo.Matrix.identity (); corner_pattern.set_matrix (m); c.set_source (corner_pattern); c.rectangle (0, 0, BORDER_SIZE, BORDER_SIZE); c.fill (); /* Top right */ m = Cairo.Matrix.identity (); m.translate (width, 0); m.scale (-1, 1); corner_pattern.set_matrix (m); c.set_source (corner_pattern); c.rectangle (width - BORDER_SIZE, 0, BORDER_SIZE, BORDER_SIZE); c.fill (); /* Bottom left */ m = Cairo.Matrix.identity (); m.translate (0, height); m.scale (1, -1); corner_pattern.set_matrix (m); c.set_source (corner_pattern); c.rectangle (0, height - BORDER_SIZE, BORDER_SIZE, BORDER_SIZE); c.fill (); /* Bottom right */ m = Cairo.Matrix.identity (); m.translate (width, height); m.scale (-1, -1); corner_pattern.set_matrix (m); c.set_source (corner_pattern); c.rectangle (width - BORDER_SIZE, height - BORDER_SIZE, BORDER_SIZE, BORDER_SIZE); c.fill (); /* Left */ m = Cairo.Matrix.identity (); left_pattern.set_matrix (m); c.set_source (left_pattern); c.rectangle (0, BORDER_SIZE, BORDER_SIZE, height - BORDER_SIZE * 2); c.fill (); /* Right */ m = Cairo.Matrix.identity (); m.translate (width, 0); m.scale (-1, 1); left_pattern.set_matrix (m); c.set_source (left_pattern); c.rectangle (width - BORDER_SIZE, BORDER_SIZE, BORDER_SIZE, height - BORDER_SIZE * 2); c.fill (); /* Top */ m = Cairo.Matrix.identity (); top_pattern.set_matrix (m); c.set_source (top_pattern); c.rectangle (BORDER_SIZE, 0, width - BORDER_SIZE * 2, BORDER_SIZE); c.fill (); /* Bottom */ m = Cairo.Matrix.identity (); m.translate (0, height); m.scale (1, -1); top_pattern.set_matrix (m); c.set_source (top_pattern); c.rectangle (BORDER_SIZE, height - BORDER_SIZE, width - BORDER_SIZE * 2, BORDER_SIZE); c.fill (); c.restore (); var ret = base.draw (c); if (animation.is_running) { c.pop_group_to_source (); c.paint_with_alpha (closing ? 1.0f - animation.progress : animation.progress); } return ret; } private DialogButton add_button (string text, string inactive_filename, string active_filename) { var b = new Gtk.Box (Gtk.Orientation.VERTICAL, BUTTON_TEXT_SPACE); b.visible = true; button_box.pack_start (b, false, false, 0); var label = new Gtk.Label (text); var button = new DialogButton (inactive_filename, active_filename, null, label); button.visible = true; b.pack_start (button, false, false, 0); b.pack_start (label, false, false, 0); return button; } } private class DialogButton : Gtk.Button { private string inactive_filename; private string focused_filename; private string? active_filename; private Gtk.Image i; private Gtk.Label? l; public DialogButton (string inactive_filename, string focused_filename, string? active_filename, Gtk.Label? label = null) { this.inactive_filename = inactive_filename; this.focused_filename = focused_filename; this.active_filename = active_filename; relief = Gtk.ReliefStyle.NONE; Gtk.button_set_focus_on_click (this, false); i = new Gtk.Image.from_file (inactive_filename); i.visible = true; add (i); l = label; if (l != null) { l.visible = true; var style_ctx = l.get_style_context(); try { var font_provider = new Gtk.CssProvider (); var css = "* {font-family: Cantarell; font-size: 12pt;}"; font_provider.load_from_data (css, -1); style_ctx.add_provider (font_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading font style (Cantarell 12pt): %s", e.message); } l.override_color (Gtk.StateFlags.NORMAL, { 1.0f, 1.0f, 1.0f, 0.0f }); l.override_color (Gtk.StateFlags.FOCUSED, { 1.0f, 1.0f, 1.0f, 1.0f }); l.override_color (Gtk.StateFlags.ACTIVE, { 1.0f, 1.0f, 1.0f, 1.0f }); this.get_accessible ().set_name (l.get_text ()); } ArcticaGreeter.add_style_class (this); try { // Remove the default GtkButton paddings and border var style = new Gtk.CssProvider (); style.load_from_data ("* {padding: 0px 0px 0px 0px; border: 0px; }", -1); get_style_context ().add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading session chooser style: %s", e.message); } } public override bool enter_notify_event (Gdk.EventCrossing event) { grab_focus (); return base.enter_notify_event (event); } public override bool leave_notify_event (Gdk.EventCrossing event) { (get_toplevel () as Gtk.Window).set_focus (null); return base.leave_notify_event (event); } public override bool draw (Cairo.Context c) { i.draw (c); return true; } public override void state_flags_changed (Gtk.StateFlags previous_state) { var new_flags = get_state_flags (); if ((new_flags & Gtk.StateFlags.PRELIGHT) != 0 && !can_focus || (new_flags & Gtk.StateFlags.FOCUSED) != 0) { if ((new_flags & Gtk.StateFlags.ACTIVE) != 0 && active_filename != null) i.set_from_file (active_filename); else i.set_from_file (focused_filename); } else { i.set_from_file (inactive_filename); } if (l != null) l.set_state_flags (new_flags, true); base.state_flags_changed (previous_state); } } arctica-greeter-0.99.1.5/src/toggle-box.vala0000644000000000000000000001245714007200004015403 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * Copyright (C) 2015,2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Michael Terry * Mike Gabriel */ public class ToggleBox : Gtk.Box { public string default_key {get; construct;} public string starting_key {get; construct;} public string selected_key {get; protected set;} public static string font = AGSettings.get_string (AGSettings.KEY_FONT_NAME); public static string font_family = font.split_set(" ")[0]; public static int font_size = int.parse(font.split_set(" ")[1]); public ToggleBox (string? default_key, string? starting_key) { Object (default_key: default_key, starting_key: starting_key, selected_key: starting_key); } public void add_item (string key, string label, Gdk.Pixbuf? icon) { var item = make_button (key, label, icon); if (get_children () == null || (starting_key == null && default_key == key) || starting_key == key) select (item); item.show (); add (item); } public void set_normal_button_style (Gtk.Button button) { try { /* Tighten padding on buttons to not be so large, default color scheme for buttons */ var style = new Gtk.CssProvider (); style.load_from_data ("* {padding: 8px;}\n"+ "GtkButton {\n"+ " background-color: %s;\n".printf("rgba(0,0,0,0)")+ " background-image: none;"+ "}\n"+ ".button:hover,\n"+ ".button:hover:active {\n"+ " background-color: %s;\n".printf(AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_BUTTON_BGCOLOR))+ "}\n", -1); button.get_style_context ().add_provider (style, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); } catch (Error e) { debug ("Internal error loading session chooser style: %s", e.message); } return; } private Gtk.Button selected_button; construct { orientation = Gtk.Orientation.VERTICAL; } public override bool draw (Cairo.Context c) { Gtk.Allocation allocation; get_allocation (out allocation); CairoUtils.rounded_rectangle (c, 0, 0, allocation.width, allocation.height, 0.1 * grid_size); c.set_source_rgba (0.5, 0.5, 0.5, 0.5); c.set_line_width (1); c.stroke (); return base.draw (c); } private void select (Gtk.Button button) { if (selected_button != null) { selected_button.get_style_context ().remove_class ("selected"); set_normal_button_style (selected_button); } selected_button = button; selected_key = selected_button.get_data ("toggle-list-key"); var bg_color = Gdk.RGBA (); bg_color.parse (AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_BUTTON_BGCOLOR)); selected_button.override_background_color(Gtk.StateFlags.NORMAL, bg_color); } private Gtk.Button make_button (string key, string name_in, Gdk.Pixbuf? icon) { var item = new FlatButton (); item.relief = Gtk.ReliefStyle.NONE; item.clicked.connect (button_clicked_cb); var hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6); if (icon != null) { var image = new CachedImage (icon); hbox.pack_start (image, false, false, 0); } var name = name_in; if (key == default_key) { /* Translators: %s is a session name like KDE or Ubuntu */ name = _("%s (Default)").printf (name); } var label = new Gtk.Label (null); label.set_markup ("%s".printf (font_family, font_size+2, AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_FONT_FGCOLOR), name)); label.halign = Gtk.Align.START; hbox.pack_start (label, true, true, 0); item.hexpand = true; item.add (hbox); hbox.show_all (); set_normal_button_style (item); item.set_data ("toggle-list-key", key); return item; } private void button_clicked_cb (Gtk.Button button) { selected_key = button.get_data ("toggle-list-key"); } public override void grab_focus () { if (selected_button != null) selected_button.grab_focus (); } } arctica-greeter-0.99.1.5/src/user-list.vala0000644000000000000000000017306414007200004015265 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015-2017 Mike Gabriel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ int remote_server_field_sort_function (RemoteServerField? item1, RemoteServerField? item2) { string[] sorted_fields = { "domain", "command" , "username", "email", "password"}; foreach (var field in sorted_fields) { if (item1.type == field) return -1; if (item2.type == field) return 1; } return (item1.type < item2.type) ? -1 : 0; } public class UserList : GreeterList { private bool _offer_guest = false; public bool offer_guest { get { return _offer_guest; } set { _offer_guest = value; if (value) add_user ("*guest", _("Guest Session")); else remove_entry ("*guest"); } } private Gdk.Pixbuf message_pixbuf; private uint change_background_timeout = 0; private uint remote_logon_service_watch; private RemoteLogonService remote_logon_service; private List remote_directory_server_list = new List (); private List remote_login_server_list = new List (); private HashTable current_remote_fields; private string currently_browsing_server_url; private string currently_browsing_server_email; private EmailAutocompleter remote_server_email_field_autocompleter; /* User to authenticate against */ private string ?authenticate_user = null; private bool show_hidden_users_ = false; public bool show_hidden_users { set { show_hidden_users_ = value; if (ArcticaGreeter.singleton.test_mode) { if (value) add_user ("hidden", "Hidden User", null, false, false, null); else remove_entry ("hidden"); return; } var hidden_users = AGSettings.get_strv (AGSettings.KEY_HIDDEN_USERS); if (!value) { foreach (var username in hidden_users) remove_entry (username); return; } var users = LightDM.UserList.get_instance (); foreach (var user in users.users) { foreach (var username in hidden_users) { if (user.name == username) { debug ("Showing hidden user %s", username); user_added_cb (user); } } } } get { return show_hidden_users_; } } private string _default_session = "lightdm-xsession"; public string default_session { get { return _default_session; } set { _default_session = value; if (selected_entry != null) selected_entry.set_options_image (get_badge ()); } } private string? _session = null; public string? session { get { return _session; } set { _session = value; if (selected_entry != null) selected_entry.set_options_image (get_badge ()); } } public UserList (Background bg, MenuBar mb) { Object (background: bg, menubar: mb); } construct { menubar.notify["high-contrast"].connect (() => { change_background (); }); entry_displayed_start.connect (() => { change_background (); }); entry_displayed_done.connect (() => { change_background (); }); try { message_pixbuf = new Gdk.Pixbuf.from_file (Path.build_filename (Config.PKGDATADIR, "message.png", null)); } catch (Error e) { debug ("Error loading message image: %s", e.message); } fill_list (); entry_selected.connect (entry_selected_cb); connect_to_lightdm (); if (!ArcticaGreeter.singleton.test_mode && ArcticaGreeter.singleton.show_remote_login_hint ()) remote_logon_service_watch = Bus.watch_name (BusType.SESSION, "org.ArcticaProject.RemoteLogon", BusNameWatcherFlags.AUTO_START, on_remote_logon_service_appeared, on_remote_logon_service_vanished); } private void remove_remote_servers () { remote_directory_server_list = new List (); remote_login_server_list = new List (); remove_entries_with_prefix ("*remote"); } private void remove_remote_login_servers () { remote_login_server_list = new List (); remove_entries_with_prefix ("*remote_login"); /* If we have no entries at all, we should show manual */ if (!always_show_manual) add_manual_entry (); } private async void query_directory_servers () { try { RemoteServer[] server_list; yield remote_logon_service.get_servers (out server_list); set_remote_directory_servers (server_list); } catch (IOError e) { debug ("Calling GetServers on org.ArcticaProject.RemoteLogon dbus service failed. Error: %s", e.message); remove_remote_servers (); } } private string user_list_name_for_remote_directory_server (RemoteServer remote_server) { return "*remote_directory*" + remote_server.url; } private string username_from_remote_server_fields(RemoteServer remote_server) { var username = ""; foreach (var f in remote_server.fields) { if (f.type == "username" && f.default_value != null) { username = f.default_value.get_string (); break; } } return username; } private string user_list_name_for_remote_login_server (RemoteServer remote_server) { var username = username_from_remote_server_fields (remote_server); return "*remote_login*" + remote_server.url + "*" + username; } private string url_from_remote_loding_server_list_name (string remote_server_list_name) { return remote_server_list_name.split ("*")[2]; } private string username_from_remote_loding_server_list_name (string remote_server_list_name) { return remote_server_list_name.split ("*")[3]; } private void set_remote_directory_servers (RemoteServer[] server_list) { /* Add new servers */ foreach (var remote_server in server_list) { var list_name = user_list_name_for_remote_directory_server (remote_server); if (find_entry (list_name) == null) { var e = new PromptBox (list_name); e.label = remote_server.name; e.respond.connect (remote_directory_respond_cb); e.show_options.connect (show_remote_account_dialog); add_entry (e); remote_directory_server_list.append (remote_server); } } /* Remove gone servers */ unowned List it = remote_directory_server_list; while (it != null) { var remote_server = it.data; var found = false; for (int i = 0; !found && i < server_list.length; i++) { found = remote_server.url == server_list[i].url; } if (!found) { if (remote_server.url == currently_browsing_server_url) { /* The server we where "browsing" disappeared, so kill its children */ remove_remote_login_servers (); currently_browsing_server_url = ""; currently_browsing_server_email = ""; } remove_entry (user_list_name_for_remote_directory_server (remote_server)); unowned List newIt = it.next; remote_directory_server_list.delete_link (it); it = newIt; } else { it = it.next; } } /* Remove manual option unless specified */ if (remote_directory_server_list.length() > 0 && !always_show_manual) { debug ("removing manual login since we have a remote login entry"); remove_entry ("*other"); } } private PromptBox create_prompt_for_login_server (RemoteServer remote_server) { var e = new PromptBox (user_list_name_for_remote_login_server (remote_server)); e.label = remote_server.name; e.respond.connect (remote_login_respond_cb); add_entry (e); remote_login_server_list.append (remote_server); return e; } private void remote_login_servers_updated (string url, string email_address, string data_type, RemoteServer[] server_list) { if (currently_browsing_server_url == url && currently_browsing_server_email == email_address) { /* Add new servers */ foreach (var remote_server in server_list) { var list_name = user_list_name_for_remote_login_server (remote_server); if (find_entry (list_name) == null) create_prompt_for_login_server (remote_server); } /* Remove gone servers */ unowned List it = remote_login_server_list; while (it != null) { RemoteServer remote_server = it.data; var found = false; for (var i = 0; !found && i < server_list.length; i++) found = remote_server.url == server_list[i].url; if (!found) { remove_entry (user_list_name_for_remote_login_server (remote_server)); unowned List newIt = it.next; remote_login_server_list.delete_link (it); it = newIt; } else { it = it.next; } } } } private void remote_login_changed (string url, string email_address) { if (currently_browsing_server_url == url && currently_browsing_server_email == email_address) { /* Something happened and we are being asked for re-authentication by the remote-logon-service */ remove_remote_login_servers (); currently_browsing_server_url = ""; currently_browsing_server_email = ""; var directory_list_name = "*remote_directory*" + url; set_active_entry (directory_list_name); } } private void on_remote_logon_service_appeared (DBusConnection conn, string name) { Bus.get_proxy.begin (BusType.SESSION, "org.ArcticaProject.RemoteLogon", "/org/ArcticaProject/RemoteLogon", 0, null, (obj, res) => { try { remote_logon_service = Bus.get_proxy.end (res); remote_logon_service.servers_updated.connect (set_remote_directory_servers); remote_logon_service.login_servers_updated.connect (remote_login_servers_updated); remote_logon_service.login_changed.connect (remote_login_changed); query_directory_servers.begin (); } catch (IOError e) { debug ("Getting the org.ArcticaProject.RemoteLogon dbus service failed. Error: %s", e.message); remove_remote_servers (); remote_logon_service = null; } } ); } private void on_remote_logon_service_vanished (DBusConnection conn, string name) { remove_remote_servers (); remote_logon_service = null; /* provide a fallback manual login option */ if (ArcticaGreeter.singleton.hide_users_hint ()) { add_manual_entry(); set_active_entry ("*other"); } } private async void remote_directory_respond_cb () { remove_remote_login_servers (); currently_browsing_server_url = ""; currently_browsing_server_email = ""; var password_field = current_remote_fields.get ("password") as DashEntry; var email_field = current_remote_fields.get ("email") as Gtk.Entry; if (password_field == null) { debug ("Something wrong happened in remote_directory_respond_cb. There was no password field"); return; } if (email_field == null) { debug ("Something wrong happened in remote_directory_respond_cb. There was no email field"); return; } RemoteServer[] server_list = {}; var email = email_field.text; var email_valid = false; try { /* Check email address is valid * Using the html5 definition of a valid e-mail address * http://www.w3.org/TR/html5/states-of-the-type-attribute.html#valid-e-mail-address */ var re = new Regex ("[a-zA-Z0-9.!#$%&'\\*\\+/=?^_`{|}~-]+(|@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)"); MatchInfo info; email_valid = re.match_all (email, 0, out info); email_valid = email_valid && info.get_match_count () > 0 && info.fetch (0) == email; } catch (RegexError e) { debug ("Calling email regex match failed. Error: %s", e.message); } selected_entry.reset_messages (); if (!email_valid) { will_clear = true; show_message (_("Please enter a complete e-mail address"), true); create_remote_fields_for_current_item.begin (remote_directory_server_list); } else { var login_success = false; try { var url = url_from_remote_loding_server_list_name (selected_entry.id); if (ArcticaGreeter.singleton.test_mode) { if (password_field.text == "password") { test_fill_remote_login_servers (out server_list); login_success = true; } else if (password_field.text == "delay1") { test_fill_remote_login_servers (out server_list); login_success = true; Timeout.add (5000, () => { test_call_set_remote_directory_servers (); return false; }); } else if (password_field.text == "delay2") { test_fill_remote_login_servers (out server_list); login_success = true; Timeout.add (5000, () => { test_call_remote_login_servers_updated (); return false; }); } else if (password_field.text == "delay3") { test_fill_remote_login_servers (out server_list); login_success = true; Timeout.add (5000, () => { remote_login_changed (currently_browsing_server_url, currently_browsing_server_email); return false; }); } else if (password_field.text == "duplicate") { test_fill_remote_login_servers_duplicate_entries (out server_list); login_success = true; } } else { string data_type; bool allowcache = true; // If we had an error and are retrying the same user and server, do not use the cache on R-L-S if (selected_entry.has_errors && currently_browsing_server_email == email && currently_browsing_server_url == url) allowcache = false; yield remote_logon_service.get_servers_for_login (url, email, password_field.text, allowcache, out login_success, out data_type, out server_list); } currently_browsing_server_url = url; currently_browsing_server_email = email; } catch (IOError e) { debug ("Calling get_servers in org.ArcticaProject.RemoteLogon dbus service failed. Error: %s", e.message); } if (login_success) { password_field.did_respond = false; if (server_list.length == 0) show_remote_account_dialog (); else { var last_used_server_list_name = ""; foreach (var remote_server in server_list) { var e = create_prompt_for_login_server (remote_server); if (remote_server.last_used_server) last_used_server_list_name = e.id; } if (last_used_server_list_name != "") set_active_entry (last_used_server_list_name); else set_active_first_entry_with_prefix ("*remote_login"); } } else { will_clear = true; show_message (_("Incorrect e-mail address or password"), true); create_remote_fields_for_current_item.begin (remote_directory_server_list); } } } private void remote_login_respond_cb () { sensitive = false; will_clear = true; greeter_authenticating_user = selected_entry.id; if (ArcticaGreeter.singleton.test_mode) { Gtk.Entry field = current_remote_fields.get ("password") as Gtk.Entry; test_is_authenticated = field.text == "password"; if (field.text == "delay") Timeout.add (5000, () => { authentication_complete_cb (); return false; }); else authentication_complete_cb (); } else { ArcticaGreeter.singleton.authenticate_remote (get_lightdm_session (), null); remote_logon_service.set_last_used_server.begin (currently_browsing_server_url, url_from_remote_loding_server_list_name (selected_entry.id)); } } private void show_remote_account_dialog () { var dialog = new Gtk.MessageDialog (null, 0, Gtk.MessageType.OTHER, Gtk.ButtonsType.NONE, ""); dialog.set_position (Gtk.WindowPosition.CENTER_ALWAYS); //dialog.secondary_text = _("If you have an account on an RDP or Citrix server, Remote Login lets you run applications from that server."); // For 12.10 we still don't support Citrix dialog.secondary_text = _("If you have an account on an RDP server or X2Go server, Remote Login lets you run applications from that server."); if ((offer_guest) && (is_supported_remote_session ("remoteconfigure"))) { dialog.add_button (_("Cancel"), 0); var b = dialog.add_button (_("Set Up…"), 1); b.grab_focus (); dialog.text = _("You need a Remote Logon account to use this service. Would you like to set up an account now?"); } else { dialog.add_button (_("OK"), 0); if ("" != AGSettings.get_string (AGSettings.KEY_REMOTE_SERVICE_CONFIGURE_URI)) dialog.text = _("You need a Remote Logon account to use this service. Visit %s to request an account.").printf(AGSettings.get_string (AGSettings.KEY_REMOTE_SERVICE_CONFIGURE_URI)); else dialog.text = _("You need a Remote Logon account to use this service. Please ask your site administrator for details."); } dialog.show_all (); dialog.response.connect ((id) => { if (id == 1) { var config_session = "remoteconfigure"; if (is_supported_remote_session (config_session)) { greeter_authenticating_user = selected_entry.id; ArcticaGreeter.singleton.authenticate_remote (config_session, null); } } dialog.destroy (); }); dialog.run (); } private bool change_background_timeout_cb () { string? new_background_file = null; if (menubar.high_contrast || !AGSettings.get_boolean (AGSettings.KEY_DRAW_USER_BACKGROUNDS)) new_background_file = null; else if (selected_entry is UserPromptBox) new_background_file = (selected_entry as UserPromptBox).background; background.current_background = new_background_file; change_background_timeout = 0; return false; } private void change_background () { if (background.current_background != null) { if (change_background_timeout == 0) change_background_timeout = Idle.add (change_background_timeout_cb); } else change_background_timeout_cb (); } protected static int user_list_compare_entry (PromptBox a, PromptBox b) { if (a.id.has_prefix ("*remote_directory") && !b.id.has_prefix ("*remote_directory")) return 1; if (a.id.has_prefix ("*remote_login") && !b.id.has_prefix ("*remote_login")) return 1; /* Fall back to default behaviour of the GreeterList sorter */ return GreeterList.compare_entry (a, b); } protected override void insert_entry (PromptBox entry) { entries.insert_sorted (entry, user_list_compare_entry); } protected override void setup_prompt_box (bool fade = true) { base.setup_prompt_box (fade); var userbox = selected_entry as UserPromptBox; if (userbox != null) selected_entry.set_is_active (userbox.is_active); } private void entry_selected_cb (string? username) { ArcticaGreeter.singleton.set_state ("last-user", username); if (selected_entry is UserPromptBox) session = (selected_entry as UserPromptBox).session; else session = null; selected_entry.clear (); /* Reset this variable so it can be freed */ remote_server_email_field_autocompleter = null; start_authentication (); } protected override void start_authentication () { sensitive = true; greeter_authenticating_user = ""; if (selected_entry.id.has_prefix ("*remote_directory")) { prompted = true; create_remote_fields_for_current_item.begin (remote_directory_server_list); } else if (selected_entry.id.has_prefix ("*remote_login")) { prompted = true; create_remote_fields_for_current_item.begin (remote_login_server_list); } else base.start_authentication (); } private async void create_remote_fields_for_current_item (List server_list) { current_remote_fields = new HashTable (str_hash, str_equal); var url = url_from_remote_loding_server_list_name (selected_entry.id); var username = username_from_remote_loding_server_list_name (selected_entry.id); foreach (var remote_server in server_list) { var remote_username = username_from_remote_server_fields (remote_server); if (remote_server.url == url && (username == null || username == remote_username)) { if (selected_entry.id.has_prefix ("*remote_login")) { if (!is_supported_remote_session (remote_server.type)) { show_message (_("Server type not supported."), true); } } var fields = new List (); foreach (var field in remote_server.fields) fields.append (field); fields.sort (remote_server_field_sort_function); foreach (var field in fields) { Gtk.Widget? widget = null; var default_value = ""; if (field.default_value != null && field.default_value.is_of_type (VariantType.STRING)) default_value = field.default_value.get_string (); if (field.type == "username") { var entry = add_prompt (_("Username:")); entry.text = default_value; widget = entry; } else if (field.type == "password") { var entry = add_prompt (_("Password:"), true); entry.text = default_value; widget = entry; } else if (field.type == "command") { var prompt = add_prompt (_("X2Go Session:")); prompt.text = default_value; prompt.sensitive = true; widget = prompt; } else if (field.type == "domain") { string[] domainsArray = {}; if (field.properties != null && field.properties.contains ("domains") && field.properties.get ("domains").is_of_type (VariantType.ARRAY)) domainsArray = field.properties.get ("domains").dup_strv (); var domains = new GenericArray (); for (var i = 0; i < domainsArray.length; i++) domains.add (domainsArray[i]); var read_only = field.properties != null && field.properties.contains ("read-only") && field.properties.get ("read-only").is_of_type (VariantType.BOOLEAN) && field.properties.get ("read-only").get_boolean (); if (domains.length == 0 || (domains.length == 1 && (domains[0] == default_value || default_value.length == 0))) { var prompt = add_prompt (_("Domain:")); prompt.text = domains.length == 1 ? domains[0] : default_value; prompt.sensitive = !read_only; widget = prompt; } else { if (default_value.length > 0) { /* Make sure the domain list contains the default value */ var found = false; for (var i = 0; !found && i < domains.length; i++) found = default_value == domains[i]; if (!found) domains.add (default_value); } /* Sort domains alphabetically */ domains.sort (strcmp); var combo = add_combo (domains, read_only); if (default_value.length > 0) { if (read_only) { for (var i = 0; i < domains.length; i++) { if (default_value == domains[i]) { combo.active = i; break; } } } else { var entry = combo.get_child () as Gtk.Entry; entry.text = default_value; } } widget = combo; } } else if (field.type == "email") { string[] email_domains; try { if (ArcticaGreeter.singleton.test_mode) email_domains = { "canonical.com", "ubuntu.org", "candy.com", "urban.net" }; else yield remote_logon_service.get_cached_domains_for_server (url, out email_domains); } catch (IOError e) { email_domains.resize (0); debug ("Calling get_cached_domains_for_server in org.ArcticaProject.RemoteLogon dbus service failed. Error: %s", e.message); } var entry = add_prompt (_("Account ID")); entry.text = default_value; widget = entry; if (email_domains.length > 0) remote_server_email_field_autocompleter = new EmailAutocompleter (entry, email_domains); } else { debug ("Found field of type %s, don't know what to do with it", field.type); continue; } current_remote_fields.insert (field.type, widget); } break; } } } public override void focus_prompt () { if (selected_entry.id.has_prefix ("*remote_login")) { var url = url_from_remote_loding_server_list_name(selected_entry.id); foreach (var remote_server in remote_login_server_list) { if (remote_server.url == url) { if (!is_supported_remote_session (remote_server.type)) { selected_entry.sensitive = false; return; } } } } base.focus_prompt (); } public override void show_authenticated (bool successful = true) { if (successful) { /* 'Log In' here is the button for logging in. */ selected_entry.add_button (_("Log In"), _("Login as %s").printf (selected_entry.label)); } else { selected_entry.add_button (_("Retry"), _("Retry as %s").printf (selected_entry.label)); } if (mode != Mode.SCROLLING) selected_entry.show_prompts (); focus_prompt (); redraw_greeter_box (); } public void add_user (string name, string label, string? background = null, bool is_active = false, bool has_messages = false, string? session = null) { var e = find_entry (name) as UserPromptBox; if (e == null) { e = new UserPromptBox (name); e.respond.connect (prompt_box_respond_cb); e.login.connect (prompt_box_login_cb); e.show_options.connect (prompt_box_show_options_cb); e.label = label; /* Do this before adding for sorting purposes */ add_entry (e); } e.background = background; e.is_active = is_active; e.session = ArcticaGreeter.validate_session(session); e.label = label; e.set_show_message_icon (has_messages); e.set_is_active (is_active); debug ("Adding user to list. User: %s, background: %s, is_active: %s, has_messages: %s, session: %s", e.label, e.background, is_active.to_string(), has_messages.to_string(), session); /* Remove manual option when have users */ if (have_entries () && !always_show_manual) remove_entry ("*other"); } protected override void add_manual_entry () { var text = manual_name; if (text == null) text = _("Login"); add_user ("*other", text); } protected void prompt_box_respond_cb (string[] responses) { selected_entry.sensitive = false; will_clear = true; unacknowledged_messages = false; foreach (var response in responses) { if (ArcticaGreeter.singleton.test_mode) test_respond (response); else ArcticaGreeter.singleton.respond (response); } } private void prompt_box_login_cb () { debug ("Start session for %s", selected_entry.id); unacknowledged_messages = false; var is_authenticated = false; if (ArcticaGreeter.singleton.test_mode) is_authenticated = test_is_authenticated; else is_authenticated = ArcticaGreeter.singleton.is_authenticated(); /* Finish authentication (again) or restart it */ if (is_authenticated) authentication_complete_cb (); else { selected_entry.clear (); start_authentication (); } } private void prompt_box_show_options_cb () { var session_chooser = new SessionList (background, menubar, session, default_session); session_chooser.session_clicked.connect (session_clicked_cb); ArcticaGreeter.singleton.push_list (session_chooser); } private void session_clicked_cb (string session) { this.session = session; ArcticaGreeter.singleton.pop_list (); } private bool should_show_session_badge () { if (ArcticaGreeter.singleton.test_mode) return get_selected_id () != "no-badge"; else return LightDM.get_sessions ().length () > 1; } private Gdk.Pixbuf? get_badge () { if (selected_entry is UserPromptBox) { if (!should_show_session_badge ()) return null; else if (session == null) return SessionList.get_badge (default_session); else return SessionList.get_badge (session); } else { if (selected_entry.id.has_prefix ("*remote_directory")) return SessionList.get_badge ("remote-login"); else return null; } } private bool is_supported_remote_session (string session_internal_name) { if (ArcticaGreeter.singleton.test_mode) return session_internal_name == "rdp"; var found = false; foreach (var session in LightDM.get_remote_sessions ()) { if (session.key == session_internal_name) { found = true; break; } } return found; } protected override string get_lightdm_session () { if (selected_entry.id.has_prefix ("*remote_login")) { var url = url_from_remote_loding_server_list_name (selected_entry.id); unowned List it = remote_login_server_list; var answer = ""; while (answer == "" && it != null) { RemoteServer remote_server = it.data; if (remote_server.url == url) answer = remote_server.type; it = it.next; } if (is_supported_remote_session (answer)) return answer; else return ""; } else return session; } private void fill_list () { if (ArcticaGreeter.singleton.test_mode) test_fill_list (); else { default_session = ArcticaGreeter.singleton.default_session_hint (); always_show_manual = ArcticaGreeter.singleton.show_manual_login_hint (); if (!ArcticaGreeter.singleton.hide_users_hint ()) { var users = LightDM.UserList.get_instance (); users.user_added.connect (user_added_cb); users.user_changed.connect (user_added_cb); users.user_removed.connect (user_removed_cb); foreach (var user in users.users) user_added_cb (user); } if (ArcticaGreeter.singleton.has_guest_account_hint ()) { debug ("Adding guest account entry"); offer_guest = true; } /* If we have no entries at all, we should show manual */ if (!have_entries ()) add_manual_entry (); var last_user = ArcticaGreeter.singleton.get_state ("last-user"); if (ArcticaGreeter.singleton.select_user_hint () != null) set_active_entry (ArcticaGreeter.singleton.select_user_hint ()); else if (last_user != null) set_active_entry (last_user); } } private void user_added_cb (LightDM.User user) { debug ("Adding/updating user %s (%s)", user.name, user.real_name); if (!show_hidden_users) { var hidden_users = AGSettings.get_strv (AGSettings.KEY_HIDDEN_USERS); foreach (var username in hidden_users) if (username == user.name) return; } if (!filter_group (user.name)) return; var label = user.real_name; if (user.real_name == "") label = user.name; add_user (user.name, label, user.background, user.logged_in, user.has_messages, user.session); } private bool filter_group (string user_name) { var group_filter = AGSettings.get_strv (AGSettings.KEY_GROUP_FILTER); /* Empty list means do not filter by group */ if (group_filter.length == 0) return true; foreach (var group_name in group_filter) if (in_group (group_name, user_name)) return true; return false; } private bool in_group (string group_name, string user_name) { unowned Posix.Group? group = Posix.getgrnam (group_name); if (group == null) return false; foreach (var name in group.gr_mem) if (name == user_name) return true; return false; } private void user_removed_cb (LightDM.User user) { debug ("Removing user %s", user.name); remove_entry (user.name); } protected override void show_prompt_cb (string text, LightDM.PromptType type) { if (selected_entry.id.has_prefix ("*remote_login")) { if ((text == pam_x2go.PROMPT_USER) || (text == pam_freerdp2.PROMPT_USER)) { Gtk.Entry field = current_remote_fields.get ("username") as Gtk.Entry; var answer = field != null ? field.text : ""; debug ("remote_login prompt parsing: username -> %s", answer); ArcticaGreeter.singleton.respond (answer); } else if ((text == pam_x2go.PROMPT_PASSWORD) || (text == pam_freerdp2.PROMPT_PASSWORD)) { Gtk.Entry field = current_remote_fields.get ("password") as Gtk.Entry; var answer = field != null ? field.text : ""; debug ("remote_login prompt parsing: password -> "); ArcticaGreeter.singleton.respond (answer); } else if ((text == pam_x2go.PROMPT_HOST) || (text == pam_freerdp2.PROMPT_HOST)) { var answer = url_from_remote_loding_server_list_name (selected_entry.id); debug ("remote_login prompt parsing: host -> %s", answer); ArcticaGreeter.singleton.respond (answer); } else if (text == pam_freerdp2.PROMPT_DOMAIN) { Gtk.Entry field = current_remote_fields.get ("domain") as Gtk.Entry; var answer = field != null ? field.text : ""; debug ("remote_login prompt parsing: domain -> %s", answer); ArcticaGreeter.singleton.respond (answer); } else if (text == pam_x2go.PROMPT_COMMAND) { Gtk.Entry field = current_remote_fields.get ("command") as Gtk.Entry; var answer = field != null ? field.text : ""; debug ("remote_login prompt parsing: command -> %s", answer); ArcticaGreeter.singleton.respond (answer); } } else base.show_prompt_cb (text, type); } /* A lot of test code below here */ private struct TestEntry { string username; string real_name; string? background; bool is_active; bool has_messages; string? session; } private const TestEntry[] test_entries = { { "has-password", "Has Password", "*" }, { "different-prompt", "Different Prompt", "*" }, { "no-password", "No Password", "*" }, { "change-password", "Change Password", "*" }, { "auth-error", "Auth Error", "*" }, { "two-factor", "Two Factor", "*" }, { "two-prompts", "Two Prompts", "*" }, { "info-prompt", "Info Prompt", "*" }, { "long-info-prompt", "Long Info Prompt", "*" }, { "wide-info-prompt", "Wide Info Prompt", "*" }, { "multi-info-prompt", "Multi Info Prompt", "*" }, { "very-very-long-name", "Long name (far far too long to fit)", "*" }, { "long-name-and-messages", "Long name and messages (too long to fit)", "*", false, true }, { "active", "Active Account", "*", true }, { "has-messages", "Has Messages", "*", false, true }, { "gnome", "GNOME", "*", false, false, "gnome" }, { "locked", "Locked Account", "*" }, { "color-background", "Color Background", "#dd4814" }, { "white-background", "White Background", "#ffffff" }, { "black-background", "Black Background", "#000000" }, { "no-background", "No Background", null }, { "unicode", "가나다라마", "*" }, { "no-response", "No Response", "*" }, { "no-badge", "No Badge", "*" }, { "messages-after-login", "Messages After Login", "*" }, { "" } }; private List test_backgrounds; private int n_test_entries = 0; private bool test_prompted_sso = false; private string test_two_prompts_first = null; private bool test_request_new_password = false; private string? test_new_password = null; private void test_fill_list () { test_backgrounds = new List (); try { var directory = File.new_for_path ("/usr/share/backgrounds"); var enumerator = directory.enumerate_children (FileAttribute.STANDARD_NAME, 0); FileInfo file_info; while ((file_info = enumerator.next_file ()) != null) { if(file_info.get_file_type() != FileType.DIRECTORY) { test_backgrounds.append ("/usr/share/backgrounds/" + file_info.get_name()); } } } catch (FileError e) { } catch (GLib.Error e) { } if (!ArcticaGreeter.singleton.hide_users_hint()) while (add_test_entry ()); /* add a manual entry if the list of entries is empty initially */ if (n_test_entries <= 0) { add_manual_entry(); set_active_entry ("*other"); n_test_entries++; } offer_guest = ArcticaGreeter.singleton.has_guest_account_hint(); always_show_manual = ArcticaGreeter.singleton.show_manual_login_hint(); key_press_event.connect (test_key_press_cb); if (ArcticaGreeter.singleton.show_remote_login_hint()) Timeout.add (1000, () => { RemoteServer[] test_server_list = {}; RemoteServer remote_server = RemoteServer (); remote_server.type = "uccs"; remote_server.name = "Remote Login"; remote_server.url = "http://crazyurl.com"; remote_server.last_used_server = false; remote_server.fields = {}; RemoteServerField field1 = RemoteServerField (); field1.type = "email"; RemoteServerField field2 = RemoteServerField (); field2.type = "password"; remote_server.fields = {field1, field2}; test_server_list += remote_server; set_remote_directory_servers (test_server_list); return false; }); var last_user = ArcticaGreeter.singleton.get_state ("last-user"); if (last_user != null) set_active_entry (last_user); } private void test_call_set_remote_directory_servers () { RemoteServer[] test_server_list = {}; RemoteServer remote_server = RemoteServer (); remote_server.type = "uccs"; remote_server.name = "Corporate Remote Login"; remote_server.url = "http://internalcompayserver.com"; remote_server.last_used_server = false; remote_server.fields = {}; RemoteServerField field1 = RemoteServerField (); field1.type = "email"; RemoteServerField field2 = RemoteServerField (); field2.type = "password"; remote_server.fields = {field1, field2}; test_server_list += remote_server; set_remote_directory_servers (test_server_list); } private void test_call_remote_login_servers_updated () { RemoteServer[] server_list = {}; RemoteServer remote_server1 = RemoteServer (); remote_server1.type = "rdp"; remote_server1.name = "Cool RDP server"; remote_server1.url = "http://coolrdpserver.com"; remote_server1.last_used_server = false; remote_server1.fields = {}; RemoteServerField field1 = RemoteServerField (); field1.type = "username"; RemoteServerField field2 = RemoteServerField (); field2.type = "password"; RemoteServerField field3 = RemoteServerField (); field3.type = "domain"; remote_server1.fields = {field1, field2, field3}; RemoteServer remote_server2 = RemoteServer (); remote_server2.type = "rdp"; remote_server2.name = "MegaCool RDP server"; remote_server2.url = "http://megacoolrdpserver.com"; remote_server2.last_used_server = false; remote_server2.fields = {}; RemoteServerField field21 = RemoteServerField (); field21.type = "username"; RemoteServerField field22 = RemoteServerField (); field22.type = "password"; remote_server2.fields = {field21, field22}; server_list.resize (2); server_list[0] = remote_server1; server_list[1] = remote_server2; remote_login_servers_updated (currently_browsing_server_url, currently_browsing_server_email, "", server_list); } private void test_fill_remote_login_servers (out RemoteServer[] server_list) { string[] domains = { "SCANNERS", "PRINTERS", "ROUTERS" }; server_list = {}; RemoteServer remote_server1 = RemoteServer (); remote_server1.type = "rdp"; remote_server1.name = "Cool RDP server"; remote_server1.url = "http://coolrdpserver.com"; remote_server1.last_used_server = false; remote_server1.fields = {}; RemoteServerField field1 = RemoteServerField (); field1.type = "username"; RemoteServerField field2 = RemoteServerField (); field2.type = "password"; RemoteServerField field3 = RemoteServerField (); field3.type = "domain"; remote_server1.fields = {field1, field2, field3}; RemoteServer remote_server2 = RemoteServer (); remote_server2.type = "rdp"; remote_server2.name = "RDP server with default username, and editable domain"; remote_server2.url = "http://rdpdefaultusername.com"; remote_server2.last_used_server = false; remote_server2.fields = {}; RemoteServerField field21 = RemoteServerField (); field21.type = "username"; field21.default_value = new Variant.string ("alowl"); RemoteServerField field22 = RemoteServerField (); field22.type = "password"; RemoteServerField field23 = RemoteServerField (); field23.type = "domain"; field23.default_value = new Variant.string ("PRINTERS"); field23.properties = new HashTable (str_hash, str_equal); field23.properties["domains"] = domains; remote_server2.fields = {field21, field22, field23}; RemoteServer remote_server3 = RemoteServer (); remote_server3.type = "rdp"; remote_server3.name = "RDP server with default username, and non editable domain"; remote_server3.url = "http://rdpdefaultusername2.com"; remote_server3.last_used_server = true; remote_server3.fields = {}; RemoteServerField field31 = RemoteServerField (); field31.type = "username"; field31.default_value = new Variant.string ("lwola"); RemoteServerField field32 = RemoteServerField (); field32.type = "password"; RemoteServerField field33 = RemoteServerField (); field33.type = "domain"; field33.default_value = new Variant.string ("PRINTERS"); field33.properties = new HashTable (str_hash, str_equal); field33.properties["domains"] = domains; field33.properties["read-only"] = true; remote_server3.fields = {field31, field32, field33}; RemoteServer remote_server4 = RemoteServer (); remote_server4.type = "notsupported"; remote_server4.name = "Not supported server"; remote_server4.url = "http://notsupportedserver.com"; remote_server4.fields = {}; RemoteServerField field41 = RemoteServerField (); field41.type = "username"; RemoteServerField field42 = RemoteServerField (); field42.type = "password"; RemoteServerField field43 = RemoteServerField (); field43.type = "domain"; remote_server4.fields = {field41, field42, field43}; server_list.resize (4); server_list[0] = remote_server1; server_list[1] = remote_server2; server_list[2] = remote_server3; server_list[3] = remote_server4; } private void test_fill_remote_login_servers_duplicate_entries (out RemoteServer[] server_list) { /* Create two remote servers with same url but different username and domain. */ server_list = {}; RemoteServer remote_server2 = RemoteServer (); remote_server2.type = "rdp"; remote_server2.name = "RDP server with default username, and editable domain"; remote_server2.url = "http://rdpdefaultusername.com"; remote_server2.last_used_server = false; remote_server2.fields = {}; RemoteServerField field21 = RemoteServerField (); field21.type = "username"; field21.default_value = new Variant.string ("alowl1"); RemoteServerField field22 = RemoteServerField (); field22.type = "password"; field22.default_value = new Variant.string ("duplicate1"); RemoteServerField field23 = RemoteServerField (); field23.type = "domain"; field23.default_value = new Variant.string ("SCANNERS"); remote_server2.fields = {field21, field22, field23}; RemoteServer remote_server5 = RemoteServer (); remote_server5.type = "rdp"; remote_server5.name = "RDP server with default username, and editable domain"; remote_server5.url = "http://rdpdefaultusername.com"; remote_server5.last_used_server = false; remote_server5.fields = {}; RemoteServerField field51 = RemoteServerField (); field51.type = "username"; field51.default_value = new Variant.string ("alowl2"); RemoteServerField field52 = RemoteServerField (); field52.type = "password"; field52.default_value = new Variant.string ("duplicate2"); RemoteServerField field53 = RemoteServerField (); field53.type = "domain"; field53.default_value = new Variant.string ("PRINTERS"); remote_server5.fields = {field51, field52, field53}; server_list.resize (2); server_list[0] = remote_server2; server_list[1] = remote_server5; } private bool test_key_press_cb (Gdk.EventKey event) { if ((event.state & Gdk.ModifierType.CONTROL_MASK) == 0) return false; switch (event.keyval) { case Gdk.Key.plus: add_test_entry (); break; case Gdk.Key.minus: remove_test_entry (); break; case Gdk.Key.@0: while (remove_test_entry ()); offer_guest = false; break; case Gdk.Key.equal: while (add_test_entry ()); offer_guest = true; break; case Gdk.Key.g: offer_guest = false; break; case Gdk.Key.G: offer_guest = true; break; case Gdk.Key.m: always_show_manual = false; break; case Gdk.Key.M: always_show_manual = true; break; } return false; } private bool add_test_entry () { var e = test_entries[n_test_entries]; if (e.username == "") return false; var background = e.background; if (background == "*") { var background_index = 0; for (var i = 0; i < n_test_entries; i++) { if (test_entries[i].background == "*") background_index++; } if (test_backgrounds.length () > 0) background = test_backgrounds.nth_data (background_index % test_backgrounds.length ()); } add_user (e.username, e.real_name, background, e.is_active, e.has_messages, e.session); n_test_entries++; return true; } private bool remove_test_entry () { if (n_test_entries == 0) return false; remove_entry (test_entries[n_test_entries - 1].username); n_test_entries--; return true; } private void test_respond (string text) { debug ("response %s", text); switch (get_selected_id ()) { case "*other": if (test_username == null) { debug ("username=%s", text); test_username = text; show_prompt_cb ("Password:", LightDM.PromptType.SECRET); } else { test_is_authenticated = text == "password"; authentication_complete_cb (); } break; case "two-factor": if (!test_prompted_sso) { if (text == "password") { debug ("prompt otp"); test_prompted_sso = true; show_prompt_cb ("OTP:", LightDM.PromptType.QUESTION); } else { test_is_authenticated = false; authentication_complete_cb (); } } else { test_is_authenticated = text == "otp"; authentication_complete_cb (); } break; case "two-prompts": if (test_two_prompts_first == null) test_two_prompts_first = text; else { test_is_authenticated = test_two_prompts_first == "blue" && text == "password"; authentication_complete_cb (); } break; case "change-password": if (test_new_password != null) { test_is_authenticated = text == test_new_password; authentication_complete_cb (); } else if (test_request_new_password) { test_new_password = text; show_prompt_cb ("Retype new UNIX password: ", LightDM.PromptType.SECRET); } else { if (text != "password") { test_is_authenticated = false; authentication_complete_cb (); } else { test_request_new_password = true; show_message_cb ("You are required to change your password immediately (root enforced)", LightDM.MessageType.ERROR); show_prompt_cb ("Enter new UNIX password: ", LightDM.PromptType.SECRET); } } break; case "no-response": break; case "locked": test_is_authenticated = false; show_message_cb ("Account is locked", LightDM.MessageType.ERROR); authentication_complete_cb (); break; case "messages-after-login": test_is_authenticated = text == "password"; if (test_is_authenticated) show_message_cb ("Congratulations on logging in!", LightDM.MessageType.INFO); authentication_complete_cb (); break; default: test_is_authenticated = text == "password"; authentication_complete_cb (); break; } } protected override void test_start_authentication () { test_username = null; test_is_authenticated = false; test_prompted_sso = false; test_two_prompts_first = null; test_request_new_password = false; test_new_password = null; switch (get_selected_id ()) { case "*other": if (authenticate_user != null) { test_username = authenticate_user; authenticate_user = null; show_prompt_cb ("Password:", LightDM.PromptType.SECRET); } else show_prompt_cb ("Username:", LightDM.PromptType.QUESTION); break; case "*guest": test_is_authenticated = true; authentication_complete_cb (); break; case "different-prompt": show_prompt_cb ("Secret word", LightDM.PromptType.SECRET); break; case "no-password": test_is_authenticated = true; authentication_complete_cb (); break; case "auth-error": show_message_cb ("Authentication Error", LightDM.MessageType.ERROR); test_is_authenticated = false; authentication_complete_cb (); break; case "info-prompt": show_message_cb ("Welcome to Arctica Greeter", LightDM.MessageType.INFO); show_prompt_cb ("Password:", LightDM.PromptType.SECRET); break; case "long-info-prompt": show_message_cb ("Welcome to Arctica Greeter\n\nWe like to annoy you with long messages.\nLike this one\n\nThis is the last line of a multiple line message.", LightDM.MessageType.INFO); show_prompt_cb ("Password:", LightDM.PromptType.SECRET); break; case "wide-info-prompt": show_message_cb ("Welcome to Arctica Greeter, the greeteriest greeter that ever did appear in these fine lands", LightDM.MessageType.INFO); show_prompt_cb ("Password:", LightDM.PromptType.SECRET); break; case "multi-info-prompt": show_message_cb ("Welcome to Arctica Greeter", LightDM.MessageType.INFO); show_message_cb ("This is an error", LightDM.MessageType.ERROR); show_message_cb ("You should have seen three messages", LightDM.MessageType.INFO); show_prompt_cb ("Password:", LightDM.PromptType.SECRET); break; case "two-prompts": show_prompt_cb ("Favorite Color (blue):", LightDM.PromptType.QUESTION); show_prompt_cb ("Password:", LightDM.PromptType.SECRET); break; default: show_prompt_cb ("Password:", LightDM.PromptType.SECRET); break; } } } arctica-greeter-0.99.1.5/src/user-prompt-box.vala0000644000000000000000000000227514007200004016414 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011,2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authors: Robert Ancell * Michael Terry * Mike Gabriel */ public class UserPromptBox : PromptBox { /* Background for this user */ public string background = ""; /* Default session for this user */ public string session = ""; /* True if should be marked as active */ public bool is_active = false; public UserPromptBox (string name) { Object (id: name); } } arctica-greeter-0.99.1.5/src/xsync.vapi0000644000000000000000000000746614007200004014520 0ustar namespace X { [CCode (cprefix = "", cheader_filename = "X11/extensions/sync.h")] namespace Sync { [CCode (cname = "XSyncQueryExtension")] public X.Status QueryExtension (X.Display display, out int event_base, out int error_base); [CCode (cname = "XSyncInitialize")] public X.Status Initialize (X.Display display, out int major_version, out int minor_version); [CCode (cname = "XSyncListSystemCounters")] public SystemCounter* ListSystemCounters (X.Display display, out int n_counters); [CCode (cname = "XSyncFreeSystemCounterList")] public void FreeSystemCounterList (SystemCounter* counters); [CCode (cname = "XSyncQueryCounter")] public X.Status QueryCounter (X.Display display, X.ID counter, out Value value); [CCode (cname = "XSyncCreateAlarm")] public X.ID CreateAlarm (X.Display display, CA values_mask, AlarmAttributes values); [CCode (cname = "XSyncDestroyAlarm")] public X.Status DestroyAlarm (X.Display display, X.ID alarm); [CCode (cname = "XSyncQueryAlarm")] public X.Status QueryAlarm (X.Display display, X.ID alarm, out AlarmAttributes values); [CCode (cname = "XSyncChangeAlarm")] public X.Status ChangeAlarm (X.Display display, X.ID alarm, CA values_mask, AlarmAttributes values); [CCode (cname = "XSyncSetPriority")] public X.Status SetPriority (X.Display display, X.ID alarm, int priority); [CCode (cname = "XSyncGetPriority")] public X.Status GetPriority (X.Display display, X.ID alarm, out int priority); [CCode (cname = "XSyncIntToValue")] public void IntToValue (out Value value, int v); [CCode (cname = "XSyncIntsToValue")] public void IntsToValue (out Value value, uint l, int h); [CCode (cname = "XSyncValueGreaterThan")] public bool ValueGreaterThan (Value a, Value b); [CCode (cprefix = "XSyncCA")] public enum CA { Counter, ValueType, Value, TestType, Delta, Events } [CCode (cname = "XSyncSystemCounter", has_type_id = false)] public struct SystemCounter { public string name; public X.ID counter; } [CCode (cname = "XSyncAlarmNotify")] public int AlarmNotify; [CCode (cname = "XSyncAlarmNotifyEvent", has_type_id = false)] public struct AlarmNotifyEvent { public X.ID alarm; public AlarmState state; } [CCode (cname = "XSyncAlarmState", cprefix = "XSyncAlarm")] public enum AlarmState { Active, Inactive, Destroyed } [CCode (cname = "XSyncAlarmAttributes", has_type_id = false)] public struct AlarmAttributes { public Trigger trigger; public Value delta; public bool events; public AlarmState state; } [CCode (cname = "XSyncTrigger", has_type_id = false)] public struct Trigger { public X.ID counter; public ValueType value_type; public Value wait_value; public TestType test_type; } [CCode (cname = "XSyncValueType", cprefix = "XSync")] public enum ValueType { Absolute, Relative } [CCode (cname = "XSyncValue", has_type_id = false)] [SimpleType] public struct Value { public int hi; public uint lo; } [CCode (cname = "XSyncTestType", cprefix = "XSync")] public enum TestType { PositiveTransition, NegativeTransition, PositiveComparison, NegativeComparison } } } arctica-greeter-0.99.1.5/tests/arctica-greeter.vala0000644000000000000000000000565714007200004016754 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2011 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Robert Ancell */ public const int grid_size = 40; public class ArcticaGreeter { public static ArcticaGreeter singleton; public signal void show_message (string text, LightDM.MessageType type); public signal void show_prompt (string text, LightDM.PromptType type); public signal void authentication_complete (); public bool test_mode = false; public bool session_started = false; public string last_respond_response; public bool orca_needs_kick; public bool is_authenticated () { return false; } public void authenticate (string? userid = null) { } public void authenticate_as_guest () { } public void authenticate_remote (string? session, string? userid) { } public void cancel_authentication () { } public void respond (string response) { last_respond_response = response; } public string authentication_user () { return ""; } public string default_session_hint () { return ""; } public string select_user_hint () { return ""; } public bool _show_manual_login_hint = true; public bool show_manual_login_hint () { return _show_manual_login_hint; } public bool _show_remote_login_hint = true; public bool show_remote_login_hint () { return _show_remote_login_hint; } public bool _hide_users_hint = false; public bool hide_users_hint () { return _hide_users_hint; } public bool _has_guest_account_hint = true; public bool has_guest_account_hint () { return _has_guest_account_hint; } public bool start_session (string? session, Background bg) { session_started = true; return true; } public void push_list (GreeterList widget) { } public void pop_list () { } public string? get_state (string key) { return null; } public void set_state (string key, string value) { } public static void add_style_class (Gtk.Widget widget) { /* Add style context class lightdm-user-list */ var ctx = widget.get_style_context (); ctx.add_class ("lightdm"); } } arctica-greeter-0.99.1.5/tests/Makefile.am0000644000000000000000000000340014007200004015062 0ustar # -*- Mode: Automake; indent-tabs-mode: t; tab-width: 4 -*- check_PROGRAMS = arctica-greeter-test check: arctica-greeter-test UBUNTU_MENUPROXY=0 top_srcdir=$(top_srcdir) @VALGRIND@ xvfb-run -s "-extension GLX" -a ./arctica-greeter-test arctica_greeter_test_SOURCES = \ test.vala \ test-list.vala \ test-main-window.vala \ menubar.vala \ arctica-greeter.vala \ ../src/flat-button.vala \ ../src/toggle-box.vala \ ../src/user-list.vala \ ../src/greeter-list.vala \ ../src/remote-logon-service.vala \ ../src/background.vala \ ../src/email-autocompleter.vala \ ../src/config.vapi \ ../src/fixes.vapi \ ../src/cairo-utils.vala \ ../src/animate-timer.vala \ ../src/indicator.vapi \ ../src/fadable.vala \ ../src/fadable-box.vala \ ../src/dash-box.vala \ ../src/user-prompt-box.vala \ ../src/fading-label.vala \ ../src/cached-image.vala \ ../src/dash-entry.vala \ ../src/dash-button.vala \ ../src/prompt-box.vala \ ../src/session-list.vala \ ../src/main-window.vala \ ../src/list-stack.vala \ ../src/settings.vala \ ../src/shutdown-dialog.vala arctica_greeter_test_CFLAGS = \ $(ARCTICA_GREETER_CFLAGS) \ -w \ -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \ -DLOCALEDIR=\""$(localedir)"\" \ -DVERSION=\"$(VERSION)\" \ -DCONFIG_FILE=\""$(sysconfdir)/lightdm/arctica-greeter.conf"\" \ -DPKGDATADIR=\""$(pkgdatadir)"\" \ -DINDICATORDIR=\""$(INDICATORDIR)"\" arctica_greeter_test_VALAFLAGS = \ --debug \ --pkg posix \ --pkg gtk+-3.0 \ --pkg gdk-x11-3.0 \ --pkg gio-unix-2.0 \ --pkg x11 \ --pkg liblightdm-gobject-1 \ --pkg libcanberra \ --pkg gio-2.0 \ --pkg pixman-1 \ --target-glib 2.32 arctica_greeter_test_LDADD = \ $(ARCTICA_GREETER_LIBS) \ -lm CLEANFILES = \ $(notdir $(arctica_greeter_test_SOURCES:.vala=.c)) DISTCLEANFILES = \ Makefile.in arctica-greeter-0.99.1.5/tests/menubar.vala0000644000000000000000000000166614007200004015340 0ustar /* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- * * Copyright (C) 2012 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ public class MenuBar : Gtk.MenuBar { public const int HEIGHT = 32; public bool high_contrast { get; private set; default = false; } public MenuBar (Background bg, Gtk.AccelGroup ag) { } public void set_keyboard_state () { } } arctica-greeter-0.99.1.5/tests/test-list.vala0000644000000000000000000000046114007200004015627 0ustar public class TestList : UserList { public TestList (Background bg, MenuBar mb) { Object (background: bg, menubar: mb); } public uint num_entries () { return entries.length(); } public bool is_scrolling () { return mode == Mode.SCROLLING; } }arctica-greeter-0.99.1.5/tests/test-main-window.vala0000644000000000000000000000026614007200004017110 0ustar public class TestMainWindow : MainWindow { public TestMainWindow () { } public Background get_background () { return get_child() as Background; } } arctica-greeter-0.99.1.5/tests/test.vala0000644000000000000000000007436314007200004014672 0ustar public class Test { private static MainWindow setup () { GLib.Test.log_set_fatal_handler (ignore_warnings); TestMainWindow main_window = new TestMainWindow (); var list = new TestList (main_window.get_background (), main_window.menubar); main_window.push_list (list); main_window.show_all(); // Make sure we are really shown process_events (); return main_window; } private static bool ignore_warnings (string? log_domain, GLib.LogLevelFlags log_level, string message) { return ((log_level & (GLib.LogLevelFlags.LEVEL_CRITICAL | GLib.LogLevelFlags.LEVEL_ERROR)) != 0); } private static void process_events () { while (Gtk.events_pending ()) Gtk.main_iteration (); } private static void wait_for_scrolling_end (TestList list) { while (list.is_scrolling ()) { process_events (); Posix.usleep (10000); } } // BEGIN This group of functions asume email/password for remote directory servers private static DashEntry remote_directory_entry_email_field (TestList list) { var fixed = list.selected_entry.get_child() as Gtk.Fixed; var grid = fixed.get_children().nth_data(1) as Gtk.Grid; return grid.get_child_at(1, 1) as DashEntry; } private static DashEntry remote_directory_entry_password_field (TestList list) { var fixed = list.selected_entry.get_child() as Gtk.Fixed; var grid = fixed.get_children().nth_data(1) as Gtk.Grid; return grid.get_child_at(1, 2) as DashEntry; } // END This group of functions asume email/password for remote directory servers // BEGIN This group of functions asume domain/username/password for remote login servers private static DashEntry remote_login_entry_domain_field (TestList list) { var fixed = list.selected_entry.get_child() as Gtk.Fixed; var grid = fixed.get_children().nth_data(1) as Gtk.Grid; return grid.get_child_at(1, 1) as DashEntry; } private static DashEntry remote_login_entry_username_field (TestList list) { var fixed = list.selected_entry.get_child() as Gtk.Fixed; var grid = fixed.get_children().nth_data(1) as Gtk.Grid; return grid.get_child_at(1, 2) as DashEntry; } private static DashEntry remote_login_entry_password_field (TestList list) { var fixed = list.selected_entry.get_child() as Gtk.Fixed; var grid = fixed.get_children().nth_data(1) as Gtk.Grid; return grid.get_child_at(1, 3) as DashEntry; } // BEGIN This group of functions asume domain/username/password for remote login servers private static void do_scroll (TestList list, GreeterList.ScrollTarget direction) { process_events (); switch (direction) { case GreeterList.ScrollTarget.START: inject_key (list, Gdk.Key.Page_Up); break; case GreeterList.ScrollTarget.END: inject_key (list, Gdk.Key.Page_Down); break; case GreeterList.ScrollTarget.UP: inject_key (list, Gdk.Key.Up); break; case GreeterList.ScrollTarget.DOWN: inject_key (list, Gdk.Key.Down); break; } wait_for_scrolling_end (list); } private static void scroll_to_remote_login (TestList list) { do_scroll (list, GreeterList.ScrollTarget.END); while (list.selected_entry.id == "*guest") { do_scroll (list, GreeterList.ScrollTarget.END); process_events (); Posix.usleep (10000); } } private static void inject_key (Gtk.Widget w, int keyval) { // Make sure everything is flushed process_events (); Gdk.KeymapKey[] keys; bool success = Gdk.Keymap.get_default ().get_entries_for_keyval (keyval, out keys); GLib.assert (success); Gdk.Event event = new Gdk.Event(Gdk.EventType.KEY_PRESS); event.key.window = w.get_parent_window (); event.key.hardware_keycode = (int16)keys[0].keycode; event.key.keyval = keyval; event.set_device(Gdk.Display.get_default ().get_device_manager ().get_client_pointer ()); event.key.time = Gdk.CURRENT_TIME; Gtk.main_do_event (event); } private static void wait_for_focus (Gtk.Widget w) { while (!w.has_focus) { process_events (); Posix.usleep (10000); } } public static void simple_navigation () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); GLib.assert (list.num_entries() > 0); // Make sure we are at the beginning of the list do_scroll (list, GreeterList.ScrollTarget.START); GLib.assert (list.selected_entry.id == "active"); // Scrolling up does nothing do_scroll (list, GreeterList.ScrollTarget.UP); GLib.assert (list.selected_entry.id == "active"); // Scrolling down works do_scroll (list, GreeterList.ScrollTarget.DOWN); GLib.assert (list.selected_entry.id == "auth-error"); // Remote Login is at the end; do_scroll (list, GreeterList.ScrollTarget.END); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); mw.hide (); } public static void remote_login () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); GLib.assert (!list.selected_entry.has_errors); // If we answer without filling in any field -> error list.selected_entry.respond ({}); GLib.assert (list.selected_entry.has_errors); // Go to first and back to last to clear the error do_scroll (list, GreeterList.ScrollTarget.START); do_scroll (list, GreeterList.ScrollTarget.END); GLib.assert (!list.selected_entry.has_errors); // Fill in a valid email and password // Check there is no error and we moved to the last logged in server var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "password"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); wait_for_scrolling_end (list); // Go back to the remote_directory entry and write the same password but an invalid email // Check there is error and we did not move anywhere while (!list.selected_entry.id.has_prefix("*remote_directory*http://crazyurl.com")) do_scroll (list, GreeterList.ScrollTarget.UP); email = remote_directory_entry_email_field (list); pwd = remote_directory_entry_password_field (list); email.text = "a @ foobar"; pwd.text = "password"; list.selected_entry.respond ({}); GLib.assert (list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); mw.hide (); } public static void remote_login_servers_updated_signal () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "delay1"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); bool done = false; // The delay1 code triggers at 5 seconds Timeout.add (5250, () => { // If the directory server where were browsing disappears the login servers are removed too // and we get moved to the new directory server wait_for_scrolling_end (list); GLib.assert (list.selected_entry.id == "*remote_directory*http://internalcompayserver.com"); done = true; return false; } ); while (!done) { process_events (); Posix.usleep (10000); } mw.hide (); } public static void remote_login_servers_updated_signal_focus_not_in_remote_server () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "delay1"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); wait_for_scrolling_end (list); while (list.selected_entry.id.has_prefix("*remote_")) { do_scroll (list, GreeterList.ScrollTarget.UP); } string nonRemoteEntry = list.selected_entry.id; bool done = false; // The delay1 code triggers at 5 seconds Timeout.add (5250, () => { // If we were not in a remote entry we are not moved even if the directory servers change // Moving down we find the new directory server GLib.assert (list.selected_entry.id == nonRemoteEntry); do_scroll (list, GreeterList.ScrollTarget.DOWN); GLib.assert (list.selected_entry.id == "*remote_directory*http://internalcompayserver.com"); done = true; return false; } ); while (!done) { process_events (); Posix.usleep (10000); } mw.hide (); } public static void remote_login_login_servers_updated_signal () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "delay2"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); bool done = false; // The delay2 code triggers at 5 seconds Timeout.add (5250, () => { // If the login server we were disappears we get moved to a different one wait_for_scrolling_end (list); GLib.assert (list.selected_entry.id == "*remote_login*http://megacoolrdpserver.com*"); done = true; return false; } ); while (!done) { process_events (); Posix.usleep (10000); } mw.hide (); } public static void remote_login_login_servers_updated_signal_focus_not_in_removed_server () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "delay2"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); // Move to a server that won't be removed while (list.selected_entry.id != "*remote_login*http://coolrdpserver.com*") do_scroll (list, GreeterList.ScrollTarget.UP); bool done = false; // The delay2 code triggers at 5 seconds Timeout.add (5250, () => { // If the login server we were did not disappear we are still in the same one wait_for_scrolling_end (list); GLib.assert (list.selected_entry.id == "*remote_login*http://coolrdpserver.com*"); done = true; return false; } ); while (!done) { process_events (); Posix.usleep (10000); } mw.hide (); } public static void remote_login_remote_login_changed_signal () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "delay3"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); bool done = false; // The delay3 code triggers at 5 seconds Timeout.add (5250, () => { // If the remote login details change while on one of its servers the login servers are removed // and we get moved to the directory server wait_for_scrolling_end (list); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); do_scroll (list, GreeterList.ScrollTarget.DOWN); // There are no server to log in GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); done = true; return false; } ); while (!done) { process_events (); Posix.usleep (10000); } mw.hide (); } public static void remote_login_remote_login_changed_signalfocus_not_in_changed_server () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "delay3"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); wait_for_scrolling_end (list); while (list.selected_entry.id.has_prefix("*remote_")) { do_scroll (list, GreeterList.ScrollTarget.UP); } string nonRemoteEntry = list.selected_entry.id; bool done = false; // The delay3 code triggers at 5 seconds Timeout.add (5250, () => { // If we were not in a remote entry we are not moved when we are asked to reauthenticate // What happens is that the login servers of that directory server get removed // Moving down we find the new directory server GLib.assert (list.selected_entry.id == nonRemoteEntry); do_scroll (list, GreeterList.ScrollTarget.DOWN); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); do_scroll (list, GreeterList.ScrollTarget.DOWN); // There are no server to log in GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); done = true; return false; } ); while (!done) { process_events (); Posix.usleep (10000); } mw.hide (); } public static void remote_login_authentication () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); GLib.assert (!list.selected_entry.has_errors); // Fill in a valid email and password // Check there is no error and we moved to the last logged in server var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "password"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); wait_for_scrolling_end (list); ArcticaGreeter.singleton.session_started = false; pwd = remote_login_entry_password_field (list); pwd.text = "password"; list.selected_entry.respond ({}); GLib.assert (ArcticaGreeter.singleton.session_started); mw.hide (); } public static void remote_login_cancel_authentication () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); GLib.assert (!list.selected_entry.has_errors); // Fill in a valid email and password // Check there is no error and we moved to the last logged in server var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "password"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername2.com*lwola"); wait_for_scrolling_end (list); ArcticaGreeter.singleton.session_started = false; pwd = remote_login_entry_password_field (list); pwd.text = "delay"; pwd.activate (); GLib.assert (!list.sensitive); // We are not sensitive because we are waiting for servers answer GLib.assert (pwd.did_respond); // We are showing the spinner list.cancel_authentication (); pwd = remote_login_entry_password_field (list); GLib.assert (list.sensitive); // We are sensitive again because we cancelled the login GLib.assert (!pwd.did_respond); // We are not showing the spinner anymore mw.hide (); } public static void remote_login_duplicate_entries() { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; scroll_to_remote_login (list); //Wait until remote login appears. GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); GLib.assert (!list.selected_entry.has_errors); // If we answer without filling in any field -> error list.selected_entry.respond ({}); GLib.assert (list.selected_entry.has_errors); // Go to first and back to last to clear the error do_scroll (list, GreeterList.ScrollTarget.START); do_scroll (list, GreeterList.ScrollTarget.END); GLib.assert (!list.selected_entry.has_errors); // Fill in a valid email and password // Check there is no error and we moved to the last logged in server var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "duplicate"; list.selected_entry.respond ({}); GLib.assert (!list.selected_entry.has_errors); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername.com*alowl2"); var username = remote_login_entry_username_field(list); var domain = remote_login_entry_domain_field(list); var password = remote_login_entry_password_field(list); GLib.assert (username.text == "alowl2" && domain.text == "PRINTERS" && password.text == "duplicate2"); do_scroll (list, GreeterList.ScrollTarget.DOWN); GLib.assert (list.selected_entry.id == "*remote_login*http://rdpdefaultusername.com*alowl1"); username = remote_login_entry_username_field(list); domain = remote_login_entry_domain_field(list); password = remote_login_entry_password_field(list); GLib.assert (username.text == "alowl1" && domain.text == "SCANNERS" && password.text == "duplicate1"); wait_for_scrolling_end (list); mw.hide (); } public static void email_autocomplete () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); var email = remote_directory_entry_email_field (list); wait_for_focus (email); GLib.assert (email.text.length == 0); inject_key(email, Gdk.Key.a); GLib.assert (email.text == "a"); inject_key(email, Gdk.Key.at); GLib.assert (email.text == "a@canonical.com"); inject_key(email, Gdk.Key.u); GLib.assert (email.text == "a@ubuntu.org"); inject_key(email, Gdk.Key.r); GLib.assert (email.text == "a@urban.net"); inject_key(email, Gdk.Key.BackSpace); GLib.assert (email.text == "a@ur"); inject_key(email, Gdk.Key.BackSpace); GLib.assert (email.text == "a@u"); inject_key(email, Gdk.Key.BackSpace); GLib.assert (email.text == "a@"); inject_key(email, Gdk.Key.c); GLib.assert (email.text == "a@canonical.com"); inject_key(email, Gdk.Key.a); GLib.assert (email.text == "a@canonical.com"); inject_key(email, Gdk.Key.n); GLib.assert (email.text == "a@canonical.com"); inject_key(email, Gdk.Key.d); GLib.assert (email.text == "a@candy.com"); mw.hide (); } public static void greeter_communcation () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); // Fill in a valid email and password // Check there is no error and we moved to the last logged in server var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "password"; list.selected_entry.respond ({}); wait_for_scrolling_end (list); while (list.selected_entry.id != "*remote_login*http://coolrdpserver.com*") do_scroll (list, GreeterList.ScrollTarget.UP); var domain = remote_login_entry_domain_field (list); var username = remote_login_entry_username_field (list); pwd = remote_login_entry_password_field (list); domain.text = "foo"; username.text = "bar"; pwd.text = "foobar"; ArcticaGreeter.singleton.show_prompt("remote login:", LightDM.PromptType.QUESTION); GLib.assert (ArcticaGreeter.singleton.last_respond_response == username.text); ArcticaGreeter.singleton.show_prompt("remote host:", LightDM.PromptType.QUESTION); GLib.assert (ArcticaGreeter.singleton.last_respond_response == "http://coolrdpserver.com"); ArcticaGreeter.singleton.show_prompt("domain:", LightDM.PromptType.QUESTION); GLib.assert (ArcticaGreeter.singleton.last_respond_response == domain.text); ArcticaGreeter.singleton.show_prompt("password:", LightDM.PromptType.SECRET); GLib.assert (ArcticaGreeter.singleton.last_respond_response == pwd.text); mw.hide (); } public static void unsupported_server_type () { MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; // Wait until remote login appears scroll_to_remote_login (list); // Fill in a valid email and password // Check there is no error and we moved to the last logged in server var email = remote_directory_entry_email_field (list); var pwd = remote_directory_entry_password_field (list); email.text = "a@canonical.com"; pwd.text = "password"; list.selected_entry.respond ({}); wait_for_scrolling_end (list); while (list.selected_entry.id != "*remote_login*http://notsupportedserver.com*") do_scroll (list, GreeterList.ScrollTarget.UP); GLib.assert (list.selected_entry.has_errors); GLib.assert (!list.selected_entry.sensitive); mw.hide (); } public static void remote_login_only () { ArcticaGreeter.singleton.test_mode = true; ArcticaGreeter.singleton.session_started = false; /* this configuration should result in the list containing only the remote login entry, without any fallback manual entry */ ArcticaGreeter.singleton._hide_users_hint = true; ArcticaGreeter.singleton._show_remote_login_hint = true; ArcticaGreeter.singleton._has_guest_account_hint = false; ArcticaGreeter.singleton._show_manual_login_hint = false; MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; /* don't go too fast, otherwise the lastest gdk3 will lose control... */ Posix.sleep(1); /* Wait for Remote Login to appear */ bool rl_appeared = false; for (int i=0; i<100 && !rl_appeared; i++) { do_scroll (list, GreeterList.ScrollTarget.END); process_events (); if (list.selected_entry.id == "*remote_directory*http://crazyurl.com") rl_appeared = true; } GLib.assert (rl_appeared); GLib.assert (list.num_entries() == 1); GLib.assert (list.selected_entry.id == "*remote_directory*http://crazyurl.com"); mw.hide (); } public static void manual_login_fallback () { ArcticaGreeter.singleton.test_mode = true; ArcticaGreeter.singleton.session_started = false; /* this configuration should result in the list containing at least a manual entry */ ArcticaGreeter.singleton._hide_users_hint = true; ArcticaGreeter.singleton._show_remote_login_hint = false; ArcticaGreeter.singleton._has_guest_account_hint = false; ArcticaGreeter.singleton._show_manual_login_hint = true; MainWindow mw = setup (); TestList list = mw.stack.top () as TestList; /* verify if the manual entry has been added as a fallback mechanism */ GLib.assert (list.num_entries() == 1); GLib.assert (list.selected_entry.id == "*other"); mw.hide (); } static void setup_gsettings() { try { var dir = GLib.DirUtils.make_tmp ("arctica-greeter-test-XXXXXX"); var schema_dir = Path.build_filename(dir, "share", "glib-2.0", "schemas"); DirUtils.create_with_parents(schema_dir, 0700); var data_dirs = Environment.get_variable("XDG_DATA_DIRS"); if (data_dirs == null) data_dirs = "/usr/share"; Environment.set_variable("XDG_DATA_DIRS", "%s:%s".printf(Path.build_filename(dir, "share"), data_dirs), true); var top_srcdir = Environment.get_variable("top_srcdir"); if (top_srcdir == null || top_srcdir == "") top_srcdir = ".."; if (Posix.system("cp %s/data/org.ArcticaProject.arctica-greeter.gschema.xml %s".printf(top_srcdir, schema_dir)) != 0) error("Could not copy schema to %s", schema_dir); if (Posix.system("glib-compile-schemas %s".printf(schema_dir)) != 0) error("Could not compile schemas in %s", schema_dir); Environment.set_variable("GSETTINGS_BACKEND", "memory", true); } catch (Error e) { error("Error setting up gsettings: %s", e.message); } } public static int main (string[] args) { Gtk.test_init(ref args); setup_gsettings (); ArcticaGreeter.singleton = new ArcticaGreeter(); ArcticaGreeter.singleton.test_mode = true; GLib.Test.add_func ("/Simple Navigation", simple_navigation); GLib.Test.add_func ("/Remote Login", remote_login); GLib.Test.add_func ("/Remote Login duplicate entries", remote_login_duplicate_entries); GLib.Test.add_func ("/Remote Login with Servers Updated signal", remote_login_servers_updated_signal); GLib.Test.add_func ("/Remote Login with Servers Updated signal and not in remote server", remote_login_servers_updated_signal_focus_not_in_remote_server); GLib.Test.add_func ("/Remote Login with Login Servers Updated signal", remote_login_login_servers_updated_signal); GLib.Test.add_func ("/Remote Login with Login Servers Updated signal and not in removed server", remote_login_login_servers_updated_signal_focus_not_in_removed_server); GLib.Test.add_func ("/Remote Login with Remote Login Changed signal", remote_login_remote_login_changed_signal); GLib.Test.add_func ("/Remote Login with Remote Login Changed signal and not in changed server", remote_login_remote_login_changed_signalfocus_not_in_changed_server); GLib.Test.add_func ("/Remote Login authentication", remote_login_authentication); GLib.Test.add_func ("/Remote Login cancel authentication", remote_login_cancel_authentication); GLib.Test.add_func ("/Email Autocomplete", email_autocomplete); GLib.Test.add_func ("/Greeter Communication", greeter_communcation); GLib.Test.add_func ("/Unsupported server type", unsupported_server_type); GLib.Test.add_func ("/Remote Login Only", remote_login_only); GLib.Test.add_func ("/Manual Login Fallback", manual_login_fallback); return GLib.Test.run(); } } arctica-greeter-0.99.1.5/update-po.sh0000755000000000000000000000247214007200004014131 0ustar #!/bin/bash set -x # Copyright (C) 2017 by Mike Gabriel # # This package is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 3 of the License. # # This package is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') cp po/${GETTEXT_DOMAIN}.pot po/${GETTEXT_DOMAIN}.pot~ cd po/ cat LINGUAS | while read lingua; do if [ ! -e ${lingua}.po ]; then msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po else intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}) fi sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ -e 's/\.ini\.in\.h:/.ini.in:/g' \ -e 's/\.xml\.h:/.xml:/g' \ -e 's/\.ini\.h:/.ini:/g' \ -i ${lingua}.po done cd - 1>/dev/null mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot arctica-greeter-0.99.1.5/update-pot.sh0000755000000000000000000000200714007200004014307 0ustar #!/bin/bash # Copyright (C) 2017 by Mike Gabriel # # This package is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 3 of the License. # # This package is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') cd po/ && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot && cd - 1>/dev/null sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ -e 's/\.ini\.in\.h:/.ini.in:/g' \ -e 's/\.xml\.h:/.xml:/g' \ -e 's/\.ini\.h:/.ini:/g' \ -i po/${GETTEXT_DOMAIN}.pot