slim-1.4.1/0000755000273400027340000000000014550272524010623 5ustar robrobslim-1.4.1/const.h0000644000273400027340000000205414356635043012126 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #ifndef _CONST_H_ #define _CONST_H_ #define DISPLAY ":0.0" #define CONSOLE_STR "console" #define HALT_STR "halt" #define REBOOT_STR "reboot" #define EXIT_STR "exit" #define SUSPEND_STR "suspend" #define HIDE 0 #define SHOW 1 #define OK_EXIT 0 #define ERR_EXIT 1 /* variables replaced in login_cmd */ #define SESSION_VAR "%session" #define THEME_VAR "%theme" /* variables replaced in pre-session_cmd and post-session_cmd */ #define USER_VAR "%user" /* max height/width for images */ #define MAX_DIMENSION 10000 #endif /* _CONST_H_ */ slim-1.4.1/app.cpp0000644000273400027340000007623114405336336012121 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include #include // for getpwnam etc. #include #include #include #include #include #include #include #include #include #include // for XmuClientWindow #include "const.h" #include "log.h" #include "numlock.h" #include "switchuser.h" #include "util.h" #include "panel.h" #include "cfg.h" #include "app.h" #ifdef HAVE_SHADOW #include #endif // We generate a magic cookie of 32 hex digits for Xauth #define MCOOKIESIZE (32) /* Must be divisible by 4 */ using namespace std; #ifdef USE_PAM #include int conv(int num_msg, const struct pam_message **msg, struct pam_response **resp, void *appdata_ptr) { *resp = (struct pam_response *) calloc(num_msg, sizeof(struct pam_response)); Panel* panel = *static_cast(appdata_ptr); int result = PAM_SUCCESS; int i; for (i = 0; i < num_msg; i++) { (*resp)[i].resp = 0; (*resp)[i].resp_retcode = 0; switch (msg[i]->msg_style) { case PAM_PROMPT_ECHO_ON: /* We assume PAM is asking for the username */ panel->EventHandler(Panel::Get_Name); switch (panel->getAction()) { case Panel::Suspend: case Panel::Halt: case Panel::Reboot: (*resp)[i].resp=strdup("root"); break; case Panel::Console: case Panel::Exit: case Panel::Login: (*resp)[i].resp=strdup(panel->GetName().c_str()); break; default: break; } break; case PAM_PROMPT_ECHO_OFF: /* We assume PAM is asking for the password */ switch (panel->getAction()) { case Panel::Console: case Panel::Exit: /* We should leave now! */ result = PAM_CONV_ERR; break; default: panel->EventHandler(Panel::Get_Passwd); (*resp)[i].resp=strdup(panel->GetPasswd().c_str()); break; } break; case PAM_ERROR_MSG: case PAM_TEXT_INFO: /* We simply write these to the log TODO: Maybe we should show them. In particular, if you have a fingerprint reader, PAM passes instructions in PAM_TEXT_INFO messages */ logStream << APPNAME << ": " << msg[i]->msg << endl; break; } if (result != PAM_SUCCESS) break; } if (result != PAM_SUCCESS) { for (i = 0; i < num_msg; i++) { if ((*resp)[i].resp == 0) continue; free((*resp)[i].resp); (*resp)[i].resp = 0; } free(*resp); *resp = 0; } return result; } #endif extern App* LoginApp; int xioerror(Display *disp) { LoginApp->RestartServer(); return 0; } void CatchSignal(int sig) { logStream << APPNAME << ": unexpected signal " << sig << endl; if (LoginApp->isServerStarted()) LoginApp->StopServer(); LoginApp->RemoveLock(); exit(ERR_EXIT); } static volatile bool got_sigusr1 = false; void User1Signal(int sig) { got_sigusr1 = true; signal(sig, User1Signal); } App::App(int argc, char** argv) : Dpy(NULL), ServerPID(-1), serverStarted(false), #ifdef USE_PAM pam(conv, static_cast(&LoginPanel)), #endif cfg(0), firstlogin(true), daemonmode(false), force_nodaemon(false), testing(false), tww(1280), twh(1024), #ifdef USE_CONSOLEKIT consolekit_support_enabled(true), #endif mcookie(string(MCOOKIESIZE, 'a')) { int tmp; char * win_size = 0; /* Parse command line Note: we allow an arg for the -n option to handle "-nodaemon" as originally quoted in the docs. However, the parser has never checked the arg, so "-noddy" works exactly the same */ while ((tmp = getopt(argc, argv, "c:vhsp:w:n::d")) != EOF) { switch (tmp) { case 'c': /* Config */ if (optarg == NULL) { cerr << "The -c option requires an argument" << endl; exit(ERR_EXIT); } if ( cfg != 0 ) { cerr << "The -c option can only be given once" << endl; exit(ERR_EXIT); } cfg = new Cfg; cfg->readConf(optarg); break; case 'p': /* Test theme */ testtheme = optarg; testing = true; if (testtheme == NULL) { cerr << "The -p option requires an argument" << endl; exit(ERR_EXIT); } break; case 'w': /* Window size for theme test mode */ if ( !testing ) { cerr << "The -w option is only valid after -p" << endl; exit(ERR_EXIT); } win_size = optarg; // Test for valid syntax later break; case 'd': /* Daemon mode */ daemonmode = true; break; case 'n': /* Daemon mode */ daemonmode = false; force_nodaemon = true; break; case 'v': /* Version */ std::cout << APPNAME << " version " << VERSION << endl; exit(OK_EXIT); break; #ifdef USE_CONSOLEKIT case 's': /* Disable consolekit support */ consolekit_support_enabled = false; break; #endif case '?': /* Illegal option - getopt will have printed an error */ std::cout << endl; case 'h': /* Help */ std::cout << "usage: " << APPNAME << " [option ...]" << endl << "options:" << endl << " -c /path/to/config select configuration file" << endl << " -d daemon mode" << endl << " -n no-daemon mode" << endl #ifdef USE_CONSOLEKIT << " -s start for systemd, disable consolekit support" << endl #endif << " -p /path/to/themedir preview theme" << endl << " -w x size of window for preview" << endl << " -h show this help" << endl << " -v show version" << endl; exit(OK_EXIT); break; } } #ifndef XNEST_DEBUG if (getuid() != 0 && !testing) { logStream << APPNAME << ": only root can run this program" << endl; exit(ERR_EXIT); } #endif /* XNEST_DEBUG */ if ( win_size ) { char* sep = 0; tww = (short)strtol ( win_size, &sep, 10 ); if ( ( sep == 0 ) || ( *sep++ != 'x' ) ) { cerr << "Malformed argument to -w option" << endl; exit(ERR_EXIT); } twh = (short)strtol ( sep, &sep, 10 ); } } void App::Run() { DisplayName = DISPLAY; #ifdef XNEST_DEBUG char* p = getenv("DISPLAY"); if (p && p[0]) { DisplayName = p; cout << "Using display name " << DisplayName << endl; } #endif /* Read configuration and theme */ if ( cfg == 0 ) { cfg = new Cfg; cfg->readConf(CFGFILE); } string themebase = ""; string themefile = ""; string themedir = ""; if (testing) { themeName = testtheme; } else { themebase = string(THEMESDIR) + "/"; themeName = cfg->getOption("current_theme"); string::size_type pos; if ((pos = themeName.find(",")) != string::npos) { /* input is a set */ themeName = cfg->findValidRandomTheme(themeName); if (themeName == "") { themeName = "default"; } } } #ifdef USE_PAM try { pam.start("slim"); pam.set_item(PAM::Authenticator::TTY, DisplayName); pam.set_item(PAM::Authenticator::Requestor, "root"); pam.setenv("XDG_SESSION_CLASS", "greeter"); // so eLogind works right } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; exit(ERR_EXIT); } #endif bool loaded = false; while (!loaded) { themedir = themebase + themeName; themefile = themedir + THEMESFILE; if (!cfg->readConf(themefile)) { if (themeName == "default") { logStream << APPNAME << ": Failed to open default theme file " << themefile << endl; exit(ERR_EXIT); } else { logStream << APPNAME << ": Invalid theme in config: " << themeName << endl; themeName = "default"; } } else { loaded = true; } } if (!testing) { /* Create lock file */ LoginApp->GetLock(); /* Start x-server */ setenv("DISPLAY", DisplayName, 1); signal(SIGQUIT, CatchSignal); signal(SIGTERM, CatchSignal); signal(SIGKILL, CatchSignal); signal(SIGINT, CatchSignal); signal(SIGHUP, CatchSignal); signal(SIGPIPE, CatchSignal); signal(SIGUSR1, User1Signal); #ifndef XNEST_DEBUG if ( !force_nodaemon && cfg->getOption("daemon") == "yes" ) { daemonmode = true; } /* Daemonize */ if (daemonmode) { if (daemon(0, 0) == -1) { logStream << APPNAME << ": " << strerror(errno) << endl; exit(ERR_EXIT); } } OpenLog(); if (daemonmode) UpdatePid(); CreateServerAuth(); StartServer(); #endif } /* Open display if we haven't already (e.g. testing) */ if ( Dpy == 0 ) Dpy = XOpenDisplay(DisplayName); /* Now check that it succeeded */ if ( Dpy == 0 ) { logStream << APPNAME << ": could not open display '" << DisplayName << "'" << endl; #ifndef XNEST_DEBUG if (!testing) StopServer(); #endif exit(ERR_EXIT); } /* Get screen and root window */ Scr = DefaultScreen(Dpy); Root = RootWindow(Dpy, Scr); /* for tests we use a standard window */ if (testing) { Window RealRoot = Root; // already done RootWindow(Dpy, Scr); Root = XCreateSimpleWindow(Dpy, RealRoot, 0, 0, tww, twh, 0, 0, 0); XMapWindow(Dpy, Root); XFlush(Dpy); } else { blankScreen(); } /* Create panel */ LoginPanel = new Panel ( Dpy, Scr, Root, cfg, themedir, ( testing ? Panel::Mode_Test : Panel::Mode_DM ) ); LoginPanel->HideCursor(); bool firstloop = true; /* 1st time panel is shown (for automatic username) */ bool focuspass = cfg->getOption("focus_password")=="yes"; bool autologin = cfg->getOption("auto_login")=="yes"; if ( firstlogin && ( cfg->getOption("default_user") != "" ) ) { LoginPanel->SetName ( cfg->getOption("default_user") ); firstlogin = false; #ifdef USE_PAM pam.set_item(PAM::Authenticator::User, cfg->getOption("default_user").c_str()); #endif if (autologin) { #ifdef USE_PAM try { pam.check_acct(); #endif Login(); #ifdef USE_PAM } catch(PAM::Auth_Exception& e){ // The default user is invalid } #endif } } /* Set NumLock */ string numlock = cfg->getOption("numlock"); if (numlock == "on") NumLock::setOn(Dpy); else if (numlock == "off") NumLock::setOff(Dpy); /* Start looping */ int panelclosed = 1; Panel::ActionType Action; while (1) { if (panelclosed) { /* Init root */ LoginPanel->setBackground(); /* Show panel */ LoginPanel->OpenPanel(); } if ( firstloop ) { LoginPanel->Reset(); if ( cfg->getOption("default_user") != "" ) LoginPanel->SetName(cfg->getOption("default_user")); // Removed by Gentoo "session-chooser" patch //LoginPanel->SwitchSession(); } if ( !AuthenticateUser(focuspass && firstloop) ) { unsigned int cfg_passwd_timeout; cfg_passwd_timeout = Cfg::string2int(cfg->getOption("wrong_passwd_timeout").c_str()); if ( cfg_passwd_timeout > 60 ) cfg_passwd_timeout = 60; panelclosed = 0; firstloop = false; LoginPanel->WrongPassword(cfg_passwd_timeout); XBell(Dpy, 100); continue; } firstloop = false; Action = LoginPanel->getAction(); /* for themes test we just quit */ if ( testing ) { Action = Panel::Exit; } panelclosed = 1; LoginPanel->ClosePanel(); switch (Action) { case Panel::Login: Login(); break; case Panel::Console: Console(); break; case Panel::Reboot: Reboot(); break; case Panel::Halt: Halt(); break; case Panel::Suspend: Suspend(); break; case Panel::Exit: Exit(); break; default: break; } /* Close all clients ready for another round */ if (!testing) { KillAllClients(False); KillAllClients(True); } } } #ifdef USE_PAM bool App::AuthenticateUser(bool focuspass) { /* Reset the username */ try{ if (!focuspass) pam.set_item(PAM::Authenticator::User, 0); pam.authenticate(); } catch(PAM::Auth_Exception& e){ switch (LoginPanel->getAction()) { case Panel::Exit: case Panel::Console: return true; /* <--- This is simply fake! */ default: break; } logStream << APPNAME << ": " << e << endl; return false; } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; exit(ERR_EXIT); } return true; } #else bool App::AuthenticateUser(bool focuspass) { if (!focuspass) { LoginPanel->EventHandler(Panel::Get_Name); switch (LoginPanel->getAction()) { case Panel::Exit: case Panel::Console: logStream << APPNAME << ": Got a special command (" << LoginPanel->GetName() << ")" << endl; return true; /* <--- This is simply fake! */ default: break; } } LoginPanel->EventHandler(Panel::Get_Passwd); char *encrypted, *correct; struct passwd *pw; switch (LoginPanel->getAction()) { case Panel::Suspend: case Panel::Halt: case Panel::Reboot: pw = getpwnam("root"); break; case Panel::Console: case Panel::Exit: case Panel::Login: pw = getpwnam(LoginPanel->GetName().c_str()); break; } endpwent(); if (pw == 0) return false; #ifdef HAVE_SHADOW struct spwd *sp = getspnam(pw->pw_name); endspent(); if (sp) correct = sp->sp_pwdp; else #endif /* HAVE_SHADOW */ correct = pw->pw_passwd; if (correct == 0 || correct[0] == '\0') return true; encrypted = crypt(LoginPanel->GetPasswd().c_str(), correct); return ((encrypted && strcmp(encrypted, correct) == 0) ? true : false); } #endif int App::GetServerPID() { return ServerPID; } void App::Login() { struct passwd *pw; pid_t pid; #ifdef USE_PAM try{ pam.open_session(); pw = getpwnam(static_cast(pam.get_item(PAM::Authenticator::User))); } catch(PAM::Cred_Exception& e){ /* Credentials couldn't be established */ logStream << APPNAME << ": " << e << endl; return; } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; exit(ERR_EXIT); } #else pw = getpwnam(LoginPanel->GetName().c_str()); #endif endpwent(); if (pw == 0) return; if (pw->pw_shell[0] == '\0') { setusershell(); strcpy(pw->pw_shell, getusershell()); endusershell(); } /* Setup the environment */ char* term = getenv("TERM"); string maildir = _PATH_MAILDIR; maildir.append("/"); maildir.append(pw->pw_name); string xauthority = pw->pw_dir; xauthority.append("/.Xauthority"); #ifdef USE_PAM /* Setup the PAM environment */ try{ if (term) pam.setenv("TERM", term); pam.setenv("HOME", pw->pw_dir); pam.setenv("PWD", pw->pw_dir); pam.setenv("SHELL", pw->pw_shell); pam.setenv("USER", pw->pw_name); pam.setenv("LOGNAME", pw->pw_name); pam.setenv("PATH", cfg->getOption("default_path").c_str()); pam.setenv("DISPLAY", DisplayName); pam.setenv("MAIL", maildir.c_str()); pam.setenv("XAUTHORITY", xauthority.c_str()); } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; exit(ERR_EXIT); } #endif #ifdef USE_CONSOLEKIT if (consolekit_support_enabled) { /* Setup the ConsoleKit session */ try { ck.open_session(DisplayName, pw->pw_uid); } catch(Ck::Exception &e) { logStream << APPNAME << ": " << e << endl; exit(ERR_EXIT); } } #endif /* Create new process */ pid = fork(); if (pid == 0) { #ifdef USE_PAM /* Get a copy of the environment and close the child's copy */ /* of the PAM-handle. */ char** child_env = pam.getenvlist(); # ifdef USE_CONSOLEKIT if (consolekit_support_enabled) { char** old_env = child_env; /* Grow the copy of the environment for the session cookie */ int n; for (n = 0; child_env[n] != NULL ; n++) ; n++; child_env = static_cast(malloc(sizeof(char*)*(n+1))); memcpy(child_env, old_env, sizeof(char*)*n); child_env[n - 1] = StrConcat("XDG_SESSION_COOKIE=", ck.get_xdg_session_cookie()); child_env[n] = NULL; } # endif /* USE_CONSOLEKIT */ #else # ifdef USE_CONSOLEKIT const int Num_Of_Variables = 12; /* Number of env. variables + 1 */ # else const int Num_Of_Variables = 11; /* Number of env. variables + 1 */ # endif /* USE_CONSOLEKIT */ char** child_env = static_cast(malloc(sizeof(char*)*Num_Of_Variables)); int n = 0; if (term) child_env[n++]=StrConcat("TERM=", term); child_env[n++]=StrConcat("HOME=", pw->pw_dir); child_env[n++]=StrConcat("PWD=", pw->pw_dir); child_env[n++]=StrConcat("SHELL=", pw->pw_shell); child_env[n++]=StrConcat("USER=", pw->pw_name); child_env[n++]=StrConcat("LOGNAME=", pw->pw_name); child_env[n++]=StrConcat("PATH=", cfg->getOption("default_path").c_str()); child_env[n++]=StrConcat("DISPLAY=", DisplayName); child_env[n++]=StrConcat("MAIL=", maildir.c_str()); child_env[n++]=StrConcat("XAUTHORITY=", xauthority.c_str()); # ifdef USE_CONSOLEKIT if (consolekit_support_enabled) child_env[n++]=StrConcat("XDG_SESSION_COOKIE=", ck.get_xdg_session_cookie()); # endif /* USE_CONSOLEKIT */ child_env[n++]=0; #endif /* Login process starts here */ SwitchUser Su(pw, cfg, DisplayName, child_env); string session = LoginPanel->getSession(); string loginCommand = cfg->getOption("login_cmd"); replaceVariables(loginCommand, SESSION_VAR, session); replaceVariables(loginCommand, THEME_VAR, themeName); string sessStart = cfg->getOption("sessionstart_cmd"); if (sessStart != "") { replaceVariables(sessStart, USER_VAR, pw->pw_name); if ( system(sessStart.c_str()) < 0 ) logStream << APPNAME << ": Failed to run sessionstart_cmd" << endl; } Su.Login(loginCommand.c_str(), mcookie.c_str()); _exit(OK_EXIT); } #ifndef XNEST_DEBUG CloseLog(); #endif /* Wait until user is logging out (login process terminates) */ pid_t wpid = -1; int status; while (wpid != pid) { wpid = wait(&status); if (wpid == ServerPID) xioerror(Dpy); /* Server died, simulate IO error */ } #ifndef XNEST_DEBUG /* Re-activate log file */ OpenLog(); #endif if (WIFEXITED(status) && WEXITSTATUS(status)) { LoginPanel->Message("Failed to execute login command"); sleep(3); } else { string sessStop = cfg->getOption("sessionstop_cmd"); if ( sessStop != "" ) { replaceVariables ( sessStop, USER_VAR, pw->pw_name ); if ( system(sessStop.c_str()) < 0 ) logStream << APPNAME << "Session stop command failed" << endl; } } #ifdef USE_CONSOLEKIT if (consolekit_support_enabled) { try { ck.close_session(); } catch(Ck::Exception &e) { logStream << APPNAME << ": " << e << endl; } } #endif #ifdef USE_PAM try { pam.close_session(); } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; } #endif /* Close all clients */ KillAllClients(False); KillAllClients(True); /* Send HUP signal to clientgroup */ killpg(pid, SIGHUP); /* Send TERM signal to clientgroup, if error send KILL */ if (killpg(pid, SIGTERM)) killpg(pid, SIGKILL); LoginPanel->HideCursor(); #ifndef XNEST_DEBUG RestartServer(); /// @bug recursive call! #endif } void App::Reboot() { #ifdef USE_PAM try { pam.end(); } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; } #endif /* Write message */ LoginPanel->Message((char*)cfg->getOption("reboot_msg").c_str()); sleep(3); /* Stop server and reboot */ StopServer(); RemoveLock(); if ( system(cfg->getOption("reboot_cmd").c_str()) < 0 ) logStream << APPNAME << ": Failed to execute reboot command" << endl; exit(OK_EXIT); } void App::Halt() { #ifdef USE_PAM try { pam.end(); } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; } #endif /* Write message */ LoginPanel->Message((char*)cfg->getOption("shutdown_msg").c_str()); sleep(3); /* Stop server and halt */ StopServer(); RemoveLock(); if ( system(cfg->getOption("halt_cmd").c_str()) < 0 ) logStream << APPNAME << ": Failed to execute halt command" << endl; exit(OK_EXIT); } void App::Suspend() { sleep(1); if ( system(cfg->getOption("suspend_cmd").c_str() ) < 0 ) logStream << APPNAME << ": Failed to execute suspend command" << endl; } void App::Console() { int posx = 40; int posy = 40; int fontx = 9; int fonty = 15; int width = (XWidthOfScreen(ScreenOfDisplay(Dpy, Scr)) - (posx * 2)) / fontx; int height = (XHeightOfScreen(ScreenOfDisplay(Dpy, Scr)) - (posy * 2)) / fonty; /* Execute console */ const char* cmd = cfg->getOption("console_cmd").c_str(); char *tmp = new char[strlen(cmd) + 60]; sprintf(tmp, cmd, width, height, posx, posy, fontx, fonty); if ( system(tmp) < 0 ) logStream << APPNAME << ": Failed to fork console app '" << cmd << "'" << endl; delete [] tmp; } void App::Exit() { #ifdef USE_PAM try { pam.end(); } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; } #endif if (testing) { std::string testmsg = "User "; testmsg += LoginPanel->GetName(); testmsg += " auth OK, session="; testmsg += LoginPanel->getSession(); LoginPanel->Message(testmsg); sleep(3); delete LoginPanel; XCloseDisplay(Dpy); } else { delete LoginPanel; StopServer(); RemoveLock(); } delete cfg; exit(OK_EXIT); } int CatchErrors(Display *dpy, XErrorEvent *ev) { return 0; } void App::RestartServer() { #ifdef USE_PAM try { pam.end(); } catch(PAM::Exception& e){ logStream << APPNAME << ": " << e << endl; } #endif StopServer(); RemoveLock(); if (force_nodaemon) { delete LoginPanel; exit(ERR_EXIT); /* use ERR_EXIT so that systemd's RESTART=on-failure works */ } else { while (waitpid(-1, NULL, WNOHANG) > 0); /* Collects all dead children */ Run(); } } /* * Iterates over the list of all windows declared as children of Root and * kills the clients. Since Root is the root window of the screen, all * running applications (of the logged-in session) should be caught by this * * **** WARNING **** this includes child windows in the panel! Only call this * when the panel is closed! */ void App::KillAllClients(Bool top) { Window dummywindow; Window *children; unsigned int nchildren; unsigned int i; XWindowAttributes attr; XSync(Dpy, 0); XSetErrorHandler(CatchErrors); nchildren = 0; XQueryTree(Dpy, Root, &dummywindow, &dummywindow, &children, &nchildren); if (!top) { for (i=0; i timeout) break; } if (i > 0) logStream << endl; lasttext = text; return (ServerPID != pidfound); } int App::WaitForServer() { int ncycles = 120; int cycles; /* The X server should send us a USR1 signal when it's ready. We trap */ /* that signal and set a flag. If that's not already happened, wait for */ /* a good time. The incoming signal should terminate the sleep() call */ /* with a non-zero return value. Otherwise, time out and try anyway but */ /* log the oddity. */ if ( !got_sigusr1 && ( sleep(5)==0 ) ) logStream << "WaitForServer: Not seen SigUSR1 from Xserver" << endl; for (cycles = 0; cycles < ncycles; cycles++) { Dpy = XOpenDisplay(DisplayName); if ( Dpy ) { XSetIOErrorHandler(xioerror); return 1; } else { if (!ServerTimeout(1, (char *) "X server to begin accepting connections")) break; } } logStream << "Giving up." << endl; return 0; } int App::StartServer() { got_sigusr1 = false; // We're about to start the X server so clear the semaphore ServerPID = fork(); /// @bug why do this so early? Just before the switch makes more sense int argc = 1, pos = 0, i; static const int MAX_XSERVER_ARGS = 256; static char* server[MAX_XSERVER_ARGS+2] = { NULL }; server[0] = (char *)cfg->getOption("default_xserver").c_str(); string argOption = cfg->getOption("xserver_arguments"); /* Add mandatory -xauth option */ argOption = argOption + " -auth " + cfg->getOption("authfile"); char* args = new char[argOption.length()+2]; /* NULL plus vt */ strcpy(args, argOption.c_str()); serverStarted = false; bool hasVtSet = false; while (args[pos] != '\0') { if (args[pos] == ' ' || args[pos] == '\t') { *(args+pos) = '\0'; server[argc++] = args+pos+1; } else if (pos == 0) { server[argc++] = args+pos; } ++pos; if (argc+1 >= MAX_XSERVER_ARGS) { /* ignore _all_ arguments to make sure the server starts at */ /* all */ argc = 1; break; } } for (i = 0; i < argc; i++) { if (server[i][0] == 'v' && server[i][1] == 't') { bool ok = false; Cfg::string2int(server[i]+2, &ok); if (ok) { hasVtSet = true; } } } if (!hasVtSet && daemonmode) { server[argc++] = (char*)"vt07"; } server[argc] = NULL; switch (ServerPID) { case 0: signal(SIGTTIN, SIG_IGN); signal(SIGTTOU, SIG_IGN); signal(SIGUSR1, SIG_IGN); setpgid(0,getpid()); execvp(server[0], server); logStream << APPNAME << ": X server could not be started" << endl; exit(ERR_EXIT); break; case -1: break; default: errno = 0; // Prime the server timeout function and check for an immediate crash if (!ServerTimeout(0, (char *)"")) { ServerPID = -1; break; } /* Wait for server to start up */ if (WaitForServer() == 0) { logStream << APPNAME << ": unable to connect to X server" << endl; StopServer(); ServerPID = -1; exit(ERR_EXIT); } break; } delete [] args; serverStarted = true; ///< @bug not true if ServerPID is -1 return ServerPID; } jmp_buf CloseEnv; int IgnoreXIO(Display *d) { logStream << APPNAME << ": connection to X server lost." << endl; longjmp(CloseEnv, 1); } void App::StopServer() { signal(SIGQUIT, SIG_IGN); signal(SIGINT, SIG_IGN); signal(SIGHUP, SIG_IGN); signal(SIGPIPE, SIG_IGN); signal(SIGTERM, SIG_DFL); signal(SIGKILL, SIG_DFL); /* Catch X error */ XSetIOErrorHandler(IgnoreXIO); if (!setjmp(CloseEnv) && Dpy) XCloseDisplay(Dpy); /* Send HUP to process group */ errno = 0; if ((killpg(getpid(), SIGHUP) != 0) && (errno != ESRCH)) logStream << APPNAME << ": can't send HUP to process group " << getpid() << endl; /* Send TERM to server */ if (ServerPID < 0) return; errno = 0; if (killpg(ServerPID, SIGTERM) < 0) { if (errno == EPERM) { logStream << APPNAME << ": can't kill X server" << endl; exit(ERR_EXIT); } if (errno == ESRCH) return; } /* Wait for server to shut down */ if (!ServerTimeout(10, (char *)"X server to shut down")) { logStream << endl; return; } logStream << endl << APPNAME << ": X server slow to shut down, sending KILL signal." << endl; /* Send KILL to server */ errno = 0; if (killpg(ServerPID, SIGKILL) < 0) { if (errno == ESRCH) return; } /* Wait for server to die */ if (ServerTimeout(3, (char*)"server to die")) { logStream << endl << APPNAME << ": can't kill server" << endl; exit(ERR_EXIT); } logStream << endl; } void App::blankScreen() { GC gc = XCreateGC(Dpy, Root, 0, 0); XSetForeground(Dpy, gc, BlackPixel(Dpy, Scr)); XFillRectangle(Dpy, Root, gc, 0, 0, XWidthOfScreen(ScreenOfDisplay(Dpy, Scr)), XHeightOfScreen(ScreenOfDisplay(Dpy, Scr))); XFlush(Dpy); XFreeGC(Dpy, gc); } /* Check if there is a lockfile and a corresponding process */ void App::GetLock() { std::ifstream lockfile(cfg->getOption("lockfile").c_str()); if (!lockfile) { /* no lockfile present, create one */ std::ofstream lockfile(cfg->getOption("lockfile").c_str(), ios_base::out); if (!lockfile) { logStream << APPNAME << ": Could not create lock file: " << cfg->getOption("lockfile").c_str() << std::endl; exit(ERR_EXIT); } lockfile << getpid() << std::endl; lockfile.close(); } else { /* lockfile present, read pid from it */ int pid = 0; lockfile >> pid; lockfile.close(); if (pid > 0) { /* see if process with this pid exists */ int ret = kill(pid, 0); if (ret == 0 || (ret == -1 && errno == EPERM) ) { logStream << APPNAME << ": Another instance of the program is already running with PID " << pid << std::endl; exit(0); } else { logStream << APPNAME << ": Stale lockfile found, removing it" << std::endl; std::ofstream lockfile(cfg->getOption("lockfile").c_str(), ios_base::out); if (!lockfile) { logStream << APPNAME << ": Could not create new lock file: " << cfg->getOption("lockfile") << std::endl; exit(ERR_EXIT); } lockfile << getpid() << std::endl; lockfile.close(); } } } } /* Remove lockfile */ void App::RemoveLock() { remove(cfg->getOption("lockfile").c_str()); } /* Get server start check flag. */ bool App::isServerStarted() { return serverStarted; } /* Open a log file for error reporting */ void App::OpenLog() { if ( !logStream.openLog( cfg->getOption("logfile").c_str() ) ) { cerr << APPNAME << ": Could not access log file: " << cfg->getOption("logfile") << endl; RemoveLock(); exit(ERR_EXIT); } /* I should set the buffers to imediate write, but I just flush on every << operation. */ } /* Close the logging stream - just a wrapper round the real method */ void App::CloseLog() { /* Simply closing the log */ logStream.closeLog(); } /* * Populate any matching fields in a markup string with the value of * a variable. The markup is %name but that is not enforced here - instead * the caller must pass the full markup tag - %name, not just name */ void App::replaceVariables(string& input, const string& var, const string& value) { string::size_type pos = 0; int len = var.size(); while ((pos = input.find(var, pos)) != string::npos) { input = input.substr(0, pos) + value + input.substr(pos+len); } } /* * Set the required server authority parameters in the environment * and file system. */ void App::CreateServerAuth() { /* create mit cookie */ uint16_t word; uint8_t hi, lo; int i; string authfile; const char *digits = "0123456789abcdef"; Util::srandom(Util::makeseed()); for (i = 0; i < MCOOKIESIZE; i+=4) { /* We rely on the fact that all bits generated by Util::random() * are usable, so we are taking full words from its output. */ word = Util::random() & 0xffff; lo = word & 0xff; hi = word >> 8; mcookie[i] = digits[lo & 0x0f]; mcookie[i+1] = digits[lo >> 4]; mcookie[i+2] = digits[hi & 0x0f]; mcookie[i+3] = digits[hi >> 4]; } /* reinitialize auth file */ authfile = cfg->getOption("authfile"); remove(authfile.c_str()); putenv(StrConcat("XAUTHORITY=", authfile.c_str())); Util::add_mcookie(mcookie, ":0", cfg->getOption("xauth_path"), authfile); } /* * Concatenate two C-style strings into a newly alloc'd char array of the * right size. */ char* App::StrConcat(const char* str1, const char* str2) { char* tmp = new char[strlen(str1) + strlen(str2) + 1]; strcpy(tmp, str1); strcat(tmp, str2); return tmp; } /* * Write our process ID to the lock file specified in the config */ void App::UpdatePid() { std::ofstream lockfile(cfg->getOption("lockfile").c_str(), ios_base::out); if (!lockfile) { logStream << APPNAME << ": Could not update lock file: " << cfg->getOption("lockfile").c_str() << endl; exit(ERR_EXIT); } lockfile << getpid() << endl; lockfile.close(); } slim-1.4.1/xinitrc.sample0000644000273400027340000000046414360513113013501 0ustar robrob# the following variable defines the session which is started if the user # doesn't explicitly select a session DEFAULT_SESSION=twm case $1 in xfce4) exec startxfce4 ;; icewm) icewmbg & icewmtray & exec icewm ;; wmaker) exec wmaker ;; blackbox) exec blackbox ;; *) exec $DEFAULT_SESSION ;; esac slim-1.4.1/util.h0000644000273400027340000000121314206732745011752 0ustar robrob/* SLiM - Simple Login Manager Copyright (C) 2009 Eygene Ryabinkin This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef _UTIL_H__ #define _UTIL_H__ #include namespace Util { bool add_mcookie(const std::string &mcookie, const char *display, const std::string &xauth_cmd, const std::string &authfile); void srandom(unsigned long seed); long random(void); long makeseed(void); } #endif /* _UTIL_H__ */ slim-1.4.1/themes/0000755000273400027340000000000014550272524012110 5ustar robrobslim-1.4.1/themes/CMakeLists.txt0000644000273400027340000000003314347555736014661 0ustar robrobsubdirs (default original) slim-1.4.1/themes/original/0000755000273400027340000000000014550272524013714 5ustar robrobslim-1.4.1/themes/original/background.jpg0000644000273400027340000045652714175525542016564 0ustar robrobJFIFHHC  !"$"$C"E !1AQ"aq2#BR3b$rC4%Sc0!1AQa"q2#B ?Q_=Q@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQA#g$.:(ВAQ'5e϶HĊq?h=*"cڨԋ1NbzԬOj`0*#ڤ5(Lbc$SnE$fڀI*TIp@s:i;{f>>WjTҠ PH LH(Iv TLSIm3d̐=MJj\ֺqn@D"GZ&*H""spzOM[vK`*nB70jD*%Q8۷5lAKk*9PZN( DRI'ԐsKlI"py*}R;UNdb xϴgq$'ڠ`92Ԯ9.4@vR]ls֩fncR"$>␴^neq:$oz͉ڍiEWwQEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@QEQ@SQL1 1@Q U&1Ui0<ԩW%&p/?I4I"j6o¤]?ka{(/$ǽQm-=)2S *ц8ԯ'b\tΌp(jO,VR=9㊉'ZjПjUKUVI&S(kMޞ[RUsҮC`]!*ܑn,֣ 4XiT.ԛج O$EXCb)Z %3曋&*87;&k;mqޖL`T qIuZ>9$>pzԯ$cqbvGTNԞڝQ3z+IDI92zT=j$a1T?=fBM sqa)#SHYf[J3vMtI9׮@5z ۏ4tjI}EWQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQEEPQESQSA#ޤ'UtbR@4dLy}qr[@H'!IVUUHgZ3avtŀ1΂y5d@u4 E`fA M$5+'+oƙ^RBU_Je$mO(5 vj=\M5iYQl튶ԋlH"hbz`:U'i5Fjk-,p`YIHe_uG6rO۰[Lc] u GOzi(">31ҔbM1Y4Fj3U}ܜSm*8$ED5rmUg =I8 {ΞD5$3Y3NS5C" 4="Tz}k_N.w/tGXYfqpF\#u;MmWҲRΉ !yg.J7U/U V}'P$ 55CT"( aefiMIj2cPA&i(Rf0{bOn+wiI tIT#I +=fI\cB5 U1UNKudϨ|KN5#$2ҘWڑ'?Y%Vl Tb'>զ$₋u2;YˮH@$Oҥn3Q9ȫ&ϤRz0DAPxeGS*UwΆcc3jKOڟ@+?55u0~h`I?eTGu}wvHGVňQIW7`Iz.mlH~.cxSmVSlV1ՓI9&_&C\u16uPKOH6cR9L55N+aj""bO Ua!r ۏJv;Vơnکoj7c6_Q[^Ӄ4glI8(2>zWM(#Ґ:SWF*8B#+w &/f;Sz}iXI0=I؊N V8 sJ3RPN1U\ir"5QȞ ԋ!NA=k)壞{A* #V[Sn+p <ՇyiZA5U[sB!Ej<Di7zekF5,V jrJײMMƖ4)`u}恑5u <⥌5YK8T,l9C9O~՝ŜV dLS9QwFOV]\8v,`{[:WN00I=꣎(X`LVm_HF1-UW1Tby$v-R  \j矮*iLbzJV ]G袊>h( (( (( (( (( (( (( (( (( (( (( (( (( (( (( (&b#UO2V9Ew|ҌS5Du*R&"uNiQdF"A6 Me loBLF7VtT܀qRb@@RJĆn'"V!Ooz."yZ˗Ʈ#p"QqOmsF(<$H8LffyM 6H1Uo-RP 2EFqҗ~HMVT3S&X洛#3Эl iR<0qҒąM}/JxG$r@毾(5J>b~T UI>WKe,:Z2WLL =u`meSZ+nc؃*ޜTU[H0EI)OP{MFP8@RqVή'VA: #5vjj|"KU S,j V=AS:j$v  Hb834A <mVSc\P+MHL?4DcYjx5+k<ӥڋ$VK{n.̃34\@6 gDB Zm! B{5e$^ .Hnʮw~u]wSp> ttw2 ̝<9itA~ WWõ\OV+,vc֫>UuZ@ifމ=D'>ib[vm^#>koMriYzP]AS"4p%0*I1Q!P@ (zkbp"n~ @)2MC3h#Q- J|T]2dKpWO&+2zY)~{ՠ$w #x?dT (DD-&vZj{RDԛH afXR7[ lO2bfBQ0 yTN'-R4Y1j( &f VUAc9AS3~#3u! Xڣ }EXBq# ^?PLy Sr*X ZL(4tnn\^bvDۧnL>)=z)ɚZ>ԍv'+q`mUl9dH[}alKsޯצcq?K>gbI-:'ګܕ*[փ9☘''فJ\ uԋf+b((((((((((*h"j 5YE4TQEQE4EPQMDDQEQTTlPA(((((*j(Q1I$81 :Ur;? `@#m1ޣt WxLsWIq qU@Wp$VU׌pUb&sL$SqV$ یB;B'RnIn* 3)޺g_"ߨڪf-iv'ڳm0fg?}fʤq*vr'/@A mDA|qpsV/yj:{TNSznzMhtX b<{g*XV8iRIVhtIbI@$kPd#hTm*4 c?:\:ti!NIj@J儶]N9#jFeطp G>_"bqHc:U!_.BLb[&!X#8^>{sY.*v$U,I#5s*} %G:1ɹB~&"ֵlHb㉪M lw 2b1oL}KdqTy~q@ND݅;=O. O)dKgF&UOà}B#9I#>8*O3؎#OuP.`6?rGw1*-מ[A6߮]0MkުK*Оզs |xJq*1aP1Y]g[EJ9>բͰB{Uw[al^FsF:"R DV,aq13@nAmuS+Up.H\]vKc$VmKv/ PiOuN[m/G۵n۳o$@IWWY\;H;V\,TR(-l V/unDMo[O85ѨKԂ'޻ o˳8b=qˋob}1s]bU=8Q )3ik3q@4#C,84`frKǵbb@s[nRmz1+:⚦a$];HT]٬B SkrN23<ԻJ/=Mf݂žy /V^pEw*rdC3R%M<' S{uXI{yRVk.疥/q5ݤMq^%IR OW>M E(qa=-ڹ^uGlN;WSMsrڣg%TtGzȬ$fw5h%p0g,x "qefE+\wS 0[=+;k[cUJS$M)&$ ɚKsIeb{ ۉp9$MV/%~~ƹ{eAS\I<)e*Ƹvt7"EۖER菚=ztu|]ןs}åfku1JDk1A` h3<n}>%[p+QsQ^QEEPQEEPQEEA4R4\5g'QK&=j G֊(SQ4T QMEOҏQELQCQSA("*j(&(Ί=(E"MSS((jf(h扩i⦖h"MHozqJ9#ނ$(T CK=EAVYIUڐ4_3@aڔ߯Zâѹ:MGwR4cf&ߐr: (,"IiuKTuU1- IgӵhӂiC?Ԡ*0&jZV $zbdUn G2kRT́#V݃:[z@ǩO҄DZ˭ oH޺:Eۖn[&]L/5MץK * Ȓq5.#б]2i"kO=tbN 'gr91Rr.5;ZL+8,,7vR$UU8V u?V twevJlV,cQ"9.jVc1F_j5!}zt.)+Xɞ1$V$114Vz3Ys5Q^ր fw#NZ>* ՊGH*do&0x"킼QK^I޴AjH4t$=GjDn 1<拊AWԀA dTrjZNv@=[[N:"9<N3֦js$0OZ]2jl=SC81R&㉚"0qҮL`Ԧ1B@ў¥'j;~Åq2E^pDt5 zS"~)X~ZUPčos]3x'ժP fk6-B*svsQjzPǩq\?mI[=" }RD}յvWx\NOF!d5Aqol`.I\QCjߜ%V'l;W/AsR^#xT׊ܝ9rY.aY^̘ȭ8( FjVrXm\VRǷ]`bH]dqCe()m]uT^0Es$9`t=I}֍J'e[JɎ{xvo?!Y,_q5g鯥.GQ֫M |>Y-;HjoJpDUy;l Њ`feܚ W1Qj CB*rxkO= &N `VHi$Io]ǮG%TDT M 2VkI2k:HՂH}W#5Vs,t(~Pun*^l|pzԛ~A\"^v'W9$<6$P;㙥2{++##E#$I؉SpbSy*er1N3V"[A Kr@sڳV-F`LU0d }n-"~*G}c\1j_«r[ŧ*o]6(OZ8SYaa׶meָ9V' H OR[r i_.2q@ UzP|B9e ʦU۶}5O0aG1ڬ @TlYN ֤d8 &JX7`fpf? [#;Ai-iA[K -fmR޴T!5E[AjJKUM#1VYXő `UZd(湾u Wڒvҭҵ{x#e6'j]EfIR=Kږ(EڋD@5EEd,~@fU"6E^HR Yf%O?AW; P>;4݆9S=bW(h(h@TDsB3QQQR9#45EDMEQEI&Y&QCEMCQELOSSPMAZ((SEQA4t( TEP*j54TfSG4TQ1A}f!ZhaM4sEDMDpMEE L5EO4PĊP(&Lt qLQRTQ')z-TFSw :(}@Fz{|.&Bv_/*_ڟ+NIo,sYy9x<|.yht119kR?\(*YNd?VeP*pomiTnR[ޣ2R$<ڲ󩻸{ZdDb*H)N&}t<YtQi zYO1(qfP8$sy]YY0f$_zܴYavBu֫a]rw&=}n]v^_])mɎk+.|stX^\阞J&Qrm*۶0zQl" =0`p*ϲ fsڳ"2cjZݍz=i,jmV" 6I˳ndG?7a5ee;tep=7[rɉ:> F"-Qj I{OvXէ[b" SZ0dլ7[Bn5m:mn}`S3g ߩmn`dqU,7\*z57E #6w6/^Mm127'vٖ`&yAΝ5dm!RJ֖էpS1ރ6^;(TݻV TZ˂K66c ֖ަY[ ^ĵKwRuf,bsު׮8`5@3֫n˚dP*bcۊM.[`3T]kR~dܵ,]kV?0Oӆ -@c!ܘ8O=j;*W; 9K(!{FEQ}p#wd`T)bbb2c?4j0lGRX?=Qp pX& #֪qH'3HQ OIݰ>̏ىXSZwIdoպ)R+IFWA@"g~ݒKn8nrp#ڧk!-߱lfgsCӅb;WnV۵2dޖjxrr&)N|ۅc$*Lz\5PZH4>XFm9|_b8$imi jzjD7H{UȶSZ c8W0? XGAڣQK'RÑmrXiӐ-x3J^Xg5޹rg$z wB²YūjGz[Ğ1Z{>E׵SPh(OQE)YjHQR 54sD4]4UKEQFE4Q@Q4Q@QEQ@QEQ@Q֊( (54PQ4QQDLQQ5iC3\(6ުg@[܉[VOH!҅p\pGC/YM[<@6y?;#1vsY TL'&Qm`|Zc\:kdTkPkAK/jŮӥbH枛2F?x,H#~o4;*.Zm;b:Ejm]0}쓯Mzen5ŭ'9$VW<*V4`D*D~(c#v23#J拧uz ~v,Gގ^oӕr@@tz@@JXb;& >\}Bf~Oz:"޹B~{1>ܦ-$zҜQoOkS(OYSpB:Lz]ΩO~ikuegõaN=m1bA29J~GjX뻯;@֛%˅K|=)-l"HB1W0-NĸpsYafDM@̿ަk ;o&"N'5N ,`UgLtzW01B[Z IpA$I]PA&g"c5rJ}5i!0pQTiLn$L Efq  ١!؛ZV]-% 12:Vj΍Df*.wdIDXB]ac5,s[6{h;L!5IcEv)a ,HSTI\U$~3="i`O2Gq5.jd>߿XKG&z?c5m8,ĹTB 1`duCDD/Q\$:SSj*$g`{`֋||xY J * BmeM=w6m`orEYϦ 6 O#jTBI$V]lZG"]b>XfZ 䟧z-Ir=L2@5k1YoHT"G|UxRinFF'Y0 q%,,5JzL"HrgTd0ϗz'5`iU?ۤTfy57Ooq+d _5 >0:Nks+9W@+DY[ BrWBΗUۦV!5nuf>^^^^_>^ >0SF[WCp9X\v`> sqMzBaMr~]:[SaniyzI|NK20k7ٹjۥ[2T&8=kx9uQiR@da>Np{+c iQׯy{Yh[]<)YKӻpI$ՉdTN@{$DgA }\z-p8YnU\p' w158i&yULޠ ux )Vw ^N\U}J$EX F~k% qЏuwY'd.ښM ($Oҫ{w gjI (U+?Z}VmpsWyjnK;|~6bDvf}uI238(m$R7(mm^mdm0ϽW%$m3h52[i)Ui v cxj =Ow0*CFXmJQ}4f&} '4طq]zI=+EU 5U@=꺩{v+y\5EemRԋA.=w{u#l;26jѲʡ8:H94h|| @U@(pjQA&( *=Nh ?(A4TQA4PPASEEEf(EQEQDQEEPQEEPQEEPPj&Ro* Қ,EQUEQA -)A&&hEUuhj &q@3ފVhj*^=:,m2>PdpiH2j @s1r"dUdqJd=*qUw  w$Uv,GPlԬˋ`)&dirS3$);I5,c $ &:z,}cTXI4DfjnW[`cY KcEmYfi}%S+ۨ5J/8?c873Pbk_NVɌ] Ma{m .I'_NğjSm $XX-+&Rڧp8YDO)ӡKkპ\9V=:j;*ՈEm}9MNP0x`yDXsY)"m$pCTyQ]˼u|+.hl;\ +;Wf@teta*GW٘y;i,?w ݼG.OCsI_K|8p^7/Pڻj'U* eȲKfJnOzoitZVSh:ےH^Szt 7fugׅLN^0,usblO@;R]g<\\X,my2U@˷@zӢqcQ 2a=h鈹ި+jcҀȲrzt5ˌ:AqJ)rJ#I@*mQW'm:a*;s UU_8D%mtQ5}V,G~E}](b*1HF%G?4y,#.aGJͪ` Usj`ɐ:VkJv% 6Mg\'=/Ps\MHa5w*-N_P\nƕ,pZۢVE}4ץEa3}+6TnjP.ݷ=#k0~EQ@QEME}((EAEPH`ALu>*:@BjI8EQD((Q@QEQ@QE4Z8EPxEE STj4X A4RA(( ("h4QE*}(MP @ ڮPTw&`(S-pP&t|u:T"`m{Xs=OKhGzD;%m> 2qDN*%b$OO~…z"GZ؊8cHN>*Yv`,'v]˃N]IK]w-;XT f t\$`5]#Fis$P_lN1"7⹺zۮ"l%NzW93X ֪mH)!: Pz =;Tf.tk[ >Hvy?lكO*7HRt.a jdk`i{cQmGquEˌL=jwmJa ʷP{azRo_שdڂ qInJş/i?vWթ̚]cd[knA2ҿ7y*~{[>ҜN hݡvMfV^[OC=~͉3`⦹]gE6ʍ:.0RG=vi.LGH5K~^ڷ 1U?}Hf$1nk0r@gHJj˗)RrdՀɚΦYI"jp0'VF/M{U?'OH'= YalÖIʳ]VM̽zpnECў:RBA[ɕ8ce 'I,o %".Y;bZn[’H3w̝T` ?QȲeAV[Q&_[-7C\&)~ٔq?55T=Y5 j5p._\گխnbnd#wWiՍ۸5x/ Z^{}լ{s~7?<7xE} E?baS!jO+Ak0nں5K'N>fIn+q=zrY 'us*Zۤ-1fMs}/vmC31I=~`\03[Sse4\nYGw5. W^<3{vXg$쑌'BNIY(EQJ5zg3sC12t7.zo mʵw<*Th9r8U?O&#ׁ0?* 9Et;kV V8kx0+{sq+5x:tx5$((-+J1n2aV9a:Tn" "zl 1V:ѷަLޝ?ubj%HC7\G>]O+dZj&n13Ql#aUHQBAc=%rgޢd"@]MMY 4cɎԬB4 sVo^ $ERQV(ҠU- 4vWP+gj1 A7A40nAڡo<.1XoI`$dI$|W#Օݰ= M*ϵf.dᙍn;VKUJ/=W> I'j+qAϽB+m:!r >’9eI⬭Fv7 vOG5K[M>P|SfLsW gv5O d'KqO>)m1G';H!d~QG}HEA(A4TTJ JhTTPP82):E3`c_ju3JDAPh4@((@gQ pS40MTQ"hI\Vr@*5ewLzUU$Ԗ~+7Ъ>cLr&»I9x[5BmHfF0b\jD1TTgH@<OU iJrorZ$cTgaW <{jKޣXIsXt`ٙL4&=>?\_hxuᓕب8+N`Qp m dqI*7n@~TPMۈ*9bK ҔK#ҝJ$q yeն/:VnMQ+&@Zp%kdoiQzm4$nVP<Iȼwf);r= /'gɃٓPt'[G[b,sl/; \+c]Kڦ=6봾7c[?OѸ6+ͱ3G!B̓X}:jdj?*9ͫ`տH-xUpT0'.d75F0T{-ĥsYqp4r#w\Kѧ'OT+p? Vٻu-oSbmf1DgͱY IŦi&ۛ%k4].Et;Mj񍒷Jj}$$=(9sUhP;Hf Ac\p$c1+? N螻WV=YY]{쾕qZÌ 'ƩՍu0A~uׂ!u (g6^ sVQO<;QWTB1u{jwK\? >Ʒҽur:>^lx\ v*\ׇ?,/h/$^|>׋FfKH bSA75>el@;s^Z 9POS'$_K3nxwqKs |wӧY;dC+TUZw[Fpoi~5fa[a?C]8k}:%P?uSZ|HV4\@܋}s3(n;34+ ?JW.bF"Csj?.A? OX1$PTV!QoGIc ╘ȫ\E6\f1`Z^ jF橸Q'pFũKad65w̞kC[,Ӏ2?F:JX瞃X/jBݺdi2(c8PI=ZC $rqZ5šޘ$ZQF#ڨ%swnީۛ=j qF1P9WZ@˃Qs@U]KDӎ) #!qz :Um g&)LYq kRPP ~7ʠyޫw֢{S# Tܷ+q@*q$<\XVhPpYWso!)?pnR9nbfq]cM>?uuK`[*VdyԮx`w<i.*?涾YYus:'q* 0Aڔ,}@ryWr:.}1Yh2FLV{RDk~/̦(*(4NhSEVQLphQRV>*sҤP=@2hT8DTH*dTҊ5?uEEAA -7LTET("EH"=v'$QR&GA{T!M XM3N 5AQ4-&jh((( Q@P9 5ʹɧ qR"!$TlDѹy7`9e0igjwv#˛@2K "ٶ<`A @-c~HV$_ۿP^fff" >2jl ކdzQb{ ڠt֝8`CEX瘬@UIti-+L9ܝ,.;T\dIRʗۨް" ϿR<ܼG#Qbr&`ϵ/BxZe4]`a@!L>IsE{RA9t~*@EkbDqAPbMjH RLg!<QHPB*Y,3nHrG{g㚱~Zȷ5<\fΜ3зMRגvFݸ@(ԾOuou@y G}~H!aXM۵^UGM=WQ"d[޸#vA}>-;QAiO7aZEҡ^XaR'|2woT!3Ҟjin]}6؂PGSǗ\P5v8/kv!G&kHYoS^@+r9!T)6`ڐY]=?,{MMTَe[wF(ڲY1O;d殯 ,I=&7T?JtpLLSV]Cn+']/;c:[  IRZМ`">*hy0nH( m>KMims}7;X*f>5gkEo#UrvYi#Zvޱ#WOQ26+o$NXg+,܈h=ijKV,Pt U\ 4"ua }k;rSEG}7EEQ@QEG4P5jh 4jEE0=h1GҠ4Udf("(`Q44U P(މQUSGր*H4Oւj"z("23B<BSJ4'VY_Ƅ)>_Ǝ~4]EA U5|Pj(&( (&ETQ@⢦ MHU0lT*_+{ޭڞ,DqP{TYҰ &+PslЌIQȨ=GqNך|Vmf7Yf>+5V#pU;͸~*|eg1<>mKZ^1DқWKz{ ˤH+#ǫJDc 3qU `U'HSUcIMuϩĉ4m 3EZ|v6V 9b3o2-@ڝFTM =rHnp?J"`sUWZP?uA=yb'bGPT֯ 4!btux+6v>@ EQmkuu]N$GyX/T0h 4ݫ<=n{Si[}&fbs3#޴ݹzꖿܑ2?c:)S  =|]۹iR氱6и3I՚Xi:S+elL(?#-nE;{W?ĵZU?nE>}~i ⎾jM){o mm4 h˫?}\ַ׵.n]?j@?aX5ګګ~瀢v#RE-޳xYm,$A/X6@V }q:Y,]'/=Zm:l>+=7˔KZNOSq* sSqUYx RPAPfk:f©GVmzcփ!F^*7}WYJ1Ky>U ]K껐88+MSu.Z|K`-0uK*̠(Ӏ&e{qtHA ##a׭t:k㕦^ZkiiJiBrj081 EUmHtU5״pkǿS*]Ӡ"0!ơn'iDnB(֕bd(5՘[0:T98K4)#l4Wr܎A&9A[&<{7cX_Ŭj< 4-V*G 1/^z( Go,.²zW M{u(X-zA+8aFÐ1E@cޮ]/qTu ˌ bRT]EXup)K6hl\UU2 D;pނ;Pj> IڠџQA&j#LTIفR U OGQPg>(j4mڍǽ$Q w ԩ$rAR3C< ,晈J2{'EM˃DOZRILsUZr$REPMLHS)hTQL@9ZɢhL`QvrʚQ3 b DTfqԊ((HM;+ ދ).eDDOXDj FA&)<V皈űYu٭ C 93P٩@YvF]'%7mn˄Óbv,hڭv}SL-2 r@NVX*T`C1‚df:}{…muH>YX PGJ}1X4øTKtGR*gl_}.VKajɫX1϶Ua+ {v=GbA?Jk NV!\,@1瘚TmېoEcIMU]unl သs7]ڟg:q=*{W/j wAb I ?U^5زtK<#SWvpOA3\CD+ 1uȎq7WݺtFҭ H+?>qeYN$zf]+%fb"p*:fmSV-)nؒ]*Vrk=˲pE-{]˷-h9&LOws)Bk'Nݹg+i.elnc?X^<2/lj9?\WM$5I{^du? ܼYyw}4޸]1"jڳbҵ账ܺiYΤ^ym>N{7xŬGOk-X  W5-u>*{s˗D[iv<,`sٖHՖdpK6L}m9[{I ڳ($BOPE՝gkd`kw1(l#ް+csz}4}.~}dKHJ '%ٚ =geAzۆV3"pxݪ7Jx8}-p|Y2't6dt5Dc5Ĺ嵻gcG s-2kn[Mbz-Pz`[f=Y[]ŸۺTG=Egqn#) ^=\[6fcbV\-`V2;Z5^!y[Q:ztgxn>;ke~dѩv&=ǽ}H;}yG4fh("sPjI(T:U$sUU D(g3sBF{P,QIƏ:TPh=I74hiJ'@@\ED!;֛uѸ\* X3?51&9J4YZ}V0b sW[P#'Ձ9Gnjba(O=MU{Rv"yN_PVV eVc0iKV12}N%H#?85 ⨼.'⳱bjD0ylw}n嶑EZÏʨ{$8aWqSGAYN\m˄c1YV0V=~U l>+5+j 03ҥwxͪ0U[F3k$s֟Y9rhU\iZӠ*""+r՟w;j\}#~ 5K?N|~>';+r]w 9$b*ؕ ~ͶzSӿͥi|^~mBT)Is:pdAb5Hf Q0A]mnom履ϟhKaAry*Y'}x e؈ 6#;܋n'_tj.EH"O9Bk=Vӝc+|:V{цc U_sq}\d֫- 4ܻK$3]quYzߠl pDŽ:v.0PhLM.Id52U߼%ݾ*TrnNMci.#m˘jw/Tݷ|KqS{+b{qX{3rLݧIWk`Y_1⻉.p޾,!sIz7AV^k_=«X,@aCo/;KK(xsXڍظQoRcbҪ{ˍr/Z䅶Ɏ fԖOC}wSmւ"7 Q,O#vWNc=:VME˗o6`cE縚>Tjc}⭎3f H津t<4d Sjڅg Fb1:sZ."Yf \욒ŇzU[0̖i.ܹy\"'&*mZ\a'*V]\4SkjhnMq}&Uq n[P2Vu6E.8.5^EXUjT11MD((("TLP"&*ih((j("WUi &GcP`=Jj95t #@( ajj(SNOJ.*"QP/"Pm#4- .j=1NߊBT"1DsҠxRA,EAR(C/QEѷDQEEE -Z{m,WsEZ_'h*isڈ=TA*$h* < Dy#{QɊXVƢicU)@(B& jN]Pf T7"VEۡ5-b\JgC3r62ŗ`F ՛b pB-dդrTPRbيe;LHU $]acWGLBlSQ'g*2,vOHTGKq[sYs=^<~_ż%Qvp{i.j{kgtFͻ5sNkh@E_ZUՎkH?K0$ gו%XsS\i$0/0E=_maM&_,/R`f9a<@~+'/%e[ }~v TD5uU+H~2wNj l-%I|׶ü3Kor.gzҸa֞֜\^L#񮖡[+2#v_umۍzxf}.(臭ܜWdzo' +_` ?]>-VI?Xq]=vޒ7 k-\`59^κ02%9yQMی.I"+:O/sMa],m ] wU}.+]M˷ePoQ'\ڔA#wS-uF*FOu(P;efjQ)?B]U,&;W(#yn8 &I_߰\ q^C-id#4nt+Gko\ws'QtsdW#O6 #mowMtҝ8l72FAMf_ n ,]jBZ 8R .3kd[T[PQ'x/{ϙv>YGq_D_: h֣pt8>ֺq<UnIQ' F Iv6 `S~역YZDü3&>j><.kCo V۫oi 3#j"sF-=A>@9Op &z0r'zW .r1=zZ۲8QnKV-FS1$Q+NRt!gM_2-{ 1}xLE77n;\eG8jr;]6 csQqf.?W>=brWjn@+忷6NaH3p>)~VZ $LGzT`n.)8MdK~qUuA^ ЃuW8uX I Z^ h$` LY*&A9*&ϲO]yF=̱3Znw! 02jkSmݲj Wf&'ްjm ,|bvˌYY۵QDeu{ȌڑfA?5Uaw8WIT: ps뵅8Og_@zAUcx[pA "힙۠j$GUVWJ@Rކ"`6p1L[aXZkWmyZu*$/YyW`U~fHKNGTet#p=f]ּȊjo*طwQR8Kmq-LZ{Wm\>xKdط2z-Ǚ+-ؓKSt[^}3?R7@r%%5N^m4}ko ѸIdXAc{T,ӂ$wY~iX{W;dU.lt?XWC wJm3+J.7i1״]Hʵt~ BK/iz}SQ?8j$E MED\MTPOQG0EuMQ?~d{L٠0)7IR= iZN*$PMWS ēOhڦoƘ?8ޠs1Q3 )1RP(Sȉ9u>iMC'F$M55+jMM;DRT;SVQLH-X"R?*"AA"8\I U DzyDUf hӺ隥TYSVTs?\mh \GoƧhMDO֗gM ~5"bf>M4U9#gj39`A暚<ɥpclRYVR*- #Mَ)@ ֥ZEڒhE9ߚp&pf+y{YrS :@R2JUUſIz+VqIp܀U鑌jvYȚk33#/^7|51K> |x2\gr\jpOU#<795ϥw]x6> {ڌA몧O .D 5 'W]hVYYUI=MOn+de7n"#k K FOzkVBDXwT߸:gMoj#%{:\}~R.p2O9\ i,^ԺMx,@f+Ogu<\'V>]K(q?}jd n`1GUwmԩ+e Q R c0qv۫›i81ӽX+%[5J \L>X|SUtbr\v%O5aAj4lz^  7$T!I(ڭFHޢ2d gz˚-6X,bqҒWqCo=>SنB;WcIz+v~;ˍr՚nh.;H#Rim퐀@|UU&.]rTS"H I+v,Y<{SlP]ZğFʅqp,0 if;֘ ]5^@W|ⳓ+lK %{jifbvfԵAFk~<w[MFյ`/۳Oδ0[op32@[jwcfx@'ĞZ-m|͡U+#qo fev^=k3]7VKՑpn?VW4 'YIran3զdVo>-v LS\} 7@S9WW>k/ fAj<W<{M[2nQ!FO/ އ(Z;Zm>ҾkP<d9XyY5$;-6jx˻gv#&#թW)ڽU"eWYufs}IN 5adiEA&$7 8KZ`3 6n8T[[SfӞ՟fc ԃSI!LGpN(,'ƻ.OI.8G>"z#*/OAtAo0.>`$p:ٿ$nhQpg5%#^p?ԍlaiABŋи<|mxkS uU6!A\s79;H?XEA&>ߙ4{EDY40D֫pJ }Aaڒ.Q>¢m¤@PI& P9hlT xp>P4E D(S  #A i PfzsMOjhu;U Lb;GF+Lq4M1$6STtu&$Tъ642ސ` S#اTb*b & =vX1ބ"Ia%*SsޕI j 15 TR{jE#MSi"j;5Q'}2g Xɷ{2Iē09 F*2`qZPYbx->p&iwWzUZI~bo;s{R+<<'KgOS^֍mhWHw+tcӷֳxw:jS H6)==T,'2ƹNN]s5vڷrf6Ё'Վ#VZk7նIFk\^nP_e 2S ™{Ĵۍ dü6%Ѿ q9 bؒ5/viRU}U3⺞%u4`TS8޸!vYG 2z@9 Ӡ;N\/K\`WxƁ7v?5įihᅥ(6+9!p~EwsN5Ii?qZ]b;EyO֞ƄC{q,=9JOǼ0[H[ȸ7g>*uD&OqdF*M;(\K;2dX]ڶ PgxY,-YԞ:א{4Y Eֲ&ŭxfI7[6^OaۧZy|w^͍Iu桃\\Y,D^t+lP܁=>c>%@[7oS_.\𪛁D 䎇r>.S$qYf\[rߊ m+&d+0zckNȇnXetnG.`?]rD;̱9Y sF+L70(PIS}`D04{@?զ#aͼbz; Pp=n[69?ڮ ʧ%O'֡V]amv?ʣS*'&~.TƖzQbͺ#WuKրe'_SpR=ۊbc/yf;|{򖶤L}jڋj2f&JG&_ML((ڊ("XCf gSPX cQS sQ Et4HP#'*&`3RhX1FJ9dEh aS5EN)43RR}k< QjC 1V $U$"qh~٨Mݒ)eI_TyLm$q4'4MrHjI3JWO' ~QQc@sPcR@`FT(DȢS>ԴWmwOA0q֪|T81oAOl=苒Z1H#68n*AnH09'wPsJ~ UŔU~cfhbA;zzV[`DL0Vy"U\N?aLp)$wbOEm7t5[@ Ě։Fkb+BB,UJ1׭C1qU r",JVbU I@ C<>*,g i,[SJq$dR1YW t@ԟ6QL'Vo@X7a|,7 QOk/>]7u=so6bAȻp"[,́5ޏVݹt ^Ŷ &5zUr#&$h'Z z[-;nӧzr_Nq[v:1jd@-X'K'zZ o}* k?[fSfA-bͫij@Tk^w}2O\kye>?66Mݰ$3sǮnV-<U1[ڛWu.j eI v"'T^~+2;0|f5ֶv?K!:itWOҵ;'8ɩi{i^\܎1ٟ|F ֍T7.&'gӏd}ǝ;W<tիAbE׼!`^31t] +e*W`qeOQ.kl+F',*>)w)jӶuT-G:[Vٵ7mܳ6\mҞ1r4/r\(p }`+-/6ucrY;bFi!1{%Ĵ'k'S"& ;ԜZcLzG-\`~~!a--H,6?&FG]ʗ-%B;O$W!jQVR>goo'Ht՞GlV1.S.ᮏ~ZC _[۲v>P^qnp`9א/MfT{7GP߻⤅k$*b$ϼV?M=>.j{/ qjL*O?de( OJe ^1, aA'μ־˂XΪF5Y?q#~sZqr_msؚp pK}ozX.ɉ=Oo7ʋJ[cQ}7#3?q?;y;8?h=9;~o͢*sDQSD*j F4 LP)Y;1H[ڂOjޣRgUxE&_JAMHڟ┏jEGOBhڦ UMM="ҷ5MI9;Ua(ai>LvEpA&waInE,=N*ZvXnEJ9'?)I]M#4qK?uYpLٶ> 4igRdȡ HR{Vǃ85J5ڔ$Amic"CH[3$=GB岰zU.;DxVY RAf֕nI G.8Rn=whB]( TnɆOu "gtZ4et{T}զFch3c*"{4gDuGq\CsI,n`4EI`2E)ocEMv =:U@Ն7N=,'3#,$.OJ."$i3;&`b{E@m" 9#>BHYYWYh8|c.1hڲ5}Q3ܖ[!3MGxvYymZ6C1ֳztjڅbܺO׵z/xfcoWTcKaZǯf\AI񛀖'%~+XN\5x~EMs71r_R㷐_sd>0kqqߣ;IaaxJسvڿk&ŵn}Q\F0DApN:bi-k/:\~*/+Y}Df~r=zVmQkj-t3si2SG6ј &zUXW !Rj zHb"n,;zgq1/R7ӻ]basl7AV77k4f !q/ZZhC}k IknPa#51v:/۾AEz?Qm~ݔT.bGOSu֯IEl?=$u%bXuk;Aud})5]=?&ܪG^jojͫaf-brx?<*ſ }k [`:-{CjZ֝˩cg]EEp}S_ckы< *ÿo)n1vQ\-obz[khXWZfKH;q [q9O8۵FbidY.y)nn9uU[fvȅ Uq.A ~_3>9=_gw aAU;UUU]~쯗o9+3mT f8ż ӽB#2ygRO@gv3Ifq >c^:1qp)_5~nY_$Z7 _8r!n^cj7F8cSx%71Sǵ4,t=q_MPI Rg4Y X&X'}iDԂv4Dd@A,ŏaP:ȧ⦢:*'ڔ:QRHϵ@H|R=DQ9ȢtIܓ RIQnUpXGYCXH !#EKkg1֡~1T3iIH[HS;uK9T$OjQDh'CcJx?ڌmUqU~Iv۠o t5ƂI$qEGk4a+y7Eޅ3F\OQL(o:"•V"ME,%#tuw1dzvPs8bR]"cA2S @+OB!K-`=#m[IuDsqMkѤdf8v+0 ~nE"\?TԮ*[<OSWo V:]~({Z+f4[kdA{YW+Ky҃ f V^|O+wE?ݮZ׼tp +՛S ɷX}/ɬ_zJxbW >>FQHfwcŎMXuWm.T1?u2WǔohRTG\kH M5oZcsEkAsֳj=XjwxAͽŎ͟1@H}E@zͽ 鯝oJ޹ZdL|V&rֺZs0sY$GR=>?&{sݛ#?`D݈#՗1*83k ~jk?µRl¥SS=5e.m UԳ@kHGE#tRpĘqp)7,>j)IPwD5V=)VUc ٭nͥΠC=d@5ݹv:9F뉓Ytݠ[zwlǀ8\?S|~ݹrcs_C{Ϊ?wǻrۖ 5VW{Gyoiq~A=ibhl[MRdc|̾ŭn5C7֏_+nڵq[O`A=t^5:m-MWlr 8&il4իYh LϽfۯ'oN^߇n2NfOnq8'2=WAf;]#]'S-=>  ԟx.H2z ԗ?<k;Ymmp$2qIht -+AN1ږi.} B3ޯ| cFxz/7-Hkt33 \=+/́kXz);O+x0#\`{J@|Ap :㟊+J1:eK$0>e'']9Vd"Rhd{Wc" YwGRWW_FUhhR Ƈ$עg`漍$h r>?:ӏHa.XF`~ݸa& 3ޱY|eO{ a`3]:gsMm\xO,`WG7V!r'{a|-v!g,:}UWt Yc-cl=vyerZ~jm\hg]\l1:h\_,ںYv=Zm0؂vⱺ㮿W:n:ܴEp%Sd'!g:k{GrUAi: Vn[ӬdbaG8}O'/>>@穚W`.&pf-h jtF u+<6B$ON m-6JQ[>qnI~kr=@pOS6H8 PxN\0gcڠ (rWyOWK 7$n+9`8=G5aoۿhT(?~>]v2@%JI{n8cۃMt߻$-7].#ǫ2}[m ;p?J&7iJGXm1ֺ/ks"wpr1tV\N2Zk'^$5nR3";V}}m }^.A8;Uors=jJ@'1U2 :REef0p=}QČz 5'+5t;(H1WWiŸwOj}-n|#0CoI$Q?+&=ŜIqb{#Xp; /79T;BJK~1]]UJmQ =?^7{y(@LnvY@7~_zc$;5A3O"s*ƃl/^"#b>'$®@A |_ţ$0~ͲrD㺪-[RŰ?߷qIg>)n.˳,G=GN4;)y~Os^ eT/ ~F$s>@#.nxBO'cH",@d$\'u>*Xtƈ C4fܠC S) )<њҊ9@bYq:Ts(#>iC L tCݰ}L=< 鬣]műª׏ŕ+BTouD)LLvXXVg7 (c+ۗk+A,'7Į= X|z8F]PߘiFQ8s8#c3sHgDpʃY+&X@4WU'H]1o_7oh#ۼTС椻mSU(mGo|r0 >c*.h4vXic-f{tKHq *)w<`O4@q3H7 . 57T5R@Lu;қqeɂU樻dÕ[UIB<>1URmۯҖ9|fF-Fn@ }(_dbY$#tz`b;})nYv˨ZLl`q#ֵ8r=6W2 LjܲnK) WA;{-Z)8Uڶ,e;sb~?nWc|~|ERV8cc}ۻ{_Pe#yof޿a?kzGX9^ü1΍47t0emo'ѦզH֮nTsjf8fI }Ѭm &ULun|jYφQB5`0*Cw^+ብ_xKʪ o L0gO"jN_<3/o{*wm9$~ڷr%Vc3<3ʽ|cZBH+"`X3{>KyL7GnTI {VotF}*ͺDRKTinr`Jw\Un4 4 {ƽu7J@adFgMsm˧?~M7\Ei;g^Vڝ9K:[xK96t6`'cۥs5.8m%VwS;D3ڼ +qX_KğZ9bŗȈyn3rj8w^_cPc-_3Av5ֺKhQz?{Wgôwn-6ͭ6˗r![`c\VZ]rZ,UՁ[wڲ]2@ΣQvmZ `CF gGSֺJgikvCn{B+%R^;ݤ* bdVb-c9|m͛S%f4)vZvft[\=|W#4mڱyس,PNGg5˼d|60ȘqK{EㅟI>'f4Zе6Yz;sCߧ e_+^šqBR@Ni](pomz޼u99&kmx{U6[Ss/h\+7} g25w+itWKAB;` R<%. Tz}=*67}Ub RKWڠE<ǽdhL%^n]@ ⚍E2UO9x+۷i=76im W{Pz;TyɈvQ61${֭:zuuh6F8zg=Luowm(Vu@oUwﶶ^倆xw,rAUs:rzqp\LȁdM&0iX[." =.=o0;{ׂwWm/-%c "x]8y|~k4r en,Bym73]s{Qaߕ?.v^n' ݿ8{e?GЛ bnxq|5mo5A9kM$qChO[;]bT1Dշ^xXoDH_-vOCֽVA @ɯ3-$Y(6I3Uy-$o.66NRl-oY6d:YM jc=?_Y߼46c&g,aVKr] Ƴr9EnH d宱C&ګi*})$PuAuE#{R#q33&\ N@Z7)!`p?\I_HqjO &I i\66k@Kcx;rNyU ٜI}Z[bԖ2I>j,r {۲F|矻9oXfw+Ol,~ʖy.~~+,5&1 SSK̜@rSSSAɈ7)zE/{"iI "mZO(.d`Qpۀ,zV$GȒIJ[<JƋ3Q#l=⡈M#]ޔڦ @LZ #h`S&cS\$Ok#n#i x) :N|vYn݃lL~sUdfkXg{~^ -6~ҞӃ*.7Z {V,z&ӑPn̓gK彠b]ʪ?ڮ];ؼxEam$sk_WK-k^ãr>kŽg.틇WvA<{C}6QQVpg9Y':NrpB=Rgzl~O<}eMgmz܅> P٬EX:z}:)ލ/XRi[&<&:qڱ''~Wxu5̳rƍ\+zD\]?\ku!´ ry4|ƏNAR #\k/[=k^AFVe-'9`Q9s~~)V.*@RdWC.i?qVcl zS=5]9i?-4)uoYgYj.bynhPߣ)1c~5och2@fS@h8AŚykFHf1]1s#5߻qm76(Y &˗oˏslX%GO>J#*x6(TF3X5~&02b>kSuU.ˍȈX5kokNpcpdkX[$L}+|go;6IYDjڽ)Z/kܿev -ʯG즧NGkxyNRk\?[N_t5#*dj<;U{K޲nӺ >X;&q3b YSV>wR1>~5]ԼB ?:1"DH9W軇=ECmRr@TL*b;YFn;uDt$epc-?+yU6/`*@'Ho_a5;'i_1Oo+F-Z\lh|іc^'z Ę Kf>xoUGp.~>f|tOU~0 |mkqiϙ ؀?=}|o^߳i#g/AEkkߵ魹n7gNWZy+xpfW#Tp-p+56úйW!9ؠD [zf.tl-W5TdF}u6oP$/,W:=`C|ڸPc]  yP g IJi^ ~Y[~r귢Y[j̐~*NV`"U׏[VO #sUhW6uVzGSW[Rlr2=T=C9k}Œ@>Eb!Pg.ٙcQ(8Զ̞k YG"gmj-ۓb׸P.Xے׬M:+q0<*#EFp\qC)`Z{_?P1So$ _*[28?M@u~( tԒav +Kty 3 9'<WxY ?]{֧"&h S= >~+j ҳB>By5~Mc0SKߍ `vo0MAv=j8>h$I&(Ț=&*$v$I*C~4 P'ڢ{5DڟD&j*Ԅ-GL1lA&y}0 RzC2hy,Xڍi#L@'1K 1!>{SȜ*G4@qR뉟zUuڙ{stbz*? 1@h usEś`PM~S,ŒzPoQVX a1Eù3UNsM4bqS RgT]3*$Ai<Ҝ?E wH[TZ\֡ݜN'vxX28K^ ~*Ŗ2;jHV LI6+D- ;)VzZ.28i8cM<@̚fM{rrzUOꃑH>*NjP{@3L݀S[l DhTLZ(#UfѪMg 9'5sڸ6ܗ8>аSJo+3ӵMg+'5k$Z[ZͬS:m&H=(n6OZUI&zZx7W=SMpk9?y_;"ӆڠ`mp=ƙYpku:w3ntqZo9w,@ۀ;~6{we{իett\t ;@{,|UvI=`a[5@ۓճ*JyS߭0R(0ڥjT#x-ܷLVfBOtB ҥ܍r۩ Y)$wi9j\`Y׶+g[@EXs5T=D48`esֱkiZH 8Ul,ts " +Lb* 犪Ѹmz:&`R_F.:9Ԅ3H+I}nwlcۥ5%sWGVhNcި⩾Oݹktqyvp:Qb-It2Ww֓WQme.*WnP9Sǖ@?x.$/~`FcVJZ-ZbM 2?g]9K|rm7 ?fUe '$Wx]n5b}L׵ ?5|<m^Lu57v2JLz+sSgep` 1#+:x6>,ϹiR|+=ˠO?ĵLlmh#o~Է^&r Ciq?x}^%dֱfϻgnq8zVgYuYf9ea1'ǜN~9oxIz]dF[zGH^f^sO_UW|[ ] Fc'4SVm"{wO˜vݳ]^^730Fs 9ikQqܾ0B?޽g~h4׬jVe=f?C]Gr'i^_7Ovx=<Y ٵOoz؁`'#4d=mɵpܺG#oNzyl,; Sc;d2;Hþ냪~'{x[ ̓&c:WW,UN;VDMu$s~)$z5{ռCζ^=$ 3j~xxqKMeXdgVht5lZo@v<ӗ×nXymvhK`i`=*Qw1i4'IqΘ,` ސim}'i*K(xYέ21FzAu6kw%dc];Vum.̼~wKv\ԆCqۡm52$n`L{|Uezޣ U f/27`AZEtjam4+͋MamQ Ęk:>s?efSG_.-N{WG~~[y-k>kmG% e[kXDY|;QxNMMy/r.^+ǽqu"Qvj|ǨGH?}tuwW.,,|ͤ_/ cq\*Qc\5.]` D+'/xΟokl˶mlܣ'+M o3Cuo\>:u5淾c◌+z֛Qjٺ.2c'?_Ej5Ϻ|L+!Pm~xZ hS橃+.@@ ֽO`OoVg׵Orxyx+?`[F7z7qν߇6xkj7 *~ f/!\^ Z> ., LI;;-}w)v6 3{GnP,.#FQ}_!O wܳv5MA&eY}{MO\-^GĚn'o~rj{>ΎwFg|z^h_Kr4IzcVoXym,`1f;u-ruvs ds]$% ީkZtamnޓI]3~sYJH<`ֺ_eܺXz_cی<],Vtvc å\3d}+p/x xSk/%K(zҸipҺlp1YX0cRָ)11ZP ;f3H:PLBgG~ŝ68eA\Kfd)v@ +Kg:zEWȮbgyn~SVLdy'w‹q FjfC;q\azޭ-`=2?_@<;~`0=KW(G=}~pR`{" `~2*ʇ@E[֝A}芑A5_DDP[jzQRhJ:)MDJIƦEFBf39Oj$PH~Fb:T-P셧>R}NXRsE|N)jG>54)Oz ?J3ڠqQ(oƂH݉XG1cJrsED@& Ѭ4ߍ0ȘPsMN~*SHߓP98b=g5E=b96hdE!i(jh2meV`ҺqDՀ5sIt֦˲QDX̘%ǹlq5\v*Ń)"2}e~Xm9` #PIIV4[]vރqB\0pf"dMF@pq+j۷di$jjޣńeL=5+\ϵOnm1jtKV6HYR.j,ӯ.>멽;x;Ykz`@ Sݛ)j"P6 %L`*DS TR  *fG T8jk,^-3D{{ Tz`O A05W;B}Ubg4L\)uʨRI?5j;(\ Ȩ<9Fˀm&3T_ ֻv(0XP˸sU7")-5Ԇe[Y^In;E5g޲4m][$ӻu(u[lK3[\:sU\@cnK4XHj`8[iY7ukw|ɺa~G/iUvBROȮր.[e"x%peCuߧBvfPʀb=m<<'$>Mib [AkM-{wvs3R pe>^&Y5Jڣ:aG'>ڋzucg~͟Y1旑E떴n.ɳh3=^m_WE*YdD:E+qg me#G53EP.)R7Dl(8שrͧTd smIn wFGSk~:3FVGOj?:?OkoQqûqgK7t<ny2b0W{zQkQ{WN?<f-K5AϬۿo޶]m5^7Yj8{7 F 1Whh,bd:OHT|?ve1pnڜ:op|TU<0$q8]]F $dp3Ŭt>݂vWޱm|}ui\ p})|[6Vdr}خŠin,He~?k:wE$s5 *XDu#a@<j߸NDI. ߭r5$%T+QuPU#k6yXGXzgI=Œ`1^_߶XXg r\ DW.]QwHZiDG?[9y8}Yߴ߱Vnxy.xuٹwJ:=݈/lo~sAy'Px?zN3 m4.,eWq]>9^>>n^}_|kVOAvCJTzI5T%nY10&EƠ Ř0w /nEs} Z:\[ Yi\7v?f|OQۆߛƾdd6ʼjL,wGO&x[Gi0ɓ1Ӈdjh?G\ |Z]I6uL9gؓ5 w*ӑ깝}5n׵ `+ =_0995[:K-kUwj-oԆD1v_7&.XXEm~/wZOڽVƼ>Ïn[z?/j~j4ږ/yy9en~:~ΫEUs<*ŝwx_+N ~ӷE1ZK''/qsmxaaM}iA`{ΜPӈ> Qߋ^Vu#Pp {֯ۥ_ivl]nfcf\Ϸ/fkM|"L`HX_ۯ':]/!e3]]aQms1Nk{-w!u {'=qR禸q:W-/WdsMvm1tk`NFX8?Zxw<%4{R,j-[t_ѾOruui O '^yٯ;-Nt\V Oa}+{gCc Wcj/VlR jd:S~|A~U[;m?8/8_֯S6,#<zo5!ul^cV)h0_}~*?g?뚕iz1'˚"OlßU\vvUnc0}]_?ZoiY5Jfr=n8'L}k|CBίO鸧%qV==O$Ϸ}n_YL0?dj!h$00+6OvH=Lvy:[WNN\'tc7uуkx~O|8Ghdk]l !q 0dkWkd f}X:sk]Թ[N}?Zˮ˰1+c@bt6wYcڣPw2y5:3&DH ZF pbw33Wj.pz}$T-,g. ǽ[wqp6'Z]Ih&08e}33C6fc\mQܰ OPT1[IDzTl!G?#'ec^Q $ IPĀNSnJ W+5`{x.`~_P,~=d&:fDMA[TN LQJjI4T#*☑D(\0CsQ{EAuzaq@Šh,TS)K1Q$dIzi>w7RAL##,F*7/j àD6 IbhJA=JF,Oj 7 )DM6b&= όuY49"#(oQ5\ɚsPJA&iiT w&#ԑ8#A{9" (}N*>(ϤcW8EYkh-5~蛊IN-,WޭVp ;fizXLW$XS?'ڡ{G֫ozOZZ$f*ȭLNܰGZX ҫ *i,X@iw:L<$'3P89z[".nzmY\@G>G)p=}k$摲c *ua pD/&`րɓKawZ h%Y,JQaXjE-ySXWٮ]Udd^Ʈ{F{]s5o,Dp ]- qTMYqnf$ SV\S[pk pwkdF;vp8VzW2ySUZ& Jv 0.ǿqVt?J>ըw1TҺa Y܆f}( %&@z{L )IHqn~+wtU06ta#V~Q?ԬA9#j@ N3OuvzP3F`Bp$HξXj̤lN{#sFk#rFbU6>=՞Q߅ɮiCvjY3#ⳮnۂ0jfSɜ)}kJeUf4-\;H Jiȶ[aiffOH2Q&hb7\A h}ߕs?>)`(&e֪od\늗hqbafj>'VawW?>5>_.ҷ跱 ~A.#%^L@~uk<;R5b.&QeMt!O{GWrv|]Y+SW;|4eHkotYm5^b#VK]8Gs.ےn7j᫨]]Ro+gC[Z q;=-ǽhݵom 29Ź593B)T"z{?E_>dԋm>9+OwWnG&;5_+9rj .Yp$0h7ur[M 9bd&Q>njTï˕Y÷:;m#{jwB$ʺ 3W/|֊ݴL|xh~՘˜'fj.. Z[3O*OU%6~Mv5,If%}a^wPn{=tj,xƻqo4${{.Cn:c۳Rwttߚ&H*ֹ^1޹Sq$|V}VZjd#^ΚŖ.mr=_J z[aK#&XyoI[.X $;5C:QЬ6pg򏿮z7-^ղBwg:u^Kga'a?ꬭT%ҳ1~k߳wW^?~WKn֞7^CQF _ԍ q_f: n-*?'1־tK{Qr1#ǏnvNp\ʟ_ٽ{\]%o 5QyּOh/="[d{Yq8CcQ7D*k0FB=+ieS6߃VNdmp3߾yZSF"GZ:ҲĒf ?ڳv9|efi4U6[e! 5[44Af2Ť1?؇S械MdZѵZqWֹۯ収3Ƽ@#2Wu]6$F] J/ZjGYsκnbb}h FxҍMwN 8'?x'PnIVҒG_3ןN2LS\/;&[i]OǢ:ʆ'W޻x[)gѢ*55$}1 Ǔyמ[Htjpy)?'c^?Ue\ i+nuhXjx}ۧKq^[YyPm̴|?\i4WY!ȓ[Oشu6i*d?7_9-oŵ ^bϽfZ.Z䣂2팓[1[{4]rU'⼧ɱ(m&CGqlxi, 8a">T=|xÞ[v ?\GdnuB>j˸@n m"p r pc U՚|,QrՆެ~9¼774?:^$OWVȎ,_f#ۚl'cp:=ۆqG教w7IBQ`=$8~kAT:)Bl?Fӈ=_TvҀ>Ͻ#8طQԏƲ6z_֍>X@<j}Z%K5ܛ2>&Aו ^6ȧ:Bw'2idsftigۭpʷEVBszP*;cY~gR8>M D'=?|ӽo_G GLPZI''A"&ޮ6;{r{urIPTMJ4Pdh3CqDB9ޕhDTC0U5!4@ $LJ"&Gz59)v {DL5ڣ3QOj)Xɩ & EV̓).,R}Б+EOKM0 A]3!;ꏾa&jQ `SiCouXO45,[W*jYA2Ā*D|ux4ML9$,gQph<2E\j` q<S@yPYd{!y@#>D힔ϱ@P@s)J8?_Srm՚j.-q`˨Yю9om TyV pS\%HG"bIQnr >ҁ$) v˷Tݐ[~9p~Ⱥ-w¼rOH +`bG^tןNPWF.8nkxi]BM12*p^oqm{aoY޷uRBPLC( ֟Pzm<HVjo]-ȉ-Kk|6X9&g|'9/it^R@{y=k-7i7eI_:[۶鷌C{GnZkVصYRpQuBl[/3KKʐ7N1 ֺWx]{7@=NפfݲleW/y[5|Iv|*^eJ~GcSMf뺏fv-4ʠ7,ưx>W[-ops3mf a|mo}Dןs^nKH"GCҫv=HWax[|S0{ںNh%o:.~) k:ME2 tY܋l{aPrT$wakSOa]!U9b0+?^3z}~ͻm:d\Hx7Pi #/$\G5deGj~g:]u aVW:G^vSmLg &Nq"+Xjb kRKדIjs>.Y:WX] oQhKkaR2:9{;W9%2I=TB@U@V<3_޽, 0?~i|OAp!oyG|;O{&ZՐ@x#b v-&w{x~ߠVߡO~U;3A<-=Cc^eF{S'YDXn{}ǿٯ/kBC=+]@bD\{)rf1}Ǡ{b?_+3Bs{W5o\(Y>([X<qٯݺnL}^!ru-@T=*Ƕa"wLiÐ~W6ֶng\1}7K[bm}I&fR*0s XXIdcscmE[m5 %ٙ3jdC)vvkeH#ETުrnPG[ K#ݼd'dZ=Y._E}7N3Th;]E & cVVo0qҕRN~Z-`! O-L_#N} K4t+  Iק[W|crHթ}H(2g(T{3պ+F3N'ԲJ1zeUfcWoVk|@ۦݽ}4.(Bު6|0`ARwZ.,mUm L58M;cdu7qH ssYcVM ǤLUnA) sqGA DArsӋv4̫lb|5[%810Wq` ~[:P䜝]\+0&z湞## P PyV}nuzgsb~%nr #$􌟻^? ϗ[ qo .Ӡ_sOߍjSx~%Oxv5~t  %v7B MGϓ0eM)o` <+#qڄي`bg$g^?~xVMᚭ. k^lBǾ[ɵg+_ ;z{qu[g&ړᰆR~ xد}NX+mS$Dp~y_vg2^QLܱ?#x,G^U 98Iyl m%Xtd]2o,Xul|~\>+XPu C1GM®kqI@%Oozk-K0TAGOǤV U-O@޸ޫ. Dj_01xaۡ繠ݎ+6\kD n25?j|-T3)ث #5}c=mڤc5n>V^3Kî%dify9OOGnϦ w#iz&Ʒm@zV7e +)a@3޾5lk/A;Qgi5B|KM ןq㯫\s|~z{OăT Ib'8>6A0#;}~\oJuWmՈ5bA."bz|}+8Ե&V~:{,*b Bs~/:0eBgtu{jٓs7_\6đ?\RNܼ-?{0$˜' ud)˶>Hwp^^K岺o.EskU4#[Z֮iH*CzϷqP!Xw*l$~k=onGӼŬx~ݮ-=؎ ]~ҮCV;|{u\4 `GQ˔x #&?]~IwTl[.U{^Gzjuž#_zu\ i85|붂XW(|2wNI߯jۦZePNAjk#=)5̶&::vʹߵ`+RQn93Ak6lXf@Fw0*FNdKON; M%C;s޳ldwڶ'GZ]>{YA$Tj[ -\w{^#sfG_>y:WfukFX 3Ѥ_F*DT՗ZI*oc[GZ҂kh$DlDDRK}ˁMA$ bCT5XN0h4Jhbs҂qRsҠ }I9qE}Lq5Z `P ҆$EN>z 0&~*AKҤM?ڠ0 2xgچcQ2{R'ޠjzQ$SI9ɪ1uPHl"GJr"Wy'RHk|bخ;۹N.Dss&ڢM rj4J*zE\16c5i)$4gUq3Y[hJcދ"7w5*~V*0*-jqZ]~Km8*@nytMl3QdĂޘ R V80GR># m@ !~ >!S_~R\EӃj'v$wg#Ċ[5EGccj)ADUsy$vڢ}0`_I0 ZX] *,Xe*[E0'H)$A؆,PcY IlGzo}h@9ﯖFOFUܪNY=E ƥq_+0=vqܿqWbpFǸ3?4{}dMƿ6RFgȞ]kփ[zneps}6p涧L t ?y'^e5DmaDqPQd޲a,5@bwXVlէӥ4? ʰ[6D@-[tnlJD{ԅ}E'M#G+V[tmjlVSOpzU^Yo~ﭏTJ07GRCV['n%>:ޗf+%cN$1TSqn$V]!pW<'wI&^-R<Gf%wd.8k&ͣ&:tIFHVkT1Jc\ouvUpEt \AνSjY2tzw嗸h5D;%u!yٙ 5y5x>ƩqJIڳej1ڳR,-mݒb U֐=R9C$mZѶʺLd@n?uHcH|]DNBG3ۚh 5<Ɛxe#[vmedO~? -bŷӅQG9~vQ\FH#sN#5_},[0tR׳3=1zEvj>Q+in` 57=/WMY/yQ(Sc1״mZI6v-D2:zq^WH_u]ws<*σ5,"V_BVo>}@7TdjݰT00LtX{.EqڿI`6yc`u-:Znx5,k-P`x'O+G]oY-vN8xlg=W>v\kJ8S&dS4mjqs:/ҽj+8CET`!zN+/?-x]-#3\4Kwn]h(x\XmKJ01'J:6l;$ɯ=͉!tۈX>\kMջ$K>?`'Y֝E 0G^H\{è$I?>µO:|ڽ>LVEfܭd.>2ɮ^?.7_x%Lj#-y˳ya z]7:[ݴYOB9yvȳu޸ߴt"a]rw~dHSrݻζ[m45%ǹڹF6 o$wo $Cڸ$psys4W|2XCxksr- :O5ĸo3TtVhv4-ZOBy>5߇/U|?px^kF:biN>k%-,*[!UI%{▚.ȶzJʥԲTE|yVsb;ySkIv/E\LvI1]KK=FWrhg>͹*Arׄ?NVtzKIh8ƶ/o_wQ-whrc^Eeα$d4k/-+W˖k χ?[j| 2c+okI5?EitϡlF09h^ 9[gҰ~Oy>\.K=]6* '~5xg,U0?A{7jqKrpcvI='nؒV}]r 8#x<[l>MPv2l]*Dw1Zǹڈ\ču8U Z!1c=z1.n =Gz]P&OkkJg&ꊩpszr !ӎTպghϽg *r>+d|\w|3V]sm'z&jmJ^NW eeaXH1w\k.:|oT/@X?͓[X9dNxk$Ŗtz03).LIO5"+&!d&Or&ӔpYP|&h|-N1":ZT~ڸA1Ҵ,f[ޜш -P~eZ=?by3LfCкnj^#$w5AX)6E7\:S qƦ>cڬ{1N9~- ȘJ_/,I1Lns?gf"3J;WMCKDT\47O>O5#P2jIiG4M&E(&Li&ZM)'4pfj hf*O z҃S N*cޢMO5#=i"Μzo~j @┚#1Kޕf34Uz4R"& UHUSOP;y4m]qߵI#fZ A≌a[A2=#+G~*UH'⋑vU,XqER@gPphAVUZb2j*j S'"LS08X4Z\6A~jȃд+S&U4`≺`kEQIb@D=~UA&7QuN}"Of 35Hv$yF3@jdffAlsh1 Ll5EqTZle7^X܄{Pć88 D8<;U\^[q -3fO[ sǵ& vAډKHk.S[2z*VAQƋ&vӣ PD6$mb,TAp@tU6 VouVtb?EͦĨn)z:9hTJPd;U<4]/ =~Mw-YT,,?5Z+o m nq8 sC]qDD Fwh͵ ŭ[rcw,赹EYFKOO$ gTP֟N$:jGCokUfPo`V,+h vgEy 3JU*oVZB欝3#6|c3ok+gf4'hxq,]WoUpt#93Z |RT`]Bm٨37ܖ7ɶWV?+Muvȸ OE+ۺ#U2>?\MgN.2Ucj4$I1ZصwM~#A)yMوf ЋRExGc}Wèwoj/"Pe>[ -]jˢeAgTxKsړc>&V|[Bw\89߮~UAM5 y6Z#ՏUѓPI#tknwrwMcx1\ u:DZ@>EtY"bH,CVY6v2O&[V/^vW; Ƿv4z[pm;?= -zDuH=zcx=yطot]$]xAԎEaXH;Ϸ[TE i 'Z97MwJ  #' ‡ '0'S^K`ۙa8>}s\kIjeI uswK2WOPbl!?yу"RX3|u7 ݵ-9ys솲6\31G|W^֐\۶ݧz9 wcӶj+n?jشWrN^;:ٽNҡ>r@yX}=H,;QyJ[ᩪ-mq?{+NrmYÎ﷢Ϩ61\Gv:ХHJ*QW_$zB_hwp\n#k:i֚K(Lst?q]uo!Y$`ֽJ-F.\d@3AHE[7; Qg|\sڬ8BxֱMPNT#y|ո2`1 k1wͺ=ڹUFr!H+o: Wo3l2=>1L4Zot; &}j'Y ܧ=^~>IcGr+7ڿKe2$s\mA`vWOjN1櫽|DʞJ)6y\u y7 v*cϽhv >a<5EdT6לZddJJ'+-ƹuCW⬄reH $j,YfDɒ{_1V8 <.Fe;-o3=Ie`"mڻmXihgYH"{i;{I1T- V!Oiȫ7n氐ԞP[m@&k Lp f^>j(jc<׹PX@4o4":To4;?>jy)1g&sM}MIoƚj*38 Q8&3GS֤Fj5SҀj&*w񩠂O5Y3Gj-RqDSAa3]Ԭf8~h$ҟ.qJgO拉y" ,1ޖz Q$)AuȨA65mRa XXc5y"jK\ŨvI" VLI`8T%jjmz,bg{HUE(?oP.Y&B?8|`~4rdb=mEonw r*BqZ[/,?W6IK?#L]0ZcXpYK!fg=*zVUNJ':R"F QrOIvR< N~DnIjn0؀`*PVJ.r= tRʶ,'s|i H_[<;=eIMpm+:۸E5e[Me-ځ̭҆"?D, }ږ NͳQߵk. T %vTj bNZEKYS[-VUgLz47)TdRݨdGZ,lZPCwńÞ-ƽE6ĸ8sV [П[fWS MtUK`vzRH`ASu|@@*]g+jedb]+>Ww.Ďa[t:ֹe ^YE+Fkϱo?kqzŌ.X[m1Y/u5_ܞMMqIafΌpj[k3\#'t6 ;#t PL +0XjuEu{F,p!o(e+!}޲tz*u KF0=6[yo GP>*onA{,8~I']?t{A*P{W5N-y@ ]/ٽu7mgx/۝.ymc]ϖ^vď˭y|M?uXu5{>Y${Ϲ~WQuhB0cy'V/A.'1U{S6*A>?]ǯǏ}: q7Z[G=6$8>8ttkYVShpNq^i|@0 l uzyτKg_Nیz|׍߾ٳj|?òdqxT:7\02 ˆwӠ_PD60;j^S˦4ގų&ku#1'Ҟc6Ė`?y-ywQnzTtQ+7KK\KEmIKj\ޙwڲJTjɍr؁*֛jTEfY#;k SӖh. ۋ-֤] yd eG.2{gd`BY W>e~Vq?o\Uqʑh901׸o$pK[6, D޺ᷧ%^'}/]kvZQrǙnY, v- @ #Vqe`ZIv@;0qVY?/{q邋DLDwNV/ H 5޻gӪD'spc{,[#@a=` }7(FM^jff+~zu]ʟ* <'ϪՈmMI䉮S{qRvzwW *H]cZYn)EQK·tWգR-a!jmzHQS hUfY&ΑHʯAүX5"d}ZxhIk4W)iby9=m 7?=޼hQ iTnb׽bb>(L>DԂ~;Q-0" qEDI3ޑPh+$t"~tDsD֚;UIpS#MPp0*'$zVaA,攰ҳd+>&Rzoi@֢ QE45 4CG"c")BTnPM/R[4{_bL=Ͳ}T!G3T\_YPM ;Jav}Ql*qP3ʂ9"jS#qB'EV^- /Et\h̯Bjp 4ݖAYE5cn{F Fe$DRfdҟJ&3,Ny  ޡ,ln:WI}j`mJcڂ ֝A-`T~8)n4.Ր B=u*jXF@L`T%;S1`{֛_öwz ODs!/#3Zv$Lp3TH6\M\h{+`0:EWkXRdӚ+0{iA@fx*9jSW r`sֲM@Տt-p1XiA  P>]fؼ0@R$\hcY=Ն,b3Wټ cA\Ŷ Ӕ6V:.=7hA?ic]7WxޮG 'U,9\쐌we#"zVB| A N>+Vg=bLwk3fm!4o#i$m+nKN* v'oƒjLA {V#ws3Z23- 9Qymh{Vڝۀz9(;LFDa-*#Q)S3w7 /&wJֆ1׊۩TW*)GQ{W#Up@6.ѵ{y)-V5t;b;5Z/]Ve/mQ֍6${Uh{_P>\vy$|e{\yi >20#Ajo꯵L ?¿vܪ[Rؒ/v #"~$]mm(g;tV%w~l cE9 նIC\xUè傠 =>Djmj.ZZg_溺__~˖d|W ǍW-yL_jڛv.9`X>|{V 56ӃuW<#_jݟ$\Gtot屴mr˞;?Z$Y7N35ː\IUy[Cpݹ'6`/|kkڴ.וñZspXcZĈ<|NN[N>_jƧOBF떘 p?gT5X[ezo0* a1Žs[Mnޱ?xrU}@z}_j-yM_Àބd:1pF{Ҷ@`+(U쏎/QV._0&xvjMqo38oۇ.3,ΩmJ2#Ql6G&xiyWdCz zCuݧ,'8+9|7?\Q՛PDrfbY|m, c:VR9B!LdcVܽ9FOx۹p7,hn* >_Hm%f[Qy+Xߎyʗ$'\]5mjzkr[>)Z6R q✧O^>_q[c5WŻ|mݳ/'O޺:k kHu[tO|xjy|qïX6 Ӹz֮K[)5vݸaT?Ne jHU:N<%#yWݵg0 {w=kDl–!s=4xhlڶ Ws%OAq]2u7C k={pG%,Fkxft;F@yyKV?Yºx|y\_t)Wn:q_*=ڛ~C1c A_>ynq qϽ|c)v|?Y}O/QuwmDW7cyvIh~GsV&WgVxMvr]inh3,x]Cj뵇QjݧzB$bzW#|W˲ްI2r<>wX0yvwg³ ~;T3=Y8+8̏?j b @jG7dS EjkP3Rr/.DM$^epOkO=n^PE=t[KŴ`uwѭ>O3=C\{E` MUth$V 쵇'K5)0:U>nke}D'w"jImyDMD(? |⊥VqͪqU tɫ=ZtW0T'#W[uEbKM-EmN+ՑЎmeASk ܂$v[\Ty'suz^57$z ;w&~}95ԖEhNi{SΦRF:hUnc3AcMަ -=N{-$E7P :@:T 4H40"jML&8FF3F$@TԁS _&'w Hgf5S6*H'AbB1V{٣R`4VF`\+jv'eRUzPgj7#jYA@'ڠ15P@&f]82Ҵ̎:Z@JNO"j?=*T)Y*8eNQ:DҧMMVFƌ{TbF:bAcRRL`j#hDJ193D wr@'RTpI &S /j}BgQT Ÿi %rf"YlĂJmܨ"rbIUW}{yXGcT=9 c:,DBÂ-S O@'ErHL *l2,'USsZ<ӸG9)-AIf'52Sޒ("i>[?\ՀV&3T\K:ש?Jy3Vo2j `G҄QiQRI2:TwG5R)O &ڇpQH{ G1%\Zs?rFgj7nm/@OnXkbF@ >ʜLq+;GP.7P3% P&G A4ǎUh>WNƫ"֜gVNrp*KS'BO=MQgW3U<ϹPXwz-$]cIh1ŸvAa?GiWդ5}Vp+si IT$Pxmb U(eסuj4ݨ1&~x` u*e KaᇿTx^xT%n#zh{5[S7LWd <:Gm@s+6Fߔm#?+$+mp>4=m.Zyi:׭JkNy՞͕Ax_+YA,b݇Vo=+[UeH9CPT"=TUR̶A$U຀#GIvU5RYU\m9Ҧ`'-jUNc_=0|"xYrZ_? CԨLqz{GURjf\xΜzo5e-o`Oך_hWqd?Q!o۰;@$b{׋k7oι|Nqt^LUv'k~@(-ƓMn腁i4q  [|[:gD';x8i-jyF_l/?h~p?h-7jEފzW>[=:|$g8O]4,\$m9ߚZe x5׿}OPFe>{}ÿliL '++yPCL#'TZI`1Y]63bKh='ߌ'nruV.;]%AzMt*JZ 4m wOWOdkV_5[N?4}N ^űq.\$PF A}JN=Gf5`v3+6B G\ fuz9ѽ)KǷ\435UA*osjLR"=UzoG('j$d~X]|ص]u{z!8dUWܸIJ@ko^IJȮpdA=+g\NB<<`jc15'U&ˆlLwq^xn\Auqzrml1ѣ7jt5ĢB!}.L'*8 ȉ)4Ev2!z-[YY1`%L_my|1 yv輟eJ&"*k%"/} 0O0kxjC84ŀXjd pp Rx5rzD-TB԰C4wֻ@BO`ym = 0ңXϦ+ $q>0Tb T'jڪ7\r;PHY.rb{U=F~jf$fsК\IX dR1RPn )L[AqCڋQlsگ .ceW;VK>ɩRjǿ|nkn򝄇f[٘&i9-  :E:?U?CWW>ɹn S;[u3 %,}Q{%Pd(޹y;w^ޙ.jyF<+z~U`.NH<N[`6gi'*y`UgjiG8hUV(a ϸWKIts|f{Dbj- Y!4n|ToOkޫ˸lecһ[wZSs4qdh0|׫o򍧴D$KqV,<%O[,Z wlf&z^Q=zmv-=ci+wexx^fkXN2M.[1pq]-*60sӛ5nt"*15չn]#qi 2*cgrc^֟i13DG_mitbR-'ڼ]AsiN taLt?޺ Awn =J~Enq>_'ɻ(ei2Ym1>Uځuff(Yk-ߵ@> dTm%0rn/E­u@}y5u<85}_v>{qXRKdIRUu`n1X $2`}]+nWp^&~S[~N?zo ]:_ (˘x;wMg[uTv.%C x9: W-B^ I! Ǵ./g^ޛu6҂c\FQ!^55t5L.KYˀ$A.5.jYpTI~>>_n\|RNXvm.nbg2 ~?y o)(+00$T~ָ~ڱfp"H%=ƼcyUPB|g|%]/YݍG&:?nj_] =7-`rz;sOȖ'Tk4oͫhۄcF^yE>ΪO>B>hچސ@0ՊnvFGڲX'ZUb' PUēI{e]JXUbOUāɫ {\ݺTeI^˞⴯h3@$⛌0LLG7! Vf¤A?uXj\ѦKIŶ-tAY5HZdqGLһ㚭.Lg7#51P~y$ M4*bmj @G0f[1'4jdDgGzdE1qE!rMi|JMsHLTd.A1fjp`fVyXpj 0sbK'O1]i%dT9*l@84K.)dU1$'cQmX)Qj|Cr35ʹUOC]=Rx,NXMDIÒ1zxr,{RD.vD.'N*yId0)B't4Ym&&Lcw6PWw)?ة [PMԋR)y<  e3%q>k;jrۑpLvkUnȶg棲(Q7Lc1jH1J4nIUOj* vQno=*QdlS a7GOn H;d# WU6h UOҳz_ahmlsE*ITr0ju<$A$\kJ QlQFPATdsPI?ŶcqBfN?TTZJ bj8̘"S dS/3f+sL[9R:Q"#=U``ӂ&G&V9K I8`}jHۀ\([l7/ɪȷ8y'Rr~5S+NeC)\-N">+%*Ds]wT%9Bw}@=qVqjI⩺V҂#-a]ȻF&n'MqdNHF7nS [A ȫɑ Q>A *܎IUs&G|UolO^Xg\gl25XzցyUZzs r``H qߓZg1T\+*55S(  %G:Ti")Z$A':zB\&H*f޿MgF2:daƢŒ[b ǫ5-8kL[;to?nۺ'0|WcJe PBuQ^oSl&zܐhppAUeΓ^Wr27u<;Y:ktӵN@/>OcVuںg[ӟ9m{ m'>nninyn`! CtZnmD7<=._`  FMf9m31ee,j]/bۖ*mm"N9VݸUCwҚtzeNK[6ze9?Ӻ-XdctYwG_ե_{Ăn^f ӎ{cI+qcxDEmU@dqVp5В\Ac[ kw3n'3|CiGcP֠n y气-RHVg.9'a# iu77A I#aJ0\*mg?J^=`uF!fؒx&y &8s].&He&^]跧/z[jP:Xũk{VKIgK@?.xY[o6{ Lt+xnƇN~&?Ay_:[犖>87.4P{* ͊Y[Y-~Zd=Hċ{vXzUoyH|s{P(,+_sǡ{eGo}6'qxFx+Ϫ|=X~rDNwջ[$~:ThL}rm6˪IG $ޮO=kwnV΋niČOVe'S` `8t떔/Zy8Z\N^s\d7B 1ׅԿoGFcWOnB-޽ٕ2oWsb "Y7dc0+<.G^5mjh#rZ^6U[ЬfI Oz5%wy|H鿆iC7p۶=>ZKAdG*z:ڈmހfݫw.uTɜv `s 8+4X]Eԕ 2aϵz\eM'6m[?j#?*K|Dk_j_K!e,qDGlWB։4z֝ rg8qoMJ -Z0؂8gp8Y=umr~grbۙcX2[Ŵk ~I-$N`nrW9_f ^7`@2'm2mgju赤TX5'N~iu`.2jIj"9"NzQ$_Ubq:TiU5 K1A$6qA$R$vqEnO>{ғEH?)i$n#(/Vǵq*~&,hh0FLQQ8@H, 54.g⣥ M('wcAs5Lf&LE1D #H]=j@*:ҒǩPNI攱8Dbp<15#򨚖 h"I(b:A0+'ޘ-&y#y,@j%~ UnIT=@HE"UR2Dh`7C bs.Bӵ8OumRI$9V5 j"0[Y`Qxq5@GZ-.7J䧝pSU|A/ 1Y9'$Ӥu;ڪfݞ{I?4P:l3N)Ԑ9D䷨4 #*|D l :y *:S`☁ahRԀsGX$f*A֚'N7 \im;zAWnB 0흪 OК\e57mU\Qt]Vjjӎ\"O^&n33i@ݶHWq#߽V[4돥P\m 6 )ʁ }E-̎CMTHjm$bQa?*ѣPc\nE9Wyy"FyۏvU#򨳽0TFj(@gU=*[ҁȃgT-Et\jחa=m< ih2@M_ *AdɩfU3=U u`Ȉim0z`vwV;Itu< hkgTXIN#5]@ e;qT*wBF+QV8LC:cpp>j [IO נ.ᙥ, jwE-%=zͭWQ3=EͺmJ"gpfwwHBz9Y6X~ D;T/yQKEVb7G33ͨY+I#R#(vd3ӹD`k{'c|GN3Iͥ{N'lپ F޸o<-;1!BXG WX* \ֺZR yQtQ͛#[(m]+ kAcZ[l@6ܫF+k[p*6A$/N?Jή/"圇펼sF>6])rQ eHޅuDmzQIhh k=M]VU&qi탊ˍen[f* ۏjK[+w|RkKnMI=ualx"NӸO^õouл;<Qqj$\9r_o!7'تgha#93Zs;F$w|@tUww)@$O﬷. WC}'v(!;Aqc_sH44/oJ6i>{+WZųa<)j0ci$sS]9rA|5,ڲn"$t.Icnoj M"O#r 7[Nv uVjb(;gxoO⨾e{ƚI2y'?ku{t 6OP.0= sgOSz/_IP&1ǷUv4<(@_s*tۄ2mcn1f:U߳oNfw bд.KIEس$On>I\7ۼ{v?#ƻc` GOGvtӎin[\Eu_gb ~*ny6"i=kk 9͍)qnw_DD*YINOr˂=v'ڷx^T5'^[Zǭtl `1d0;Dm^- Hy@ȊPeF_jN̲ʡy?Z©vNN]\[fXNڭHU$zW2D;fG֛7L 1ۚWnw68:>]ԍ} &O":毼5>Ziݺ2:OemI9޼V& }yc}+w]cK|ݥTy'qkk]Wܱep9"kڲI kX,]5!FdwX-Yеr7X;F$}˞U֋pr{u4qqDaǔzBȒ-:ף@$iFoűP`I>kYԭ8q+WfJ'VY![( HqR$`sc\cջni ̐GL#ڳZ*"G io(ķ@s{E 1 GdI3:ΖƓA+);1,xϷ5Z8[dLq8.i]A[h~PC \v^ۖgJte.wG Ү>X;Uf6n 8#?PwuH*cޣ*׫+&h ݙܹ8fJǢUGZqNjng4jZTWaPUrju7|ˆ{IcR@&YPҗ'@>7HJ =踱@܈cސz+ * RMAn_)vU5F9fQ&g'TDA ('q9-ǰϽ4CLH ԻUWf1?4\׊ F D{TI'CZqT'L9~([*1*.C0iC@As=*c=I8#,`')PXNW8uoƠyh,U{HN{"I ucRni=h A#&Aoi8EJώj$Ry2ةkmGk? 9ZbIg;LGMlsEWmP#R;8"N;SI3b6.).&H#$ך6YjcX7#h.}XL!-0Ojbo#, (CnP Z @ddUqP Y'gCQV)Ȏ)A=& l*gHVy.lTd` jچFL53&'təHd$J| sYOBiQWx)0*Թ)@F}XMT8i (%N*ROgU拶 A&3EٸHi⪫1b+*)E&HY2 VUI&=@s*Gn"t6fm*\xU˨RWT 6m*rX6\+zHz(9f45 Qe zj,WUL}$S>ųP݄Ui(Lz"!mTHi}[۷=v-2imuC! X4 rjuwt9;ɚ32M5wD&r5e%)*'NH">bc'LG!RֱNJe限51S* u,RZ(SP@$c F>M1 ^; ڥFb*;L+!ZIG vq}I"I[+lnb"1X(n35eU-Goڵf΢, 26gd1 rRnA^Ztd?q,V]3C%--, F+2 /oMr>b:~ԉc5vֽ3[.۹%z6rOY1 d+߷57k{/\O=Tkր]Yf鼫.;Dq>]&+P7L>=lyiS+yuvٽb݃i,=Aڰ_Y$A+_B>e9<.Y/Đ@=ҌD ICj.K`HzWjkH*&`wtǜ4Yl)+;Q\zw%zUBx@z^ CPAQ'&9u ].Zb+OjK:Kdĕ fyM:[N֬7Pm nO{S!\Gv՗Ò΄XQyŒԻqf͕ duC{V'nNFl[Wetfr.BAG#Z.[lCJ75Ք p\#Dj; x+N/ֽ!b ă$?x۝]oKo :ߤ8c-xs.6יּQ ݐ\1>3,i;TA#kcpɌ=eM"Zŝ=|a$@?<ֽAB0VuO0S{|?P}Syq&bnye (GgDQw%i{?\OֳgXCHf $ǖ^6y mnX`I{\ByW1%CcFUgJ4ẽ֫xbvdI`#q+\ xDĒ=6. ,`m%g)ӽ[t`ɭZ?GD1c޹TLczU!—s~a9qj"HjtIt39\, Rrz1tT޻N-Zaz:} 1YJ\V]sc%^Mro@2zrj0al$\-i~۷us], ܯ7>zrd\}}涁6{w^pLfMv57w6-]OYrX3\,o8bǩFTuYK8f0+x/\B vn`jn6/]!.19&`G\M9W@2 >vy0wok{oDGdbG_gY;5Z[ Wrger@w蹘jmt Ⱥ@,g23[?7!# 6x`4H➢^ڛ *ST_Hg:ҳM-"9Q0(y&d(RG@T^i`$ތ۫j._1f $=ꛌX "N&&jvH3K 0iAbD)8c=3Ej5H%i;;IB-X2 ):1i;HT;@;lxΪ嶑n} ?}Y󘨌M0+5eϱ=&z 8Zc"E;c4+Wi6=~5&+?qh}Kd?V_O<_ɨҖ}1`9{TOE~3HsURf9} ҠN(=ڢ4bõAajy8 摜|W H$sN8.&ΨaZ`sV(3'"M9 H15#,y$x 0:QLGJDUQ(?TIQ行Fy4]HbpH@SQH(`i8jKG#HH5US╈+fr(4Rc5bEoIPEQ15'z( @L֕rMMYZL*/ g=VP ji=v@## `m=EWp"gڑn.64WՎ.c" p1ќ 2" \D\[u@rX14&1qR9l]$DH"nS$nIiL-lHk+@3D:I=NiC$Tƈ‬=@,VLRdt{њI8V_9HXAfkk.ǁZK'+ *H$mvތH5-kcXAȥܪ6U]`o v4oɸĖ#%] G% )w7:ҢY[m|3Yd:Pb>׃ڄIW,Y.1@hMK|Z$GJۻPJuO#TpvOJ5$v]nm(@2џB;UAn MtC HѸmj힄cUp}iF(1<[vٴ#'`gpzSW z$))yP 魏G?}a;ݶAN ?h$VmY"ļQGޱ չy`LEYv@=ꦺZ jsj,!$Yۮblv=>/bxyM#hRXbOC?us\S"Xbnv4qGtz{`'3{W7UkLF"s8Ϫ)r}Tn߰Gڲk[q=?S5m!.t>0b+OqV'EA#I6Ƭ`˯X+nY;Y `\MNGz 6Ai߹jۍiۨ#]f[ m C N?_Vj4vSQfΖ۶q#dP..-ñMuku)u|(tx/L/qB8'?df~X[wI\W}XeA*\rsStڸ]=$c z+چ{nΫ[bK089ߗ-ﶢ.kkm,mPrdeuי(Pp̳| h&e00!?UךlYІuZ31a$+sYA,~9j޻6ՀvU9vQKN H݂I~u˝ُWYuKe ҷ.6WʹuH5HBfdĚ(" mP/Ot0{#ҼWsi'eo @2 ]M|\d3fs1m ^hPtH-3h ϵgu(H'ջ_>.utnT\zο[vʤh&}C)EfVyp{!^^:jۺ15_][|FGRZF+GJ.UG/mnՍ`fMrxXPwU*`xI@ kJxD cPE\pJA\({P3Z>nQ?zszDnaqMOJCpN^~V;]v%5]pI1XlkͫJuZ޳vLǥ>QX3SvڰWHVUFŷӵO$xͫ|T{DBv>\oK] 5gcۘEn:-fJ"lC!v>nj ۿlbC0_"AE$fKbxVH5-wF+m}NglJ!&TQ q"ci<1E2$5Ї'0ˀDsI:_ 3$1y'N&Ȍm=;Cb&+%ă`w/]qpxɞ9 zG^kyi"NpӎmA"Dǽ#X7!{$wFKJ/= M_-"@A7X!bI Ŧ"+h*JMLdOrE"995Uf>å1V*-ʠ%u%tb  ϨZΉgٗ,Ii `Yt`f)`j:N[o ޝC.rx꫷8%X$c%KPn;f9seL9:A0Niawm3B$)?R:q01#Py1F0qNIMKd+, SI5ETPsI蜊w69֬g\ '߽KW:1HH$MXT>k6go'b+0SKO"ƔifMګbCIOf1j,n" !yop(/1P@b 4)Y5\?Z}S[DfL 0LݶbvXcuz$bhAn!?4wdTmifHU.ޢuH]2G^k$*79iF "gjˀ"ұ)6NXRy桉kNWߊ5s|`>k>$G5.hcl&}9;P&yW `Э6s-@.Vb?ږ '5m͍ E3b"&:)o1I)eVY=鋪DLVLz XZ )l n@䘀)v Q9EX[Swc@~K>j$xeV5--1EŶ':`9:WQvMG@] 9s1q\IGqà8 S];w-"""64QϷza Y:VB#"`JTtj:OwwjU'nc>jjkpڏ~Bܵtm03Aev0=5Q M}5uZ@&pbY:Qo"j#Uou&g 1 Ai$8ɊBPQFyԉNE0'" $LTm#KmF~*bm1a2.8@RJz4Vfj;> 1ޠVLj yFFCR5"GzmrqJrT38jN"GjM[[d$Hެ4Hb0Ǔ58UB(XZC-c|.P F Yf^gtZd}A,nN2Oh.nWS)!T]rֵgqdIĂ*[+8e'Uߕz0=zPvX0j4ki n] ٿjս~>hPUW5KQ տ-[FTi**@91֩3[U$VuVob$&$VilƫfUe = m#ï֛WZ{֙/W+mw >zfJҚV+eml++;D܉El:6mAy+= !joVܸ9hT\<\I6u*A.qbf{EqW^o_k<2bzqK WݡE`?.';~k9YJ~svҶ|/a8?Yo8a:Y5*9@= @?xI d9;ɫ<fk@t9+$M6Ap[DRxt6 }";W.Ql֫Ml®IXYpF@֍[/;;|T^_)Ep"ܢ'3LXN Uy:i1V6Of)ٔpLbK nwVmi;-jۄҝ:0m/ `U-Vf؅N׬F]C*2 Lϸ?uXřFi/nۖXF*-Ͻi= i;1ƨr;W?.|[1p9D8D*k3v'Wj `A5a 6Z=='ڗEUOB;8eR-37== '959MDWGKdn8v|+LG*Ϲkop/V6w| [[,q-3%m[!Ib7 9Z4뙀:B%`mY!i|sr6Yܐ&>M[j]Kf$~#<=pΦeJ>f +1-5]K*\\J˷2$,g[C A5I}3:}0jX-ˈ']G08⪴  UmŶU0>'ABGVmۅtw@z7 ecޑ m G^+8Y]U^s'sU97\ =)R`KA{>AvzpAWO})@8=+EAQ޳kA m$Io'VH3 B >IH,xZ7/b3(Pw*3R泋班ܴŐH*IȃԂ bC Tjjm,px jMd5;cTu4!f<@4c5vFI歳=dU!C` PA'Ӏ)BN>LU@=pϤ `8 "pAx_uٌdeAbE!HP m̤jH⡁YTqF>)I3A*hiLI&G@ǽFs@c7dȣ~2>R{{Q5,ZBgےq($&Zi&XdTg>L4$@zcJ\JBc$M1#cLך`jiQ"9Q@@ފVl($3PY{Җ&;q%51PH$Ԓ1I*KHGڪُi=4 033QpO4-&?0iYҞs@Y5><8#&p{R;A⋋9,5X-nuԶ dUM{gh&iMQϫ㊂HQ5VfXS"HuExة SE-= c椁Q4H& zlr'5Ymxݐ\TUfbV.z [;TJe7 ?JBǙR.A~ R,W3:ӮirZ<"SeFA |(k\O%OcT;qHq40SbO*(7ih$) S[ۘGL&ߖ" 겤`83%K.P;ͳ @vr:j^LIh\gw{abZ$}ۮžI;}knP ]DKRzVj[UlUZۢՈtZo:ޱ \`md{- ,qk~R ]H,X``)wnMqˀ*d1gľܭԗ췭]6< ӰoV`@bZ5*|S EG8dPO^m c`xguo;Fs<֫_SL0!=Ytݫ`Z$Vj"C[PU0!, 1GI,j_OJdp RriR|&3J{Wk3#g{VlYz^ovL"$T(4u֢5;U"!N)Wڈ3VtF;|Wt)? ֋s<├tf'!Tz7c' m.Ih'#=Z'}Ȟ{RyST{'@EAc>wH3SJ[PLAj_jKcDttaFAaeRQ~)$eP]Ǭfq &3TL4P~sPe<)¯ҕTd({~h:T%$w.jTqHjɚ~a}'$Qjˌ {a z[EW$|tcEG ƒX=)HO"ǴR/NoL;hM_.EMo4Ar 4*Fqޣr. $`8Bw6UZ3ӊyEֳZ׉a6x8Rh6j;Jt4`3MZU>c0zGYUkvݰG늺Ղ6"P2$ J#"B'"s N$*b=7W[ibp#Xs-h([!y^DF[57UA1r.6ܶZϲFH"kQ,n,0[{\yF [ZJݯ},/5VđSp/ L3Yuܭq]75!'[H#E0j8ddMX~EWrwc.086+^?^ۍUl}btmV!(5#g/ew S prB](˟XԇܝjmX4c$II5-CVqΚ sq4p1 Uk4 ` ,aRJ0 }Xm@j Τ ŎR;^߾:|wQIm"ߓ}:xA7?+-e2\y%T,! ;}9YrTjnTfR$ MV7c;2q޷] `niV;|Woj#!|"'ޝ1۞X5d+X$~MV$nwW=.*q~WyC+ml_7,mZKq#Y6FmFS2Y \HAH<q 'Qx:&G1X@D$7oaV9Ye I*Td>e0E5ē-ޅ{ά2",$h-Z:dJCsStΚݲ8P֦?C4n&IԌ OwTPH&1CzGڐ'Cs5[~4d~5f։ČE!h۞)HQ @PMC>MhbINݠ‰ 9Al5cCQn3FG&1ނD:T)!b@0ݪzFk ӟ) ?J7g/=RYgUD3P=ALH4Y$!?O 8 zmR iJP M5,sDT2; V0yDf9gmy>jwӽWJ: ߍ+9".{~5O7 _PڝWڪ$8xsH$fqb>^n-qӥ6T#5^X5zuXf~{CWA P$&;f@#l, sDPZ t>#p.3Q&cxLL`qC;jk@Ҹ$?)UV4r({U(0cRgɨ1 ~m!̀Mf ֍Pr5L kbc*n;k arE8GEl.*],bjQմivfyy5\K@h؛-ł}JLTB)$Cu"Z.VrEb`Byߔe(oҥ` MX#5N1h$ 6I Ɋe#! 8H*@)Rvȡn1ڡaY4({@0sU`GZkX4v DJPkb`dH xqrTP[JGU7* Q ,k:Xڪ*UsṼ93ޢ)s35X!Zw_s4$ѹmYB9us 143T I',8}̭W6ȩ/L~DJ`ځf#ˑ0=]Lǵ\ n I'4 X#7Ʊ} DhH<|Ut=Ut ?5u劔}'ޘuG8^ 8P#wRk;Y( RZVg.'!I1$GZ@ֳk{(qS{sq0IY+.H=j-j]@YQiZlW6&G[ꭸfc]D"^6|u UwU:Xer=<>}1*4dV3Ҥm*& c'}1>֨ 6iz. JH7ju$ݸnM {U|:^F+rp+:8жB"s9޶Zx}Qӫc@EmǑe?8o.䆎F>Y[ 7#ڛUxfƩ/Z'Ԫ$N;]]:D&GkuS5=Nu@ Up۸8"@{{PJ_kgX4e6 ) mLg8ݲzt  1ǽYP2sYV,S޺@nMX`r${Sr s3EMˬP"89Z@wYPySPrx</u|.ih™ C{rb3ַǖ:I6DRxzm.]`"h5؀`uպ|0)\Ӵ {H{P L) 8Vs:BXzUX)@&T4FB9U8k@ud2\GҕwUFG8L=*K.!` *NȧcV+YofO*OHW=1 3"j^NBTӏ VR",\2LS>: Ac#MIv4 H }_szIv$Q&R5MNPh/jl4cADAc55܁mޑ*vnhQTRwDJAVZyz2z+F3=hu*$fi l̚&vЦm8R0U+̙QbV?P8BFیF&qҪ`Oik6zm񑊾̞Z3ѣoGbk6$CS5nx'C;3"$j`1EJL C>1W K'ervhS1<3Z 6eUW 5'w^犖`YD{*Gj-S ڠ09>E\XL)yLיּ81>d|r̲8TnqZQ9oRZszRAH.p'Vى!70@,zӡ?RYLH;Ql#k$cޫw#4䀹"qr)j拄>T1-|0SEgzؐ8"DjXq8[~Q z{зY|\^ZDbq4AثG7eHcC9,&3۵B+,L0?X6\Zfv$yRL$ԭʖSp=jMA 9@QvB jsn5rcDsX1R$0oºDA|UZN݀F9y㛩ݷSָNz֋bF쁏YLIw1qubn)'9VrC=*5 &TnuU˞=껗\ H9/56f9G^*7wX* vp9j(,y0+=̱#GmDRٸCjEj*ȑ@Uh$H֡Pyh)/gK͸:Ho]į_9m |a)@)&.[,`@n+(T׷8c0K@~LcrZ;qDmY؂8"#^63*iU `C]%l$ZhkGkj\mY aGdWg]h%mUG=5@E<ĀZXvbዤid0n& 0Z LזH\aC3-Ɉ[I#c+.&mF[ju rd:TEC*WڛTr[;b2ELxo/Y$blnCSzZhGN@]v,U[9T߈h1=҂mIpZ`u MvH ~ )*-!$)ۚ}Q$j[%zNb]1]d=Tv&F;R6нOJNt*ҙ3@Olke!y{sN]̘)wL"R;?4mCQ=d -S%7\3t@&1Nv;f~N8W~Y,p~jCւVr–Dav,#Td4Z8iA)zT3ڣa< #{t4&=$MQC70ԛ,t\cDȀZO iLJ$t 4Bڍ;Ֆ?8΀tsD ӧM@į41 9-N*E2@+sw jY< HP8iP2#?J0:PLgO%G;v珊1R㒦~k;\ȜwRg$g7&&A1`X`Gzk~ W1ɞSCC􌤉ĎM%˓Ef >sh"v8bbc4Om( pk6&NET/K-=!0Irޒۃ+)n6>`8& TnFo+,Vf$Md[$[WTt`#pZw wFAe᱂_Lo!y^|u @}$UZm gKD9Y px^gvI~,DSwPȃ9[5i$Sk$g'*m,8*'jm.üȉ'*{ {,-$Wz%Sh,q@ o.P s krYC9sx9w?>jG!vfjZO(3dMElSNz!#?ZӡhpHYȷ-31u9@8f.ԩs5Ld'ӄWJ :gեRn)GoJ\ - 4ܹF*\ny& MKsD@J%U.5Zp<1C[#k)z[Wtqӻdx|KI&(3F-Z^ lg4yo%նvs3Kj$=U?SΎyX*_r$f YƙVW@@dd*֚c%.~>jHS="2<‡XQ=kw]N erj"աmd hMw<߻ #ZK~ŝCMp*vrnvҘ϶p0(Ȥ13vA G,~ZO>h%aҤ)[G=I59uUVmu?Vڑyā;p>\sOM Y-Z|Ȏ s+ruۧM̀ra}1qljYkݡ[>ک( Wq}bR賋mBD0$rAa&&ի]^.޾\71h~ pM]6_zkuo7c*2G 324ۖ\7. #˙4`03طnԕ9c|{O;ӴEp;w2Tst& 맠 LmaU]& ݉=1XnUgz#c @5ԅA] Vkq%9cVE".[q֑YjnZʞA {vv[ J;$ֈ8U[43N\9j{Y LS9erлsY^XEf+ɀ XįsOy{k8bAN( HհVv"&nZ@ DuR3@iZWJVFjɭu-8;&1Ka&d}js) lH5cX9iDdw-j :u$pjF+?4"ʇiTj/g*C ?PXJPf}nffΎVE-"MZЃ?W Ulp"`QpW$/8ICJ  1h"b jg0*A ST j!bzy. M dUENhϭI =#>a۽wjgA&y4\\58_i3ڝ]A D~t2I)r Z* ӵ OvyZ!+KON&O5 G4 }$H̀=xQ;\TqV5VItuHnf|M-%A*I] "V,=Iq$*=A^ӽ}.䯤*m"ۑՌU^PM.zަjm}& up\R㚅S9AڛVS2 sosZD*s"HUiKU[R31Zgv֐ߵ*:Q>Niwh X@Xm#@*Р附Gzr9HnLiuI =+=Kwdf(wdxt'5 d0@}6`g d̚dOj/Iy9# IT<4ɦ]er69g:Rd/׵]|gڅO2`4;5fzIUʝR$ޥA5^TtLuoߌu TjHaA0)I ;I35516͆@V$a,H-wH g5Yn8b:X  "{&}U 6`=杁cW.9HG"T5#4N܇v~oUpzsU֍4;2:RAqB1Mw(cB3M+@bd*I<0۰sIxԛ9jI Ghr܃Xx&O4-'i"IIҒ0ːiKފ FZ?G1_‚1ީ)l6 o~[4Ct|Eh:2g5BQ a KLAioN 1}FF95Gp9ԑ2 [h1xsJٰ@m2#:J}?ˁ§r`Ø3T[i@`EW F9 cQD#P,918Y,HUZ2Z\dwj7 9++ $]^|GJtyLIeӏdfkas#{:@Cl8\9s;xxZwQ\P%t, ^P}+<7䚄S@$֭"-rk]y2'n)ь3V. f 5Fe.03Vo|ޱnry/q]kjA'&O\B ;ei#X+n1'j͝0l-9sڕ:Kp'% 2&qf9sT#ה{T]eh@IbUnbxrF^lGuh,{dH_iG&+:,B%NB?Zرbuu6ˢ]kΨ0($QgV3/m.Z߰ʲOg ֒aV}~v׶K^(H=GڲYFy3Z鉪J~gh#޳.G؜ݿ^yVڣn'Uao4\S'~]0.=ڛ(1lhE`{1ڳvT O?M%C`ozL,ޓa0ֵZ޶dLO\&b7ȝ>vk%sy\}3kxEզ\{,h;8A$AMVV^.ΐ]z;`i`FkkoqmaqO ~fߋjطneUHlD +(٪um.\Y\G-dedsNUFsE˷ٷpڿ&<ަe\EE9$@:RΎ7.rE˄Ajvnk1#3X؋F=^{`F\tIwOR`-v皷nLsQ~Fh`cۚ7 ,EJ9<Օw r{[bk+x*qp+D[>SA$m䟮+og1bė= !@9 }Yj[۰{URP˙V3SZeՊ扃lVzE;M `* #(3#S}QG&6L<~ʏ{0 >]bF}v-*nj \6P qq Un i[p(ԃqF)hdea % Vऀpj $7kdz:ZJȓ4o[r'֔8+>b*s2hf^&S;($'"c< 7e{1}ͬ$XYNH j5$' t 9VJHIT$#F&dUi_QUc$tőc*Lq*4VHc'XrfGңvbˀ>VK?sq9TOK2ӷCJJ6%=O6d@f㬟O;RfADM]JnR؃֫bۭO^cT* I>bZ N@iUZF}d8#K$7750 };j.#'Ni3jKJb= \@'P7L s>oEIs}*g->D/_ztVpc7bOQ i ґ~5xJXqiiOzF>`V~I֩/UwnzrDSuBUmVT!p0r["E#l&vjK XO4$|&3P. Ԫ\1;RIYw 5i(TJa8wk㊂`ljK kvv#1HA-90ҤT@-=X wmّY llpqBOUn;HŲ)h8vuزIF׭d3h7 b =n8(K@"kl'oSG EK)݃OUn{n欶mi)t ǷVsqI5NJA$֋vmA<{VE ?y$"- w'LԪה%rq?j^B,!w7JMYKW ;dN=>Gߺ)RD,EMV՚J41j J8`s[ OZ}éh ̪`bje:63ES\xxhWvmXzϮ5ghiP pD]MF].2=;ϔA[4w6iUMg`UЏTSRU擕“3Fn$F8@x,٣;]6D}d$5H _v(=km"D bMiZ$#7#qc#]˖Md=.A0T{r=ZSYIڝB}+<5'B)j@hzs}H:nِqy>]D/W}>[;U`sꥊ-XAQZ[y3>՝c/^?ۺDdT2Y 1Y "ڗm[ wۺ:c>-{iI$j2`=̷x׹d٢l9^9X:w"pgi߇sYuw0jrI H`Nbj˶nq VpI$f$f!ݹnrYӪcOsZ- =k(,e"+NֹLHnl8E-qZ0Ol&F~ha}+z~0~*kX@.}uT)Wz9i9WI&6Gbҿ'ڵLH4h˿ln5𮅻=k. F),%~T9g@4) ǃ&̓ZR-[bNG'CmM3~(EbMN܃֦=(JZV[&M05]չ3@ ߚl<: J 4A,:(ҕosP`z(N>ꚠD31SUdI=ppji-8 dH$c?t !*@#F)S##+D& wDMI  U ST3(D_C"HOaAkdrA4#&wFz#[m @T1*:f& ju  V>1{V ($uNJbEs%Gz 8-_}L ?gÕSe>Ƒ5 FTE"8Q clA:"=jnB6 k뚭I Fw $^Ao(6޹LY6li'hR i OֳC@"4\Hw czCĞbZ-Yq}1hGjK `R'2OIaD N Le>wf攴Fg N3Arzc1D_m$$uݲ皍s)d9]I`TҦ;FCAp=-{qn>) vA'W{k6cۿRcpy]V$Du<,0j.ޤkVm&FOISВ23OX59)n]sr;Z?/ơݿ޳iۖ.kNS14w۹z8Ye u*cSZl "y|#"$}Ô~5IF`."H+O}0Ƒ5A\W91Y浆EmZp %V-jU w3';ﳨ>nȬw.cRilje,D\'xIKvӍ0T՞R '슻[suP@8&͆KM Wl`BSJ @ %A#pi¨2+w?9 3rVO{TX@3r(V\!uG1NT^66pLdIGo3"R E$*GQ5j7Eւ@@ Qz+20@3 8rޱ:%76c VݛKǨʅY\kvOyyV5ut@ԹF?Zgn7mA#bk@`Y}X'e&j$ds3Ҩ[Lc #9k\Ha!-˚-ٴR_p`wD?V|ܔP$m5sؽQ .3"ǨdZm`l0fqқQ>h;dʐb E# I㯽5Bn_A'Ii-*EŻcXlճ3Ykfx@|*K$3tެƥ|Œ̜\ e/ì3qo]1P Ad;=湐ӞYH޺s(;0IɫTU $ h zf&Xk(ۇyQc# ڤI59ɪ}$b{TAQ$5ZIN15SZ2=*V϶6)mm9dlvDfNO"SebT:mnӠ)1IhM}831vaSqUbS8xbnLҚHiDS%~-kYz d/֒d}!(CB)ᘒ0)u&y i.iӊ Ni[v߉2VHW*sځjv~sTܴJNM p4T ϿZA,K j-끎dcکA@4qaމ\pxGsnhp LIOydU(U$y *H$T E3} L6 5 /z ӦۦI5"@9Zu KʰM= '@`c|V.ߚ\!oU7/6x5MyǤU=ubTEP7 %OPłޣqp XL Z 5JA]TmϽi,YY:f>$l1O4Dpj̎;S 5Bef,48̉-EZPT ę手ب#$q8rAkMV;`OVuU4ۤ1iGI{V`7(P&`"bI${Xm:[L<A@8?tih ^]vhr@UR t% OH4 v1}ˍc⫿pe<UI9+& s&1#iadeP8rh.# י @8#$PZIrDsW,P}DH#UOfqhʨ;M=ۄY*Ytzc?k{O}Cd_@U 3åRZALt @(v')XĒx4Yq'4`;Ԗ϶*&$Rł#>M˄jh@bG*5"$I:]OGQ ` D8,8|QQ0.~OkLԅz]3H'aWdDKOERņ3B9 FKp$R`]i D$۟cP_Uo1 <> *=@ĞOas}{7Gr}GUo#nFG90Yb!$VGLn@LLް}"5]&#.`Kf_*Mf@u`b=5e港"NdUQ(XL9W[fHzRI=U7.4g> \ڡ@4pB9Ȯu#_<.gޭy:&CRZd 1\Խ뒞j{ڍQ095F癨1`iOrSW]A,-2={Vʘ>۶}8$1RȈ+VSt(*Nb?»i315,frj[m@t;WoNkN=jTR-k{H =p+n-庥2 zbkZqh}8941 5mҋcO^8zTLL5.Ž7 iaqrOaAQ <+h Ibt覡쐫wcS԰l+$|IUuy2dzrvMfڷs}IyM[vO$dwRē vr4qU}wm ATܹ`@8(2&# 3;6G46) tP)tf`vnIRDŒH<)b c5ˇ+Ƭv9$qO'dzނ:ϷX>)5˜m[ϰzr5 쫷Grޝ]*O6۷fƼU @+/;SmJV!y{}'.o/)eP֧k8}.`C0wO|t̏,Nk-vMZl2̈wkN3`8Dw=8u]Ȟ}`kl0z 4=jUa,I )ivrQ$j۴w&ޓSTQc\E@׺)6ΕklgO-@'[hj$yC1%ʾsqr{^3>\RJ3ך{&PL$OW'WK$*aOzk*㹫}93\V *"x2Ji8V[v9ζ阪@+'F##ޝHAOj2;uׅ-ԂxT0ܦfR^80wlޡ)\`dg+X(&xdLPƳ~L)3TjtM\0)bbGYzk`q\ ${MlKJĎj]pnLGY{o[6Z5hV?J멓H/ФLoUY5ڭf"9cyHo/>$S1c~k>-ޫsHXɓ\u'扏ovN)C{UؒbECPDti gpXɎIqCŰ.d_,-u]HKL_pw zUvTqՖccWފTܹ1 =A6/B9-+8/3%3;j&@#LEKG(fK`D@ RBNxv.$`s ̱*/-)AsrJvW${ uif(ڄzPy'Ğ?#8"0y'kt>[\;x=&zJDz*KA+\90#b'Qer0^PT *$|8*I R3=ğj'hT.wP}V\j`9?>(,?A~P3Dz{ 0)2 )9$zd0L + Jpkh [Lǽ]~HU)# $HQ7ҫkHni#4XT8څ"co`L6o9$wJ^%HW[߰hF?^[\h'4pl}Jr6&b ƀ@@d©R &>oMQp*vz:G|}>49>S @ 1@˒y⯈_ΩI#j`d;*604 - M(8;T-c\OH #{# ƪ)qJ#p:UE u^3L9y7=>jNTfEArr)i8vk;9'?* Ҳd=fvsP}qUEh'NIS5*I␐ :=}꽳'߭F*7}:;; hyiE O4j(pqQdnD?=MQvئ1PyU{a 5%#O%L PB4尤NsҤT Rp}=5O$zĉ9^\3P7P#U+5b$=sppdVdIaׯqT'$֫ߎ}V H>s-#~W#;NdmBq?Z$!S'5]c1ȢiYƚVږ=Dzq T$K5Rǚ#.m8c=+! M1V^[+&k;i`7M=ȟukGmdqUZ*hbu%mi,֊d3~kAo$O=Es!zxV`1#S\W uvDS!=GVr.&1u϶k)dZ[ad8Rmӗ Bሎ:?Kn[MEtvbƔEJ[915zy}Q ʠ}ؤDsR(`* cH0h qY8j#}(GJ D"Xfh4$W8HFgOYgqܚ1#OJ:WIcHEioI['&XHfsڥ|QmH^晉\he:"zt#_{ a:UnLqެi.2:6ql30t5[zZHK 9'ՌjL.+דڙR ~uyVzϧmH f}6BS,ELT~qiN ilr0)kDntW}RpVY$Hx:2 ڽS(ZTsh|CL&32+1{ԫ(RL*}&H<иZO9&zi_sH b?+Ma1ު;n1V GM@'q$&6YI#qe\4 @s9.bt19aޫb@O72@U2bqEʱcFN'Q.:_j bw IFK L= R02;QH *zPx"Ȥf,لL)XcJRfгTLe1$i<,Ti 1CM1MhP=M1q,؈-U3IVvy'⊱&gڠ($>'RE9QTAN< ؈GVhnFPA$jţf;U3*foЪIsNJR%b=itfvfcJяu8.H=h"D/=^{MCZdM j7g3 )?ޜ-);hIhҥT"zUmfO!N(E!^ 'qp)YOgh,J7A*o2#KDž"duE#\f0?:crF$'=XX dT|R]A1"jrA2~r 2jIOzI D=?V'wX?:}'ކ>N33[uR#Ue}cDݻ$Hnz"`/{\1xq i. MT$ޫQ" ->R$cJ\$"((X*zWH}3n5hkmUL-;9]ˁSKEN簭VK%T:TrNJaVL7bS?ҝs^m`#4k nT)8S j%w؏Er:[r1eNǸ?Jb%uD0'*v_[I*qj({1j$TUeA5M8cޚÑX`\}I+y`d5HqTTUK(J-y7 Gn;p)oBr'4Fü+bP56܁ b0~Z~V228Z@30ҫ%`zJx#5ŭ3+R[]e%gtQ0#bX-*VXDzh?}vln;+n[m#5eᔖYR'wwg L L㛏(2cr+yyl\R}C1UBVzW[)r}U@wpŮVf wr\ڻgՆhҨBO]nc*`jB(*.3Q?EpLsVI z~v-N:WWߥ[zꬨ95E, _uYye V12=qqk]  "siGHdcBqHSR "1S1d3NTlx,ޒqz2jp$,jUA?q\&?:cыG<fLU* 47.'iu:Uc~ 8C#adt5Z 9$SWIϨu1G!H41Lg'ީ$n' vQr@y#rPzvŀ&2iЙAhSh d1]̓5;SŴĒ9*BvA>R a"y<̟E1>Ɛ Cҩg&:TE FT4Y}՗@PZTs5cڽDT'7A?4g!sr` RAϽhSX`V,`PTJb{g%Hbdګ-.z T/*B8sEH!Z"wX٠o$ T*L o0v$uR:UeqJ\R.G5]zAO\)ޡ gi$ϼUE3F'Ubu+I3)-̓ZTa#6"-z%yz g&gr6;5[>@fX9hJpsJA}X hoZf#=镈c5Z zF fn䏎Q8̚dΔԋCXUlI'"Om֫rOކ={Rm{R\kTϽX OFJnƗs n己*bW*5!dKNj-2X_M\kz`*]?l|Ybb{f.H>R$,Di uqgS2B 4,F:UnrUzPnc~sZϲj~AeAwN֒ڻݔP"!p}.լ.&@űT^mʑȏB)0!& ǷϽY/.XuPvz[tV3] `jOFӓnÃ5qu( +I8AJ6f m0$GYon(y~OTPHiL #BC)ԖASyFa)UV ,[ 1#j"#{j̻zvئ#WfVF+#⋀zV`r"+5N=$9 PecVׄy=q9^iRW=:S-/Ab-j )gorÕ$bj.sg)bz⠾ʈpӤbYdVBbL52n1-wMV<(~T"v.1?ֵdޖqfl({[rް=ZέWKKeX+5Ý]wFP.8q"%*YnnjLo;LKEZ5q2w& KΨvMKqك럊ސ慺ndZ I3VBBZξ>պsmW3-+&>rȉ0+>1ea16J35V ,@ޑQISq2'[R=&h+lPz`L(a -ߥ(WKK #XJu=[9K@3 T\y^ SEo;;޹BZE-Nmy|Făy Hҳpba8 +]2qPޱ3ӵ #UM˥xK5o9|fM H݃֫CDurvJsWE @U=Mhh{Y@(w@b?'CI82L| \bI89T@i`B)nr/Nj&dRzGȡez(ՠ $U*fG̫izsT;I4;oG0K03"ys`Z2t ŰеxXĊL Rj*։)X֥ R348*q=:Յmz7lxj$AS" Hq4"F>Y$6AY4 đ#kAq[DT}p ɡLOCT9ǩA#2Uw qH=3~iU|ҩvr~i *tW5SsDC8ItAڣ'?ފ FL-5&-+ګbAHp@䕚VbqUM]LZv KcL)Hy>d N{Ғ8,&(Ԛbwd* Cjb@QfHZq9KCf(DJ2i[4ɉ0g4fЄ2)bF MBیUn0 Ug˘.8dk%,sna 9WNƥuG)0<,ŝ1 [Ϻ.^AmI8W2zb$2y*#dUC5Y$45{Q8+9830#ɫD#tdq}6 O*c7P P ܡk1T|ۏGf9ڂcv8\2&z$Y" JOl#qKozRIV$13Mi NIRդ۸5¿2?[zË$GzP!ZdR<'/NM6Sۈ#D՗O-Aqhg2#[U'2?=r;G5w7O#R {WcR+nf ][Zpw ~R.ZFl1K魵{.bջdӃ=521Nk#[!z]:gެg?nQhc5UNK6zbd;ʨ45k{}:߯gkywh"sR'ټM3 v8>:{3: .ҺKSNGx^h-"ڴQ1zZ@JA@C*0$ ێȳmQ ._Kal r."O>VI{iV[% 񶭲 N1ѱY&-x,9u\[}=Wھl@YN=uKfm rkfd_P̏j_Qvӳ33׊qi)q=lX<@Xz f2vfɭ-opYE!X~z').L1jb6{aTϽ[/*t-V~jl[ ڡbb33YIc8,+|oMND&5Tb:ՠȃ /nz,N}1jv-SDQ~)q=+61E-E'nwJ3MMY'W%LD+\n${vpzTHǼLX_TbI7ҫfD>#s8فUIxni7/'9Tk(ԆrVe,NIGҋ i2 M QlsJ[i8䞟uqV駱S f8!fh<&qCC)hi  GQF awrq*4DM,C+QPT z @$.@ii*\0;VXNZ9rgHeDhl Z-sɪIj?C"nCKu&Ljt2\e?WLcNIhe4$!RD`s\M(rI3֐`PZ9hq&~iiGNjIiqJ݇Ҕ~4vOژVdȜR ?5a V|S'ڜMkzb* Xe}:Q4T<YbxIDX nz \JI0\XHR$ItJqqc&1N@cHFb`2$dQgT]iKT|QJ#J).DQ F&.z0A<(Q"xDTL5Q%*x152%Ff* !/'; ch@}#;,Lњ, V =-Ǽ6Qt4\Kud,zRL" 0!R\Hڔ`5;Q&Âj 4DO֠A3A?gRGR$5[T$Hc8,xL#ND~걭Ibd'Ԃy3R,du&oPAmh*n9Fg! m#抗!pIR{P 4+F`w;7${ҲҪ?SKx"";#ޥCNQ7 v E=,& S>z:R@+3ށUxBL~*@N*S.P "w⁜QWqLsOosҎZqB 2IMjEH:秽+!dIMY/Y4pIQs&~~{UWϰ 'wXqJ3" ?R)h,r9#._*d ́f>g T8ʹ@g[.1\#kEnd^~*@>I* 5?3'ڰll˺Oly rݽy y`IDvkҿާˎʷOo;jwbcVD *$^5C0g֭Ã4AwK13WTрA՛,fO~YFul`r;Uou@]ڰX~A$ԑ}ؘQAgy #O *ޛp *ǵvԳ G}s^HS8־ۏDsWgU)yXza}YI tgy%M F:$b@] Zmn[!緸r$yJ C3ӵiZ m *c DB۴L6H$ɘ=AV:2.n8]M`U Rg e$'#tø!BȀ}/UBvRcd0&tOT+^nƒs\Vh֥xNɧP rp*bBbrjQ8wνUI 9GKm qEfr^t] 8˴l2P^V%@'.B${muWx WA@\@zPUmHQ$I߷NZ]YQ15M{nۀ 4ӓ;rgN @{>&ګa4c`W$V[Oڎ+2, }1[IWvf0 m\# 9ơNxYflO&j_i/b LĊ@UВj:!Tg5,)VIzUsS$GZ@W%N=KRE`I"n5ĈDeW'/ U}Ļ<ޫ?fgGҗ&Iin*I;T}+:M41v[2!dY",x9#("x@@jFں TxJ@=!{Dy4I MPO֠M#\n&,* ⠰hEsޠ6Hd~[\bf8&M)9?VNFMY ?ZL5jy=8pdOYKrn\=UIzSҵÐ#T( T5DAP=*. w4$3I?5 A E)i7rdqEŊHV*(4+gN` {U,L 4sF)11LޙFzKpz1m$RI&j 4qD`(qVH$H Da Jg*ŏqE—3't`p3Q#"Y#&mi8('LU`{3QW ^ԀAhg̈Z,A`#T]㯰qǽP fsD2*h&gopSPwN&3M'A8rcw4M}G??JGh\o#44YSx收6 &I1/[<I,IAY D{P&j m@QQ("9*Y? */0 8'8=껀D4] '1Krۊ7@iODzKI@ڿdYH!m Ef't -O|ۆy',֞o OTUFUL(qP TjQɁ98ڹlQn <2F*WO֨s%0A3j.<زbOSR1sS8czv`6Y-$sBL@fR $WmOjchN+|GqA\U8u'V 9k(n@8|zy8d֒}Hx \_Miozug/Vșj*D &` Az˴>ܙ{hZ=2UIa<Z;H?XʷS߳ [xƵ}+O"^ S$>j|ncNfLfv@}GW4khÊry?A|ʼn5;\ӱOLT>Lz@9&xғO'?bIy"z1eIfG3SZ`;U47Q0Sމ@lZRݣ') Q$w$JbၩzP‚gM:TҠTz1M+B;u`\J 'ܞIbj%hbq;Z !qE^M L]M>Z G2)oA*z֪sǁA$-pI*%AF9snTb{L D8}.DƔZqXA|J 9l?3pr GAx#yߓS3BP=#hm@V|MH$Afi niXJ 7T-Y&Y HV]"Q3A8ӚFpB Cz@ݍJE||Ԗ * H fy& =>)&4|iny'4{QC6p(y("^{l1Xq0j&PFf*I ڣ#Ҹ*LI5PĩɃ;OJ:t& 蠮&D$Qf`UbqQd3\"\;NIFkEKq'+EUA.Aw$1ŗ{1֪vR3XmؖUfJnA#Zd*s4I UQ,HB Ӊ(A f sHƬ\^H RIf[<IP ?JO?:["V3FlOZԅޖhnpd('溩̷_ڼ^n7]-sT4g'iQ:ݼιN3Cv=kNbyrz⥭tU^}g{U+ďjuXDbmӰ#h?ϪRYwaPX՛XQ7IQXϦٶiݷUØ+e[hQ z*ud/]'9(WiWmT.ضC'ʮmT&s}X|.7)zŶ7?u"Ӎ9Ju 5߃?yRn"eC垆[ qAt'wQw;{yW.}v'l 7m NXYWǧ cֽ[qV ޓM/~ D V AMWWIXJfuP`LƷ\mP0Ϥ" ɓzɸS 3SfdaGZפXA}~r%fR~Ј3?SVEkx"_-U0s_h`;s^{Wk)HENXқfLs[.!i;HVc &܀2ӏ5E1 ]0eI E McC"OQHd>0 x }՝ȢݶGsV[S rj˨md#/3ٴDMnڦTGj3Y)'"Ic)E#c"ƃЋ-@`1_fdfjh4lH5?vɞ0AAۓh{`U .o6HԶ`Ap3T2Gw#^ 1(, *X3k{it2{p~"ҙk$'Ģrnp G-2<2Xm3A7 -(q)n9aPBslim-1.4.1/themes/original/panel.png0000644000273400027340000003737314175525542015542 0ustar robrobPNG  IHDRKy>bKGD pHYs  tIME30a4mtEXtCommentCreated with The GIMPd%n IDATxy|E3o 3\+V׈.ŠQUap".,(*" , <@)HH@ ΄Ng=9~5d2]]]]oUW@P# eŸ2"k,|P &r~/߿$Ip 0`˜MTqPGؑ@P~`7QY# EŸj^vKSU.**k(o~^VV-kE\f0xY(//]e$IeٻVIۂ Ȃ _常t[AY]2$T˗/o۴iWL@^_) \PGDQlDGWFJԃc0ꨑ8M46qݖ֕~ig긱1KzwԅP7fEz+Yf+**6زeKƭ޺󽒆0~Wc?@@P4#+juI""ynݺq/_.`.\71x5DV~$IV&;p74iEDvY^ 9 <]ͭwDX9U?h;ޮlDdooѣǐ-;++++8}tʕ+Tyե.\m@qXu:L[]=Y \BdY>j,)*K̨\kL6;j;\~2|zӦx3^ ӦMK8q!EZ$0)'?->uQn͜Ἦ'Y-KF+d_Z}*ʏ/ cxX"L64du~e,Q%A>ʒly6&_&;H# 0BN,fUzdF^Ȝ EHc#2>ԓ%#l|Ρ/B@y4z-w@Pz]ݟ]XʌJܪޗm^ȜTOku5I*K )b^qFٌtzkssT {3º̼%oH$h4&0ȌH6ͣ:YGh0ɋ٧#JF"JՌ*V:IG|Uh$T2hDd(d YR pVA'$s!NiG|&q >4L6 NFS#L%2Gd I}(F˗qNF:<[h9^a,QA ~g6`UHXkI4S Yo.ֹ='+JA_ :=a29dM=WdIfH,t$hD*d˗'իk&Ml.[=E8.]孄ʲ\.pߗ_~wNC?x&O BŠ+{5!!kdddq P vN8bŊoCQ3n_"YDx;AGzI#gdD#Ǧ |o۶k6mv BDd[ld""urʲ***Nl۶-?I#OģQիW'wСW\wʔ)&=AxW +JMHYߦU1 ˗/OHDM=x'=E{IT}> +$´ĉ^re]\\L"j9y5f'''4alDѣ9fgeeezbUe6S֔6Du]a,=z1ӵxʕ{ۛ"|R_? IՊ=77wŋ?MKK۝nO*q~]QQ͑#Go !IzcğdT$#YB %^ɦj7nQYYgϞ###˃߾}y_gee dH^eod@!W~͛Bv{A<|U0$$$Ĕ… ;x +W/E5kM-Ddꩧ9s~}e$6wܜ{ˑ|Cxl Mڵk7ȑ##8 @@ЊO jT&LHp!Cl P$""~*))y7===qw4ѻ U~taٳg*eI$S2ۭ^8*="Ē3S#Kv=w|gUM6FGtQ~~|֋2~ %/۷u G J%*{PrssN6mK|||qqq7o^vff@b[41W^͛OMLLgSDDDhzkt:%O%Kt}GTW0%%坃>SQ#SU-[ֶI&y׌HM K4*Qb3g&su '̺c߿c5&D+$L>}uLLLZ}8ޤ{m6[rDbyf,FTvҥ&R+(-XO<̬< _8ۨfwx}7;=v?Y (EFD6mJC<).\Lj0c֣(K/0}ա]ӱv}ٳ;}<^dfQe y̤(dܸqm~(yX#,ibcc"=ڵEXYQiRU+$\|yS}K||Ο?R`EldpK/0k֬o(yIOOkw]xbw>%3YxsDQ}>xbݪ!=eXu={vua,Ши=񗄄ĺcꦫ?y¬ڷo!NX %qsj飈?~Z$%%2= ٟ(AhDQbʁxR92N_uzDDD`)8bpQ6myߺuf̘цzۈjT-ZLS@ K4JiҚV\\<ު1uM36lp q'[4it0Ϙ%#VLJU/=z d jux\b NXEEEѾ}>;SND'u]֭[bDjDdeP\X&p|cAChhh t;v)Zu8bbbn* Ǐ?ȩSd F'M]p#GoU"Ng_|O--2#sNGjjw}w1cf(ċ,Nw8uֽS ?B"MD=zͬJO6mn'O=?J|;6\R+f"w89k׮-#`7h,r=p@˺,X0#Jn""gz޹siIT!44uUDd[)J]w999F67{]ӦM{ު<)WD p߿ZM/bG9V)**b?Xu.9̊}w 9757 @@'ͨҨQ`srr>~ruDy_-]jUԻwT}%믿>jQb`Moe z䏤Y.JOrD%M;"+ecyxDD4nܸO].W-))yDzf$X!N%4x^dʢԏt&NV#ܹsHkbb!C)#KݺuiUv0(.J21qĿמŋ]FQPwY%zøiذaIfܹsGϟ?B% q%|4Yzꩧ:[U{7pn4""ŋO?>׊ԩ`tytN:?NDjf***ڊ?G]7nܸݤ%MU?~!R wO?4r5(ҥKs3~RJ4Bjl/]Vk}$]Vݻwˊ4'&&Ȓcǎ7|w}\p|gff׀dɒUƒV0y͛7%Im߼ˏ:u[_I{]t]w0aZ܊ycd h-^{H{鷁Hn8qDdKJJiWVVNOOH$EE3ϟ*--=sdgg)..\VVV8qq~n>زeC]fWRpy@c$iF"##;Y!}QF㦚}#t6qmٲq̙IIINM7ݔz&""}A֣Ē;Hӻ<mkg<>]\&fylVʃ̉,ҬĩW#,(H3ԼyNV$d9w]mذ;-Z` Vdn屆4=c;(J+Et)\cED @@&A/dRF K_&/ȱ"aaa/Np8N3ӈIZy"K,"5\!"dq{/ԥe26h`hQ&X!**;tib 7ޱXZA˲e^>D-U2EȠ:Sq,G|VoSHHHwz8g&Y^$_oXI `4z ^y0; Dzrh0'4<<<ڠ(蠡2O<݈ׅ8զPOd?@ YTZrŔ˗/5L<1+ڤI _ʆ!M5e @?cT͐wYti1 Xlٲ>3>|xi|BӅ):::s+(3:1*KGђi-` Ki%)Agɒ mڴiabk ӟ,YXEE 9s\sM+Haaa-qYY&N KP/Y'>4@0R#GO.{gy̙R+e˖tyBgdqڵk_+~̙3[ngw>~$WBCC!Kx]>SIDATå%DM|^ood UtHԹ3YO;zVXRRR?|=W7Zܣv*[h1@^>Ӫz꾸lFj)qdɦشpYN-;W)--6饗ZT;ބ;89ޯʕ+fwXXX?<s|޽Ҫn;M%D7(//ּ[322ē&C7_w7(v\5wKK?m>F GRv{+\TT؝>}ڒ{,=t0oӦMU'xU%>ZBQQѳ.],￵svuM׮]L<>VVV`Ϟ=TdcD%,茌'`UXZ!uFƶcǎVdN׉T{,힆Pϳbqqq}86Yؿ4X#TXXԩS\{3p=Q~{+++lܸ;'īK L%, KV&r\ϷB!"GD;cfTeڴi-hѢ,,yo ?yg?.;Hf+===͛OE1Η2dȦG>] ,`j@fgVxś8^z=sAIʯ^xai-))9jժ",WZu&Mz{yt6-U KlFJ3gkv?rF3:,Pʎ% vi="k.Kd),,eAAA:?tNՖ;JvWv] qvd$&l6IEQժ$|$,˂wdY\.v\b۱cG~tuu""?~V _֭[vmW䉤NA\vmnmvhhh+\Q,֯_7!!a"7xiD"" C KX¨Q֧ts۶m:ъ}<.\<>,)+] iiiÇ۪v*U\NNNѣG׵o.f2x֬YW\KnD$l߾ή]>u3$guYt,ot:|͕t 6u%87+V쩨/W)o%ŋwիi%, YYY6lxJ>}f?~ɓhRҮ_1bVv7ZlY!KHZtiǿ97**fS`*q2dȝVSX`pwn8lTU 6lx866UKHH###W_}@qq!,LDԮ]III}+++ӿcㄔc1ӧ/:$iӦ7Yy~~2=$.8Y d>w}V7""ƶmضm׬Y3oǎt 8D?˨Q|/Ā:V$y]p!Ԡu}'77~\\tͥxUw碈4޲@&jٲeg_+@hwNݻG1ߡ\*Ir޻'Na x|ʊgl#kgRw2wy󕕕\aÆ=%8U 2gΜ1A*{R{ˋ)T]i Mj'Y,<Τ$"t:M$r͜93=++A#IF67'Lp`͓Y?NQVVv߹sv6YOD=SҒx`9sƔ>|x}JJD${TΜ9SedjqY"qZ"pIRdstMVٳtdc K HPȒ%0233Kbcc[PmϞ=K*1 Gn%7a„{C}cs:k֬ycǎo[)&M:vɊcZBXB“#QVLa?~SX÷~{YQiHR a޽-[VVVP_ܹsLǞ={."c#[ٲeKIJJ%K%s1{222^|QY&-Gy@ l}#q^""i-|Ν{Jb"EQUqz?z蝱o߾4g$&&>tKw6id̢EZ!M/_ZӦM_5k!R ȷH$dNC-[?fz1C, ELbͼy~پ}lW^^?zri%PUIAYɇn'4n{0//oq]JRddCwu׷Zi&vכK%,47."r=?M4ѣo߾ڌ<}رO=9bĈtJ-[lof*LlV5\O""ɻE׻lPdp򆈤A}SXXX8Udƾj>G`m8l%S+_ʹDȷmVykʕ+r-4klv:eNڶvڵcǎEKdKM븽ǮW& HDEN.Zs"b1#GL۷o111yvŧo~hʔ)8nh>2f3]c6?x-!P.+>e˖oݺ5gS(w}Oo޼N%@"KN$I$I$I,˂$I ,+KT?M\S({~EQ9//?T}YR S8=hb'MtkJJJkgDDDs3PaaҶ" i5j) $)e*_H,&9WX~ZHHLLaf9w\FDW^ ׂ,낼ׇ:ZRRrs^d,ݻ? ȬPj#ʿ$l٤АfހoYQ6X7Tx65[Nu\p-TeРA<93-[t鬬~kTWFE"DOCgWm6Ŧ:M(Oz7"j9, Tf5VF>:/H?kJN6Uʬ'N|7ptD$|7zbbbn %@C+/ʓoT՗giLHH 'kӦ$:[=[ HmW ΗZ0KZ>ݗ}E!JAzCY_hOC~]Щk۠>4&z7ƤښxQQQc9s?ȷ=y%j\Fo"xe^0C*Yoz5 K D8(6V8m|i@dؘy.-Ozz1Vh5 2&3+d F]nt62]3f̀V w$E]P՟n8٢,?}_n&q]hУGV7VZYVJl1/0*ԢEFr^~WֺZ38{n zp d 4Arh$~ǽE"טDi֬Y?mt@O@> gƱBd hsQCϟҺM63iҤ 1RoZcX7$"" 06{ "LCm]p.lԩ;Ȑ!IZ juaً{-`Dn4k~py9Ē&kRy""~ @W 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. slim-1.4.1/themes/default/0000755000273400027340000000000014550272523013533 5ustar robrobslim-1.4.1/themes/default/background.jpg0000644000273400027340000103721514347555104016370 0ustar robrobJFIF,,&ExifII*   (1 2i%motorolaMoto G (5S),,GIMP 2.10.322022:12:06 21:49:23T\"'d0220dx     0100    !2 2022:11:23 13:36:102022:11:23 13:36:109d@ @ ddd2c659d70c8a92400000000000000000 NpE  4>' P' $ WGS-84ASCII2022:11:23 TZJFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?\T꫎X~S4qוcЌ$ĒW>$z44 ~X@4ƸM f =)rME9f8\pGJ=)Y ".[99Q8Ը21 z;@jPH zSP&R150}9=) rF@f{ĸ~ܛk:hmA 6T#QNRf=kHk qk;[oh;>=E,JqsPyIIN}ƔF=z2 ̛ P'`A;"G|w'ޭ0 j*Fy5HEs&:}aA 5@FT늘c5 V#4M1=sTc}iRk¨aޚy30jd-53(u mY #2S2MX`T1r,S,G緭CqrNjX$8PĠ}GL+ Bz`e=8jcp3,ceTU0͎i݅6@xcU%<.;3>H8H\d{֔?*4z):0튩)pGuRNp*.'ڢߑc֬c˕8&.Ix$Tm8ݍypj&py4ָdbg' -MnFh3xyư>J^v+cV1aRiKZi$驜uj&d\L`y`+zX/2mNOD'ڦTf9[<$Yx=! '1ʪFTc5*I8)prh%P4^EijZp&t9j.JR-Kg FYXVc᤟_cF#ݽ/m^:rak9RJX,yoNyC7=jǸI 6y"Rލ*̩4)5Ig$*6X15pEw8&$;P0oUV3dPIREXi Hd$ހimT j6jSLaL3W Ҳ:U\&q"F+6܎3[6 "cq~Gj ұu <}(c4G <ǑNSdI+5RJkOs)T\9c-9iҒT*\˞Bw"eqXH8<`e>\>r'N2@0nj#R"*/N*3ҥٟ0:4#DݨʸH&* Q HC aV#5@Fy0xH2֘OZx0y`zzUwZgVclqd_qW ZV~Kj\QzrˡNQqSʒItr*ƍ9^̗%`IPH՟{ sIؠu VA險xZ*^ۤcp8jPHY.]벜kGvKMNxryf\᱌)'$`BSKMusVVޭI@?qQ&PGj;ja-:hZi44W4N:Q U!=i1#q$ ) mb'4BE3y^p($91NF@X?/>a$S lE\IsVqщ9Z6猌Ҩ[Ǹpkf=*[DI ҷ-n}Tm\[S%Rhk8g^jܠ!kv;odCJX* \дv Kd#\kjrk[Bi3մKSky"1a'P|ﴝ]$@?ιhU*֚|n_|\~)d^aJk;SyU3 j8#WVs+]ХWf2ö)΅;\ƥHFpx$.d@>>_ƹ]%кuSح<.;&54R.\f[bk$R$rt{4hLP8yd.B$lrM5FM#fSjip['RLgTg5>5ajQ+ \1.R85fyfYbb b5f9M62]+OnG٬4x?9^{w Og~|_X30ıO9$h+nrƂ9OͧjK/ccL#޸zHtqzɸXzf4dUYݸ$|TfSHV' ZByϦ)<cO(W.[f%zzr dUD&}3M2+rB1w?)*F@Pajy9Jc;qMjʮ"Yf9@ZܬEPODO|S7dU "IZ h3dTr"YN1qZbHP8rqRGii#?Zr;1Q֑i${[zSTy LcM'n:Ss;񠚍NjsL*}i>ƐI\i#yoGRgB03{M4!KҒ1SϐVq5*LXdq5 FSTi1NA+rS!yӚG(٤I4cDX}j\P4 sJ*" 0z\Vq&f 5 LTR Nɔig4ppj'JV- l}(oANg=zV(Pܐj7ḥ'"ǭ4B1:Ҳtܞ9ʐOր̑OlCBS}qE14ZqS3 10MzS@FjMej1֤Sfm NLJH%+OY9ZA=h A`Z`a搬Z@GnrSC'CL-ژϑQz>Q*K ۔Zw*Hj##E&tp¢APPH_;$haޔya<h~S@4O~zS8CC32*R) &;ΐP&&4`S4 4O?54 http://ns.adobe.com/xap/1.0/ ICC_PROFILElcms0mntrRGB XYZ  ,acspAPPL-lcms desc @cprt`6wtptchad,rXYZbXYZgXYZrTRC gTRC bTRC chrm4$dmndX$dmdd|$mluc enUS$GIMP built-in sRGBmluc enUSPublic DomainXYZ -sf32 B%nXYZ o8XYZ $XYZ bparaff Y [chrmT|L&g\mluc enUSGIMPmluc enUSsRGBC     C    oxQe3`3fXʋ,C45Q'932bXkADeo.Fnkt^qf)d+Yi= Q&{1ΧC<ɶ]z2M*jq.j$U.,YUEs \ji(FCƆCufP$Z$FB!V)6HA AE$k5 2bI H Y! .FHሡZƥqaY1URR " kk0: "cJn5n%`fnmUPhvۉfuɋm6ü;ƚRsC4Ν==vcI'aKR,ʗbY[(fHqآB$UhdA  1 tVfc, ")s6KMBP Dh! P b$*I DBd2ˍI5*\YƒvdDYW0smJ=Lj 2J\2R!F[iwn%d\)v/677cVxW;/Re/B`1s5Y%"SϹsæ^,Mc]דûǻzVzg.7YkZ1Fj"( VLdI+(1 7`$$Y$#tBHkV*D@1ER$@Yc0 *@@ F1 BZX, ʣPeӛ 47@\]$3I`Q`hi .]ec3]T$iQyg53ZMK +LsLT"G˄!3q\&yX;So;ܝc;t{ttW%NY ]43 E8(2K1312HY`r(I4 tV2(@! C Pt!D0 w!3SPh!(BQ\1kDf3L*UɥT"J($DFFhj"QC4Yg@DKQeZfĮ5[P%jE5:m.2y!qt$VrDtG=JiS4&'C[:mL59L9WMtqc#&9[fZڋ\VU: 2aYIb$ʀ AƐ`2 $m%UM1IZ@EY($F"IU#"DT,B) TPh<*dHв:D҉eȆ2HFLIf85BZn)ml%uTW.1BZPehqY˥up摮S',[irk iq:ӏn :hH=fVeEaERjFf]dPTP@$™0¢eICr솹*UegL%cHHbtPd!*kRB*:"QIEEFO"(-$CQB$cQEI(HFYQBˠ(bZKQfF V"`n1k R%.K]eR4K̻HV$MkK9DJӞ,Vv]2ZM]FXZLViW0Y( d $jD1QْՓA&'R)`HEH%AdV7`CE @h@Fk&,Vg8^sR0c43h2JF9l`0(Y&JPU iK+5*YRU$53[Kq.K3 ε0 lV#91GYLxδSS4S;: 9iT%Se5kR2(b#1:TQf P֋R hG@%*b!Y@@$MH!! T1+FH?_pP %ED$(I(f (Y#!J53( R $Y i 9t+3!etFJ d[,B-L(䰦 9T.ָ$VT(g:gIsPDhL2k {dVyV6M#4Ȣ&iH L$uB3Uet%bT#X"c*I$D , 9̀a@ Ѐ&Tg7Q$I(fČLQD̃ScgT cȄYBcG f#';RAF&`f%Kpn"9jR\aUہmYb%E ́[QhPyC1JjFt&b $I&B d"M@ԨHT0k:dR('H!DA#(@Y$P0 hB D2P3ShMG!B45(EI#4BJK&tZ@!2fjI`*VJ$ Y4Y2x箃5 j9GPEf* @&c#*yX;kp\̊2q260ib&2&c2MF`MfaR"v UE "jIPV@A -"B D2³  H(*b&>o@Q)%"8C$бRh(Af!P bZ# ÀuC""`sșm5c#³5Y02"^V+ kA'sVt5k5gQI fshzdS::YNZ15Hɤ"n!1*3%I -&S0Z3E!E H,BI:d22D0H"5ܴC֒Q% Q#(YIc4&`0Qbȩ Zֱ35] DddlF %L FVuH`E`I3I 2e ^K dMITKA(D@Plqfc@HTք$Y" T3"DHI6Qf" T!I!UοadX 4$b@B5aбE̠8ZfP,$ ERȒ@a QE!Xh1nYk&&e%fk%rԖ#B3(9i0,ha4&pQ\E.k0 @爍 5h\ 1 ³ ltfIR63Iɬj&PB 8 tJTB$e$L̄2@BHXI5DeAER>o(Cˋ@XH3HʀYICH$ :!b@QdP1@jP hQFfK@A.3M A[Ĺ.kuUPj\Q%iK$\52o1^s ҬQ$X $geqEQ+)P2Yu+(ʤB!KLR!J P@1dr*w"$(4R,PsX "h2qh1"D2Ґ.fbt\5 0534MjX YВ0WD[&ePي1,FXZ3(P㠢::3a+*D *I0 f %UDYbP@V$ DC"c &$@ PP1?`dDQU -*6&"84JtUE@"4F(MD) ZleE@Y1V4A$)jAAssbTddt%Yc3 fTgQIEcPI$ТC0tF U!T bf*1 @hd@b3i!QB@b鈑|2 z@%Y-3fcRH1dtucH$AcG AETQdM f!B +LU.J4dʵZ]QfP*),Ө13$k/*759f#33Pdubj"H,IUYg9&Ee9U%@c C P*hD+$@2IUH@! C$d2DE5@2a ˪1JPR!2"HKA XJ(c6׮(2!eP%U (e-%,aYJnU1ҫQ q0ft32جD`]I9Mə0*`jD bdDhZ2U%b`f)HS$U%IH%TSH@Jb$C, h!H@~(Yi)F)(B4(aZ VZFaREQ@4q",vMd ʃ4JM%Z@uAFFdFe9bR4neYdҩ2 d5I 3A%`В +E& eA$P"2TY3@1R$SHfR i!!FMH H1 ii:pĚ.2(qH30ARM dbFcd1,2 J ġ.- 3`Ƴ\iWRf+eQRY300!s(-ȅؑ*H@TI$H KD&@YI,ą̵TRIeRI T2I*TP!TپW'\hdh ,`MYDQf)3bC,b9MҌAE`04MQ&ĺȊҮFn!b4IT EȮSZDY!Z$iJ+2Z 3BIII+q 9WfeE@3$#*I442j tF c ̑ԙP4(IhWcB$#$VH4 g_+\E)`Etͤ$ q4% K`3JP5F@ MQFI2*B5Fl( H.@ILT JՙKKFdi35bf`2Vj+:e ueF"1D$j$ )* d- X"VZI%D5c"D$B!@##ŗƃY82@qr `Ru ! jFCLfT(2@b4(c(H:H4 23b $gQHC2LR% jcYFU(G2hdf#;]EgTbY%ZU2 (EtHFC(mRLKHJҩ$df%3DDQHK"EMKVP D UR$ cI$bP|:rPk@DI`"a\ZMP@в):*I),) ̒ $ (5j Fd6vYPHA$(dB4ږ,V CYA f*vsP#u" ꫜj $7&1b1-tXH Pʤ1@*J#:(dbHTJYmf)5ZMP U @&|:ƠFU c*ʊ(hP%&k HiId -4RPiU5ҍMѢj֍J0(@1@3*Lh,E&B,Fu")R@DEk];E#2T謃%qMgYƋJģbI(ҙ`HP@eVc(k HUH D6)Ef"ڕ́PRN"YHTB4 DPQ'/cF2Xu0IeX6$A.@DƲMua$jU:Vd9j5EeX˖4CFUhȑglB$Ƶ@%̫ṞFJVK$YQ6Eb4!r92)[*笉0L F EXAC!`:b$H%*MfU1HXUHe s'BPNT @! @/@QYT$ib 4UfC5,QEhZj#YET.24QP j 9JȖ&d`Q5fV31SbV#3bqR,f"2$u5 EHʤn$Ĭd$ ft$hdF4 $*)c(γ!|=fT2QqC@`qP,f]%VÚRu:$a0 w4wV*ʳ*}!&oQcҰ>Y\ZK \,fY̌ԌU5"HX3͙d]dDA#\W=cWTM #DLU2Lk*CBDWE3R3V$D*c j"4+FDS"VD! BAQ:MH"VPH@ d~<P \hT8f@F24cfTY244ȕ0QfASVRT9t:o(3A$rtfMo>Fn΄RuY.t*˸5ntֶkeuҋ0\"LZ;yD1Zɶ %slJu'1"3ʤ̊j"HdIFuQDY" ̃;rFQViwdHIANU4 D4AL8@&)EJ!HUV`IC3IB1h0$G3X"ƦQ@#"M  hP5,c4*A\ZImv*jZRn2ͤ^oLCºy<5~sto0;\tz:m\sư3 'Qu#WErM MbD$a ,ԬC*@tT()Z,dWY`QB$ȍ1Ĉ$+dc$cF: 2@")4(p*,e&XA CMDh!^YŦ%% ("J*LCdd+Ms[75suFw9.cg<鋿7/Ly^aמ=9#f0ӓY幆zT糖KXncsZeg>\f+ML͠mcnppQEPHd!Ql(I!T!T2R! X + Fc$@1H `He (ed-4A EP1 ,eE[B3B`QD LĕVX79]n\5+ԷXgs&d-1&do%&=Ig=6wM̭MQہ:MVjTLBSP!vQ 4fvCDӦIV 2M DTB@&PA@HHh@YC(2",@YCEpH KB@%Ѧ)$ưEfvEI%bsT QK$,KZ,),.旆2i;ɬCR3"h4sBkrY i)3:[dʹ#W%dԊ$M5@6d1Lk" j%Sf@R H h1 d@"EP0$ED !AGjP0 @QH hP͠ԲʅR!HM%yTK"hf0)Z"(D Z˲DdƱk5u(ԔRҶ8odYnwXVZEDq#j&ʥI%@B&@* &" M"T bc3I T S$D k""$%BPD!E~|eCʑQeHˊ,\YqBcADS])QBb5-PDX kfffdEFdLVT*UsglYrjN*Ŭ盌.@h%HZ["e 4+61Hd ͛jbeB S+K B(D!RSfM"QYT 5D (B j!R$@2 1$tؾWa $J,мʆP "Pi7TR(BJ6(҆1QJ De 4T@"E@:!lgECsF.tVUEg7R2YTf%`#2siu f%D2ٽIFhcYQdeHi!mI%SR@h@•!"$*lJCHhD2F2@*BIIj !?_~z83D ( b#R!2AöD4TAّkKr"is"Eff䭛212" ptq:-`̅Q1Y%`DA]TˤJ-)\dH efuV!fu ! @ $AS@HM+В!u #&T b0@1|;(4( )%CJCm2hhjVSYE4*[͍ CCHr+"=g;&$BY( +L 5[&Fv\I*TVB$$ffmY%R[VDYY2&L XR\CI!M!$t@EBjPP BEE!FBD  H18fA,p," KrRcZ(j6#HBMڀo* ,g;b̌53s:k"j+"(u4s>[Cʢ"5ʳ33Vg2،I%dVB@$ZP)K* Z"U-PHC+ 1@:H 5BFY(EA4#PD*R" `0jI(@!B$e!~eCeBE%jhJ*fqC4(durIh-Rl]iv4(ҝN4fFVEƢȣBDfGՕcSnu"mMBŸJG9%`I$!j%AR2ȔQB@B(Ft dI*J!QHTE=1@0 (@!M @! "wyԡCʢe DY-\lCfj\i-+Hn,KfBke5]erc:ΝU]+2u21󞲶2܍eXk3bL2ԖjR$-gx-t䷖ܭJ\m{a`!dͤ5*4*Π,@"E*ZKJˢXTFbgY*u$@Eh B*zĒD!"KQq`o\f J$@i!i! !2!e3SX⡊=#X.]tj.[M FykYkɫ5sϬɹUnS/YY#vwҶV,%%pxglvطyW:6W ^ksWJ0^eEK B "YPHH%K f 4bZ,!44,0*fMU" D"QU4A$ddTQjI (c%q]d`"jTgD_ppP "HHvR-.W.vhZ漷sL4w\ՙ\ݑrk5qV+0;2VD÷.>Դ9+ [6:j㫍q%K%bEKIfejs IPQ%B0rQa@@2"IdԬ, !B&de"E#̈ RʅfD4"Ԑ~nKQB(2 ,д,c,,05ͬ2 xBivL4Μ f\חFky1LI4-e2LaP*j.l[oýs77XY&:r:ds[cYE[ŠbA&K J*Di, `!BB*DHcK @"@c(i5D2$`CI@,в M" Ӿ5(CE荸4\k ^]#L53F:]6ƧZ1PKIad *Te5$EP(M & &@I!LE!+ D@1RH dF(P'%)B(qeEŀEYrQFc4%F塶ZbTijkK.Q̩t8|oLZMzpYxtcU/c.i ,8;:.^=Lw=MǛqoo󻗻{sizzcӚZZΰi5EB $ T!J2!D@SV@) d(PEACRЉH! 1C z"P "jhI(`!x<`2@e(ظƑKEEŎP˦Zm9, #cYn4΅Qht+:T5g[g}kјFfesssj2[ikݳ;w%f.%I؞eeׯ<}<[s.̷l:ZsUQRhu*PBB EJ%XMMC&B -@"EP( E (DF0Lu#531f"AB1!eJD<1E qqfA4Hظ,.FiE.U[tf D-C77:"UKQ!5s`Wf{:m*R*˓4%0;i͋<9 (4Nmb52ۄ 1Y33٨jE$C"-VL)E hDTHT%&L $٦2 !c(DE (C!P3:2$D6$̢3$uDI#N*"e'~Wص'Q:bLZӐMr3nM:cLZs%LIxAPDkVYYffMH$TVVP*I&PT,R*H!VAT"" XQ$EP$E @[9 H2T`PQ#P `!qP2TCHܚ,44&-r7Htyzt z2ok\]1\#I&˲ 8k1qst ,NMY:kk5k dD3YelԐ5bTfI$.c$b$r !h )SP!P3R5 *ΐ$ECP"ɥLf!LI E!S(`"DHzB8q @1DP $3!G= pe ehEC,ehYQƙkin7I{7Lη.wë6ڪ@t&ʱ+S;cY4LyK3cR4q SJupfαQY 2mܥK1*S2$b11B̅T% DgL 1PUAhbMUhF`I#B%Ө"Hfs R(Rs2JI F@Ҽ>zTH,УXceIPβ1fkefW[effnѝkTaӛߍTolWҾҨ\*BK]jg!}N=YZZs6ϧN~oI}T]ۆ52Y\ ̅J K$(I&`1 3$UL*3i0 B MtT! Ftפydj@2$d"QC $( Vhfi-5l@U0, j\PJQi&b$cKY6-"n*ˢjzzތo^6ƜeZ.uc}֭uzv_ЅbE!?n|srͭeqP7<Y53YH\"U(LK$IFb 2FZ,Vb(fc4QH  *FMC(@C@1$ $BFb$*HE Ҍ A[$"4L`$@AϠĚ&qA&5\ͥ%FAWEFm/nnط.^5ӅK5tFm/Vn}zoUھtWez%vCFXK#PqחÇn>i>nn;㓦99N}\ugL淖\Zɬ[ͩRdWQ.&K)bPDK*( RPJd%C4 @! %ND] $0 T2"@BrfAʭL̄ -*ZDĔhTTZ6B4(fjKK6QWFTm.ѮKwtk-#S# .uκꛮ_RKM=rWA Qμ'<;ˆ|,pq<;16ܺۙF/KXVWjużͬs!jsP` jV `#0FiE LLTffJ eΦDJB :s kE"FS c$*@$eMt@ACnA D6iдIIG8hJ"ʍ4QBB ri22R |ch4,r\oo4tʣSH鍣%KыZzs_.cmΞ^+bR z( ܾssqgY50y~}]9U]eaMeleaT%܈ (d!-+ Ȑ$4$VM@P "̃2`5B b!T"EYIhA"Wq2ʘ U"[-"'R!hhPRX ԡ3ik BHKpꎜ72ջe՚fU6-ƻs_N}t=/LWoc\ӁJ`MjҶ{4yg??/\Ryɒrɩ˼<{aiWL5bܫ5`rer\CH֋H1 Q$T2Li(@C(`I! D")V2 uC`B% b4#2@` :E,̊A52ISdH!T@@!OJA4. )4$fN),$irtN]5 \^WU3l^wCN}tzz= OR|YLJ>Ɂg-1r8k<&jgrmKnZanfmBk\!XX2T)eP! DTԐ%db(ۡD7$TP!( T3@$Bb3ВtbD!2jʄTY$ H !| r*4QFc,eͦqIIo'V[GJܵ ]H ctbubc~oV4ڗNG[e%YkIqlrkRi'AD#dMbcsiti{آb:Yl,F&k`*L 4"L7RdF26rIj$S4BQV[sPFuEUjh$k* " jC(fb`I`( 2554 hnsW eiL31E"@TBC5$D0=NcrGA!.4hX&EQiIF4DιiY2Iu'L2Cb滥dF4ZEYd3\Tsօ VBYKIH.k &TZ&nk5Ĕ&i2f3=EVgg=EBejfZR +*G@YIHB, BL(d6$!BVt@70Y9t%@*E a@DQPQ`2IRM@A$1Ff$Р$,IQF EѼk&tƬԚ=2kt]chюA{ +3҈2nQݨʹBL)FR(!,[@V$c.MJo6ڄDMLY1MgX&hU+P0&3bJ*k*ΑJ""T c$ $PA*@ !1 *U\FU4JfYD 414DEI YCIC(f!# آ ϵrB@@qR@qЛeIo%NgF]yuve.ӗMw*zڹ"ueIƧeW6%ӟs 4HFhy5qNuw2ɈLm笥W)QΕd)rjDn[й:̢R#1f3P%2I)iTjs\]fNSRZ.t JZ!AB GA*̐XD81RiA0$"i &@0(B@H hfgxHQE%(3H#T2u7MgMκkn:G>3/=b(Ғ&ssJܻ6LQ y.kXˍK 2\I&jDSIey s5*M"`HcR2"RfFt*sR3̍LT\EME:փ:2*(]UP$b3$e 1Ƒ`H Գ38J) I$A"!B4DQ DIg`@TR٤hh9I4ItMd937C7Cqkv;jWy^gcFƤk:ܣ4Ȥ 493:9e\DKD.b Rб*3UjXQV2ԴʥBEFFfV d]m E$L53e YM!lΠ(.,[*!"I$`1 Кi23`Hc@v^qST0:I4 1`@f $B>1( 4#E$qqk&oәӉ3ט˻7/CSzqKݺony~~,HqYϗ=NS :NS9q;HsK LĭbYbVU%p\5y%jj5 ̉(f$&̒uPXXrQBTӠ́khUs*R DI"JZ2FP@I F39ki@$!h"hf(">ɂ ]$LI74]!C/-#\:r5̼N̶\\^^NkƵNonvZ}%O%~~^\yybL!5b$o:Ϊ\$YQ`B ET.z#5jlfҗEkqRҥ\ȖH]X33B*""*2L VgSEIJ(5ij D̑*IQ`gVXe21 fu 1#h$eAYoBJ@%#5H"-ꓫ3|43 ͳ;z[79Nk^GNVM}gL,sϗ|' Jf|7<\3^lK.K 39ERsQP2Zj"%R JHͅHq2b Ji&iUdi6lu6%!*TNPd $ *EZ B!S$B EFU2&$P "DQC&f} `Xhr.TqtFɶZa'\ӌueӋXDu5ѽѻ})~@RU\9dO?=[򯖼XQ|/=Nou͛sK2Ę*WPfl.K**"s ^s8ItkH P 8D֢ Ac3&lβJ5Rh:l""Y[, e a*Y23 X3X0,ΠUB1t&UUjI B! B Qϲ.,CQ@$p[uƱqitFioۋчV&8te8kJwtou_W׻Y~ &|yo-|)×8n=8oNN[|kZIEP0J6h4 cLl:y:3n=7O.ܻ3zzw &Nk]|o_ŋ+/.g=s/=tƹc.j-+g6%u湂K䰨X.d,-+fBTR(ʦ0RRMalYFƈc3UQHHR ,@ ȵb 3&c*B*d @*H2J cZ2͍!DTӒx75ƅEӇw6e\ކon{\E߯Ot}vQ}!@K1yc𼎿 ]9o;^.{Ƹ\n1gYcxfyk9(5FSY.r̲\VJ53\!aq$ DBə ]T#:T* EiH54TlQ`ٕhYMA4Ph!H`EgT0UUH DӤ@32H$H5 H T d@;e(B}׏ Qv6TkEiӉۇFKL˫wl=nzߞL۽6QAEk-?6e] $Q#F2HP6.GwbtV]9zs3}.Y/+o@LO??/LJgNLW;1CY(mc.mJJYU,Drgh9\,fHEE.DU !sIVn0FTLR4&dJsIFiEJƴJ2h RJdd*"( N BD!C,b!sTE-R!b?6hi(TDJnX., (,4J.:#-2L]z{Ki/w~m^kWΞiW,Cs^??'xyu9كG* 9?;|>/?n9 cxN5mn7غ{ɤiX39a[ 30\H4VAl,1Cԙe d Y$kFS"2J0A]VNTu@YTI ^z"`3%Qe ̐S)"d4(  |iP5iee\8EIi47|: Ĝ+^gDoF:vg=RӨ4rKO\~NitU Q2×%3 py~͞yŮuӜuJtϫϪx5-h5st d P8%sȒW1 th"LhDZ$JKQ\ftU"mYٝP:)@E@U!HH(D(DHfIYT(!Y e g`LP )2,eƒ!FpCL:rq5Zyo˾55w5ӍbO=\]vU#{z닼Ӽ4z:G4pg10<+3e`-ny[{э6>liYiT+r["@Y$lR(D#03\A&d-ЫAN : A## 1RT2D0$@2.b%bbfI1aSH!O@Y@ )$Hܰ.FY84h#@MH5Qә$(h ck{yӗᷜq:sn4j Aʙt8Y3s3#3Y6;oŬ0cL=9tԄIӑVj\ɬ+Rf@ `fȄ1.d  kL+p\1PhIE,%3D*FHaVdbdP jM+ri๤Wh2VD0ҠF!oHePC6iL54X*)D]NetI2PaYu bjiMnֹJפ;hβ39 814I05RrӻWf鞧;Ϸ.btm"kjdgnD J *.fd$huI bu%" e2M3:Ȑ-hDR PŤd@H P `dLS-B2GE!G|c$(A#4Xi.M$Tq (ꎌD6k.5U5/Dյ+2ܴsQmPCDQe Fi&cc.F5ǧ>Hbiir^X52WSU9E%J5Ffb4k) hi˹C%&vi1:Nf**N*p1lftIV`@1H2FAq`H P  `0Bj"$1)P3j-v3-e@E VG|~z~^N?yw{]D QQfC@ieAI[ƪGH#S\ ֠ ɦ%sY.Kea`&`% HqCVg*854 SW.I +gE-LiH:Ε EED:+qh"i("U*PV`J(dIP HHjI#"$W*F` iXXH RCB`3`k(2" F2ҵg˫_s?~sy/?>?11>mNeȑFa! "L#Hq46 *K ]B! Ҋ`Vr.V*YTI@"`Mb!TTfDj:1LB4\YTYKCE%rt$TXJ$E(e cTH b `I#0{ $Fh  Mg|_kC?[9o.Ox_r*%SC$ʤ.f5] D5C)Vr伕%%,.&mL5iQh 3tB,̐")3Gd!Ҭk:TeVbYXV)LAR`d@A5TET!!P bHIAP`@!3<>bF31X uE" E&WL}7{~O럖q'_3]^G4 l̓R+*4K`:s,%aQY\kD*FfuEA((D 3$KH f gQP3d !qUUIPTԒEeR#@!P @I32I(@1 "T"@HT!H&Q 0 cTR$E@YK%X&(bIƕf;cn/y=NK=x^}W>wU'm^gGfIBΤ $Ufz,(u`3 dE"[ `T*AjDC]&P5rĂJ S&ĊS8VC53jE@SPI55(M $F*F LP C 1A%CT0! ()@OE% D3SJE1@DW.uzy^o叮ƽw׻vzkq?Ov8I#H *8)%&X*DhY$PP"LiD(.bĤР FVN)TԀ,L*I&u5$ P:E@ALHX%b @0$&l#hT@ B @q1@YUB&%!BQZl3lg^7r]Yw^nn.;Edb)lhkZТLFfI% f@dd", ef\P.f ]ˋC&ƤU"$)3" c3*K@`)* !P1dE(@0 2@@1"1P*RU@_\Yp8 "jFR@eTAg3ѓ21},=wYoirG|>;s&ɨ\Bb`3AZfVȆ0@@K`fYjV@ȑcpIs3 EKqqPAH)2 TJ ɨ$jgH$c(D IX!dPDP@1(B b-@ E0>HĔYQD1ZXPѤVHrj Ή֝g>wfxz9zxϙμ5ו5* :1]Yd$ D!eP5b$+@2 Q%-A233!AJ.dZTP˶H5RЅI4u$Lɢ$SP@@*f3AB4,  $C(b$fIB5"1 !Lq0иHHh2Db$ɹЍgNՏ[/[Ư s2}<<]4?N \t1D! I @E@(BRȀ@YJI$i(# Qc2\q& ("@jA$5@ 0 2H- & #P}'%Fp@"K( TYE 2("* w4J5MRx=˯:u9-^cO/wN]94U2ZC" "YDK$@*3$3T0!YIM&$5,H[fI#(@SR(B" T! A T "@HJ bR1b >b*B$ (",2hY@QP˲eYcFҝ+ۇ^DA qt3Cbb`(ТA,re hXVqiH΃sl6˳-ޕc2#l9cl&WH$H$b$I%J[ PguXHA¦!J2DM*C"NbGC$IBH@!I *Dc C(d?"$ (IpC@Qhᛖ2PXc*4-6cXߝ b\ʼsTV5˫/BH"[fdYcE ",cF)46Y4ٴfÆиҶã-ꍤy115pӟNsDff(FFc(H R"iˠ ԩHC$PE8C$Ռ ",`"1d@#:QU!fH@b$1@M"Ie KR@!`!0}7$2EPe "3HR YTDjjZ0466nMy6Y!r::N{s0-1;Q#(LI,jI"1.`XbUHSP#0A Ĺ #N$2XV,H1$PP4*"IE !@P( ( Jh 0E؄E(!@!QRT1*FT٤BƸjoDoJKVSXVgu$2 @1.DhI*"k$@2hV1)* ̘С(B$C$"IHC["DPVb(ZgIlDe@P$`QB1R 4,P @ o8!$QrP(0Iue#KYVffVgYەgSYVKP5`dd@bX337TJH"I2"@he 2 P@DE2HT`EDD5DYal 1()1 P@!@% BC$b GyCQHYC 1F ehuUlP ,(\\jj1[dR"j*k:ͨRsā$HHA+j KTI5&Bj*@MR$YC$dC$23$AEA@"`4cTMB BФChR3C !1c4@ebDSy$XFh0DQHТ4e#&撊 b,eCP3CHc27bc=+RjR21 !@H d@0C`Y&(R$̒*pBf$IEeI1:t P `"LB+Y3M! eJQC B @@ %D*+<~p ((d Z1PT8c(@4SDrY!Y0cD *c""I$VD*(db@*2H%в T"*jKQ$D #QR!̢H1THK-7$ATbBRH@P +^zEcRPD1JR2C"CYh*w*j.*44(PE6,X033$̒).Fe%e de 0B&X(H"TQE$E &B*Vu!c3$rIE5K( DH`@! W2K,j C$ESp9(T1H0JJ44@ E (TE%"DhleF* Ck5d0&fdU35!ʀZ2 @1u@TB@!J&$ETI@1EB1V29I*Dc&c( R$@P ~ú8Lv5"hePQe˒)VJhQ C(1 (eVk&b"3(d"@DB!`"ZT"֊d1"D gY$+#5tt $2!T* !$c HU22!"ZTB$C(BH tHD*?_7d3:-&3Hh" @Xʍ$F;cҒC2DT\RB (ch2jDLJ32 "* dȠ JEHTi)PI+JdCH! @!B*tʆE4Ո*2`Xل&j$PPHT! C(b#$3^{â; [9ƧB E$ Dhh31 55䡖X\l,ŌlH$eEk%@\!( @2DMHF2I $T"J4D@R*T8PȁlI $ԙ `ت P $`@ T D *FHP*́1 T"IPe!b3$E`HQELD  J@"Gy<]iYQYҨ@$e B2DpPlB7RJBFC$T0Q"d(̒ ڄIFcU++CMY:@eRJȨP $*t& F@UT@ `I-%`Tb `S"- H&$ *DTȀjT,H!_>kɡFfd$B&u$Fb 7⒋YBF= fQ &jDQ@2J IdCb RI+fEP@ `%%j$P4jI$UDAC$BQEP%ELB, CIV] h$dB JB+1RDJE *"-и*,qQYYhJ$  eEFPm:+* cTkFQ&E3D2D#32%lbW0)deef֡1 @Tu$ keHԘQMRM"1 DR (c(H@B2K( J)", e` LB)PB }%ɴT\i1 L (R@pYFB5(l[:5*K* ] fI!) E%f!F% Y\dJYKf$!VbdPHR!*T@*jD4@ IT1 BDRT6&QB4h0EtJ4  ʃ3Y4Xqqo55"2Ӳ,+qQiEZthDM:bXjDf d cGA A*CE $PAP dc&ElRI)JU  1)Bi,  Uԫ(&R!2HF!R2р&`!"1mJg#y#x$)"jDIXjԓ(e#B(ԸŠJX*V`EIK",K2f*$،X"FKYRȩ$uffI%I([H e)UT$ @A4ƨ,)-%1$A$ 1 J T-(HgǐtL%HCH$@@ɧEdQPˍ$,qEYH]"H2*5M FQbX01*,LZVg K$*aT d̸ `EbfYch%1EM11TRi bEj!oJT C"$XB)-5l E M%L)Tq'As.4X*+2(E(FaQ@Z12T"hHeӬ*F c9R*IJa jHffQMf,cP k3Le L3:33E(1YPHPAfU#:+%E2P@ $d")m@!B CD"FX@&eB b $E6RX!C=cC, PdQq86"QE #(GQ,bb(Yسy+qkT^d_"*ď(m .*">3k~Ta1|+ˏEu9r\Vt>3w(Ug(gSE Q%RԡƗj.XߓY,^hQV+Y1+/ z27b#Js,1h^[We5z"HEHJp>*:uGT|g_k bNa12ʐ+9سdgR~S$S; THSqY∵|pT0S'Ĥ?20r_Bx[cdK*q_8cXq c$Ia2w; E,;YgR<#w?81$] >B2(Nȧ'Dy*^;[i!:jgJ)H,}n"qƗ,g“/Q4TMq$Du:З!ZΣ h菗_.{/Iv=䷲,xC͉Dc~IVu+u:QD#_J^"ώl)) gȫ>CH6^cxB,ױe,ţefؘYdd|^>V|SG'cqYv? H+;xRD? /G|4hGI#"k>OKâNgXpBju:tGNseY'>+rrYe,'/QY~+ED?Y!LwU q>z))Na2B,PXBXhJl*eYgga^g tybȇGNՖqt.2%;>e_ei<4>"\̣uXΣ^D1/TKk͗x2;,Kceȱȼ9 l/j+^+/Z<1RlyX;Xv,/7Ev;,?8Begbeub3;"yIK Y;xgceY!ɎM^.D9MJ[N)J$9,Re_M˱'qh%G>d%ZcKxXkl[,k(i4ŸSbIg&GKxܒCh t"ԉ/*6K T=}+"u:eBvj+{_:Vg+x;aVP$4Y(Dk"ދֆx"͑5Gnętz)//ʼn_, H!bCؽ?PeCf:cֳB-(QY",?8$PYv"]@q",_sxGŏE b͍^o{ߦ/ŕf𴢄-Vh(<ޝJݢ:BKJĕ"і! ie*A:bd?%yhxNycb~d ⼶Yȫ˱.:]v/H>ϢСX=N('ҊE 'BP+4-^^_z+wQEa[Vk5 "҄XBQ3'xEy}6IX7UyL#>]qW ^ "˗8u'7s|*d?ıe&9kEDZ/oDвj+(E+TYzޕֲʼnbye ̎/ ͏BXKeqƊ(>Ho͌C(Kɢ,b/ 1x(K kV(4JֽO/ZjDie,<VQYX[V#UPElKJR(oІP?ť!$12jP"ʱ6X/v,;ټxh,egy#vP R'j8Q8(EiglW<^^cEi[~'Cw뢇QBE aVVWkvEzPĊ֊(œahk 3(!Q x4!HvxhhQѢ?V(P*(Nk^>R:ْx*'eEXoО?dztX좎[І?K6_Dd҅PQDsEfBBE(E zE AođԬ1aQkloNCՔF>(򇎧BP&,9"3ȑ(Lo(!CYB)xG 1$G(}?cEe,Ka1^+V(EiEQY(Epceu+Z+6^("X+EH4V>&,8%bXl(N8XgJuGJXФvE$2GSo(Xe赬!㰘G'貱~V5IY4Px,*Σbe,%/x)rr}xXb xYDqEu+U((/CXEhD(Y 5:u$EQC͏u: Vlx~pu:'RZ1<]vYjؽ,Ey1WEW2?JkVҰzPYuB(ք"uV%Չl+EiEu+Fu+ xXc(QZY!BcQCCyI ByxyXa㮗C,yb+1,YY~,%b^G׹T^תHoK҄/ QҶxXQV%(8G(XBݕc(H$<)đ,Ja} _R~K; ^z,Ygcز;w;YYeYex^7gjZPQ+U(,zY~1xx<ؘ%!amDew;X"%!Hr,ؘ6x$"X,7e Kl,ز^,%uP]bakxB‘xe",QE,Vb6YxL^YmdY2Xlv/ 9cx! o/鍉yCxlo/$D ah! B,r~/(潵XeYe1; ,YرEafpJ>YbYBGʲzV;P7b~1CvaKxccb;Ycc'DEax+[ QcxogK[J,M=E~EeŖ7/&"ev) E9Xyr$QXK7x^DBXcZ2&,2x/ rCz1,b(ccl^^wC ڰ,(KXxLŖ^"vG(hBE4P"|$V$Q8k/yu1e<$1eVey;zPD<߭-މ~XoyeefVR++";^e"$PƊ$8J(+N,kL!&7Ć1Yeᕛ,r,,JCd=,^ǥd/6u͉y/7b~5QXB:lP+"(YkeaщX}4?F'AxԡBΧ*ɻrپ7H=J(&Xu>okC,z҆7XbX6^mr"_u(~^XC( (X,b2/Lw%"ȑ(ؑB"}ɟd/2(bPˈQC$8#XhQ:F2$HxB'eJ<yeV=,Vx,mGqeoz-+ڼ5hi,!lxeHZeGa^lcg|nK,C^y1Y12>3*Ǝ_4Q$2Ia2ld,OEo=LJz#,_yu5蓿uaeeC1B)>Qq_IY.o/rM $$M|J ge$}&_y^lBQQ-(z?E~ +EJ"E((QQ:J((Zŗ4<';,bCoG'w%11ȏ)cʔcȼțGRHxBC/EaZ7_+)zxu腛!"ե EnX,Ycآ(RYgj%K|w/ʼnJG|.!q+JEJ$P=,lyhcllo,ei{cǭڽV_rezV! +DŊ(DQEP':Y>YCLh(<Ж,$!uceEaXwXc7o!@I %e$Q-oV1zX͗zJ᭾1"O͉YzzXX"xab&)cx(_^2DuJ(hQC%"^FQGQ dhưZ<޵G~{ECV&!b,-VVR%bB/ꢻR*t Q|5 ĢKfdzُ__㢊(<%~ DUYyB T-PYZV(BXKV>ȕ欌z㳍v)qZ_4k_.(.*\?|1hcAĢHcX=+F/[ 7k^7XexCxxae!"!b j(_}|D^8`U_7۴"|oq\_ęD>|hpG8ccPC(PE41aCZ<^(wؽ+6&+56wD&>O=xM!d'xz2,Xf(Y(QCEֶ~ZҽH^B 6!1a /(k=,L1 gq=;,,ŝ>CttQC d!Cxeb9 zj(·Ct:uNR:NVՕ]J: !i(kXOXL yQִLć:"Ĭu(~܉$QYQĆQCCEaz&Yyv,kH(ShQE4Qt:XEce9/;/RַE{VȟyGcv%xyR/9!"(K(eN~_, QԔPƆ 5Wz,,*>CS;"Ѽ^V(u+Yu:QEf b4QEPס,GĘ=d-hQBabȉ X c#ۏ#_9HxLOUHQ!}E8JJ(d2^II@J$D415^+uŖYgbs! w;Ŗv;^Qz<^h"7ފӇrzYyV-u+uB,Hg[BRD<Ջ}k>$umׅ8IX4u(qh<L;Ih\Ii厣BV5C(5h~嗋/hѲN>ksz~եNKD,) Gb,x)N|v|MDh&/ŗ"lXEƻrǓ^3r_/Sk_\U5'gIn2Q?/)\\I6"&Dk dcCZ_Ӣ/^ɍV/D^^o𬬯BBEBa Bev"ӂgJ#hqsӉXBb|3;gR*7Ǐ'ƹ9E4/g>T9,Ris:|$tg/n&ˍ.ܟ+$}5rjQ+Z~ݲ7~>Wemc,L"8EBE&.C>QYR<9ز1±Yܹ"}3툲R؄%KݜVNI??屻}j>>Nes(o[OĿģ57;l<Mbtj֬x5^/C+ewP,~7hZ(XXE:$u+4P,LRo7r/?dS+iR1?YuDec"99~N.&(sJNҟb_Y9責 hq+GX^oY{iZ'\ZXB^V(BE$,PGSH(GPQYc"Bk1X bV5樉\r;!"3+Q)|GVEJ_ӎ^?u}['+&!n~Nܶ!xLkǢ {EDU VlCxB,{Q1zBB,XXBBQJ:NAqq: gΌI:}Qp HQ$ȧpryY9r;%:}/Q\~eDԼ%.Hrj%3dY{~2~RI{J+Gcx+ԊxBbebYbR1#POτOsi|gtJHQ2#rLBt>_ϙKi·2쳷7n6YԜ,Iev,6X2^[?SCx^[Qz_r/W[, 1e&Eb"Pu:IˉGRIG*xO+/iDk“;u%3';s;eE>Ͳ"R;vxo9 Yz=ku,?EmE y^^QCޏXW򰲅p&"#)KH(Eqr*(KZ9?#O׈rv̼V%߉H#1t,O 669TǗыJhYc?kekezYҔ_ZReab򰰅D< &E戢Ht>3>3﨡dG͏gⲺ^G"_92CdSX2o/6^CebEVy-^fxR%xx+ _fz^! ȉ $pBVЄEJ(S#:WƬ׉a4HI bYc^^e<^ hЖoji=^keN%e)l{м,Q[(l2",LY1p\DxGcd^\Hy,o,_Q[Wz#~ei|D' o7^Fܼ_ YyEDŅ8DH&'ȱK(Su @5+T6?8CE ycz<=Շe_~R11춭VeelcyBEhVXbe1",\c؏% b'2,luQE(d՜$Hhq:GDǥHǖ2XC, V_BތXE jXXYxk дZ!DX(!L)ϐ.F)^":#Bvv%Y!~6"Q2P'PK|dE 8#CCŌclQZ[/gYD#_D|NV/~,Ef DG/ !HR"}5.KK?0a~VD q$uFq%Ē$QCCC(cُ+ yZ-c+s}C+ .!DU ס/E,! ᕄEXHKV"Ye3|9OήGb2,Y,bcD(DI $1ΥIEu(z%xCeYxEzVV67~R;}v~,$G7E+4PEf))xFv h$Ye,) E666rJHDD|dh,e a7<סK/4Vu+XB1{?ԭlYزw/^a,!gD !b(Ie}A 41BYhQ v;w;clj ccc$dz^"k5Cp/ؿ] qW+eDED j҈%+0!})-(,\||c!5_|>BN666H<44Hhh:GP4=dcX^*g59 &vWxX֜ceeY[,-oDH LLxEVRD$V"/,R;>C|r).S䳸Gc%||sIe$Ǚ41CGRb(K{ruMؑE {"_L{WoKelDXD,E(QCGSlŝ,v!w;ŏss;2C(&^k xhqeh1e^V(["ؗ e/EhgAQYuo_YHLZ:DQDqXH"Q>;%E%cq: QBCgc) Ñs;#gc9w>C#!Ùl|eL,!I1eV# Ҳ!Ekenp$!BѿCֽV쎶.:+W2 4u:bPHBGR1(Č(⎨QΔQԬK13v,;gc966v;>C9;!)rcz1CV5(5BEQXk҇bq]hh+Z(k4Y&=b 11hu(^:a!F!!!DGV;;v"t%XHq>2"YcQa661Jwc"\|9YeEEN%Qԭ:b~p(PHXǧC{^,r;aLo(~(Xh?-BjBgb1qE # qE#u:!2QF>1ĜID)V<6)Yeeev/ 7edav,l^ZNYEb(k(:֗(x{121ȓZkZKxJaok?Uh'&,"'E >3>"5Qm|$K6ić g:>+>|rN0O|gA!Q,J+L DU PW^,7/J,eXV bV|LCJF+giGCheQEbEa"+H:xy]a{lpG&!12 "3 EDbQt>4|(G4u:J&Q^(LJ> "XŖX v;YeYe Vl^>!C^'QzQX^ 1Wv96LJx,;z=hpkVw;E,X^Z(Ɔ*տlYc{Yؽ<=P{VBEODE"B^c/0" "/%jGė/p*Q+ yllxeQZ1ǚፍڡec+Eućiebx,l,,GQ1n"REĜG9B'DCe2͍-Y'K 7G,//D7ПkgXZ&YyBlR;yH/T&6q:\ڔ9!/) #qpM:(X Hr/VXߡekXYv;^YcxQYXH̷k-~7^,:DabR㰤9؅'i#ȿ( JyUdd)ŗ(NH?J1W8CCd2xxh>?MP{&v,lkex*({^G/鬱P,,l!ibeDYBxDfv!C~.^3>C\X",g'('c/Ɔ!ᱻ1↰{Vlo }Y=(Eu(xEU^[;a1^e[Ѣe_{kZv;H,EY!Xddv#!K4w])W)UHL)tJ$D8Y>ԥrqKhq&3Eecڊ:xXxl$U e:1Ļ* Jʼn1 llybeb{={^Ve^؏ + [^l2,ER܌#JB7x g9,"o+G^Ջسxee- ![Jɲ8_ȅY/ |!J9r'G,~_1j}H\BLʊQh"}8bp: yXV+gw'+ZY{=,߮Xe{Yb(Ye/ 9LLL)ЧbYS;9|H-G>[;ڈH"Ck;7d/g) ?׺NB3r ԸBrT^x*2?,?yr$It4ESҴzUe^0S>{D) y>J'GS-DlNWcw^nc>^BTyr99Hr%l_s?=ӍxHr; %GaK ~Vo}Czu(kZ>ݢ/{t(cō~bYZ ^+,,HS;aĬqDy|LM8rGk,|'2/O-9˴;;\IR%;Qg/*g93.Hwu:CNRY%HP뗳iCX~<5,?в޲YX"ʼn&)a͍b)ySxlqiϳ G{S"씺!&J^>N'|g|%wOL屗Ć!püq(?W+k,Og"97<%z׭X?z(Yb,OUZ^"9B|>AHw%gw;2'+;(|SBU YrxqC;Qs;Q/-x|ܝ/ñ1$8p˩'n*ڬVhz/M5V&_C7b͗B,LFbe#$ϳvʑxH?rȉ679')dvÐcPlȲR;vxHd<ذfeK,(z߱ɋVЊpr,,gga2@JGa3䣽ޏz'+?],2ehxĊ /?BVV՗z,?Eme_Yc/e%qJQE όlPEŝaI&EH9dL)ؘG)!)axVFGTw>F'Ŗ9v͊Cv; ^^ѝNńXEf;߽Kס^YeDg)VqŴ_ 7C bZPϖ),l,\ek-D1r;ŖYxl]&v;/E/c͖UXckZP~ҽv!G[e I(wkt|]nUj;ŖYؼ<&YزR1Hl<9)bb%2\e,v;,YL,Lv,Ȳ?O(YEiyz1\j"\BH㌗5 8cŖYeFy^lyYرH%!$ز,r;&XLE#v,NEz+ ~BCx~QY_^n։Ο(?ɯp!ҁ]xj_?#|4|lZ6^lYgb&9XxH3سs;Xxgse,YxR/Ye45e4<^oc?EWŗز%m[YQ 7O){?&|Ώ'bK2_g?|_3.:ҳy,XEc"QBBXlR%3ga,Yx!KQCBͳycY&Ye-V+V=#'xxexy^闞DL壃c!rAr!Ȓ&'/Y?;::x66Xޫ/v,1(uї',f{:%c{/Q[׾~beB r(.8g|!}D9?ox NO8cZ6v,lLeK ce6^58e蘙b1e5{ ~^_ҳ~eZ"eDdFb9||_Hl=s>j>^198'Tov9DOX,xl^^Xb=E!+-P{1bOZ:f[ߺEf^/Б ;YLR!)йE)c(>1Ku/Ƌ/ct^,/f<ש2,ebW/ ieLWkeexز2,RbvvE2D8kOEEw+z_4W^,e<={Vgb,L; bFDdv;X4uN(QZ2 byoXǚgbO/Yy~eߵ뢊+7P2X['O+K; b\>ALR- xcƆCE"/~g,~,Z,R! v)J]L)JQ11h&"11110003Cg??f&$!6)JRԥ)JR)JRe)JR/4!B#~&4Ą^j]ɔe)JR)J^fLLLLG``bbbbbbbbbbbbB&!=*辦iv]ԥҔ)LdddR^E)JRB!C! 'zlR"Ҕ)R)JR)KBYiJRk)JR)u)JR)JR)JR)JRZ^O~t]ԥ)J^R)J^R}ԥ)JRd])JR^ ؟N^)K JR)JRKy/Z>-/TY}~:R)KؿBY|R:R)JR)JR&ţeEseTJ_F|b/D |e괥)JR(JR)JRp!B!B&|p|sL)JRJR!B!B"/"u)wR t!OrZR)JRv]N Eׄ!B&&]Ҕ.)KJR[BD'j)z޸)JRt=qG]Ksy)KJR)JR)tz>*RRrҔҔ)~ )vҔ)JRe)yR)J].;'Bԥ.RJR-R~(Oj;zҔڽj߷zQ[)uOZ'֗үZ?]B! .)JR޴Bҗ/!Bl!B' )KjZ%ҔLvuKTp]/NK{B! 4d'a7EW.Gh㛦1!BbBmuJR)JRЄ!6Of{BD!4B!Bj%'Eq.G_wN6BiCkM JR%ߥ/ ,!B?01M)v%/lOl!5&Ě  kn)tOjNb44B1110Bo^|r^s.(,Ą10011111! LGbbbbBzXB!J]JRJRL)JRe)JR.B!4hkVB!N|!:2)K.캽B!Bu!B!>z~jB!:҉Le)FR)K)JRn&BVޥ)xB&&$|Q12FFEҔ(RҔ>/}\|!4M!ARLfFFE)JR)JR)w)w]h'F)JdddR)JR)K|Kjdh B)JRRZR+rB#110? LHB[ȥ.Bl-U= !B~#0IFRLlz-|jmWF#0y~c F\O__2ڵ\LB||<3Ą GN*'/\>{J&RvR1$y) Bdҗ!BY_FL)JR(D'hD!4Bz=n_LEOȢ.~4~~'kBtZ"R՚@ e(zh!B E֗e֔޾v|4&S!3"JQd!4CtJR5wR)x|bQ1y>ffFFFFFE)JR/ LLGB&u-p?Cx.إ)J&Qy222222)Kd!4!Mԥ༔)~Z+F)JR)Jdd&Rܸ4Bh˰p?@+˺uEix&z! ڥ)JR.)u~|e)wҔTL(tOe(|l!N[w^U}žݏ!B'.毼>e/Mkuxfӯ[y'N/跭Є&ɬ! җBq})JR/EoObz h!B!LLHBJbB}%Х)KkKM'>Z$CxDf,ŐeLImOUsl&_h511jBL;)D&Q2 ȥҗhCF&&PU!6-nբܽ-Z>)JRVBkbbbBMj/zְ!9! _J)J&d/#######!y[t! LLLLLLLLLHBoW ^E)JRRHB1!B! J^)~ p=fB{OZR(Jd/#")vR!B.轝^Re)DdRe)z3XB&& W.{7}:])JRuڶ=f!5|/Fv)JRZ.:RͰ!B|Hɟ EOK괥xV| XN%)<,_#<??ڞ>wDperR^ )}~L+ɟ~ ZxA-[v^u!Bw׾^%GqN!Bd:zWޭl:zy~G4ڋʏغK^B/fxGO͋>LNBtQz'^kw_diFJQ2پ{(44?i4e)z!Bu8Ci Oծre! ?OOAJRBi&I?JBJRB&߯^i8Mq=_\)zWzRIB߽t_DqB})t'e{eKg}_H)'ү~zK׮_GO~zK⟥| +⟤^|OدZB!>--ϤN W! Nio/l>E=d!B!=!N[ҼTbKs.]{MBN ҝ+!8 /bﺽ"ˉI>%]{x>'B[fBn.m)J]m)x_.s.h[-r ;ڭJ^ipBex)KJ]^Bq[;+˼Z>\Wy{zR/u}eغ>/]Ǣb?_6B!N߿%{KغB^|>?_6N{ֽ~.Euqtト!B6^!BqN Op>S~:qN&u]GKy=ĺW.Ҕ.c]g | c]xB}5߼T6Mԥ鿦_Ϥz-b?t޳|B~|BޥJ]|B>.S;ky鿨_ϼ'R)K+;תq/^V|T!MЄ;)}꿈[u{~ugNHBl5feK:AZ=E~va +BJ_r'J/ .=!NBu޳=?[{o-r={~n' 0@P`!1pAQ??"')rPSQ,fYj5Qb5)B!O]yZR/468B #Qxg?S_S?OA~c5j")GBWY{wu)JR]+y8Ld!3!2B$ňj5Ō,fYOa~?Q~5fQj)JRBz}JRN(Bo!6B4B!CIxM&I!8JSQC/C ?k5FQj5)J_=v:o|4!BpNIg<Bli!i!i!i4FMl!k%Jj5FS#Qj5Bj5R:R=BY>tB8B!B4M$!i4!i4KYR5R)JR+ҝXB!6B! !Bi4M&B! $!AgBm)r/1g:XBaB! &Ii4!B!3!MxKB'ro~!3!ByBm!8<)Ԟt!B!8! ^/^wKd u%^ό'jrO uiKY>%.vD!9B!B! xԥR} baxT)KDN!d!t.iKڻ/ĮԾ)JRr/]ER)JRҗiKJR)J_][[JR)JRj/]e߱Y޵^ߋJRy]ߝwҗ/J/Be)JRؼ4k{׃Rݴ/MpҔx*aB>R.Tݥ)J.^L!8W|DR (xBB} JR)JQ=(P!B!B~o^bft_ )DBe)K/!Be3'z'By}yBnҔ)J&RBgB!B&P! rE/Ax!9!Bv!Bf2F2.M&B8&N!ByyBl&pQj5 ,FQj5j)J]!L6!Bs w^lp!4ABd)JQb5 k5ŌX&&Q)xL87B]BqN)a3y=!3{)MFQk1c5fPLe/4! ! | Ͼt B<&z,f XBj5EΗt','K! )BoyB LRk5f SŌj)DR|!Bd!B!;봾D!9ae&IB?')MF[5[05qfYk5B]|d!B !A ɼ虨HQ~?SL?5b5i|LJn!i4 xHi!4Be25 Xf[6,ffbk5E)]֥/bӄ!B!<&I<#<&IA6k 8'pÈXXBj#P{aBf OB!3 Ѥi4FHĈi!e…L(H1 *j5 MF:&R;_~S.8BM#i! &,&4 pV/XA!! m)X&R(s/.Y侬!8ss!i*a i4HLMLeΔ))JR٥/!NgiAX3L M&IB! LҔ)JRݥ)KлMFd!2! $!B!$B!B)JR^Iw!$B!B|tR)K]R MKnaBBt)K}zRUOҔ)JR)JRwۄ! \kߥ/RJR)x]"fk}gJRm)JR/ /t!7B﮲JR'ҔeBvusR沥)z&ɜ'NBy}p8! P!:}iv泜P^׾,J^(BByk{OR.&\JR(wjsq{0!N.6^z\wҔiJR)JRbnBpO%w>)Ku)vyڞIK\]3>)JR%nسBIJRBĥ/jsҔ|3d+bཕ}{λc{6Q<նYRMn˺RJ]}'(w2)D&j5 LB']'/zϤp)j#Y,f]5RL)J\K4pJR❨BqB^>(LiJSQj5C 3P j5&Q>4L6Bn{٨j01b5fPSP JRLR/!8E!Ahͯco:a,fVtLO*j( RLj)J\JRJ^)}i'y'B !Ai4hBfLlb5Ōj)J&R)JR׶E)JR& BM#D!xM&H𐆓AhIXL8HLOe(13 JSQs(JR})'gBi4GiIi4M&ABBK:Q2JRR|*R)s)xVI4B4M$4M&Ii4M&IHYN[.kW>'s/"CCD!i4M&Ii4M&Ih4D&kdqz љ'{R5FQ.T.BE!i4M&Ii44!:kwo8W{^o*R)J&Q2)J^8CIXEi4M"i!B!BM!9yx'G7M6=ܩD˒{f &g $!B!B! ]R/rl!Bz{nQ2ڞK$!B&B|!B5.Lǔm{pAa$D&Q=.hKl&p$!Bxӵ>y=5BBh?i0؄L(HBڷ2Nu.'͐{ױ# @4Ο&h4ҚFbY>YB!B̽RdP̠!2!# LLb4'? _CPe5q r(Qwd|p{fO9ʋ&a0䲆J4P##bZ1~yA3!b3Q)KЛ':P!;{{!Be4Bf BfafIq4E?LX,B,Fb5 D^! { !2! Ѥ<01r\hƩ`?Lh΋J&&&R)~)~%y>IA 05 H~?Q2DŽ8<#Δ5  X&^ׄ!!7LQb)1~???cheF&LpeJQ2RBxЄ>&BM&daQYj5Xa_Gǽe)D'+_7Y! $! !B)ECc%J&RRo|Ios<!B!B! 9PiLe(w_]xKќ!B!BmYTΔÿ>!8'!B+KJR_JR){ !BB )J.:R/RiJ]BB!B! KʗuΗdˉ.n˶)JRK҄'bn&B!Bw+{l)}T)MFQR[!3AMЄNK|uY%^1$aBa,&_C 46M'Ml\6:R/J{cǞ&"aFg &J1i!B!Bh!NIB!3B7]%=sɌ{Q00([aB4 h!LRu! ҝ+ę]Є!B!B}7{Lc䅊qC3 ??,4i4i4M#i4h' ''$!6rEY<'af`g~.!h4M&@hBЄ ʷҗvR)JROMy6TNj5b,bk5 JRߴ|Ky/&M&<$ɣj?Č?~??L?fj5ԍh֏]Oa ᪘~$EHBB! }0Ǎ6bg铃f12}XBprABnR~8`a,f/njXzcعBrB뼾 LS&K5"l җ C<&!3N J^5z3q/)KxH4Bd,E)xVs_ ^BM&IBgD'|#]_KwxHLj"_ B^{4As_PMJ&ROta /͙BD&O$t2N_B h{u̾9d8)JRBt)KoՄ!s_, 44MٿxB z)~av?b h!>yv?eD&Ւ|/&ɵ|ԥ7̦򋸶=ܥ)J_!B'U|җu)~s>hO^Bi|J)|Uyy?sϢuU@gEsBz+E/MM'V)J^I҄' [qr?^;! ^|cd˙b6B_oǞ*g!=[/d͓{B{Є!Ol!B|+R+?vWF{T)sy-Є! )|k'~Ίnkm!NB/}/9s=sܷ>>'N o'myK '~j=V/(^Bʟ28K_76N9 n!Bm^rǒz{ؼdRBqBпQ=oͯ~38Bץ)~b{/'JR'/_d/'ٿv])J_~oB_/_7zԥu ?[K[8Lme=G\?;v!ԖMl@d[O=>dLᬙ>HCDQDu#^l;QEOef!Sa~JB & Qj>TyM5ff&Q)\EM}hYYe]%4Ga uFA!G, #=68)([n(ɳ*܀D͓|'9DZSi6ɽJ[kQ|7O[b9vW2aX9=~k\a ~q_vZLFιqzShٮ%l~DwLU9;sJQ&NDHUj!D3*TMzZsIڧT&-&P Et)W 0Ww'vqU2B~Fjr=K<2\xn~3y}8sMxL:p7}02dWἝFDtZgQ`˾sT|uODZ)uKaHOEFOUvt]l1<9雏v#nr# *|Wo+ӦPVpǤ[uf?? ]z# ׭eVo݂$L-U 7XR(Pg = tbW|_JqNՎyHH12*uQpՏF;*z{.gԾ믅t)_TuuSz^wW=. `zWWWW.Su_0(!1A Qaq0@?!uwDLBt$ tcCb :GQhp7"#)"Rg|[uCELN az~>?ЍTD¤DnIA5$s!A7=¼|ؖ0wc!Ca|LjGHi?0;Sz187L)qla>|a"Pe|t NYF |TH:'J:6|]9>n ftCܢP'Qd! C_FRd'Fp^LAӂn(:r}Pv/Ҍocg`u#BTwiLxHBBZ?:6NuEV:?˂h/#Ϣ=D q1JR5ũ1n ;W9}'L/q ')y#5zBt?7=_ $UeBF> b[Ky%+6:^C\= SvtƄ= 3n<4tE1x N4X5&5? &D"Cɷ$%21 QAғ Eȟs-WD8q,C~;:0R&t௉ g:ͦ%>э/UTOyÄ38BED}pUu~Ѣ/DU;BmW)r=.RNM7*t.&Ģ=],FP- #%W iw_ptz5E>1%U# +t?Eߤϴ@42z+M˧O4${ Lv Lu$%7ʏp.B+ ^ n P<;q}<w"!6&\*W51$;Ś= 8$8DtBB+H Od/"{oF<|?@DEdM /,0v'"x# OTѻ9Q"LVφ(Màt}Bd>SGT=tg)D\?',]1/Sm!֭%zS/ވ$?>LpNݢ8-:ALxlDDNmzi3K XƇ#ac r rI18 B)}Ҝ.џQOd J"ʍ܄1Lx} \SB >d= AJRQXzxmB Vr^ 6Qѧ.G$&/eqhx|C{6L6?"+˄;CXtا`ݽ?co  QHgct?gO"w?@S!zܣbc{1L^^Ώr~ rjsn 3qF Do 2[(̟^pHLQp*x|z}B%1V\ HEj};51#"Upх5k0z= Nj E >J1:>ot!:x{b,E b] A ˳}َ()A8Z1Hc^h0pӖAk;bPatj1+褃+J(?:z d֕ B cb_D Z'2d;C 9:Bui 6v_O%8񜳃 t D^((Qv" /uᆂJX,>Xt$/KѰٔA:C:A  ce!OO ʼn ='2[JS.nz!qlx1|O ApBcځ:ĸx1hQS:IhAᒓA!(xBXЅ^ (& y>n @lDO %OGទ،ѣdBiT8s({o8D1:L:H.A ploC!ъ3ȑ+rz"( DB18XX}'$- S =~g1EhAd rOt!,|CC& $q1H<Rcyt"C)N1p1z2,Prb萒tb 4LM 5 ‘,o< w+8¤A DB kK(t q8tB L I ō=X."EC`SEYn8mу(펄<]!t L=<P5cX|b/#<ʁ\0DtK%SATNv<#BGq!6RLrSdC] BK2D1*5C}!1p 8\;x=>tRA*lp=1kƮ94&n Gƈ@g!S!Jgjt8&17N|Bdz!^bMc'V0~ &\iS@4!v Ԣ\A09~CcxhHCֱ1_D̅UFX BJZ5= _pvγ9pxў7О*'HLBbCB{A|,X( LV',AyyREZ8 5K! 'Otlv. ί:5 XeKpU Bpl&%b\@AJANO?oKx5 Ik$KQ@!HN xt08-c EtLyx]Cv9 \Lt5Hja%5FyৼLLXxh8i;\Y1PlC9M<"q::#L;jp,B$D0Ip0cCЏQ_wG*xt~ ?m0RڇnK"=УX92|epǐkCe1h11tFiοF!&JNq bC ẸD&%Abc&pMBtGȐz.=c~L\FHFŗ2#ztD,:؜ !!x5KD(h!wZ?\}NCPDї"U F-cG"JF5=.9|/ E4w*qG/G bU1 DJσ4@^/xRdIcճc&B ։ BJ<BtZ8%e4z8a80X)KrRC1r\G%X <:KM},F1)At"gӡFRF>5^#b1C(hn(}:r0"Y2݂u , !Аci u GOOFp*$-U(BHF$5Qc2OC&]z~:V\n _lHJEFaOba : 15>!)!A :BFcppʖt hHb<0R7|S*gHx{X>Dpn0Սp08Cp谔i$Zsnj?آ1O/0]c}>]c19JS<5RlClck t~ tmnÈgL~E!1iE' 'd=i^O6 ,sX>Ez$PyK~DPKDı J>1(.41:p&˸3ǣCS! !pA,E1I F ،J4|c(C9?G^ 2x3XWQ(2 I2(NƲHa-Ӵ18R-tac?XCмdžx N M,:J>1<o8#ňbjG%H$J wGZ:$!1 /*;qc \cBŢBPD9BH1t!:*CPtHNbϣ/uhtVaG bbtH h} (zяѲp4xQx6z,.u@Iм;,C)BŒA!c) %bh" ݧ:?PED\ 6)D OqH+kWL\CyDxa"Ў0 N Xa" d nj~V!zLQ0b2) OAYH%!;8cc q͗Y:NXLΉxNp}kW!F£ 0h6LȔXzH̳Le(`PaX! WBX,6$4pAb=Д(4v] 94?GA"ਢe!q]87C}(6!C̸A RD2K!> .Z(/86lhE"p] #ЅBؠ::W 9;]G}1Ћ)>By0\JرS΄)YńDto<x݆}c2lD=<}-EB "%B\(<\ Pv7'3‰XǗTeF˼!#VV"k[ 'IQ1PGN pC]CW(B(p:#gF/sLihyx6\J(PM! -EŨlDLt8CE%j>2S &83'EI1!:gw(H1h^]|aȋrZ(Ŝ1T&av1xDr~fq,nz籱Qy)Lha(n z4[Cw}.&<a"ˏD! 3cc} ?!1Ƌ̸<'}<(.( Z$!)0j]YEԠ}ATAjxlPU.f% z]W/NAwLt7kc8<1Cʎ+ *XbL.x6&(/Y:p1V4C=lM ϢiA 3lCXQ`"o,a(c)rO\~<ǐjj6!!~}tie" C( Hcb,N`; Jͺh1D(Ĩ&CVyI oȧD506cm?4'g=t5v.M݋yNR^!O_Fe 0w,.2 P\Ccx$4?njМP5(2AHb sR b)➗ X.p!2;._O "f9XA9kd_t$*A%PBI0> 6C?)J<t7D=D88Ya2/H> ܰT*TJ!KqQ> Z/qlGH$vRL&p+G X' ǑS8a4r!*!+-OV,Gf{ti|S攅DZ'?Q1uX^7n0xOPcHhȸ|82];S-I6_3@A+kQgEp҆A TC >oC} q#/I d1x%dD7FX|!jBt'~\K\ǢEO!cbOpcN o(\D8(E LEtJw4L BBi? ghQ ls$hυ!IIeA NpbQ\y $Lj|>Gxΐ\̙AbXr@˭! S1kIѹ3  vxy՜dt*&pVKVC!X( | L>&A_yaaJVBZp4.e~ bAKFσܳ  C %-zA81F)D0汚G 1OFV ˋ|y!){ D)0< H lL$yF%j n gq`0WFR]tk)k J{'O*gv!J`[gq17Dpe0t !Ctok.͂G!1#yNzEb Cŏr kBK'!18'D0AJul?2Ra,_Ћ >32_N?FtnjޡǒQ>~xXhHl 6'!!<\!x]hjҌYz!gy6O ō3YpR/" j RL~ O ^&x8,cz|OÎ CLa1PGbMN')_3Tr5  IB㬽܌Z1#QH_V!9'ǍP\BLV7FseBs0%#LA$6Zu+[t$&BbP'=b~aCCPBHlH<1 11y(/v}'5c}/鷦GˉZz/\&R(ML#蘖!a1艉&" . Lk tv9ֿkÃڜ1bkTkEb:׶=Dƺt); 5;$ \ Qlcb\bbg԰Px*a >805~2Z u~At4>hK[ Q& a,CD%D%F螐)J"‡tHbHu F ¤?Q acq!l nᾉC]%+ 1j(ؐ744<(0G+cE/&hVh2G.J` )+{ BaLqE:E}i~p(RxzLH9K+. Iz!}5 !] !pTRHBԠmHHN~ bbex^bcd0bSЊ&HFv6YAHl- R}%bʔTo,1 X6<'7= 60(ˤ'HmCz,hlBM_[..B xβA=!J>|(L!'8SӇQfr0҈:(/K')GjR$$CtE q]x"!Ţć:B1oy[?D]]) <鏃| cc =O,”F 1j~&=A=C4O0 gh'&&=L)qfЂ!2bYa{Feɱ11 Z0=pZ@ l+˟2~Ng?{<tgqЀE{; Ʉ!k&\|: E!?DЙrb Mƅe%$x)u?,>\cZ RPHcX7k).l^vA'.!pb!憿'qD!1 HSƄ c BBYM+Ts /GbA׃A6|^k9S/G,fG&K!Έ34Alog2x(ŬL1ce=<lkZ&Blaapl!6_Om/ǁFJx}4Ak$$Na(I"8cJ"Q>4/9K(L! B D"x.Qӧ[($N!S}ŝ1sK{>u1DT[#Oa`(C1414ي6[kSQ1k7 k RBQKK}ܔ|.y.ѾF˗(RS܃b+-($$#LB'42 H̝L!* B1!%Qh.Gv$ qz_c.㤟΋@&}_ծzU_ ?ӂ贋aѠ%鎧zL"pe%dTZ$. *D"p)"oYG1AocO2ˌOn-674E<<'ć DH{ -hQ"1nb])(!j,(% u5= pbd)rQNB^=:O8N ꨿6N Carla7 aCS DCXЄ1%n~-nbezblO qk|AmFıxLbıFA1x1pRLB] D0 BU E,=dIKNBp=%ETGiFJ~?|UmK'k4+'eSdJH:<$C<(Oǡ2~ 6-66CL\C X,u)JR&Tb=bCS &3\C\[ ? X >1oXzQK&x"%B [%$. X:OBFK0P\x%.+ GbłbGqbY[ QŨI^]bc0%TR^Rc_H"" yvrB ͖0h_c&zAgF=.9137b(.G11"G%YOFbDĊ!ksK/&"B/2aB1#pi&vt8"("D<%*9 BFii>/ /q|`5CGBketxzbeD#K锝CyeKu{lHpQ^ Ą&4B ya>1,+($H$q̢d ,t8 pb^e̸h5֍KZv<bc#8;xxRdxQ c/ 8~ Ď931EƐpT)[d8EPҐP>F(O焾%hn]JS$I - 0D]au! 6QC}s$4Of,1w,_2>"n\d3zpzyP0X7rJM&B V>(/"yx^ Q(&!9%D#2 K4YW8!N'mbX]w ;}Ϊ9m t%OipŗY$/;Lk-:э%>e@S؂ 41赺a1?Au~txB &n?%G?L؟KpoJ'Q~S S!x7D!tv}(I ņCjbLXĘHyjrAqW J(i d 5paZ? Á?F#%<d>c=)}!VBvuDgcP\BXx2?tq CdE ^^P?\z')ЪGEP$'MgTDޯn5z1TUlhjQ3j5G/ hA#F.4=h\Gc> ~X՗OQIGEq!xz%}&2>8l}g(q蘟)O΢ny?Be.(D!\BΖ"\0[] !tC:suL$QS!xB-A0xgC<zwG"X.IApy:'ga_~ܴYmGo^Dmma?7z kN7K~W }R9 D$i쐦Y:}AkѡaFQsѸwHle3<ɬlo)Kkub(ˈ{!CEb2~!oEOq 8(LGN&pR2bD 0.dtHBBcpM >b"#N =($pãC?%GPU G#7 ?/n Fpm'ѿGܘ֐G*H}uD!NE7tB'.]8 611l1 ph82w3O=>~81B&,L[(frCBeKL ̥s?/ .> .9Ea.~".).FXܢIh8#& c>^Sd #* 87 ķ[t*8W+'P?/& 63I#<DEzklLHia.D?C">E)q~ S)0Р)*#Hxx6 NCΔ\1tILoBAp^}/KO8|H4{hGËTC 3QQS?y=1_2F+P[lL7D%$g9z>D?i%cj8ϚkLm!V! A<7bQgL^  pu,6(XEФCEqC hhk(d8O bՄ M`9LXPHaoЃqvo"zEH HCE>ƥ'pk`9y~=eVB gD}!NUxG:p]>;*t􏥒+˯B@p6p3irĨcYKCZl&~Ag\CtBc:7L &*x11RA̰55'qH(1DQf d)$!aQ%{ [R!T$g这G _;$)"t:<ୡGBO)ܑ^?9ds˧?*d>H XK1esϷ TcI$p~a1RcL="FAo[JZz!(aOFe}bNHZ$OcaJ/W/vW}[zs#dGO1VA>hc[ |8F7;KS&\x H9ty> @Sˡ1 1"4hQCFz <ljB A~qL&Qlai :x2N/QThHH/2IwB ke&6B~/J $4y7I &Q1"B/NBB05.CH:%3 tj C(&,vӘ? Llcƿ85:Č&pJ|;e1bz DpƬOtxt/(3$4>Tb8E.2ě5lĸ4"  dYE ljhx|BiF7./˗tp0˔l&^ .% x8!BbbR<<=]bZOcLRB:DDH"d8"G11ƘEG "Q"衫ETrF>0cX?bH8x>3qE%x!11F03К0xuŸD6r>~ Cɩ H2e($HQ^NU>hzvMЄ, 5a ^ 0"1.p|8jD|huQH:yODb L1bN,)Љx ^oL7R<4!X&66!bΉR asK! tp&q(F #h!" Yx:!'}ѱW $%Se|p:dY2bCAz e-.-Q,rO %p։Q bg1x>臊˒@eXzĈ4и7DyyHl}<t1s_!zFrJ7G oXH>1L&#a /Ђ 4_ 7tu 7kȘe[^sϤx%|WLPxc8A"?9= QleOLY 0,,HQѩhba6R:<F?FR*bhH!!8F |ಔ}[F.B>C[责(BCa`k4Obáv}BXEHbY,$$OI/h{wO}?l"Kþy=x0ɺ/laҌxG65ҊxSӁ XHxhx<<=xuc<=.A"a,= s=v}ctHy<G k( HKQ?FZ1A2lQXͱƥba%pZEL0&"bL?nb!Qz'tƣ݇BBм4$)F0Q ҉ !(>m܃Q3pctXяX(&>͹$ĆƲ  S%cSш%zX5А+ lesɬhyYqOzB Ap:ք"\&E`x |%8(B%'>ϸ`Hw;*Er'q O4hi1p]?PΖ&64Ɔg @1OVz ǭ= I?&-D0B 6]e^1cZ} .ᾖ2 OQ eBb> E A&TD#"Sb~ BFκ&=BNd-_$/拴$? RjpHˏYIbv8x#ki8O5Ɔ 0ƈJH4:R:Ll2p0x"}Υh]xĢ=! Q&p;(LE.U+$"6B!zH_\֛RoDeCbqD"!p!&6DϢc;dCl.yvϥN>D:"w?v;Cd~ N!asYzqtCCDv.Dty޴J)nA&tz `/[u'Q1AbTgυ=dI\pV&AٌQ>ctccezmϢۧ<9A:;źNX\:_bIABbN7/SB7'?qbԨ6Bo t#灺8H;:|ϱ!5P^ 7 8Б2:z1WO6Q*6qm\(ph8܃/F20>&&Q=1x(xQfcXAxL1u !~VO!( BQ;%bpL@Q"$`; 21AȬP. lcDž/?.2oO1ӑL>0eTc9Z4)<id4Ip A}:! I0ċ=x46.cP\knr?_CS2 1cD D>Ә7 R:%!!A9CBpf^1~ "D*dRԤLHK%/ DQ!`8Q_0)Q0 xnZz ǷSiưĈon Ddal]&AgQCb x6!x7paoð$7,Q!8PY1~MxBs=NJ 7Ќ Mb?O,\C+ y D, Y1LGMx%S A#ɧPhxR <ˌXE8.= 3p1;"RccTX[(2&e='Lxzb\B= dF.z ,qz/-iCX_FgGb,u" k Љq JsO?q֡'ERbb{LccRB/A V|17>u %^l`COBBᎇau`lVX#< ;1~% ! 2!!RAFk!PP\<]BLgqhO$C,e<`G'p6}&6&61D>a*:_BFɌlJ<,p.I!1c`a'vC;c rK{8TK]l@r >t\aL>P!-fMmѠx5 t./ Fn$βqB8aTX>qbs&gPg5 4+WCDa(hhHy!DžyLt. BXьD$:=B ] \L5D px!;bPbP?D_kNE ~ rSQXE{I<GHlV"\t1: fD :dx66z 27bRB(e!Cyt8;0 1so;1g1A dD=LLe:y*E\ ez;˂ S}{t\Ln68{i!Nj! ěCgupq'6H72Ʃl0} QGáRؑ 2f `ݞ lK]" }b,7}gyKcD= Lah!g`b< ^Pmh :$plbcF>cǔ>hQAF3мމ#cce ,LL*SxCmqFM\ATB_>u6jzEooȯ1h儩<6@毅Y0z8c'N. pyV_yg`h|RBק7ŭ A%FAht9(:a16zAtÆXi=,<1 F]>_zѨ|! a4Ǭ zA1[Ǟ%D1!pjx0H6N(wfb Ζ!O)D:y GbAǤ AX(̯Oc~h<a:7](ދ Q$A.l t!Ά3Lc ϸEHt0|ҏ/җn?Dp|4FMtB2qŁPͻO#^?=tS)p ؁׈Cé !S)/ɆΎ3!.Z569} ccjN#ߐCdCg ѐ|$WáWw_C 6:*hx!E ъ\Lbx),sbB\?D> h!:(Cvk bδ04l$QFtM_,3DD3Q +蚔a? !] SKX:b\] T?H& Atc6p4aMclojccz^S>62qt42bc!E㦓 Dэ v G^ak \(%e<) &0z/O6,!.D˗()Y\<Ɔj.A,O`;z 9鎂xz!yC.JEfʧU=}ߢEwqS~ nC3X67l^nu卡y?2Ö6p AlA8 \0"EJ b@x7OXsMQ J?4>!C; hD,â C sO+CB ѝ4H'p [C̛G1#4 .niqH>#˨6AoP"qd)&x3$Ž=?G1w:b//C!}>|PxW(!"#QOLcxXlxgBz:e(42! sYJp1f1!a$-bCBАJ5[Z7F!"(7oTU,zCn)uKz5~l}ɥDž_mQZ$tr ,燫/B<*8bK>ͪrKq¢bbB߉8gq9>e=p! D obo Q ǽHhcD+OEZ |>@> H1hk(A!ObzC\)hceGG; D|MFBsx:lA"B|ɇ1x6LncQRÍF6QuSv}GjꢋDY"bHá[>σX160!^c5TX(H(6{bB҃g%:)nC p/6]BDxX1kf9eMzAe`·1<+/aJ62FhA d'L!>a113Bؿ~73L9xDP: hxA4bJC'9a)焿)pZWD};?n%tZhz;yB|-h^LT(<}AQ>}z4%th$B(>^bGlHJc/üB EO19FN>1җ7(؋1G4ƈ1C葡ǟFӖ8;|)Iܖ G-^ޏDNq:d u| '_  _H rb/Ùq\PBSEdG00ѡ_ӼƲt6y 3/3F<^n4}!d,I~mlP HgIbpz5lB ؐX7vFwM Ͱ72 CZG}$N11 C8460ЗJR8D>ASzCP < _CŢZtԗ=(*C:QTSN3.ßCV' 1!`%Bì#1dHA'qQ1۔o ބ$A.,bWG ]/ܣs`.uFȱpɬ. E[𣍏.\8a"X+9XpϹNGQkg_i11¬. Ȭ#'B,B.M3 t  Xoë=jQiЗDb yzRDfK"ZBPW}4bV._IbdQ/s[F|<DȑQ X?ݰ|D|)ى-c &CBOl]#h0='q¢ 7EQcBlq )cg Raz&&QcPz d8нOA'p>Y@;|x+b='{*\/QׄJ*qwN, {5 Qf0p܃\i4!5a c'D?3X{|e.1]Ѷ'ѺS  a}yaD< x\tgJQfcAe$5mq p1S)Dt^R Ţyz0c^|>s $ H Dz8!^^JMUmVU: WB"Ix+/&Tézrt?$DA81ΤIzr%_Ĉ{G{xC*8RF Ǭ$K} 5q!Ń2>peZv7H>8-ˇū B+_<822@nhhU!5pb QNeQH\:a4rzTQH|e> wA N@TQCpOS}\woi3 J D6x)>1+fqG5n|&m|+NgOWѻҿ. &0pۢ38zb 4!1錵13 "zwhyEóŸh?DA6%8-B"cX?ş#؜A~ h> DKP\GQ !'((9=H3Fh&~8c?uC&EF/SL褨ƆzB{ҬBcQ&!xTi= t>wTT>"G{ p}#D?p}"A0>  Pd$oHE~zG=qG&"Ǭ5LkP.xˌwS.65^xcoc.MY 8(7OXѡ/➍D' 1& 17&26+HM炼|C/5Du ˈa@7G?O#:^ +]é2xT g7bd N 8 %ҋ^ 냸q= q:ӱe '@hl)'hD0(njd AEP|\Ne(ƲC-RS4JC QH֏ kizxұ xb GܘƊ}DA`R=-Z?r.8T*#5bto!?BƆ ,b .A ~ >Cz2oT˩sfK(&[A(M t!}%^gOa$r3 )߶Wbzz>~ , CJRGN0 b A.T$B)AYW$6cаvPgA$"tt>至ŔH,t,KBe,:J$ lhC "Kcy ŏYF\(໓ϸŐbLbς)O2La>LO 1Qgыrôr)Z7N_)/m>B(- ^DBjO4Q_Dx:" a,H ,Y1x%lύ(8~b}eEE> c*'bpl|)2g4n :,Ax:cm2~?rbey ]e.B(c˷nBb.\CBb:'O="hwqB3Ӽ0?A=-w3!?,ԣЕ\wGiCVBPq!H}($E=Z5eJ 1LeEX &ADhƋ$ VQOC)(ƠDO2&1Q1(LJH%̥(`b_F<baa!j zmC(AQtiH;DDC1DA`п \ƴXQ.6.4Nˏeˏ>T!nR0l\;g8a 16PAlLLEYEK&!4">Cƅ kThho#2 (+G8? k?r0м(YKCѹDbc%of D BѨZtN#O:446&w )F OKD>}C&X) .# t~to ytQ4ڔn.!4.cɐB~jH!.1X4H}ވ551 YOuq81lGD M2:#ЙGѯх%ĈJoO LfƯCgLw эR|->&)_GF)[ x:{1:e,x.trRb, &z]dCM\%oڂL})NaH|ך lmLLd!8V?0C44vAwJ>bYDx4MLo6ƨм(,^FN"LO4{\=s2<ʔ? >x*_wO/DŽQ5byy|GA867-!gCPu?.e4%?K pyr 2Gqk_pHSѡQmД41arsb&LB'C hY 7ܚ&'ӑNƴ)EpA0 ,x ,8ĎǧN@z91,BCBT:X2Ru$ŋvg7GzJ4yGY`BcxpOc)pe(H𧸂b"(C \xCř6 P ee/W(H> HC d/sͣbTkC1PhǢ~8>BlM$!pKBg?BP'e9?ěP؈F.r!qVQʞP1hQ4'2a4n2".5iGiTLuML lL^a> 2ŏ|$BBr khc$^$Ɖ8/1!1AX8tbCE8 b Bc<){pPB !bʔ%+_9B~/7sN7=I)cxg< 'Ctapo_0メPGc }1t 2QX!шx _q,+ztcB _ע 5>e&tbR˽ #z4. uc(D,LEА!4BÑ ^Pr5zqI}/i)G}bNC1jAGX(x~ zXQlb\F1CB:lTY67FB+ |Ʀ:Qy.\)q4xQAƩ:BdA\. Q(A1vD_эLA1:&(DRgaPbd ,2$So^~vcáe؁a'4H1c! &4~hgke tna^e)y= kPPMN>V:3 _刢LPN7*5a, N &=y&7Gadyvb(Ɗ#Ѓ @nHІwF5XGcˋ)IH3LdɌk(DW]A Suhd!.'Bx1u2  /ŘRו苏XU9o Ƙx7F_$4Ńc8e&#.1b!F(\zp>}yc#xƇGq4!B IѮ b X7R cAǓ>3\eȶm66&QQ11E_iFn !  Hg# 614xt[7Zby7 FC>]!,ƅ)(CXjei % Q=a8Qd6pe90(ɬCǓ Л(Lb3pLaL4X!  ntaf?Qjt,oECD!\Ra"e)Gѣ6'a,^72<4v!Q>g|K_Ѣapc5l1  K1!.gك]<K EdV <b 8~ hNdad-ҼFhF? ,"; jc4=k:- F֛ 5;z5h\yc, bAX d<njT;(Fمa0),o ҅=W " ChhLDž. Sі1Bh Ap&.2hhhLLGCPlىpe\QCbej!W象G!BR8645pnD.\d4}Ǝ!1Ri И,ASHD1jbՅ-EIJ$!Jz3OXZZhb QjHu (|A,k1Qz$b!CTH0M/? YcJ gq ؼH}xƲ n-u1Z3!1> 0/D dcy?W)VQ(.#]hz(& PglZ!X Ѩ>p0tDeϬq>a 6> ŋ!XqhC Ore%NXKZG4JL wFYqeѡK^r>csx=' {~p1AI5o '8_tY'%Xe(YQ]>a)en~EScztی51 ÈC)FJQ5e1mA1 &_Èާˆbetab AB1 D&! Ѩ4!c.<(?q .2B S5D Fu!1qbQ Cba0ѱ "ǤR{> oZ C\BF2J1x!e4Ə2 oC.R9ec {}R0OSt,~ꍗ)Obm)lcq_SQt> o 8O L5. 2pU [c豪0.,&1d?Ҕ)Dˏ R.yF)KqFLxzq9bVHa' &66M9 Jv%$D%n΍ 16=3ҋGz 6\y4/4CANe.4wZn!. P}SXq:B A G{I$? '!DNl!DxLEŬ{zLx!pP퇣 AchwQaD= {\2QPV] KGxa*(cG 1<!;RHA uPGJ1Qk1RLz1:!g3^(J>F >1 kzA18{\At!!>ƉAE^Ex_g=/4EZ$7qpN1xI.7<Og < /(vƄAY ,:m=bt.oD! BT]Ѹ}a111:eckQ&t S D5Sx,:C65G†/|ɍko |u! P ARb\b\{7>*tO" ĸ1 ǔՆD&Qtk \֠ r./KV8BLa*!.f6G}&A:C_ r RKST7L &1 hf.p LBb~X$ΰ_.> xB/!;=6)}pz}c7|ƻhBb|>d<\ȠƉpZ!d:Ǔ)1K]A/ Q1 <.d{R ф%Qv,$$g Y13a'(EYu66-6\b' 1jnBz'<6 |Ϙ1 HeGA Gyq> x'k/a Ǎ11j׌C&\d҉ǔ1cw>V})p'2C}Dͦ4=<ƐEQ:M'hk,)r oOp FŰhc_܇L˳K1 d]#K$P]bLCF.QC:4Q𧁇e=x2Քa`Me):!3Ѩ. 1Z\>ΆQ{hNJ6]QgJ"'_4%\˦?K(|̺ςcYSaOF'nQ D!u\a4: CHn K HXvQF#/-bsZť: \1G)71'DR JA5PSōX`4-y5! ˆ!aG~Y3”*Rn~,%2yD1-|l9ÉS(c > BEa*x5EAȐK(97YJ&7 Yk:%GX?*7q3?0 x B52S[A ,LH| %?cdC=vq݃4B }.Jz5qI5 w!(4A## 60c uQ ҋ27=[ܟi1pxCG ǫ<1bǐ,x^C;zŋ(? ŽňGňx\ hJ$41jT6/ĸhHJ R:Ǔa5VК'O A ~jQTCvAy)n6Q%2'0ƆpDtdxF)-CӄRk/ᶋbzسLXɬ. 11=&6/=jbljLrZ3‹cgAؽ!1tBZbV$CU2 " Q>1~ blBPtp&QbW扝ϢϤȄ7XhXA!F.>E`A^9~g& ))3xm. 1xA ~h~ GB?ȋZ&1Q׃w)KAR pzd.➉Tj'!7 6LcŅ.7\ŬhCKq6z2KŔmŒO' Zz$5X};;n2*CKCP5< ^bc\X05xBhF ň>B d3_,cXĆ/!L} "?JR1Lx0ƫf< 6Qa%2by.&JzR!OFCU(!on(hNd8SBe C-Ce:'HM1^ tNi7d6! &8^ƈ'q35w L?J_x % vƫE<.&>aS44GE ӆ.D  XhE!;X1J16E)H'Dz4A~X(C+=&zthX4x>YEѨ2!1yĸq2dD]d&&7Ӝ u8 qOVq3%5\1e(ǧe/ ' R] ҉ N0ƇQ6?qn ܹQ!?`AA: 4RkPct\pNŹ!Q6J>lT> &7lhHVL!> ae-!1/~(`C;0鑴R x<}E$__x7ѲLxb Zhhhe  = k)n&A'⌜(҉PN= lj^臐h)uxPRb|(,щ<u5f%ahט~< 8$&')҉R#X8Ee=<='D B^cCh0h3P׭ Ax&!1FIx{Axш"bu4[bhGt<0dd"DϢe b!ƴ/QLK\(Dzҍ D(bA1 Q]8cpA>($SJ1fb7XdCĺ:b&y'K1>EǍ D]gxО=hA$)!D5ֿ a&A6T&h~B(%ŒpZ} > cpT1'5$?rOGLhB&z1MCc QQ1\]YQ:Q E5 gcɍRBcɒ11tgE,Ynh_ vꉏ!&Rj\B'be!ֆJ,~ 5ND$1d&,e.e)q"! ChxEǏLA$y|,1 6QD1N~cdx'EzC8 Ljzы:a,<H׍bA! BwZ 7LRi!}.1KdDYKGc\dY]}hK,LLzE\k% Rk(LXŬH!yE(ؘcEa/2 łzX&pde/t|&!#eq۔O дu<'OtX*.PTXн!|ExLJ.&Q ”}8 3eRE XLy5cO)XB 7E0o_׏,)2~!D<bX8!1o =~ I AI+u(ڈE D-ĎoD*ĉHN%IuI%v4J&KL(2@ m&km/5M=4rM-pyv֓ni/oIH&O}Y,mi6 $HI m6[='mB)? ~x4#iN.rEߍA{xl,RZ4Kmi6b$-H-@ }4M6oFE+ $$Kk%$i){M&YO=>M^m/쵶Km?di% $!%6M4}-M?>nLMat6<C$f t𷴗5_MwL+htKo릛M5PH4R4y4o~i?wmٿ/ndj[oCf;"XQ=G,ZLOdKo6m&PKvAm&koe ۳$|Ik&[CA;]-EyLaK?m@:tIOߤKcosMl$}lSMn3h?i2 +-P@ـl*ol&-6mD@!?߲@M$kEIm6liIl |?Ym>U1L>i+(ǦJl fo5h2$ /BHM&O/-mm%lmn[Ai$omI$tlBmo|{d&od-[k$i6}?}Iom ,Im}ӵlI&O~۽颛{ FG˶5}u,}~ %[=ɶe4}ۿ$i襤A%[nm -M4OomMdA%=?m\) [&dOmm@i?&$m=?MII_{~Mu -I[ΙMmEi[K$d |m?o}ko$m@IyO)?6}}}mI[i%KwdAM I }hRiMA6ɶoY-$%k@vm% Y(mbKMP$'O񥻟|&6}rFo._?IO *[x-vIK$HK}kmI, -`, I dei$$}e%|[~vI?- ZImI&oeHmn$bKI]2RKozIdb +(0Ni"3Nl}o=۴]/_hP`mdMn42XBmk~o Ͳm[ImI6K},II;li6kmۯlo_K|} 6 #e]]}mO}Y'$IOoolmߧI%@M7{oelY$I6ml?%$d[H$Ommi=-m2EY $iIPkvE$۲[/mpm+%(r. F@6IfitM=~[頄[mHXem&iY?%o%me@=%d$$J"oim,$aֲ,4i}I% [m@$%I6I4Yڀn]]/:a)l a[ m"B" &K($M=oJ,` RMUlZli&B-$m4?IlI I",h @IYe$6o%OK`M,M&M-}flKIi[d$&YhMi4KlfIݣ6]_[mi}{V ([Wh!ErI0M$Y=dZ0M$GYu@[M6mۛ$m m_|I,mK =lзoA v-IM$kI%XdM6&YrMSI6m$nmol&4K2?_*$8 Io&X,~Z!8KI4ooK,Xd0[鴚t_4&{IMI l?,[)Y~YdYd}soNmH-M4[m-i略m&"I{Mm?)'/%m6;C瞿#6;?oRVgb9lH`iɴL3, _%m$@Wmƺim)$-I$~o|زk?/[$.M$mI%} n[i` Yem KI$iZind߿8&;&9C   Fg?3zBtxϦM${=K-rCi6MwpZ}۵m?߯lm$x_Gam~>K6e~_?}[m$Ii.tO]ۯf6*͞'j5nkI ) Fm.]&EY~mX}i90HAIh m?mm$-ˆNpk~)ı+Ӷe`dI&TI4f@h,HdYdM-}=MX ܑ$"k_Tj5 Za) n JxW.|]%$骤Bp%-%[tNY/}ߟm@H8Ko͟ v;_^Mm.Fd&K}6Ie&l 63A4?ES!Dyܢ5~U#rذ^Нp Kni5ɢF(0 Id H2a4-}oNK+KfYn~o&kۦ/ Ҡ>]m$fK%|oiDK,"%I`[A6-?_O[\4uË/XX/Td@MI_}M,l$0A  5-e[m&'9X<+s!ol0~v4{m Y,HdAI&o-\,ٓMri.V76bG۲dE. ³~}4Ii %M $RIdK$ Z=6m۽o\}O l[I$lmimjD`OSN[l,I$@KdJSM&G/7vﵖSlʚ}6YmvȋM4`[In ym,ɿ[g},$)h s( !MXeOm-@Mv}IG9?mmZg6|:L B+lWt`/dƷ$5v!$ {oۏomm@ }d}I~+鹾 ܜ~>8ͥo,[SI$m6K~  %o[e2txI( [mImvei4Mi&LK%5I&-.ol}Ym$e ,&Kod.6HO@>{4g%oaBImmMi6m6[mmgtXi420%Ij[k鰃N%-\z 6~Sl}'MiYD&@`Y,ooo}~쒉&%m$Yf|m#K߀H+7e6ݷm4ieߦMEo~^,KMXYe\-dGVl oEyrON]r@ YO(Eq-l&m4M}E,m4h6$ov$YBK%~q$в +m:&H%KKZkO kn푗II'Fmie?M4Iu}oKJ}2nd^T] Z[Yżk9M&w@ɻ2I_ 6)&~E+wM&@nmP}WOVkdiBdHO@6@;myCoE4Ea$MEom=}%[׭hki6w"S#3ݼK_ i @R$\mh ix}߯oBۯM$.&Q4 ֟m$߿d}M[}o6Wo}SM~$m6Ono3oo°٧l:Wv na c{if\Iߢ[%4oI=w4I6im}kJ%d)C{o= 5 >!RM %"|I oomm}i>&Ii|&!_1KnY~%2&aT0 -ŧo8( 'lM4Iy =|M4io}ijl lMKI&K,a=ڃSyiH[emI3i%$7ٴU_oeu6Mmoo}ߐ(_}a:ba=`&C84S-҂V!Ae&&O[mAsY`tmoHZ-M-I//o |:(v=m?N$jRHT z>DLPm|!SI}IMi?=i~`M0cqw6,]R=t;%X' #[ei.4I~Mm~ԒiOL>ͅw Ez&bddզl(ϴoX}۴}M&MIٴ۠ ҧb.oNdŵSR~hhHo$&xE$F ˖}I$mI?餾mۢ6}-;aɿn/m Zp+;ר&klLi!! dV٦Im6i4ImK6~m2/~kv[N 0~7P e!Q[b&DZimE%&I2%K.Í $&[iIMInI6w]}I,>i gÍi,v x}1F24`Ěi@%4mdI,Si.E$M&M6Mi6i}~K.I&5 Nm~04̡U @UC1Xlje 6Nfa"!}I"K-RZ]|l6IMmmfMlk~ ƶjIof|Ciy:(OBIQ/(I2K,Zo}mMm}_GV:[AD$-dT?i}[  ˛dt?di&20dkmki4im77}I߭mIv$hB|SGlB+ئ" LӲR}`RMk-TK~mM߼vE?߯ϤZY]7S^R$Y|n ,EZ{ml"M ਀_My-K}$Im&oimߥH)IϯJm&rGҷ)42Lr $iii,oO}ovm۶mi}}o/@GI{;PbcK|'= Mց@ aoieOl}}/ߦM4]omo}M/Pkq6 Z6?snjO}%"$dk;iio$oo۴mOooI-閗8(EJ'| 3ep E3wbB]-_YMu]fidiKm߯}M?|>DϨ9LUfY@G@ImI2ݚIto}٦i'fi=oi&Im4K}mmIl$O&;P.~32 3wa晹ר:-X"' o}_٦i?tm˗i6Imom{mI$=H3aR3筧-"#:v.?k5 i{i$?}mٶIm6~RM$mM&Om"M'&?֔EVF6U7xڄ 8BΓmi˶m $i}K}~϶K]xM̄IrVdKb(4q"Aɠ$4YmψFY%KAm&I&M5$iSk4i6om}6S"Y /e4|%j0kɔ{,=]BAqDoe&X@$vmMm&$k$m_ߦo_Eo춴%J-ϝWI@gFٵ@H Yi͒oM&m$M4kMkfM}o4[{/G(J/T TwM[~W!ߥX"EΟMi6&[=MuKfm|m&M~/M8W sky= խ,m(ml$IM6iMI/lmkvI|plﭒ1H]I4$ %) M16nmе[vi` mMI4milI~KmnOն}l#c&?YXij 4+}%S$I ddI iiI}~&B$?&*O3;Ԥܒ'YMMeCI$Ng}ͥI6i|m6mvvb)$ =,U6i}#[E HB$ I7mIM$iOoӿ_ m8,lh9=uf֧_i(Z i|mv I߭m_}miIe[k1& $v3]w4]-D3$M2%IH)@I7}om$~I4m6domQ&`-t~cAW~op-2Me[Q๵B'ԓMRIA;m6IgSI&m4i5=?lkJ\$٥Ie%&dF/նf휟g~im K66mRM6M$m$m?߿oIf}xn~ 旿+CrVOj9$DY#,$-Xa&MIYvIM6A.fmIn)-voIא]IV I%}OoPK}?%I"H %IA$A2?Ii6I|iRo"9O 9?z}}_<ߴN'P[o" ܅Le< i ISM6%/iM$lā&U!V^>Kh%]Rݲ,/I0l$H@$$m5MKi&i$}ŒD.V}rBQXsIH:taBkj/*Ltl"C6ķ߇uL2kI(&_MM v6i5i6M&Knm4It/,g>3 ShNڵlKaW~^E{=m$H$?Mi7m$kM&I=섺Ƨ"&Fs7m;D \5OLwp#v䢺8(J$7`Ǵۿ~=I&omM饶'd^WCW$I%۽an`dEb@l^Fm߭ Jo}m4KI=|+&sFM$I!19/M+f@9gW EYd1~ gMÎaA>]6o}Y?mvYu\kξI$01WuFMYuhj]mO4 >iλue<ߴB-@k~]:r @ KfkߧM{?߹$ڀiX%Z0BAI$I$ &$d$˜#$I$C+/{@Dc#;$KI/٤6 Y}fm$il}lM& Z3 I$Iz_0v?Ii/HII&o}? 7olo&mi<oA+]'%a=Ye=ȂI$IgSRUCNMlM2Iy;ZD7mɠoi]Ii׾mH,[)$544f$I$I2H7$dߴi$O4"_f{oIi4I6Im$>ۉEEkhOG?YtfB{I ]/jkw2$-$Z[Ke[Sd2$I&i4m4].6,!"ݶ&{cɹxaEؒI &k.[][ҒHil lmM6[=M}m{i~imMoo۬ۛ`z 2OٷHKrp4=(2/~俥ڟr DdiI&-mM]eim6AOi)I&gnmZz ѐ}oS&-$M i$$7m4[oI6IiiI=o a]i?>x_OhٜתLld.d6ޤw"plRic}mi$Ii4y/}oKaimkp;P U6)Q9ґr_m5H >i6iI4IM6k}mIlLImmѐD=m:*RDA[j%]{-Y7:7m4M$$M4M&_-%\ni舛kAբ~WڏbduZZ ж4I$o}(ϓomMMI6I4II-I$gZMA%{v-ݟJggf%-/_mr,_AiD ɶMM6i}m~tIe_NX7a&u&"k]ϧ +hB~X$߷@A6m6m6MkIX 2Ϳ_r*z,MH-_mγ}$@9Tڰ>i7^@d{o~{d}d $H!/o}4i&MKfIdi,wm2O=HMQ(Y/ I[U=RA`H !=$i4Mi7I6oN:eA,߭[--嶛:R }oo$~_@@5emI&-/i3[_^u|EaJm(.I\.s%X>A&_%MhM}v۵iK7i&OOQ-ATJ$Yt0i|oh- E[lK~m&%ϾۦM&iI&Kfo߯II7I7"wN6f;k~۞mIGvs[hV%<İmhIHm_?i4m$)5Ooۿi 6iۖ~D|z~E7 Xei7e%Y$l dv(Vm$ϭc 9,VddO~I&m&A}}m?}mi]Q$!}݅-$NPi .i̷+⇿CdRi@d]|M6I-m-$Op&o:eD7%eݚim#e4Id%Ϸ|I$MM&ۿMCa0$  aN/p0 Ip˴YI-I$B )Ko-֋(0Ce#agMi]$=I$@dlWSg{V?m[m7D$OMrdIM6MOo}/IYPH4d`ѫ]?nc^W~@>y-7vmK;,3p&I6 om) Id}>v^zk$Kiy@{nlmlԤ/Y$lw [Y_Im$ۯ`i&mi|}l o)6m4XRFe[mov;h;Xd>m}ٴnA4M&m$I4oo}iDD~wgh c`rGI$Kkvh!XM6n Im&I'mi$H 6v -6ilvݙ Ym}](edMMoI4Immo$A,wBwRiI쐒WJ%2K%}қ-_~i%H $i}}e&M?i$i&I&m}}߶II(قmY67m-@%mZAMoZMe;MM4I&M6Km}4YIJkRn"̓ ,[w}>tdld+DHH$di2 x}Mwi&٤}mm IMoQ}۴$-?@$~6䗿-@dMa$Im4M6m46m=m$i4~ɠH i4vv$K K5,%Sm~f`ly&A4m4M4Iۤmnmi_5ݠA HI6Kmv~mm YdX>wymom&aI4ٴI4m&mmI6oeRM$[n6G~Yv֋ iohKVw(o`-6I]i$۽IaM$Zi$E&vmi-fdm$6A$AeݦM&_$m}imm$oom6+$߼im4i&ͤMmmao o4AP?M4Pi6@lf-ĽlMdmm$i$鶛I&i4i4I$o~ې{DaDSv}f|iQZ-}EC_imK6o ~ymI6I$i$i4eo}mCioH_=Ϸmm?Md G4Ų^MId&ktM4WM4O}mi4I4mm4immSmQ6/!`06ZIoM n?e|6mkߴm^omoY&MɦMI4MIݾmېMi"! dA#ݾI:ImeKm&m6M6kom$m$IM4mmߓM|4B+4yvAd8H S yj;o;v|MO}>Mk}i/}6Rmii$}omɶ,&eI!omI$-}v >{II6_o?oM&kvII&mMM&m-i$d l OmO4I$K}7mM$M6}vIMmdmߐKIۥ4-hmA{D]&k}$H5{m]I6OoiM4mOvI6Ooo`Jm6 ,Z wIO636[Ll}_I'm>yٴMki$oMIe Ol,[,ٴ{m|6mM&`?ooͷi4mo鶒m&Km&o}= 4Km:Q!K,y6I$K$_IrmakߎI/O4MOl}O}uoӯ &OodIeݴ?o;$M ,ƷI]MɶiO}/ oiNZq4Ҟ=v}BY$M$ͭ,mem]m6ovM4dk]} dol neMoIۯ>~M" I ,iϷImߦI$oOo}mHOy%Yfomy-˴YW}HEf''/d@oI&mۤM$߭ߥO}oY%m-HKlY?{eI%[u6%$A%$m-a$OmI$kߤMM-ooo}mdvYoAkmPIid$K|i%)M-i [m{mdim{|}}KmROoI ,}lmIK- IiI/fii6Im?MkmoKm$}m~Ko2KP ᄊ&oUiE M$Dm}6iMi6im]O}K{Imno}3hoK,ooݓKKeMIe4a$mI&MIIo$k}mk#ソl--l3}TļZkHe;}4L)i$m6m&5m4mo}__}/nI}}$I;ڙ[)I6ݐ-wIi6Mm4I4m$I4O}om.Dvno7I}ۯ$vd"M][ѤISm4M6i6I&mM$v|o_@٤o&ImtklI{-m![e6iZimmiiMI6&mm"%y&IioJ;R]m]dSmI&$]tMi4M7o&m5}AGoII&i4m-%%Y?MnMe"R%KtZIm4O}ߴiIMm&o" !01@PA`Qaq?BkBZ$C‹DKwK 2-#BF@ 1(n2r7Br4X!RF*bER)JR"oBBD!;R50%: 'JRxZ70NiJRDNJa27"Cb2YHQ6Ah V5X&Q;[//Ə"_{R DB! !)J>H. ]wd L| ‰≐$ $D> J+8@ՍJcV5D]`tsQwCqAHL>pSDHN R)J,R!B Ob!O}]D GYe)E 8t>!z$kT/!#B cAe5<7E ѱctPR#+^)E2( <} u( ,,.F+E XR(0R'x, -1Êw b"!$4bD5d1*1pЭi% AmBV,RD LxHH DJRNṂe)E2V5)K`N)88L@oS%$O͔)J_)JR)K ߁ACth;]bd*`PsZ`n &$8DDAAQI8! bW%:! Bz/" 2xpwF Ze)DLZ֕CY9X4B!˩辥/Ke)JR)JRnlce)J\ҋ9. Ra2, EN(:wx.Hb |lwF O+S"uZ/Sp(( )E2})JR)JR pKSs@ѲkNuJ $C͓)pLXR)JQ2)J6Qif0n\l! <.ܾ^-)J^RZRXl)JR )DN┥ԢѲ(JRΠwN`" ]wR3Bcˡh] lкˡ~'C& !rB-Ce)J^;2.[7tNh';sԢҔXN`l5HOJڔ[BЄ 4BSǍ:B!Ag#cWB!B^ L2+SD N Lrr$A"X50!HNpJaS"'\ Б7_BkxB$^l!%SO,Bn_x] l)J.B\|!3x! L%vB <999! AXB)R&%4Xj(A"!$ApQB"?"|-V ބ ݖ{/+h 4ASg!A.  !B!MV| /O-дl)\!0h& g$%0;Dʋl)z't)JR]&dB!BJW(.[gZ>' .& {Xxxn`:uL)J'1;ܰ_+t\ ""$ X4d X5cQ"G% rNNDP+( e&«*Fp NeJQb)Eeȕ%? Sd L-=, 2O%XJu燖.l9È LUL"( Uжx_'xhI'v'4 N`&Q2ؙ +8,(cVJ2,h7OD@8+GcZCV!JВ"X\)JRZBwvS)D7::2@LpQ`Q`X6%ph,y6^mya͍QY``X,-'pOg7z\!6Rh8 g,"JI A!Ph4d? KEb 6V&NaE R (""")E!BX? ̀E2Q b<\ V ]A0MĒr48b|p((p-uxJ]EB&cWSƍ\<`nJRXh`CaD%P %L44: b葢 sA23E (NH_ !A"o n? >O0L-C;Yk<$2]/>\^.\^7HXXNhx] >z MH=+Xɂ.EL|XV%< x B"oB }I!M[(!C‹}]!Bx@Z&Qh &R\m.4Bk`4L/v<,>lm tB!B!0hବ\}Rs.HB eiJQ21Bt2&RN`&QrE iD&  B cD!Bv,6S}gк^I{.-E-2Ev<,V-3 /g 'e)ERZR Bs`&RXXe)JR] Z6Se G3xx[5X66Rqbb 0[-Ƌ gоa[k>A&X.iEccYxN&&&.NJ&RX)E]iJR]4Xv6Qbz-!3=(+S]B'l z=)F 2(&Qah]ˣƋE] Gz,HB hF`ܱVtcCacTJe 9 )D&Q=)JQ [RƋE!Bp&a> L5z5>dLD!4AeÆQ!L`, ORe)DNKԴt !MR (GBn! PjBVJ>#pmlg Qxz>KBA*%$<(DVQ2$D' \=!DR(JR)J&Q )E+SwD N?hXJkBA H3<1+DBAc0N`E[,xbua/{el()D,,xe)JQrA,!B C8O%"275>1B`( e)JQiJRdPAE )K2l5> NƮJaSt,,,xxW`r`*,ހj$ ` E[,xlo.W>^RBbXN`+SI1$Bv8;p:Ȧpz19* d%e%J/N`ѹwz-BNlRxŘ[%H%S hhv$J x^Cx,nX8n2$IcƋEԶ]>%ܿ; zA"Dԧ$DDDDDDD> R#@i‹"i &D. 68Ƅhh h/1ѐ&HH#H&999"n L$BBD'4 '0N7:Z,%pjlJQh0ko`ᆋ`6Qw! K8!;$B!7] B/~el)JR)J.!XB-'JR)F'2BN`LI1z7 v& 9 x!=!Bl:%4H&dN`>ܺ dh.D8aUq{TQhqtQ$Bk@A !B!Aqܺ_A8(EiFtI1%G1PEeec\6R|(-Q|;CZ{g!$zJD> >HBB9 !B!NBiÈ>,-B! /;<=EF Ɗ+2(&R]Ǵ&V/{74 &RD,!8'Dh!Ap5FÁhu:++)G “ 6<ZxN`,(Dp'0b7vlApQL B_c4XXXXN+DL^ug .K*'&RORt=s%>e)JQ=e($nj$E(:5HrFЈ d/ pCd7(XT6^ ( .D(JRL\e)JRzR͗JQ~W@WQ񅅃nj' .p h!yI 2e & eޔ2 ”( aU l)p(0bQ5c!)(J'NR )JR$BҽĮ Nb *'t~徵aq¬/K 70&'yaah,><|e)JR[Xp)JR E N/!5X 1klhtJ.,JNL 0Le( hT)JQ~S[=Q,,' R)JR k >yVYB\aaa2e2@ OB? <$Mޏ't()J":@E<5!y?D8pppYD5;r*CP(X!)J&Q2})J-)JR)J/_rs΀ ކ Dž}G J&&<bp%d  zeA4x<#.4 MC>xu<70l}ⱬNZ2,,-ra \{,-oBs)JR)F78.}""".Hȱ:Q<'(DrAp5F44r \! )E&QrD> '70N/"~Zs`'~=㩲w wJQh( J' v5H45CD Nab-rx=ṃe( )JR6n`I 0JQhG R)EQ(DEtN ݔljAzDbҋ(EԜ7q㺔A+Sz>:ѹN-02( D!AD :b<|K_!B> p51B fB56R ”)E)JRXPQn Q2`L\xĤCD!0h,B'j)JRĻ! JQ~"s@{>1m.h /0xxn}@-ahdKqHB4Bx9: Nк|Kv=4A<$B 2xHD2b (nQKn)JRL)J&Q2{r.EGQD'xBAx!> ƩJ-EМ;ܑ:'l! x<<<,,xyHm Ȧ&х oR)p, tXXZ-aa9n 'eph 5St.˱n D (𔃐D$'e !A9<d$DÜQwx+ct*l)JQ11r'4 Le)DR D";e( 'D!3B hrBB'M(zSay%Ք-V^ 説OXXnj,-)JQ(2 =L4AxXx] #D!L)w$!Afdj,JQoҚ 8FpLABbbNh(2)JQhXJR Vh AK_̕ %3>6Ia=8'NF&'1`RxcǏ"^˚RL$x.EBQ 9 Ӄ#A(*1rybdQPa`)JRҔZ'0n±rAa `sCW !H:s@WbWsXZThaO܂s n ѬX| % Ȫ2BI`E(JRe)Es (N2{;W`54!B N`g8RLLVtCI$4?щ;p[W, D&&Qs] hl[x_Wl)JR岔T\ y4dDEhL!>XP~ RJpPA QEBbd'}tL.EDL)JR)JRDL(JRPB!B!B}~>Wyw}OG&Q`ᢼxV p dS*,< n84p\xp`.Let.-[Ə#e)JRvRa*k?JAh!B c`1;pK ٖ$'0N9e:xh] ˡwx ><7:7phNbBPI2$D4d0caX-s,EXCp\;7ec`DNX)DR(EԜ;)JRe)ERD; OcYeiio "J4A!)V*Qc LxŘ&\nj,,xlgŢtxǏ})J6RnR"Ln&P-GHƨt8 j5bTA(jnBFS"\!0X LzRe)JQbL(Z]iJQh^0 N)>G(, N, TQ<k#D![\kֶ[-G| !A<6QEdBE){Z5>$)vq Q2L(e$ ђaxޘ> X+$ޔ)JRLjQ}^?l}}z('. n , O: \!< Ó,v.} !BÊ BeK\1J.Lp(D' &Q L-8(rD> >HL!0 D=)E(NlU(jR_2s.ydp沇𺭡P $B:4] 0(&Q<.Zx=4A2[-W/.A=XQR\fA.!BW\. Le(DRXQ2Є Mxx!M֋9w}T(O74 ߡu=,ZEρ/&" BveдŘ&R)DL5ph[д]:ܾOE)JR xAƨ"DJ1!&cD!AB!B hH'JƔe.iJRXB"aGe)J^A ԾB/70n;,>Ar- *1Xvv- -;(! ֕%:)EQtR(L)JRF-A$A᫰$O")Gks_ho GbxAx!3 S0𢅁2)JR+jcruRJRXN`ڔ)JR tBf!Ad>?1 BJQ< crv.a.xA!Ap%!XegʂJQb]  \ZQu.s`'z! A" %vSS4AE.ԺW!~'Ԅ͗v xg#ZJR)E ߉"tҋt. N O_)g煇>dz>Ǣi]eԶԿQ~70 ulhB}h;ܺ&TBpJlOHH>r[-W ~G}ݲr7z DRD!5H! Dux]ȑL ?+J~3}OgrԺR]^:bgoz/\ !$Bt Nк&R!Bu"tBXB!B!BxB&\cz?Wк_?!>JRZ6R)!MҺb[$LO˩~5t O+J~C}G{.[-eԿC 6Q(J]bWBD!Bl_BDJl5;%?A?<=RԾ|^6] <}{_ce)FRx{R ZR+S"vBu+-'• O+S'0N  w}ϱal\EsB" HD!S !B!M)W)70@;Wcscb]: ai|<|O#cSS" ] 9wDD&R!B  M! ڑBxHrs\dž txZ-o Z<,ABxh!B! dh7D&S̜;<}<|>ex>>D BD!BBBaL!B;)J&Qb[./ZQ~s'~F ߫S} :eE/<|Md!BH!4Bx%:D,R(N`( \jsЕJ#22h} !Bղ!A ҔX] )E/Jj ] 7z<~!>=See/#Ws!B!B{RҔL(jRxyG>atx_b5t NB!A EBJQbBs]_Ww9n M {-Wܻ4xxd!?=!B!BzQ2غ)KQ}> O9%: \#z<-cƋ]}?In`bDЃg$&R&!A!>RL('K_GwN`s@sb}lC[-4_R} OW!Bx!B\j5H0X4BhmJRX)JR('Ke"O'0n)Gغsv,=˩acr]OexǏS!B0!M!Bf!0h'](ڔ]ٲ>sW؜;Dž?v=B[=>F O!БA- b]DReGܶxH'ڕ)76wN`} Gж4AGܶx_BDSWB! !BpJl5h! Qm㢔]( p'h)аtx]x}\ MB} L=&\Tel)JRBsSǎ4=G凅Bo! !01@PAQaq?!A>ee){!Bh];B l- #hN'?H  T,hb BmVFrr*5B x DBxHҔ2B_$MEЕ)ܺQntNB `A.5!19e+~JG%NWcQ}@!%dH 5t,>-WR.Bf˫s!Q衻2Jg !r$L ! D&j pxh$I*P(g@JÈCBq2*3&e dCD4 ix]I!2:R%4] 9wu/ oPn谑%) BzD L^7#&ƟlYh$N>sbxXba-e.кlgԻ56{>ecT(r$A"!0JfW RD Lr I@x5H:90s2 zosbPZ&Q!ACzG,}cY->4XZxat-wˣr] BS>>B)&$&%V*$DDDEH!BaJHXJbҔBWDWbD]I=CxXxZ5t  ! !B\ahet. Ev.5pji=!74 ަ˫e){^!D&h!BXB `9!Lrrr$ADύE(ԢZQmv.Q}g=E-: R!Bfut-l;b_A> Ndz!MA"!B!BD!A-D!BH&)JRJHQBWE([.t;Իe(ca-hh] o-gػ̄Ϲw>B"|i)]D!2BKW@+S"kJ-)JQhNh)ER)Es@vR)JRJ_a>_"Ƌet.]6_2;s@{> 70n6^д!B!MR!B"e+SED+SjH!BM&Nh)E()JR ]ϩ>оeZxh/t.eжذ𻖈Nhe)ul0n9wf,6R岔ϡieؑ:!Bt؜;(['0NR攥)Eд)JR)JR X_2-4]O..x]KoZ<5pjbz=.Se)JQ(")J])J6R)JQC&R QD. R RJQb)Dp(DXP)J1Bt)JRXN`DH)E㢔] ohG{R)J, OwGn”)JR)JR F ݩE' RаؾEػu.Դ}j $-tHN7pDȢ)JRDp6S)JQA9=!Ke)E ݖ)E]I[6R\t@BD[x"DB&z=ްl)JR(IN)sKkжZ,- x ցDx)JS+xaV,DJhAh K`50&O[.شԻGl' jAxB!LD4Arx90Z mV&v!:(1CJDVE*FDEHB PDeecTj(A Be")"k"tBT)Е)D{>gAD! !5501Z jHB!$A !B\t.ضкGal'ѹwHA"F,6]a&^M Pt3&WJ3V>H's\EȤxV"uEX"tnLI20B!BjBHBXޔ_ >TBNH<B.5SEb"Ƌ>B4U%SE.Ktxb.]SHL!3BHBzBW@$!B ".| QF8shRhL'BvZ)X6 I+UbBpPEHDA!B B)J-D\yq(SWXU=!A.B :B.6^ M! j!A78"jv8F291a\1&\ߣRSAo 4\NW*:7 ]\ 4AVVVVVKP wjQlȑN?SaɃ`r)i:&XҢU06`, J.R(Bs@]}O?e4A.r,?>8OLH L80L :)JRux[.˱|ЃnlVRJRJ\RI\,$B%DFH; "*)x5/Ņ{&BW`L)JR"u0NR)JRoԢ"*Dgl玅J9 ]7cx5B!, :)D'2Et-| e-! M!˖6RŠ/cIĮ M 7xH %p@PXjG Rt4L xeeyYN ҉0NX)EԜ ݩEDJ-KGԳxX] E'%Ss@Ѳ᲍V (n@ Dppp6Q<H :aB JNHZBD!B!%D 4A x"a[/Bt'0N E?xx}l(( nj-bDXt<.LD!  \ah_-unlCe٫S lx7tle)F7(, Q2e:/0B Hr$A" rLNMR!BD!BBe"n%6H N䉭(GG2E&Q^aaat%t$A, I4B! MBж]>оAG˗xz)K˗ KxQacp.D$"JHV.H!*,D̺B!B!7H!B)(!B! J-)ж];'M(gGxzG&V 0  qB hRԶܶ];b! >HB!B!B! juB!?"o㺔Z.Ԣ)JR_GGQa@' QGLB~#-G|Kxz5z56!4AFH˖K< ӃCw ”TQr. EQBa0 0xn`\͗;&*R]<<==an`F R)J<ORd"0&&Q< O"e|}G-w-G|˱5pjteղ᲍QQX]HB>F@hAAzB rxVJ>Fh k‡.(a;- WU \F8p(DDDDEs`6R@rW$ J՜!B]^>ez<> \90h<5Lce8,*G@UxbX*Qlw쾯]^>e5z4Bh L=(J\46Q岏;= !(ЃCDѢX 13ba@ǑV8V-%X*ꊅ e)D.HJQe)JRw[$ApQB!B!B!:R%;!B'z=GǭG؄!XYz5|GX1PL,! E(çbZe)J]V,tx[/ܿ SW<<<6Q+#\11.[.XpAJQrB`eH@ԑPz)TShfD X0LGpX'bt><:E:RL.KqJR)JRN`[/JrDx{7Wk@;ӽ@z< " 4="(`JX)D&QF4X&Qh )D =Bж_]wc <<<<7%lbܳ z_$A,5FjT4 R9l G"AaBH\ &V1ERX$[)J-)JRZx|K"f!:6=Z(ܔx( ")J.t!BU碴a{FBD Lx njxiEд] OKE^>%ؾ& MGxxNH<%X4>Ȭ(Bm 9A;\)DQ |UNBԒI$F+I,P, + L)EƔh(JQ|\;! ֑>{ &v±(D u/i0H!=" l.4Z-D BA6R0A 0&(DŽI!2 8.I%EDFB!s1 `&+$!1ȑMV4HMiE(NtNJ,R(%0]˱</0c%1s&&Qy`"ĸ& !-Ebz{!B"'JƋeкgB.B<3\ A0 `<  h4Ece;1"zTp,&'0A`L\!($A!# !.4J z$ApR$!A# %Be"Nԕ))EWԻE 1(=,z9+qCrDPFkpA10D!B ցEкRл>.A!"4APB <ǂCCjCCCDkT-HHMkjG!K7(`N呡.+-1,<2DȑBIAVKP!%BtD!:Ә'tH9N$A"| } x %IHd! 1,@S9? YMpsR TQ`X sJ<03. >HB ` D> M!B&R!B a&˩+/tx))J.>44AUd66 ЙICI=- W\,=!Au.Ųux_,>ؾA%:51B % э< Rx;3"U>$ȕ!lr&$AA% Bt1EiUPTqaaR&aA !B'ZDD!3BiweRd;Dt$A|O<%X;Ña#%ض/|gs@ء`bF\2""!Á" `!Bh,!Aׁx޿ R8'EM1D&RLe$C+SEԶN`)JQ| {>(ށ( =R!B th `E(&Q(&RO,m>'._}g o p* N$A-PH X!4BkW>< )Qp37pD7(JQ2.K &Q2s㩫S \Դls@)EJ-Cxxn`x7+,(J!A-D 4@!5h!BD$MV&Q=e. Q<(/%.T|e9* bq0ŠdbSӂS*pt! D +xVVV,$AD B 2< &Ve)DB9"!aL)J.H[)JR970n9w )JR(J\Ҕs{8B-P hF zYpL B!B 5hT 0`4BkBea9w ( )E;_玥Դ/lAll| l`(hyϒđb[*Ħh7q)@!B!A5HBd!0x4BTxQbXn RJ'sRe)EQw%pJw]KD ĉ𭖏G/0c?@ Pqh5c%7,񂿽Ɓ!B `+h50Ǎ8JQ<[=Զؾ%uzBCA{CCV1x6}& XN%5C-LI9x_bAPrB1 txxV&AR! 4B| V>tXN`"tHe)J]V+'tj@ֶN`]{=y=X<-P uQ˜t@0/ !Ah&&HAD!!=ǃccw !& ^ƨw"Rx jX!;Cz<3]&aB0TD!Bk@r-0J7L(ER] NvBD"! W@HxX|=e!,]땆HBZ9k4BkBut Ljh_Gؾull<.O j x10B 6LrƔTfG4%d^1(, 5 rBjxH!*5 Chm 7F1 A)50 B!. {Q +++++$!5)JRX'z!Be"e+S+SE{>Q!F3B\ ȅ?=^?Ly 4A lx{6[,%pJaSH! ґ3BSA dG`hq1piXzſBy? z[ePt58CF' Dy T9G% bK6-+ebl䫁cCQBa0aRНЫ ce)JR%pja+S ]S+\5pJhABuRD_3{>. xBNH5kñ8<.#99ec\%pjh\`S`qD<-NCƏ<|Gţv,xhAB !ja aX ю5pB0шL :AΰC$q1BWA*$Ђu=\0 00Xg U&Q=7p5{SD2!=&! ڰ;Ru$B!7z.ܺt! 4BxHD tjPjRnXv)$#!U!oPLĢLP bcÈeE(E"cW&&!AB_U)JR] z<,<=\!= !BYxıx@Nd> `(V2@L(.к)J.AHD&A!QAᒍA!B FI@ !X+ FG:$% E(RH,5QhLŁ &Q `! BБ()Ez/谕4Ac/@UJ-hAaBү cEEhB]D!Aq5h!B&^BnjYeiEԾBb)EQt' <5Ȩ6cabQ3CAT(r*Q50)W@!Bu$B!AAn3D<(JRL(2|>.-BpLS,bxNpjh;ƏK x[=!BX56ZxhZ-e [<=NaoCWX^,2Ne-] h[xl|rѩA! Ҕ)Kx5F*2˂arX&"HHB!D!BABHMR! )JQal%>DxQ}˺[,%phcx$Ř. -B{.l]:>/aS!B!>-RQ5F5zX'K0AEJ-D!Bv ! uҜ;(E4(QwRx[-X^*GpDt[/hg_bD!BzB !7Z$Cafs. NE(_t H!Bb!MaA"el NRO@ JRH'x] ETcœdE24_]|O Eа_"51 BhB} 0RA^Iࢇ\&Q}Ѓ(˹"w-5.H! 'gF9 `٢șDp˹a-w-?v/B &(jHXXJr.&Q2!2B{,B! R_{=%P,`10_c| gоwbW M4Ba8&JQ}jQb[<$Ow")J/}ϱcxxB } Eܾ/( OH. &RXspjll)JRe)E; d {>BҋEwR.R_<,,-}e}Kh.5D)J&Q<j .FRe)DRzr!<$ND& C։!MWg! ҋ+S+J}K]CXX{=E}O j{-bG|KkL (KwhA{R2e)DNB{BjBh&|!5]D@\jJ}Isx}z=bhϩ+Sv-&6H! D!A-<~D!O"; g[-4]gǎ]6]gܴK_S4A^A:x]A}jRLƋ᫠JlDB6]hA$M|} \90jlz>԰q/.>/"HASV6:pqB }T()J&EQQa)!jbJ˱tBh)/_5n`=t.DN-Ru>_bwz5pja+D > \LApQu_zt !Bebx}JQ|Ԣe)E 34A x[.˚R>;& /DG_BiE-а]Oux]O~HD!%0hD!BM)J&RL`JQv-BD>MERsbEX]G].tBe岔KW@XA)JRL`EJ-B0!>J-E(vR)E}O0C} lWu=.A!BH jRLx5Z6QmJ-=u(!(J)JQavдRs@]>EXx] vA촄!R$B)JR!AB )JR4s`'{JQtBJ\NQuR]ԑ:_CE[?XƋ bػ]ON`} !BZ%ph !B7p&Q2 Z>?(H&U((B!J.x!-e*"oWWٸa!JlJy,/gtF"5Q Z̹v䣈i9,~;sȁQe8?D!4 Ed1 ۷1JDls 9&Uܚ_/]HIdV"`|c"$JGu\}Y1|o&W~ ʭ> N植Wpb7| AC[~Y,kB\u}g#{PE~d_/2A~d#C;@UisyH?zRw;wcGctw"ZuFipxzkBM`'̞%_Лp 7؛'NNFu6=AB_# am,20k q^oRd=/mX|`(L! bah㖱8XPsd wwӘ;%p g%=%.lfHE%-pfCϩ_W4vury{}Y=~G vYDǝf[g]On|9ˤ6? Fpg9ϩ]w`~MCCֽ؎Sπ_ewzlIkNO*~O063Ʀ{i%C%fo<] wQ?dxzKg2I)913M>vinsdMƅMp ϻKrUq܎>9:v^ra26+g !nۧ^LZeᲞhaoB_ +oHVSbyggNk?s&L\m3Zo [$.dηՓ" ;t` # xO33-Lrzŏ2q%.ޡv`8@&lvѽOZۤ/K|fylQlRBg-|LmybmLВ=F$FAZ.mٽ䏣:Oe=,&0|Òi'oU7B~Z>ψ|+ݓuN7ɇV]6>[r&L &>na>%|pO͸V#[ C>Swsgg$n>ܙ68d3?w=ћrJdO-]@mҝ' %}g#1-pl~I__ܡ4aH|ݱ{}40ʹ~]gž|1@o}G{r922ezHb1ANS uɍ6['a&]eYxc_1*xFZdx..$riF6id sKw QYht^moCi)ΰS'Nb|\f$OA!@|o[ QRbS7Ơ|>^܀ˮ?1s;C: ۜoo!7FK;@<"_Rd%V.?OoS>G9`|*w'oࠅ!=m;r'+:}϶0ajg7 ɹīai(7 #Lk eGM v[娾?׌P=>-ge8\}G n/\dvs7z3 &f34<&<2؜ؾ"Z?W2$0}j,iw?l;l7d&{RZEϨORhѮo.##]ï-`q ?p^/Te#vkd2yNGu%|J yjKxɹϩb `V b`.,~{̶7?[45)6#{me%2|6 C əV[lefq3i,>b_KGƱ`2Ju2vwkه9?>#ab| s,e|v6wg-ȡ&f}O&,xXf,5|D^=$|)1=_vggg~#OoY|^g^:g#Ġd= o-|Km%Yd[@6,8ld͉w9'=souǟ3O>\35yP39L!8ɛsGg۝ug?srݵ_3z' ַ f}~{;_UWՒDgɻv&?{q'l=oe;a='3M>g%xH)Oy?xػ@$G宒۶֟1dOz&gn]̝yaז'm>gKah-k8?0lc<Ӿ< [/ck̏^ C-.ܰg qaapT"4i˘0._R-;E9gg#_M[=%b9|>.!/˷E̲roi^CO\1Q0sW^93  w@ί|t펯6g@d9=|g_Dx.#䣥l|'湛f +=,cFw <ÐϘ~myj.Lz;92VY{#'$?|[a$Nf}L_vkUMml-Ȼdˈ̄wEy%<.֘BNjw(Ǧm23K)M> @#3kr['g%;"8 n×"d.2rwN dy/Sw%C-/l#MquG_ck۾ '{cbrp94Z_fe%M[稏 y|ϻ V2Svg7dm1|&$ߍ7bӃ3=/^]FhdY(dl P,_W۝|B?R8MGvϿ%dW@7Mw/Q/wuݕ{}rߤ 3$\t䃜6heVﱦLݞc̓Xq}0[ay=ì` !* <;NrCBi2RuHic~+޽y, =63̟k7bDď.4 0eNc fun f,6#L,.<697̂,K.僡Z1K&=$ձ}d:y2n QkZHrϛI,GlH+J7bSīI{ t3r{a<ۯŻj 7 ) "&&_,壧s4 9W` rӌBFmV>Dd#d"v#e }% ~SK} K2V^OV#}H\aMn'cze~o9>t^=6gАslܭdSw'={(xB3sult]lx>@8KD]EO{#2㣯n8?SݒQz:THgI? Yoe(`C|ãrN3]tc-:'˶\m{/;so.죿w1:؟C-l- '|٣C+#y 3!ngqωmנ?Mu͝++%~0J2d6)z|O y8Nd=Cb -t}GL_S6cCqn$u=@4aػ`H dU|" `{0\螠uFYN&H7 ol2Ͻ7ݼ#oWnoS}B0 5p~s>-pH 6?c-,p hΟP83b@?@i+cŲY08y4uڃp׉cxw/2l͙9*NFhGKO{e ,]|Z|ܭ;/\&'̉}g/O!Ax\f|N*q3_2=ߘ%<ȣ)is kn0HlПSw_/;3oď ͳ3ߨ8-ŶX{;>,rb!cM<2߄k[!u^!dfYNUVP}@ixۨF }^}9̓|Guۘwױa|`k_'ԩ"o\aQ !?vl?v'G÷x~:^\.Ϝ0N;m.nrC+ޛ%czI5{azvg@9u>_7$6#&^J;2lG;aI/|D湛:Ȇb#y9Sgh¦NO3>-'>NN&P^죧% .pX$>!n^<_a6X3lИ#>n\dɞ6G}/LfHnBM>C]r\e˳gB! 2b`_ݢϘ`? iIlXum2'džj.%m`xB] 6~ˏ_ϫKݵ?]@@&fNO-ws*ڻd\A,CUvv52K7Ƭa9@Xyu;$: /mӳ? XՉ##?ng-gl^ulg܉6u2Jn4ɖ6j#f6iq~z+5XBѮ}|XmI3weՇP@>3,}d.^ Fpom(RuSܱ2qgʼnߎZS*{1n` .%s>=Q'۬\~{m}Y$y;h|q簾Yf;mt[TZwNlxϋc7~~'{b |I?E|uvw0˂HgxRͺ}FWo2#op}ޥv0C!s{ٲdgBzdH2og[4;%8'`}C㟄 ˲n0+<Ț Ծuy!w s{NP%tu B}yؾ9d3#͍ 1k});tѐ3#JN<tXڈw1\ȸ߆M8rrV*17|]~m`)ۂ33'lﲗZa !IS!>7eeZř-&ݞuDɼ~?$7dOܢW:#uZ5 . /$\-.dpݰ}&8 >#ϩwpI|^D"o]Xy~Ka~,^# {| ,?oK|>J}=ez9w1刣,h\[qgKaz/lk|B%Sc&4z]o~,a $#fɬRu//dA-ӰB\`w,;Ngs2lr[},3ye`Ϙ@oZ@qLp屽 >!v'0>#b 'f<',b쁈Gw6 ~C> ?:$xX(_&&[핝9 dj aSte?W97e=Cbu;l6>la8GYAYsyx|_ lfDĒU[r۽Y!,% vO=3f!fA{#[g뿇;a;i i.T'0 82fFX.Y&}CiLyǮJl&anC^A.$vM'I3;.r{,:,7l2^Za<̆`mאuko$:ovZN?:so݌*?0Z^E1>=k娹me-8m||Ť_yjOԁƎ<&\ [r Q0܍Kdu'icOݝeh [Mu/y 0٢n\";`o̯!vb1AnD>cħ3q72 K#9ejXd'AN.7¾q ͟gs{>!$3'!xck$7c`]#X\{/:pZ>jPed^MrxY#s~l}ϟ[dsg{ o|R?\0Gu-aK'!3f@#?eyG-)^NgV-}K#Փ y>Oawv5}2dodȝY$lM$#枺˯Ԁ9ȣT_.-`}k $mqݰ > 2_~dl߸.zG.?o `m߸X#?Q0lݲp]!;9r0_,|?g/~:ORui?rp`~o9a5F޲gVn2v .?$9R:?ʫ)cac1=RQGfYR6m-s.2r~16w!xy?$:X;zaHWMpG1 9%% 6oۆMPXNIr_s Rſ3&H ]`< $2,'z27rŰyfYo%%ay"gGi:cQ/{#b#L G0V,?|_|wNam𐴞 l[;){ry|]٤Nf]a^K=53+9<ďӯbjly`0 r{ r}; 3 7ai<'Nw'Eٶkt퇖c`,7#~P/Ey^Np}dv]^xL7laQ1{ ݙ<~{վ%mؿVYF1䎏$wǿ6v m^@Y{&vBmSl_#g4In؟@mi/-|ͿO>6WG"s!-lv~?M*K9<lz\&.nΙrݵ~%nasdϛ\B[eNd޴A|Hfkc-,MtI& B.=2fCZrdaՙ /ąwRH9w#_v>be,Y9XAly ;]["ēs'3`QHLA݃~"HSB;T έXg9{a䧈?" ,2. XNG}Xnl-n=e.9v"o3pr5MK2z=#6e2>Ea0XXR Wv/".s Q 퍏ldp-~lTefgqd[ޖa2xg`Wx"ڏLBShH{xclR ,ܿ6o X7$ d8Lny g ;6H d9C#Or"7l}61{p:X 06W䋟=S` {-|O4omA>W!l|%frI_-umwc!F\-|F5ce1t;x[|zCdzy{g~A^C_2;g]&[8C؇R+-L8;'Œ!>$i{ÒLd$| 2̏~徿PCIY~mIv2lߛ 2qrq'`^N#$¹C>cǍggnCCwc\,m죡nrԡS- r#qfV{POan 1~eo3u|]}yvf凭ڡchދ##dC2̴Qs$"o3?sή7]޻)D-N3h㖝X2=O6[ݟ=vݡ9.}ճl?勐-|ݒG 5C[H;z-!PwhA"Ny0r{ŗS[#!. ] &Z,qu =.NCx6ovvcrGl=\]i&t/ҁ%mK~ү#|O݆ygBa o\;} ~Qoe{8;d< W|՝v Xlp^A;d5߰ wv&Iv퇓Gnq A07`[2 X}@-a;?Ϙydsۅ3}a, wQ[ãã'#B/v&%s-obZf ˣ[c鷡|ˇ %! ɞg@igqfܰR0Ba- /s` ÿ/Bsl7/8Z/J8N]EYF-{? ԭoٯ$Si-HbC,6<-[_\_ˋG$ď-lR7Ǚi7}5s!_2s\'pG ~丛.lyǵ0:Սc𽎣 { lnoD?ݘżca&d0\ ~Rd~ Wߙ'rxՉ"a>`Q1L'wo ͇6 #]X[۫l'.s#Pvi9KWn˂xɫ I`GcVQ>38:89hkS<7?_IѲ:s$[ {.|}ȯ1ݏK/n|XݲvNC]tۃ 1 scǾoe8%ىNq;9-Og2i˜,3X}[ru(r3e ~? ZfDvvhy0Ϲm)O:de[l>_1S|^Ke#3;~ll"gm,. nF5)>.s#?,4o2|ΠyYG#Օ^@>K"l^_!HpLOda/ YytyMу>B^RgHaW jVƝ¸B#rA#Ik}-Xۦ.@B{Ȑ}\g.>H{"+\d<7V0u`]4Y[a+7/M1o'4r%}sraV][2W?,|;A͂@Eu%`gZqAB8l . 07$]1 ; `۬ޓnX~ |J;>Z ]@ Ֆlf=neBMN,m6ۙn2_o-NBha~ 5H͋l@,z2;k͒fc'mٽl &<ɋrIovr5`K`_y02 s ~=l6-;alm8,DCXaؼGȇͅwo`'&> P`~RAu=Q0|[_ vP1&d$دտVOq2CQn3$ !L= @5 fs?Vyh~r;F}ݨX\mZn|G~&r<({a-w>٭a/dWI$~hSPdP~ k{ e"~TjI'y`Y>nd:l\e>,c@ŭ喽c9_3@S̱h~ [myp ld˵ \2G -}ZΜaͶ6E ;vM2&] :'hy"|Z6a657 >`xLS%R#rC!m7r>_݋G] 'a͖Kev:.~ӫ2evb_IuZc{ n8r{fg%d;qHu}L.]"mVR,lZ?̫-9;dYBX_2:}g#CN|Oc`P8|1lۻm@D E{`@>%/cG7x {9:۰v;lpL.W#s{buh/$Il[ؑW;Ag3/nZǡٞ= d}Y3t@&[m]?Ϩ^1}6Ǐ?o{Na]phg 3v]N?ωZeMߎ[]IpK4{w]kN q0y'>V<`gZ;&'|~b>mPA|;eNyuvS'^ ?v{x%"oF6K`I}&:;Wo$rsò KbQ忢k.FC9nqnăA[I! P~NrA7>]1䏛?p/\o7/o'G 編Gh K_WȁC=hЯg0p:YHܘᖻg~&:EMZF9*^*_Y'0_ >% ]-b IfGWoygę'L}olE/3wKW(:qO-Cveٔ9cF3U[F7$bψMu世VwԶN[-%Ow!&imy ,IZٟbe&y enBW"r0%ONN9u olIeZ[v},Sx,Z}? g%BaRf7n[dt.61^fͰWP>%:I9Ɍ:I&Ïc׌62Y [˴rcж^8#?K'uE6FrvQ|X^L{##=uy`yl#`G!7b A,; ߋ:e-Kf8<&!i| bG?q%WvLJ~? YSˁ˷t6LCeL#>c893}&rmk[//9݀;?YxOv 샺 u;;<ħn?,20jr=M?RT e]b79-{ ޯ;^C}Oa1ξb|Yk_ q]0i@)u\$K>c={o}E6'.]l`szK \ .r@IAB>_wyt2hAոKGng :u僛˖l|Y}HY_m`Ss?nvd~.er1 '17Fwryx0Qp̋>ѱ:FNC!3a?lIC"MN?$#s!lն wf/c읹CWϻuk\ܳzg࣎[@ጹlۗ s˯܈W5!9 ~l¥[ܺtC=Zy)3a{~eORH|ڗN]Fr#>C5ݞK{-l[^'2V!'nӬw=|FN<8ϛ,XOSc'6:cM_lȎsѴzÞB.]2$ﶏ8[l7eYd/bi?P-(T)sM4-c r僯 J؎%.#^F[r4C,=Z<$_& Ϙq@Ëȗyhpyg.>>ms'Dgy"N E:pG}Y3G}F̖dωw9 #dzRy(%no#>.7ZK{z|Z eIfd"\L>S^琪TsĩgtOLG`9 v#fFzZ}Fs,r Y-Fy>[l2%t۾1 n1 ahܓ:}խyj2\y/dx]%oEe۰u8܊tz;C>RC /,a'3̀! ^yyn=?,wlB-- !Xla!m5j.M}<2_0q]9kCѲ[m2#G'c?qQ1;![LDdY;1(*ʲ9$ɰdx}3r0 ܅V&[o6]m }}<L! /2;oNˉ i2̜w͒'뒹xwĽLai̎-壑!kwX f-,$5'p ~&L~$pW2ψʿ]-rzo3z^.#$wv7].e\xPuL-m6?I)[kzOdĢ;<ܞSݲKH+<$5o]ϋXdZW#XFw&ly<=P%DXDo3% $~h ڷ,.y?WpxFŻO-m==o!pd_ԙG ; 9Xa-r&\l+9=? \ݽ%7>eH?Vz\sᓽ>?s;(nI3>!xs6&%ݲ[M]#h䋉d6ϛ`F.Yc:HN3㖞I=<B=wrutZd-n\bz=?^yj{ώ@pXۮ W!-<'Y/@]gB_܈Ed;ź͡^ >|2p>n9k!@|KX|~`Ídglے-c) odg1.?SӄG7xV"i\g_+}, vXe ~mw.3ɴy {Ac#~.ޮy57-M*gw09ϩɞ!=p_Xy#Sͳ|Fω?HQD ݳy;I-^Gk#g`囜Ne&f/1Og7lNݍeߝ|lg3%]gC'] C <^g/%r\u ]ќpifD0̰n# 9,j3Fal}@hxC_+A.9̿ͷ/?+F]0;jC2g7v%mi0YArTdYg7WdJMf[zޒ:qHW,5ĻfM>dk ~% ;n s߻?$ω=L[CcWl;60 =H{]Iyْeen.ˍTü~ I3hߏZ'N lđ? ! D< '7~n,1<b8CsKS[eY]{dm`J|ŨS_/m _ec/&Hz8v\fͶڿE}1YV̓^Z;9$34"0|أKk6;ɞxV.#dF N8KU67Hw!9jM'弛9nΘ>{ƳHSԡ=r鱮7~@s%;sgYtwa$읶2xA_l##K|A ᇟ v 9maa I8m?Q& ;sph-E6'n=2}K;3*|#kg!Nʓ<D˛NGa.O'ʳs'S~|ݗ5g-ĝ2C!'K16z3,m6}K˚87]+^cWyn.]W8 K@ݗZ~a{;؃_CtɈi g[%3ژAauNc:d-Gȁɒ l/[9$ȱF.0ǒ~G +hd9 m䓜$޹-Y-#ل2AO9sl>62**Yr 伵!u<`!^on3:F!4F< oom~a3/(KL=Sud̐hC3%)&|2|Aػv7&dKa9rCO$HdI0 l}?=] 5_8D9 KA at[[;:6Olt:I` 1jN.dN}-,A\)w ]ͯDrF-!P<[72vE.@1/~#\X]FBdG,ua(GZ RZ@aw7'`!O5{y;PEn 'oqó`dS?$cb-ӗn߷,p%J=c Q/폭ۧq^ տc?qޭ!Hj>cGoex~훏>gvp3q A!=uyv&ki7!f@{ / $_I vo @ rPA"<"~g $r kod%HÒ2&˷r^1!S{8Nlo >#nv18{#9 ]3 ?7\:DnI?Oal|(">qOqFYf n_ǁ(Q cIr%ć~9.rylq?s.r!Џ#~P lcs81 +]1\_D/9otYHBJ%7mm0L ~+d̻5,ls9o%ݍ,l$0-0wMua=c-ar~{a֙cal 3}$/#gh}2?0m#uwS>!}؎p@]KlAFacw>&ٍ`{,e9k̐>`EUnl8ZA^pZN{bޛw-V1c1{ 53/FCBmNkӻ<88d1#glG_=rang{]ʏ%-goR)?qڛWŁ- ?l2,!Wi ^w602[`g!w~l˒>n}C%]AvcI?Ln1

C8J["gF/G\aAA:|v o7++7lض~]ӑv{*џGkh=ݘ5W3/4a)2g2a`k]-~[a\;4C-q&|_PF=dYKi}d?t-waӟx<×>'KydLд>$2%/e5g&ORk8y;w-`>[/@H{Hl';a!M쳆e~-/KVw{MvTed.62>m~7 (f]pHz ^vfd=aNN'1݈}/NҌ^_ ك0{!;:I 1x!Kt[XH\/6CZg[b?Wz'4э*C>\]a.˒{*s%c<<]53`{&06Csm4cg=k6ue7@L s'YvxSYZ 0=mԻel >:|wno܀݃dAc.3o6͟_8qmyb۟#SG;1>#{7onz|Ob,ן#>a/_}YwR!|=!n%ͻt߸82|c_Mr$ mˡM٣nݱJ_<W0 0Y%s&m1t#gO}H[ ß5sD竷Te[DC#bu~_2&ّ-\#T8IO2pFww#V׈c{l$əA H8<.ӏW׶>G],oX0l@?+v|gJmXčw 5w0en}̜; yMvc WC ;vϤ,>%g`2H2%_@}N#G ]v}䏖[s"|BG=X^X?3ðK_ŜO\{jX`ϩˏ,db׮۷[>¾ٱbt$= `y佼ZTG埆./?,3>]+@O .JN>cog쭯g9 )dhgi -#F b̞?7CJM՘R]dd0m5v6>{_E]/Y9\?k;/ԝ5Ժ8 ZxX O"ok# -Cl#W v0As725=ד6OH= .,m#^<g̒t[ zJy+&!=;51#Mv=NB/;hFhw`oz3Ɇ˂u̶w~a/Ř/]3d< ^߃<%줉ﲇ~ ~$\y׿/@/$B]/}疭c4|@we V׾?sVX!a7$FYb 1ܴs.u{']s AȄɶv{>!xVr̤GtU{!ud쮭r]=]2Q2 Cf&޲c<;vNnɽ{y=n3!07Y-d߻hfecij[0gptld˳W?$+f9? cwuvv|< e_u3C^ZX߱dIY8ؓr!q(Z=7okQY/}߉ L;qw1}d@l)g"g?8[?~eJbz켄$<`tbbd%X8˗ۧ-%,|$g"bN}3BM6L#ڬᒈImS-evR'޿;6z_~BE &Yf2?%}%rCl1''XϹ(^"g_p"`FI X(nyM #'۳%[b!I gի?k6M7H_l 6 FjԈ dgȶ!~[iDO]~&`w{뷗9n^ؘfOEoV FK8nEliC3g["~c9!}~0><39h>K ;bGr;۷'~ۅd{ 2ı?ijG#F̟qr`rgLG/V!lͣ.I--*@#,+lӲݓl͑;d\y=xO^=e<]gFop~-ru& {o!RF=VI/{s l'oMkf`BA `'1 C/ 0/cą>%>8jDAG#Gs˾LtN&|J%ɊZ9a-xR񇫝ԹawDLj0 ÷~!ߞȹgŰr3 )ל$~O9;f#`\c7O p%W_nE5 el|eLv^xfߋKojhޤz{:n%us}? aXc2ZCv `m$Od6vKɻ$9' ' +^k.5\.$C{t8nQ+,|snK,ypH݉2\6] .86o]y!621anyvfC Մ:9j?Rtk/RmghH2z~ȗ]" X.1񒎒ۀ:̓[ #>oyܻ@fl >B7[2OF{|ܧ{tg#*ymcd\o.Lȱ]f>.ڼ`d9i$99_]0 Hze]?v^-o]3ͫ,}6?mza1?)i仏l>~p_ RYpsKn|~-I`dC`3Kq (0L;,vM9faI/P¶ r o;mO2m%c]^ >g܉1yg{x|CY]دy5-;rh_5eӖ=ae!DɆE[2M&Kw,}1$`?f|O ˿=Bfw9yz?0o^qaYD>l.em̟ED1|?p03XIA!0fAHhrF 3-lѽe_g_'eɄly}7ey-}5c7aS2lyxׂOc}l=, a; ƍef]? 6f${tYsI[bg{k2ُB`dmajs-w˿`KAP; B?.H9:~308E =u;f.q#7&@|#a }dvN Xձv6@H>oWoYʁ>{1ŃOnM#weKȎǦ]Cl2QcaN8}K'pnVxy|3p~ 9,{FE 39>.^L& &9bXZL.v=2ls$<$ypvϩퟷv{a$y*e)u~)cH/l=;7|a;? n͈+'yZ %!Rt~$9!gyr鞷!nD11z 9&LǛaiLr|cbp݉><`6̎6D?H~=y"k3ש,/۶D--5{|qψEՠ ͰByOԻ! FrI0/["%ϛ]c!v,%3bC;8D6x>n|A`fP=`P_y+vvտ2 0|K#dy2 6:*l+Yg.'#6r M W7Y&Y)`ZM-oK$Yl,fHe}ľ!{v o-6C'^v`/NZ9p;9vy<9 FB,rPbcx/Ee77| Iwfb ['p%٥ߛ1)Bj|?7?  irCY o6*2ﰮ %7Ļp[\Kyz1w%üsaܛ'~.Nrf͉9:ɒv;,y%;&Ɍѷ!.r͉6la!l\gc|l$mZcMO?8ٿ0ġAD6<3O$ 8el3X ~6|C9[ ljn~Ќns!'NS|`f\k^jZ%lmW/~+ erF0u.!8tA-n{,dzvNA~%g3hk#&;?}{s 9,!p23.cNw@hZgoh¯ް4/ f7c|\/as>laZu'p8hz|v^>A#8iUw9 2q5io~ţm;66VHK)wn!2$XdKg 9b_2?1-GivI7`䱏p}_Daq{d&v@rzl:H@d#\1V<7<W]Rc(N&L9~ /"QaK3],ymݶy(g,~vm$ϛ^ >ÐueAO#}>a +k`n]~{*ls.MÃ~a |Jg}=}cBqBC|[X}'n#f<9+~TFF V:XF7V Ƕ>wR~YUFll{|3p=q?cڄ$,W'}<_?R_+ѵrwr^b,sh)?sŠٖzY^@UC[XcX6e؇jeMAy*kz]#7lAj{ l;AU<8CNň2C/>Q>ِ h&ɄoK5@p^;,+vL' RNmK,p_;%{ McGlL.O kaIo^%̄XA.N$^Y-ae>%qඞc._`l6X{}'s_vM- pdvǓ4ak2]B̉w$ 1mM,n$p[M>ܺ-؜3(zq"[松$~`}v!9`'snQ? VNi˱Gz1W-_mEEқ3x$ı-jf%)8_e-.#~ D9wG6g`_l);d;ABoba$u /%=a$߂.߲gI$\d?#ؿexF,u%c-ߖTy k$VԆvM,&.v8[!|mKx'&9 9%{wmHڤ'ێ q彸yf^N@}|ធ&ÒEKX K%9nCly-%%plٔB3 Cl7,ݻNਇ泜$mxCyoB=IsCXl+~N 7y[1&@u5 33| οYzٷAӲLCrE>NˤKch}>v}_^'ɌJ |ٸ-,<|H[ mrUd[_w; eѶ[ ^G_ŦoOoyc $$Z-[Ӳv! og u1_3fFa=A<'rK E#g _G4r{bnǀw!8 H-.$%Fq-n(vn2rN ''՘93;:st?؎9:l(̍. (.7e W%}v."n9h7ݱRmzb6p\'<]lny"uB-X5wl+ϼ>%k~g2&n#.<=}'~~ l{Gmʌ3#=Cl=M6>#6rmQcaqxnq e2Gķ2^pEpߙGܙy ;d}K\{8y<{sK<j~ň§l%Ne;|fp`s;\uc`9an3II4;{c O>GNv,웣=1/'> 0CHa[%m#Cqʂ ɴOLe;E=O{I>Zo,uaS@ ~ d`>2{kYG gF/haߤ=[k\y+1j' Zˬnأ~ɑԾB}y*|yfpw؇gb|[H2G?FMn#̑z#C 9h -K >{a0% 8>!ou 4>rroQI̻v c䐷>Jm_[toYaI[B 0^ӛ}WݙyΝpxK9oyo;j`~oq|NQ=d{edrE+! hy̹tXw`xw؞@X2Usx%)| a<,ϝu̗M?I03?r`7^N#c =#.o/)=sa(ie/ߘ6{` 7([ܕr  ]44xxXd6vuMv)ܾĆ'D]Ǯ@2X?咽'#mAɼG_&F"G~ fx'edoEqifl0咶PXy'.lFgz$,~+Jm9~ >d11&g7b[ij}|?qoŁ|MyprBHc  x1fa?AAZ=y<|7Hw6@˺?w~lܫv>}\pgo~s1:s$"X> mgN!0xѧ$_u.߹k~7?ԍf3E/_k21I":.avk , Kv'PF0d![ivv;Y-G.l)= 5eW} O`XI+,>ǖ9߻F-P`Yv@M2\ܵ1}HOF3m<[[@o/Z09 .7#l{?r3䩇s5?vyxde~!E2_MAVǶ $g1Iiy NY_Ä ]>o r]|ƐI2>N>V_ T܄ ep` /pWN93o_#d7<ڒ|С] F~O̭dkOw ߛO~?R5?{ :m};7=k7؎뼛 r L NL4bd93!:y P=KN0-f_2A'M9/-|zX]lB.ڷpG?>-Zop),ψO vX1nY2In12\d[y3Yȫ~~PYl=ߨ{ܝ>o^Dch?Q^~:[y;|Jby.i ncEBjv:ӟ9;`d A@hiǝr$8kIg`N S '7%ȋyqx˲ԫ Z}x:@ Miνg#_0r2e0V>9",(UwO@Y&'vڷLd |JC-S|4 3q#NBk :d?\2f18DŽlAz~sM6\3/>[Ikg .Ia9ӻ$"K{9-,+H˶ '6HWrbE{.:H{b[2ԭi^͏jZIl&] IYQS˿c {䙱SeǐCqMfKrEq%;9;6~fc>t` B9yyDz*:,)'ݜh!Z@׍?D 9 sɺR[sPY+0ː ZBS}w\w ̅x9ԉ}rzy1%-}R!A SlK۩{o ӿ]Wmv՜G}}Y{=2ؑgKso9Pʇj C>,>i$:ĺNkal /dIJM aףnX٘9CG~mty>+~ j{P8rEq_,^TO2Bbc n 5Zv%`@n|ُ$?M4v :DŽdcnZ8^`囯p,O[y$-6p;}Wn6Lm콗lz3o6I/Qv[keOI,y F#d˓'ͷ]z˧=Հo'~R8H397~% \{g,yך<,[ 1.1>Oc1 6%3<*V2u_뿋c͎l_+1`'՜9 gNZ23S=lٷ2e^ 6M` ]2O۴vqr7IG#o'S钲^׈K1 ܏Nv3 ?찲&] b|JeO=67K~;j!\]}[t`@natylC@97fw = @nݾN/YX;}{dÀ|/}g$$`6G0wDUQp_1*|0뱹gⶥ {co n?(c6 ,(~B :>HsW.^,?q}$8v`k]k~1 ~1.sfl)׃?U3mfO-DSLN]E՗F |r?vD>"3rهIͰDyZs~an'V"1ˁg78WLg@{a[9`f/~9 R 'VՋ!riVܺyh,Me;Oͭ>Z =~ =mGKONIgep {2KXrZ`?cdrǖo-,gdAzT>&dٟ"6Y-Ä+F.c;xc y;mܽaxr"Z.}I `ێ|XdJme1l?RN~̗v~7 , \{r79n^KF\GԧwAگGXL̼B9[AZ}:k|zm aJ._ɖ`rY'C$T Ø7~A ]mǀ%^[ LN;xf@·Y/N~z?;w)"0>$=W !V)\wt<7v4ze oRgmvWw[nWEA/o?W̟b/ jL:7Rm,AMnwawp&Y6r{cЁ&{Y.#zF-d5Zv\CcFoS[HnͿԵ.fZ< 88X;neк l8XNu^&,HrVG0 '[{(yov ?;ϛ_ɉ~Wyr^{gĜ|lQ fcJE@fv<H8]&d6s$@=I}O.qPzZuф4v'I:?ů2-5 ׮<'Ý>hv}# "b4t S xnz}{$~YRO<0ckv{o \1ykőoe?>B.},<< +|-}K,)vNOP{rw MR 5q9,/҄K ZJc2~ =[C>fA+~ 9{_qۿeg%/-|Yݰ"_ {^ɶ :816seo~c]#-gr~;+aO툃@,czۮ&g~\DɊY "A!#%}}Ü!9+ta鿨?q Yc0M԰s!ev@ڜg-v-q/$?001O45|Lv%}C2 #=ɬ؇J1-b9?Z*<.(s\ xyMw,GyK] /s']ȶ6|XZ`~eu=a@mFFg!F 79gT6`H쳅lx/kdl\'~Vݜ7Dl_IHsdY;.3Ǭ>I>"U5߻a+!ߛyGP]6ξ O\=b Ĺ$r\Ϣ Ln_c iv/w`zGN\]Ǔ[6?\GϱzoWF0?v|??w6Jdsvr ?-ls[3ϘO*#?E㸖)+q|OH?}S0Ĕ|Lv[ |x%>!p䫜crO7y&tϛ.LP`~ y#=%M?Ͽf؟;)tvM&9%ۧ[m>ُvfri%XeNghw,eoŹP|KÒ+!Cg'lܼԺǎHp[;~@>SG.ټ; GyQ66zpEOVQ%]ؿRnh~=߹vgBjise[=Xa<<ަ`6tBy?%F/t;.ݘ!2wd~nȉ7!2qyhv͞r mr^oqnѶul c3Ł2[G28{n^ܥM"#M : Us{n?hvf{f_tsuvqÐN 3?Flg<FzvFN7>-H|)e|FO1Y}~ҩcp"#Ird'e5؃G_%w_BsωkߩN6[D&ͣ{rvB[(%mȦ-~eG-8<(Mթy׷G`CԶK_wzZo?r:wK>f3 at~{m m~d -/wq{du6{gs[ =ߙkZn+`Y=?:65H.+/e0(.sHg;aB[&XI/R0| v?#7nC:ùeŒIgHt6тX@\p?7XR_v,v82g%ɲogyÓ}`:,Gm䉘{3!%7Rm*J`r{{y['.awʽ~1ȣaכGO, nn_a {28yrhE7."n~30f=|e5e_ ط7rpr6.Ayr]jvuZ?v}G yu݃l!dp2p?3LbEv 2&o`=g vsKȖ uԛpnSl?v80%_Il O]/|Imd͂Nv8ow~ ^{GHvn-ƍaX8Y`&?2c˶Z9$$/3,y2F`~Ho}/ij Lc_`>b%_-CL,@;>!7 2(I`Z͌;| yx9ܟfu˨͇k4<ӛ AZ.oэkCdz쏣#NU>!#2&||wy9: 2nl:A]@;9;2t{ɡ7g~I}wn^8pe/puFyupL{d9ˆ]o`53 p>"Jk cb.woak~ b ŞN9`ef$[ԙiͼCѬ? Ӷ, =X t~gqly˥n]6r5sm2xj~ wgj؛"ٖ"yL_@~l'<,zA Heꍃ?ę|gĭRqeYg6Q?n !#<.Gξï'N^{~d ˌȤn"?~V!=Gf},x> N/,`;b>fܴmc[Vn<#{N ƠǩX7v>{l@Av&dvuԴe@V(~;Ad-g%Xak{ۤ f,.O=eI5?wE^F;W_Nr:edٰKaY96d,G?G>r>r{9|Gdsۢ6`K<-.gF^Y.v䐸rua.0"_ ,,Y*-I].~+8A#塳gQRGĶ"$39-gzC? p$AHo$/{rX5 Ir6Cs?_LrH~.}Grg x1H3"|Ơ܇'q5㿸+C9kYkxMZ󙶈pdz{ȣLn$7Vǯ/cl._7>@z9=E3mn4do^.uI̻d [ȍ|X=b?2XVWɗ9.ulGvJK}X-,'~̰3y=0Xe[%԰=YnnG;7.Z[}rpb[0[|#(.+vN =D< F KR?^'ܽHI$/2c-A寒%y%{y4&`ܿjzmS'ǶfK/C%5F| opX49 6FXf1"9j^63`8{o,{-#Y F  '/$?qw<\$3?q8lsQx$u>,6ZE'ȴN2H93eĒ%Ql|)2X[?6H2-۴{06@- _Ps}{RD;@V^'ldMmp$+gy姰?-kb-xh!q{q60xeڧ3ա+1E&!cV3dK_CJOGG;0.]bz yY7SNMp1˼=rO |Ȇ$y cC9dxCbace{;Ct<ǟ~`F1p[]6ß;!,,'m';([ct,:s9kظ2B?u泇GG,Hbxlٷ Vwrb}ݹ~G؞,̺{wkv#e_d.> oX1Y{xZ`c62`̈cS>ڻ;.'$t{y-Zf``+go5߈zd/Q)/ re wN=1V42Kݛ9nɲa&ۙ#oN `-yO^`;cy/W{2WP s:/[.1ٗy3,Cu3(: ss ߙ>{n,Opi ×, >,̱vLot"j\b;}cAR%ټ_؞\kۢOM.LL} Z+ټ2X4aeev^`I=n֧Ga=$^f|H/WųS"߸BmH+m<nlzbO+[yck,.@`Wo5{`<[6p zd09#n<}aNrE`0wyob`ϘB<,= ?3@[:o܍6P6S'qj+kod{l~M̃--|4 `f0=˧yl0q d qYenvADV ɶ!#vY-cʹ?I׽~lt˦hF6`_ ǹfё̞s2Fmۅ"+b5AQݮ&[7 pyc&%ؙ|;/!&K-ՍgWę;#OZor]Ihm98y -'@oGӻtd_m + ,eωi:|;uìA$X}b }ݼJ,[3k>Yml̎f<^pl8_.I:Kev0öNvtw,C6rzξ-v!}V2 m>Bj~-hۇPlp`mĦLaL%'żyhvFwdmi7B_^Bwhc6@_DZ&y&r,:Ifh]'0o`Y_噏.Fs- =vYA pO͟K-ZbcSXs2,[|͏C9#,lH`qO,T&m\6`C?{O._1i29nwsj`^9af6尺m ga;Ď_KFX-v߸MmMA#nNEX5&f]فۻ\;+!Ϙ]@!˗_ d;I=H%uCRFI~W,Lb7@K9 2v@;XQͲ2/KKgͳ,]!8Ok\}5X,^dF dj909'Zx79jvrN;`6\P>--|K},dm7};H ?s>1pX~%qHsZ Q`z~B08d< 6s,O/VsnR21'/d#פ=HЇ-PynlϮY$`1 ,Pw9hICSc $'%%ħlpO|-Hk1qc>$ezA. ϛ#~AxPHC~vAmX|s#߸[<#%>| թd%-ĝdP )>6Vz!jof~ϙ61nڍԪ*C=nݴRgw7u qh^] =bԌ{k>,ۆ,&:!=}m`a7:H1;Gm2$ `tJ: 奎ec=_$0F%5yg 0(l﫿p>VvFW#~dn-( -2=u1 m%7lL_Yry:,,'>(Ɍ۷ޟ d$2= W :yw@R5a6u-ypdbF)CݙG a;,yڳ#X6A?3I3[(lS!o~#7&pv ܀lnP{ˑ.Eüɍ7͔$߫:Ɯr'Aغ\c#[k N8y }hl4`-~y8qYd_#{ wd(WH>'e\a#?f{YrM /;짰:9ij\c%$\l#~]Y 2/ 2قV9>e a/!at]nrV)d4 -W8weXͳInua5θ [wm]޿Ȯ,}6q<6o,<ñ^><臲-8afGbZ xnńg9^8XdvIra2: _+DZM7۷̳, wKvSd_|Od ?m#~C'?~ۯv̕#.a12d~8UOKkݎk}LNLf {k}wO͗>$Ӑzv1n]dCNvgǗ,fX$w,&s'=H.[e6Xa8}HMC'7n;U6v:+{Ĝ=3mpboӷ H?Mf(}r~hl.(~F]8Yy!lBX>}S c{O 93}@#Sެ+sN,ϑ2 5݃9CNi;fKrAh-j큐O,2њ-,dȁ\x1 ԫ߰2Iuأm3?)'e.?Pg& ]9r/m7.ḴeNwdIِoN<0g6)%11&㓝۪9@B>{f.䏖o6n$ VZTpIS1>'NBdMǒ=~Cyȱ bݿ.J||X Hn~}  g~f[ߛ@ߋkO]d܍=+ lNaNR8`ȇr;!7.˅>O&W"NN:'xۿ0k.ٟ)f ~"{ѹ1#ۍ5$2_3n!0ωk`ϩޥܟ#݀zk #=,mٗF_of>-HYq{-D}Y0s$._(޲c@Nc{#մ>,$Rռ˧.٘Cf7m5svwo `&COVrL>Jz‡mO?]|'X9% "لveq|p D{n5K< ͅφea,Mlw#n%%w*$ }|r@3_v9fVH:<'Y g#.ɦپِ%0t6!71HlQ"?;ߨ;]H`?_QG9"Cܗ;t'Q_m</qNGlYm,a+̎B6{Eu  c9c8Zc{b,rv}Xg̝ݨ#;Շ2Z.M3}g0Jɡ9(ϻw eKkdv:i6vنHK.a-!K3w<)!Q`.=#wGm~87 6taH2S>KQc2;YrZEMvqˏ,>`卜d[s),f!~mSM6]/NDyv>?E^=ɀX* z3TG'8ΒQRC=щ-!u3x/Bnf9cԻ~e<9dyd;4t1gv4 g?cw-]}/l!n=v0]~O7/캁r8/"͜+<w!ulK/}rGD~~@F6ý>Zff_SM<@@YѓO|diÖ>,/w*voSy_F_z]&Ypɷ\vAo|Vwjw% ~SY:CnK6]Cgik&=g;-|pM9mM b}G]ې@9o'߿q͗ uX7 ߻$o@b?&s<.-$7kWyi8ayxxd*z}txPy{3I|N0|ÿqi/kt} ^g|M`ۀyKOMh27$ IɁ|ޯ9{ٗ!dG%lvNdgZdRYd3Q9}`ey9)Կ #u -#5qlɵbr6]L,2 v8CN̖Nۿ[r^|Āmu X'.ytY},Y824ÄVޡX,Es٬, l:D&iv51@x9gfwq$-ůջz/ ,|ɽc痂{B_ȌZzϛ.ǻ&?"$d,_q~a2z:oŹH_ Pyo16D ?Ss #Y |Úh|_LI~0Hyu )Ǚ,<~QAIϹI9(Fg0l9b1 '(7"Lig#[Ȕ`X}<ĉG#.1/ ',9׶= u3`Մ%3r$N@a9/2N5 m˓F~cYDC$M 6s2-c;:B^]٧}nI^ؐH5`IgIFXr벫cϰ=6$,зҬ2BbXGg~ 9rv\僇L`Y[(+ 8ĐH3@zFdcpwrtyjʓ oŤ_6ɃW9ݚzA],iwzhvG5닝G۟[!|$ذ?7D^!OlYC5YO24}ɛK5wۡNȔpw<7f9>d`,ZNfg)̋'-<;d$"[?q3s>f&u|>%[Aؓov ?ğomzH ^r-ؖ>usaݷdω׶ODX䞲C bl~#|25nRӳϙK ny `suM܆''HİBCHsBl9!j[><7/~qpr΃YK ݼ3,i{k|Ox;˟3s9A`4ibStantɎCL}w&0|@{b$tmTw_h|X 7V`=Yx.rKN/|<9-;trHY޳ö<%~-2~^Huaolm=amhd!.ΧN$ӿ0̃5?s&o#g2vs s G[Zfr.ޣ]m-L;.W=s f~_2Osv/Kc|f#Y9l?1>a~ 3.Gǹ-P.Yp}J-ݞ$/nvq'ǖcb{8CrO=&;֜k71K};CpŹt~df!Xżn _Wp I|Y$۬ :;pCo..[kIāAs } {rtkXC>8NY ;g$uyݜ>lgc={>X]FL#B!~dw/#cܲ3d?ݚUvW6ŒF}[ejF<}./;8r03';cdzuiia~=\Bz&[l_V2R~i.X"fAcoͲ,38;.J䟫Hb˖0`l <<Շ:l2= y/ߖ7g}';}`g>!0ȏ o ?Rl'K㖝 sfB9:SuٹUߟ$4^e^#~:a8iY0Ჿ70Y;:Yuw9--[SRO< ~fY1;f/v?Wn|xIhq#9y 섊W72O6O͐Y'{0r BK}>$bv|9-qhIܴ/u#Ϩa3~]ɯ3%9ճ2#nR ᣿m*>[%/Vm]cBJ튻4nd6>ێή<_~̌9|do.;l}0,7^=!Û~9?;)y%)~ 8mG3$~ưrL;0Τ ˧!5)^~?p/`H8ؽvVv4{vDŽ2&gL|y|^ 뇞~~l`(/Q.9RIbt|A1uUoYlf> zy`:Vs;r#.s N ݳcN%L.|}.oml>.>Ím_-$pzHo忀G̍|A;v3=_.^]@;nl[~a-7-mPMšϰ?n/9bGXÑrzٷ^`0lCp,>/ f*CUlr $M>!C$cw{x|N{` @w0]@ddی?$/}g.]!#tkcecc8O:HX2<0${&\|#P\jF{0ȡ&>l=|O#ޏv$%mZpܛg#IBNʼoe= hOfgK t_ ԹE#ŕ'ɇ/Kv8 oLa,rټgcUB "L/ͺg O$_#[Ho?v.8yv釓 }8X װ'J{|NBhdx!6rE kձpeG2p-,2S#ecd4.Y0ȑ~rXosl'%#]<h*.:\Y-ǒlu.Ym:@?!mn,@ᏉEtu9v;ۤ6^Qflu3fl|/,d&Z`lmY9ml?PuNr}#|;۔&+^93xqCkΌfYd.ߙy)y0?-ؿyhL|t. sBC̗-#o÷o kωt\~.h|EogMWo6s(cߨu5:>!ﯳ?;i;K<[Svx{pN9=6{C0p̷ F#~euki֓z&~]ϩs&ypߨ!;.}oP=rVY_[3aV,BGUߞߩ y!k.M@\ol' &㍝-3.mˉ2m{~ ocu1r?ʼnԝ 3|%a 8Y,`>#?pǎ ezX/#[(Vo/h:mwM@%X&MMl2rn ]ho6pxX 5\C ԰m_M l7@?ۙ-{^UrR~_n6:ۋg!MA˅fkhdJ{qc,d#\dvu{"2~sIV[[D_.ap>c1vVA=tq .mc /o!6_~#wѐD,gm98y>!J5%'G $gb ݁l%E '~ C<5>Y>Dm, Wam|I$9Bs?Y,h3-80]쮿,Cl:̋:qp? c<`>$zy$u ߙ&C<_*ue/ĞRD܇y'H1.lYcXk g>FZEn=oS:e>Muߖl7]!"LҝZ|1&-|; 2jCGbBcr{gZ/mϫ03_Ʊ=y`Novܸ/&ZJm4 u1˸]ЈI~`vaE`mvψgɸXyv,{)07|h27Bi|"ƯzrD d0^.],;=wؾȹfXf=n\ dtS"{g;*.ᑏ)oVqÉvT'l sӷB [I~c0!Wdxc2gųg'd. CƄUݲb "Hohlf3}I߉[ X1q̈́9s{͝,$|!PPIG~X66]KH={rCFd);C0?s/*m]O囎sk~2_Rk; Ȇܮ0_)6GFu?+Gr!+Zg1f]/-;9Ȍ"v& a rtB<;.pVڮ[l9*Q{:".0KtKIs|32߱Z?;^ ?snvoęk Qsv_#cY-''$[[ v,Iˇ,2gRK_%Yu`iF='[ù#ībf smgkI9miO܏Er.㑯[eyL'|%nդ1/a'r؝y+$8];pͳ,lj]l ", ~"+~I}Xvxhbyŧ[?V~Y H2l?p;rm)q M#2!塆6,}2;ts̐dp_ focG!RxwuKؖ5KjAN2 Þ?Sg;qXۍ?v;S[.g-ʝ&]}' ጬgp塿F>[&*z[`Z@~-/_sԝrɖ}A &ɾ`k}Ng!G.Ny5O@"v/ ;4,w!쥜ѹ.sv|Hcd˲\ \C'N5A`ؗ߉ eηk-㐻j uv_` 3y@y"1Lh_9qnÓzYzyKX |^@7x(>hwݑf$8Gkj@^ě0C\M#i ˒Ĭy>jl5h77A5dl^wuP} {~!؛mG×4Z0;7%|9.`pa)%?;#G̛K,%~`WN|]쑑<Ȃ]cW`B=~Y_ա4I3۟X Ke|}ٻd}1\ζ2 }#Fg^أN=qD8NSǖ9>[~pay-I@c%`o%J " .K#MrW%[3d-$F!'b[@Ɏ]nh{(yA]R-Ѝ;hDH G ܕ|'fq@OeL!rˑXHǶb\02eAOƆ r[{ n|d _kd›2XrKCDUrN׭s1Omtx/ϩDo#Y,Ѽ+ݏ3aÜ2~]| #O͋,䯻)>mlkC3 ,y(oEvAl7^_7s%z>GvMnw=g;-Lca,͝m-OB:b;1˽J^!6RHbv_KA:w=,"}5xOt'XNCϿ`ݱW·9]=e$#w}gͬ߸I.dZ!Dӑ Um6-s3q_V4|8"0}Fѫ./ "([݁3Ri313=\?vlLXoH1&M}`}'hퟶ{}W<_.`'N0e7#$=-n%Zyh#C6H2t99mngŁ5[>Efb#/M^Y>`=xw0g4qDp¡Wv*xEs\ {/5̱>lacKωa=~'_- z~ӏOwe˨G dxr1a/mg||uխ ^@H2Wd&gf< {rŸJ^#^lC@yjvӱL`yrYIWӲG] ټh_$b탋=rrA ak!dH]gw]@ \# 1.2w\G YB[avÇ >ᝲbi|.rO20u./mɿ7LdÒc$Mg 8\mOɓz$,L`BψxFDK+t>ɲYZhS}\iW({s65a s-e.JG!?w¡ |"xEH=Kv~䕞06̀X%z0ջ53?AKmݵגcnN L?.`'g|՟ԸFBe庇 #vls%lѾ;im,fC%dωo-ܰ_;&{;͏P'8k /D6$߈@]󨞏3#WeY2^eX'3c7vuOˬe }N<[jH|߀4Zqi6;#J)W ?^tί,l` K'B+#,8T^cm:Ľ<ņX|O8X Nz2>w1R1s.amY!`2:ہ0\1ɬ@G27Stizk5@Տw,:"G 6/hsYw^Z[6Ɖ?-k_"WImHpkk/z^l< f.4G?wrdk<V;홎 .[OFŃR?ۂ7p\-e۰R!aò2CK&Ytw_Xda`J.fA7`Ł yhfO"/[f09hݱcala=> hl9>lŘ~}#@"!q~#4$$g;_ya}߻a^|O._=āfJ=}.cv9h=qݓ˯g}Ðw1÷)d; >Nݸyfx3^o݉{~~滇=юoSb[|`=&՗l7hn} m߇ęp<w!8ny]%0/$ ß?D!̟#r_Kg:t璡/Wdz!~od?,{ Wj^m8tn6$r>=srPsvε `]3P {>Oo~ d8&E@9Hy8,O2W'kd3C.xF X`I>utd&OHcəK/s!t>G<;ְ>ض"|2;m}/'OXi)ݺq|9 m6p}w|s O&v}b++\YnbӇls;;\"}<- ه@\M.ڹctG S2YnHɺe/6d9ՖkAD~a; Ql?vN~{ |GXt @;lE90sn  hχˑ1Hl:_dyfCworVM;C[~썓AyACiq,f||pƷKMՎj W>w+~%w>%`7SH!9.Z}MiNQvmaۿ`_db1v{9(Gp'/m-A c ^ . d:Āy#;`d6 r'Ìz$P7K&0d'k)\e5%&{!{vC~y0?tX NO.H籽A\`(nuVBw1X,0>I, ̄\]"fX߈W9}ȇـuppu,@PN-]=c~?3dۡP7ynmQ̛y(܀#40y.~8|ͽ{v>K> y& :pz{1/Czb{yp'oX|Hl~Ww p%y`&̼疎RXmIYG.6dӑNk3d` Hyk <݋i OBlJ!B}D|d$f ;ܰ;l#s\9w;7A9?]oV <%+w{n ǟ\6j;&$X0m0d Z^C Đ&%܅Ԇ f7Ѽ&~'}S/l[s]w[GvwБxZ5,xFc] :0~~gOV ɣSv wM;+?hq0y|[:g ѿ6Qyd2KO9(o<6hށdp{8͐}C8x3 w!+4Cm0I٤P99!c.|ĺ{ o{y47>s7 {-3+,{~dعOeY7y}͗ ܜ/@s9O+! r;d-> 쏓! 0<2HE[nq"!tE$*^:~rK>!IŨB߹;Zd?znOw?'D/) Ϳ7ˉ]9AB<;`9 G@_[NC8&-~dBg\I9#IwČq@pxl9ۡyق_I]Rww$e%יs&4y:v'vH6{XC$U{ݍv79(̖00&fK<'ݖLɮlL&J_ouX^{ cLd| .$OM,.M%K^<;=d2`Av6'T},^'tp#[Y&g ٓgf9t76p=Cokr쯗0AD|@WeJ{!8~9ˁF@QC3Ӯ7c;eKG; 75rrFuAÙ)1-zCleE[g f>M<96ż;Cyїf3#9w奰={)źd_ؠ_4#obHZwN&f]wPDAJ/ZwH8!|om%od粜6M'>?sy<-7r{kĬ#ܡx&,0Iu]@|2 Xv\%!%zÓHY~[8^9\|ۯgͅ]%w,ˣf1%m9 e 3Lod~:]^y$g%}5pyvHpܕ׿)O{%c̝wɊgռ\!ݞ@O[h<䏡>'3u ?Ok2Z.ͻux`ֲ|BAq塕A|K ۃ+e/O?r!˄1,-'^…Iy[]%g%8{}Om ;s y>m~6?gFd;on `,m65gL7Wl#gea~A;{1Gw9TpiݞPp`w&ŝ۷g$/QPp:_嶫"Zzg<s9b!jEzp'wa_honCo?Sx/sd͔c%嘏IJ߻If8K_wl>r:3,Du{W:2Oc3g2fdi׷<$o̓&zdOop&GY]9 #OL_o?=?e^0@>nL%[[iw[?Wak̇#hvvxONY>ell[M~ۂo;n}7>X~Rtem{p?br*ϻ)l_;s HeC2ZY})r5ѳy_*:Z߸z.Hy#ait-$c+cu_kG.oew̟r?cSa;cNǫ"#c !Ü?8qND>ᒌ'l 99tL[~䯘2 Qd9'r=k/vyoEO{&vX–e.[Y۟3%'s<-S'=w #˰U oJԻ\WD]&t}ϓ?W?}zgЯۯݜI/׷O '|y&י;,/l׿3/Ǘ# V;-\l? ͖"؛O|\أϫ--k3fh h7n$JٹiMc.C?9f[).LyՐ짙#‡ԃRYoeDz8~ز'>@>`:muiy1nb\a\V72{&ퟱHqV9=6,Đ--Vf9{;s'2<~#eۇ_s>}^;w$_IxZ ~N]N?I[vL?;B]$^cŲk#˭z v>Rg/yk`ZK/PedÓ9lwڻ^-=MG뒤3O\.b'ywMZ˗HvMgdxy յT8tؖێݓu}[ONvm%#ٗm]CC_w`lxc-Z{&.VL2yΦ<?txGJrzlor\k<Xd >Ó9CLL5<D|eV-'Ck(y:b)~b]oc#\?uܑ۞~ ^yky`n_hv}^',|I7;?Il60Ia6 MA [y8dn qdC,Z6vÅ\nd6]I.}g VKn|r Bmw.,^=vv/%[=yWgN)gyky|@-|^' xgiM &o{s}< ?6YF2(0j0=r wvKgԃ$~: G#9L>=^b7m;;٨yy_ģo29\g7P ach;m!P'r2?Bo6"aSϩ>^,_c0㖲iu#_p?s[%.ޛ!̶|>}Xo2&\}7pBI&{bF c{R2ˬcrU-!`vZɑ‶vnjC ;:7mw"8ď!_@F| e}>).w|˄[4X8$ɏ݁T}뇖®q <쉏`?ߘl)BAɖSgװmɑ%tlE0y& mΪܬ }IN˓pFΰ!slA fDO]9,Pۗco,vٜ6._O7$;1G,eӜDQ[js\oL3&=7e.e|gIE`)v_r#rHٖ8C dnEZrGy;d:6-aa>ެ6*BZDxB;AY{t2btjY6܁eeWA/r?:@`mƮB-1q'OlcOfm<77*U|r>D܌{TM rdp& SZ +|Oϱ L3G!}A!d N9>,־1,0CW2璲=Vs2s,:`|&^}0gHfAl]-NO\${,}; {!Kv1g$d}?{t dy ƙB];ii#;#oÖr0 `F xKe !l&ODw#?)ڌ5X߈aFMd )l\ԙoY~% Y4LЏ퉍|WےR>vmfNxN5|Nq#$kVnN}{ln3OpA?o sP3Cv`cF;d nDdjfee}o` s=rÏ(Gm#O]WW;n^l#szHG10MJvQw}kA6Z/b"]mmkauEޯp"`%;H,}u,Vr pmp 9)f}e\oy*A؄Xrnja4 '?;c9r#>|BY=s7uusvE};eGթ6,C}Zot\pny)v6ݎ I$t7z>~,pvzMvc,,2ACN25 rH7}|ٹ CԻV>8;;[j=Cb+0#Ȃhl$WW \y X|r;j4,n:0wd=ħԌp; IEph, nţ;ɣfs.<|gR\AՐ3^%OS[aɿԌ#Ǘ;!%ﲘryo6[\~-d9(}M^I}܆Fc6Y埿wIԠL6]"[&tp $G? <}X,Xve9ޥr2^˱}K~nM׋wIx0O| gu={},zal|l$`v7bGI'{f}DM:D= ߉^_*a1/X:u/ɞI#]C:? os_v 0lnoW>ba<!_0 }va9q]bX8]%qHHpxm~~lZrYR6w"S e/tc[- 0g_wY]`6\^:dkb1]c&/g =칲8'}IQ>>^y%Ab,jA fI9q3*vI# ^="1Ƿz99a2&|؟6-1 aؼ, ??[jml.͑8#7sG s,E"u0``d`3[bO-K{Pv~HӺێscF=n>.Ib<2>NOC }gK;IN?3 q9yNB!ճ:ڬ}BJo-ĈrQ7ʷ_B?[( $ {X7 e`$>>n ~!J,zEF@=kh-.iYpㄳA{nˎY|!mǻ2t;=ç:v4Dy$vpMJ 7HaaYw!|d&bьH];g/%On>~v* ͻaG#~X Bn^8N~+l/SFn[쵓`D;A[!`~oW :!C&BѾ4,i OŌE g^H^>^*>=vHB g,x0m A[}a`e/c#"{ rU͈瑸Ig{H]HO#;|xݚXr6>!.[t1b&;1H)71ג<>u{@sno"ESyd3ľVo97;ȳ͗0OZ\e9Oyqv[>FmOL̀mQ^'vkwldh@H g67d,<]Y%=Y?/ m\mr^c?C N?'F̍0decA,wxΣ-uY/+^]F/][0Y;D-|ax?j{?vm<݄}\'@gHRJ%!>`_Mat<Duj.vFcX`Rc}@p$ |CˎDK3dN0!@?BTn< v:lkԑ\SO">[d|=a`eƉc_6CۚvGuLa0-Ѵ >-ŧf^[}d>ofgnwdh fcp,0o㒈V.Ial{ؐgxK)etX/V@/vÖoԡhv2A䞟g)oq0ii&2lZ"^,~mϛ#'=C豻͑E1~9ăD.J~0 `-Yvv{JImhuѰ^Kas-f<`>dg{/O-V0mH8=oٟrF^?6vie!OOx۟r=m}"G{t>$['}e}98lln ;r^>;pd[~>7 ."D4!rd F7pw𻱽;tAE<'G||>-=v٫IGz<C2޿sa'4<ͷO;˹ĭ` ( :ˆ@#¿2񼌼-%؆߈&2k˃=2[92|FH?2x%~6661 #\g/^ǰO-d-?`۰ c},? (Q"v0|!|'K{ fm3.F˖ 9"չQT#6mWS<5`'{#'l@$<>#/&1zvaP<`ono e PȇLD!q0c 6#&,aab&3<<2%m_ggrO;uv̲w[~'۶Gуa|M;,iAn70Ӝc|L9asg Kc~`X/vŜ>o~%Rv|Nvl=ZqGeXf[m=#8ld%|ќOV~_2nBg<Ѥlj^_d-,y+9/6c; 7*;a!H~>;nM.9 $~ @Fg! HW$VIcKlڲI sG nH[D!5!B>7HR2۰`3h},Z '7H\n\C @>l|ٛnmכ5J>Q? NZjO9\l1;F.KMC=_`wk>%fKC $^[o6ai|lvߤbs'Y:2'.O#Cfb D7ɳ.Z7XZǎX 0Q6;ucp7 ]^۽G![Yk.?rOͼc, 7N~Z0n%lq,3v|ˬm4|݉9b(g-G{uY)Ġ,$<ψ,|;Xor^)o{3mX}bf۶3|O_ C^e3lPӿly{Q2𱙌fH~4[N^4}^%aoƶ 43'MAzi{П~azcZ6h',Gv Ad{2xZE_eC/B, Ode?19iʼnztx)=l%ă_$f~V϶&Ea6֛g&&HϘWn`X-m3 ؗqOlY[@^Ik?^@"`ϩ/Pk=vmn ݜ}Ɖ|%.ta>H";`-`t~-=˹^y}c}A/x:;Zm.~d g|-o-uv89$y`vLK6|!xc ;od^'hw4]~gBَY~M-?.[l0ڟ-u~\%Y%~,azsm\,?qLBX:\!㌝9 ,C˰‰^p 7%ӹqћQ\eQyDoouBb {+v~x8˦arQ_C:vƎ~' ƥf=dr3 7+al?&.9峲txXC3΋.sY FyT{`= bM6χ 9 `̎9f]Xĉ˂Mpa;`iV?=cGـW?C_gly=,%y}~.H ~fr34]=I1d&O;=G̳.'vd\@8CHwnN oL-d?,bӬb:Jn?76~n\ zXw,ȁ~7;6C=Hs>Agr̗%l4MLz77X{( pHr2翁w_!ɒ>-Ö}E*y}Y2Mōio7o'ſ?d^Y-ÿvz!ng/gHUO` Չatc.Rv[컇\%W|[~-:%t7yzWRO> ؀%'aH/ԶZZ ! lpdGcza1"B%,e =;KCSP{u8c)9mă8=ۻ{'R y= /o$a=oA([nK;m/.[2NΌoXy9~,}*? ov,F:[Nmğu0{:d:K흺FKiLr䱟2mۓ#4-um[WrYC`͂vL!Qkdu`qbKlL;id]e jaiݳ 72e?>ڝ=]y HcJ =-ՍHb`AD)fmǖmnW6W8<-FEIdhOuSȼG]2'9 g,c!D r~X'!?|-Ed/9'Xo^EqO`}oR>;y}Joű1>HbM- mKOg\.@<}M76v? ؃orllR90ަtl2 "HtZOzmp5rJv0?Vd3>áh付_;N,hn忹eXc-geMv[^kl8'wR;ue~-9$[1&_2X~l-afPzL.19̕"BQ;x1x}2z^¹,|`?6"&_c/$>HCgNOnyh{g9>8Xnq~b쑲xv @9m nϑ01ocOXӭ!df$D%ay>=aej?7ɸl6]NOK <[9J[6n<#3ԧ78\v%o%z^,+Y y<-ver:gv"y*}]=s/.4a#(gdGBkaG9$m#N6Gy",^^~$IfK 5%!í /]'ru6dLbŝ-ˮ:}_3tpJ{i~Q~/<Б.[CjGCۥs,x죍бcg;?̂3]C[wc&O]?r~>61J/E2JZcnc:پHe&ɑ,_Kypt,9 c crO=?-||{ 6F' ^rxH}g>%L]qmBb[ r.ڻv;trHsƶdymf orN[[\uՙ.Hu0dEY,.| ~V00(?c@&`+E9vRd`5$7ƭ%!.]OlN6`9qd-g,4Y/ۢOrK`c,ƛ 5.@#͝'.O;pmpbRFǯ2"y:9prs_E,s adgcd33&;|KoWv9v8r[חE7H# k>Ρ,^˹ywߛy2`eԻXMt{jZմgeBFn_W$ D.{iuۮE2 _ K0ᑶ|ZY3'93d܍}Kw%)S8 ~#^" -l9.KdÿF?O۳ An޿oIrYD.K_@-8mȻ647xdς٘#a lqy;cIۤ)!?c)sS8aA<ěs[C;fO8l url=`y~IN!<&8)[?z큖1 2^y>Ի%7[.\!էir}hƬa㶉霵69vu.r뿨Wel-%0͈=m;b~+`Y2Mv\*fGK9=,O Hm.AYrLF>9KaR3i $Mk-^Έr&[".}{K a]X{Zd'! 7l쇥HN#X^ ͟RomzǽBzrp#o -}aX̵`u_'#,G,G퓐>#Mdvz66!k>]aR v6%˦;z-=1=cva3/>lѽ?(3;`:[ Cm]\2w%rl 9hXlc ?H6Gsa72B50>LI _2> YSK"zc<6  YEMdf뿇l!ߘirQbBv|];9-=C߉Ma'YwFGylr\20x9/6S=cIp?slΣRc-嵓Hnr2g9'n^-~dcbC?KI#c.t72E$5CanZqȳZɷVb5]xѳ;ۆ\^Yl GXq䥏9&\'9JGf|Fk'?iG[_pdy6.ܹ:7MXo!8Ż|[1#JO`-ϐW|l C zdd1&<;/eĹ~T8A;fFܱ! IǶ-8xb 1wr̺9~e0#3?qԻ.|]geX}y o;9 hv*VU܍` $gv2Dy*62D37$|?0`vϙ Lhȷ,3~"8v >GEm˶񆷹ve&Z~M.6gi:$.لb.mVg6Ls 巡.@twbd^]67@?? 'gqXrzGY9pw=!5/`w,nea0tl}&4^˶V<ȇ!rA_!fe|dGR:LESFBtٖmyc@ry :~,K[A9aϰ3XϖX+-.(O2sV}ͺK,gF wpٟ]M)m7o%:vY:3[:Da@o:ye˒ h9 Y'Fȶc!%a@}C9 'v,>2#0;9Ղ:@1d Cv6,4rYj?p-0!:o?3m|KV{b>ϻaJ9 W$H]!ܺhǬ#etb#7 {,'`o1_5|y=v[=vȝX]l#q>WvG<8IMG|0l`9Qŗ.Fud/gFX;"Yrañy[ nX;=~c >~$u6^3𻑖Ӻ&~9vs| >~$NqtO9!åz :}lը>>?WS_7DnD?6ͤ,KG> y6?3X!7 f™p3n>r;u+Yi,~P|ۃn eW^mh; BV[.+cdݬiAkX_P`>Y #p$kc u2vr: Yl/ Q}H~L'ouOp~ r D޷Gs,av5w =gH`[}}| dyƙR)k,0ۮɑ'~|[̷O]NđIKkm ^-m.ː?7I >9m-9bѱHɰdΰ,2.ajlG^`yc50Z<`ǑY܀FO}.~!S'` y-ll,j=F'f3{(VuVxZPc%}#`̱/\K!db>ngVnvd-;'x'c˖s .}Pug~/yRBFb:ɃJI)O]˞\{!?R_d iEv-^ >dw?FN1rOG^˶}%o0E:i;C`wr,!|( N-Cgpdy AdȒ!K>e-dx'Åð] vռ~uvXJ}EoMDdg6kKNprY.lDy2쏶D'0ςܐc/}6VN Sx!_W%[ {L$uﱩĉ5lg<$?4%p:M˃xy@0 O/޸:a] IAgड़b~^僶cY.ٻ0"@C`$G=rh]:X|θ.-$ð~mm2? Rlr=Xoc\r0^:<6hя&]/g?w'_w2̸>?;Iżs˯c-r\Jno;.ݯ-He+FKNBN`=l˦Ku&Y6D9 56Eli?ߥAO<ö#X%tC%1эoS stLuN=dehv4Cdۯ\gczoJ9fɐlrx^)r6ߤ{loPc:]˦XpOa,'wHam o?͓#k(X6. Ŏq;nnJYj]'u{}t9b?ϩGBHa>wGmyaሃ< / -1=-?Vol%MCN~Y>ot$6w.q팝HlBr u'vّ4@aa;cq 4k1R$$ߋYv.CXP;h޲2c;:rp]$@.^$͓ 2ܷ$ ۱p{!l ?z'!ccòk }f W܅ g=%oʼnB> NN.Shv <]}_2gi>AS0}y+s^ɗhXno!9 Ļ#ȇ{:}g-/ŁuvX]-grW6>[bϫK2wf[zd9.4c˷,6K矻'K9Hf #ml9lohSXWnHه-KH2u]>{f/ċg%1oä< e}Y&.^&I|d.\ܓpQ vMH1X BHkl |@VXyV~oxҸz剜\޲Åe,Ygmq[E#)vHXMA+fÒq~ F%9a:ui6]g9?ڌ݇hg>$!1˧ē:v 6@7|!$HX륨;& GÖ&#7e $?&m `ٗ>XM,Oh&[}}l:y[8ԂyM]ɝ!IVÿrz2-[h8@ &yK|þ9̃vE1pm˭׿p ~o&4Dsd#&0KqoIXΘ8HAf6 rq3Ϗn0wVﶌbxG7/1ֶ?s/ {-8!"i:!wYǧdib0Y"Br0vݹ_$탯N?rr%ģ&}2\gWL<}:`9(0(e;xvteN 9^&xyedg.RޡIx]v^GV$%!-=[>da휁mllv\X_8a^#Gl#F GF1peQȇmU!;ȷ{1Ԝn{mY埾.oq]zmȻY?1:g?Dy')zgNC l\=C7ޫz0LK#e` e;_ƟݷrC{qwm\; 8-Z\Aݱ.߈~\;%Ȼ8N|O];ncKC~Z+HI Yg1F;퓛#wYI۩CN$`kcoG1Y_['{ Rᖍ /i[v 01ˏ>##Ƴ$Xo_rdwa}N:2ńدH [yI O93y~$݅K͝{a`'#N3̰ǓC}$Ia>c M""==Juf8BYk3ZxlAh^{' 8b0c>m[Oϗ39(!I\:\KQ5c@&ĻcHoI sm]o!C& }6BO>F[$㟃>ǐU;7.FAK/M~9#akfɟ"r;F[ `鶇&9==}ɳ0Q7Mп4ܻwc#XpvSu>HwᳯGfI,_ϘǗ= ,7kc`Y;xƽ0OKHK ;'ݘ[9tY̰>ʐꏛ6ݻmI9o .̐ñDŽ$Ѷ̛$e 20de@$dK`^/>O ?s0K1K%7l{< dY$mKhx߶1+;kӭbM|Y0rmWܥ yHFl{z.3E~z<&,hKeuy<-A2vI2C<"#շd/?6lqvt݈ { ~;0.nl')?Vv F%NnP}Z[ YO9a|y2ecv6Wd1'-bt6E? ` a2`!c^/.wg9b${ h㖎m z?$ŭ%܅K/X{?_-H:X4lܝ9"W̖vSK%r'~]7eHKe,=-2y?WMGp{hܔ>n.?x۝$Bѯn[=>l^}J|s.yaɏd; 9tߤ vGYk9-[o|-K8v:##X;ݰCko/ |].w'%>0.,g|Af̳a"ry#ltᬺx$ o$ dY!m,|!RdH)l1}ȹ9aO]ߵ6|adNG!]gK[J9R\۷L{g eۇ~IKYoל r`KH~ n퍀K'F^!b|>a^;6 `o SoľFvM쐯ƶ.C 6Uߙs9|Jo+"v60ZCWl͑&@76y?dav|#MXl7^=e G=Au! NNZYNb,c[r3\w3GǒLY-qɄ}|c-y?2M6Yuxf朑MMi6ќ֏/,w dZI/Ŝ;kfv9/u2OSǒnS͐yq?Sĭ~yXw Jma-[Po,n^[}e3c^ W!bCmma[>}9Ͽ[\NΆ,%,ذ>E :r:^12 r{m46xX̏wi; 1>O,_ AbY=C {s~H=C6vO#E73K s7kt3#fݭ.F=pL!3$eӓXwğ>,xlwIj8d_0̙ϩC̖?$Xf[>FZ_DINK A?lu.&]6PV70eh0˯fC`\"{۷e9=gː 0x'#sñL3ςOqu#Lg/d˼a89`J#!Jd~ᴂ-+og #َ|$cqُ]IZl02`d]9q?hr &?ԍ" 0/L&m'2Yk˵ˆ@,qn ʰϖ4n,ɻ[v-{ ^sg_1VKAa%{< Oei.~Z`.0Ooؾ<5OLX' fggJc ;"B~c>RˇMo$G'Fcv~g6?'!z@{IN[plˡbl6(}C#lbr> W?;$2;!쵵XR͓B_Uwi`&- |r_6vSO^?Ruee`e?d&vrIhϩɲsv[̓12 soA1p[>uomnX&_4cg+ ;-{j̘ 5\NߋfVpFȉ^K7_}fY޾Ŝ #͕I`,?[Ai!`^M.ȬT]a/ 5f#~̌H,^ 2ل`Q=,uB~r_fTys&FGkG\avTYM\h`f6-N͕3o\2 'i"}.A:ɼψ/B.89i74lx>[wy]nC\=$;͈ k*űíHɎcF@{#$TϚ$#'ӰCXstI-@;nȌ.v1O NY` G2]fFywJ<@TB(-mɷ|?l-N?-ɫǓ2-ly' - m}_[Y2m0}I~'~%=/f-=i܏6ckbuIzTXtRaw profile type exifxڭir$ >Ap=VK#ɚXQ}ܿZr|[輩xޯ8|x]tz(pIy^7y/u56K?>u}|>^u Tz=HkE}5Z>oKrR"?c|gNB\-iy6n -lT j*:o5<;gxI)Kaז6?tsC>L /(qTf_/-ޅ]Y| ʇ{f=fb_z}}Y8crw?o(Ku:1 !̠2VIV (AAP LR`kKwmw)pk _vssD,d<˰On##r^AM7o_,Haal 1D+%^}03ur,F,$/!YIPgAcd@R E U|Uk= C*#-xpY=Ƃybo:-0Hؚa%~H]5GvE`Jd4.-H,ؒiyɶ3qqipb"h̊0h PxI %&)Ԟ+i.??FWzY콈b'qZJ^qXRՁ9nDXΰ5zlNYcS|OIƩ@WjlPz̷Jښx=aW8mo`:k8{iI73pF9,Gq8 +d4Of@p+ [ M:RU#R7d0U[)s~"\8jB6RJR]g˚ Jd}Uk`LFYe5gX*" )0 $Y!ME `=ۚaф#Bbug@f*KaƒQP|&=V`tGD TQ}AKJ9AnY.)T@HjfN_K~i5ņ1`yP^h1p8Ņ\F)Z}d4fuEAR/d1!\H>/.#dNڷ "t@#5ܳĉf7j1ZNhrWBD^&cr`(:zUE1; vBdx' \4/ 4 gEzҏU3\-ZbVA~U1Gp>СUlW:!x'`s)~|=7TcWbD9BIi 9 [*i?ōfFt$[;&坤e@]gS;DF1=XGQ`m1iLP0ޟ0c{A618.cd'Е5%W'qyVH2|=W`f:OWy @L vJg Eo%blkHKJ"L2DѱCI5z,iHN)yZU5B7;9{Aoܬ<M{p^& 7} PE'D,;j>1 2Wl#BBech!Y"%vNZ?e0$ _mTWCQV𫍍t}jFmyki7~{DKHm ّ0't> VǾI| xL_cCb"=l/ӂ$V@ OIcȃ%2{&eӾOJI|ì_O:7[MfLho]A.rś@_-ְcq{ǴAQeDh_&t/'v@ EVFA{4c/ffL_%RM99 nwk#r%&n K`)cd7C:B)6e;Ody1LNxq?ޝ/_lz? wOw@ыchhGVF8RZ˅)5ƺ.A[/~ST_j(2b~0Hdm;췅 1sxl=R_0p\w- }{ugݟ<ӲcغvhrkhtkBK=wz$FAiCCPICC profilex}=H@_?qP8jP! :\!4iHR\ׂUg]\AIEJ_Rhq?{ܽ2SjN&lnE}`A(9]gys(y>xEN z)bKGDOp* pHYs  tIME , kGtEXtCommentCreated with The GIMPd%nIDATx\easl~&XDX?RHV QxZ~ږM EVE8ZBJL@d7|ؙ3sgf:瞝ݙ;>s{%hh"@V=0e#>z ,Q?LPA)ڈ?%0PP.- ?j8(ډ5P#A@r2*dhhȱ֚?;a 5$Z^K9,TkǠ䶵c#^Mwv4(e.pwVB$sڢuӄKPVZ:1k1[c2 !$҉3֭[g͛g$*Xkۋh}Iߛd!jEqwVyYIsg͚K5P]UkacRl1%:h ^#L:X'(pJ B݋:>{U,#$%4 eÁz묲˗q h+0Y E2}OP*SPRT)$;0U2(4""@BR߳_0<kWNץa6'N2 T^s 0c?s3Lh"8NBRvP2yibRۉA \M *P}|w` 6F=(&6LA+W=.4J,Y4,{J4&˸b|v&鞥" ~YzuӬY!mرc+sewP,2)|bB{sS >!,_oɒ%4FPj ::X'm!)޷nϞ= 1:yIqnV\422{ꩧF.2o m@7L^]Q"83geMȼoS` +L&gYk۬MژQCB7^S,3 7ݭjFFFbx`J䘚SszjٹsgLSH%"@%OcLuc,@S}' ߽{wl…{mѣ8dEaW|K/ϣN"(عsl2%0\g oC?s^#5̞7lؐl@Y qGXR%l*FZsJ$vFv;I.]JxFNYBE]b1qM,3Xqk\וrGX,s&xwrg-$JdTJT*e=S*ؘ]~Zdd477w0@0UO (-9k [9&c\kyfSJ(PFg5]w0n @"@@}3yꞝf59#{SNL###Q*{ϐmsL`%zPF@?B( $Ic1vƍUCJ<(e"/dsLVg !R6llJوư%0U_SҎ;}_{Z}c?iLR:cQfZ|9JPGL zQÇM24Z300`>lonz! S^Z{ z[Gj0klσ@]lL :[D@"4QmP`d0/[q1! TTj.f[d>{f0.F@2e|_PpRcFĠ˝u)TMiƻ-,E+&iyNI~L+z5~]6yi|=:&BcYq[=)g|5&,U^k1Wc~ iLzk$E΃X) 6ՠ 9Ep| (9q[kku_f՜9s={≄ iϫjǎguӒ~AQ;+ѳ4tB)b9CTHP0 D˝ptu׿ϹjѢb^߿Ow#G4|ZQIRfPPrrzP|Ǵ]žj=17ߧ/~nKzwRʨ=Kaoږe}b. B,:c̺ŋ~;,o/c}߾m*(ju*_JlS7c|o_χ$gbկ;^t7lmpJ_9gaA 5TK1]U/5eASS2_6kKҵ;Zf5a bbTpTŀzJ2u===o9ؘn˖|;Wf3,U3 F,z p)5T$IDB]NKss1 ,FO' a.־Cv.Z乮)ZtyW}ছ?3ߖt!R=cwU\w(Hn`q@X)^מsV3덫.v\}KRM];U "yIY,jOT{-R>wJ\{d.a@X׮]sio?\IXɚ`FQX,Wv;}8g˾뺻={ŁOd):\x *$J}oGuŕWE~Smz~#3< =GpQ@i seWWʇ{v$3=v~]xJI)f" @n)i}ѣGS#|}%Px*4~Lqm2JsZ۷ꑑM[$}B҃?ܽL<O0*7>iѿ?Kҗ%ŎKBH30T*+߼3%}LKo|nk,3[>o?$?S4pTJRXoW8*([Ç1Q8'nR] HSMuGJɚ/ޣ5ܭT*34$#y,0bT-16w?p;Zam:G]5o|?6]wt(ީTR]_Gqb  j_Od?+ jNbKSi%;O]|$Ic~JW?V}Og]q%gkos֗8:mB]7UK.ҥK1߷W۷mӓOB"iEIFX*2ò~g-]+}≧=:wdH}~h-Ԏś:=-X69n"+}?vYW,"4`P"  K@4jW K\xWʘIOTos?SlzCINYv풬l`ߋJ)<&#ɍ*<[]gs Sܘ{ljk}ٵ}?lT#*fﰖ]jhko6[{$)%_|Kv(5j^sއֹ4祎k{c&Eg <=K\Ƹ?lkҿ0]mr0&G5F^zK63X8Ns1}Ig(F? tŒ:vkֶnmm: pNijr=צwZzGZ6|^^׬ i*ai::%}"f){Cz6ۗ_Gv& mSGY,x>w kVJC_S(M#Y:=nR.k٣ʼnM#QZoYsk$U3tP7m׊UDKw:w}JKM5cL l:y͉/Eo[E=HǔǕlj }5t/i9K*cw[h:emAdoYf-hPv|./Kt{TsKHČ=e Jd~9^*kZn9m䧎Ge-|dmkqamWu..o:ele6wK.林k"m)HIzR1IҒD{ '?^r^ wv/\).> a%M:\b:Rz2FtYϕa풴x_fz)O L]jio Ǜ:3Ϡ@X*dk8;޷wt&7=Ge\Or8KYЖHFFm?18/"n%󰉪a:}riOUlFȦ(i=zJ4͊˦3P7/,#/~GwӴ$ѮXv'R#56=G督e'MGk>utξD]&aX)I)o5IϙꛌZOkzԈrWJ$ݞ 8KEs'uxϓ=HU4U$ݘdBR&pKyYq{$s2XR9.B)I9[D$u];nT{Wm%IC5`@4&/0D:x`^M[:[ҚIJ=z=gz^49c6_s|%bIK{Jz ($՗/z=_Ν[jj}]cCZsh{֘Xa#kK?4Potx/tI#6],c,X^hK&ڝh@5?_g(Nk-H2Cnn {žKZ BI%}yEs`LPzHңƤ~%Y.@_%5#k< R/nsJUwܤc~jԳ J%e3ngس~C'0t@IHJRPC?GLeIENDB`slim-1.4.1/themes/default/COPYRIGHT.background0000644000273400027340000000005714347555104017151 0ustar robrobGreen glass image copyright Rob Pearce (c)2022 slim-1.4.1/themes/default/CMakeLists.txt0000644000273400027340000000033414347555104016276 0ustar robrobset (THEMES "themes/default") install(FILES slim.theme DESTINATION ${PKGDATADIR}/${THEMES}) install(FILES panel.png DESTINATION ${PKGDATADIR}/${THEMES}) install(FILES background.jpg DESTINATION ${PKGDATADIR}/${THEMES}) slim-1.4.1/themes/default/slim.theme0000644000273400027340000000252614362731403015526 0ustar robrob# Green glass theme for SLiM # by Rob Pearce # Messages (e.g. shutdown) msg_color #FFFFFF msg_font Verdana:size=18:bold:dpi=75 msg_x 50% msg_y 40% msg_shadow_color #702342 msg_shadow_xoffset 1 msg_shadow_yoffset 1 # valid values: stretch, tile background_style stretch background_color #11dd56 # Input controls input_panel_x 50% input_panel_y 45% input_name_x 394 input_name_y 142 input_pass_x 394 input_pass_y 178 input_font Verdana:size=12:dpi=75 input_color #000000 # Username / password request username_font Verdana:size=18:dpi=75 username_color #FFDFFF username_x 270 username_y 144 password_x 270 password_y 180 username_shadow_color #704f42 username_shadow_xoffset 1 username_shadow_yoffset 1 username_msg Username: password_msg Password: # Welcome message welcome_font Verdana:size=28:bold:dpi=75 welcome_color #F4D5C0 welcome_x 50% welcome_y 40 welcome_msg Login to %host welcome_shadow_xoffset 2 welcome_shadow_yoffset 2 welcome_shadow_color #338353 passwd_feedback_x 50% passwd_feedback_y 80% slim-1.4.1/themes/default/COPYRIGHT.panel0000644000273400027340000000007514347555104016131 0ustar robrobThe icon in the panel was downloaded from https://icons8.com slim-1.4.1/themes/default/LICENSE.panel0000644000273400027340000004311014347555104015640 0ustar robrob GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. slim-1.4.1/panel.cpp0000644000273400027340000006344514402200273012426 0ustar robrob/* * SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include // for XA_PIXMAP #include // for sleep #include // for cerr #include "const.h" #include "image.h" #include "log.h" #include "cfg.h" #include "switchuser.h" #include "panel.h" using namespace std; Panel::Panel(Display* dpy, int scr, Window root, Cfg* config, const string& themedir, PanelType panel_mode) : cfg(config), mode(panel_mode), Dpy(dpy), Scr(scr), Win(0), Root(root), RealRoot(root), session_name(""), session_exec("") { if ( mode == Mode_Test ) { XWindowAttributes attributes; XGetWindowAttributes(Dpy, Root, &attributes); viewport.x = 0; // Not actually used. The window's position viewport.y = 0; // is irrelevant to our drawing functions viewport.width = attributes.width; viewport.height = attributes.height; } else { // Systems with multiple monitors need us to pick one viewport = GetPrimaryViewport(); } /* Init GC */ XGCValues gcv; unsigned long gcm; gcm = GCForeground|GCBackground|GCGraphicsExposures; gcv.foreground = GetColor("black"); gcv.background = GetColor("white"); gcv.graphics_exposures = False; TextGC = XCreateGC(Dpy, RealRoot, gcm, &gcv); // Intern _XROOTPMAP_ID property - does this belong here? BackgroundPixmapId = XInternAtom(Dpy, "_XROOTPMAP_ID", False); font = XftFontOpenName(Dpy, Scr, cfg->getOption("input_font").c_str()); welcomefont = XftFontOpenName(Dpy, Scr, cfg->getOption("welcome_font").c_str()); enterfont = XftFontOpenName(Dpy, Scr, cfg->getOption("username_font").c_str()); msgfont = XftFontOpenName(Dpy, Scr, cfg->getOption("msg_font").c_str()); Visual* visual = DefaultVisual(Dpy, Scr); Colormap colormap = DefaultColormap(Dpy, Scr); /* NOTE: using XftColorAllocValue() would be a better solution. Lazy me. */ XftColorAllocName(Dpy, visual, colormap, cfg->getOption("input_color").c_str(), &inputcolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("input_shadow_color").c_str(), &inputshadowcolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("welcome_color").c_str(), &welcomecolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("welcome_shadow_color").c_str(), &welcomeshadowcolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("username_color").c_str(), &entercolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("username_shadow_color").c_str(), &entershadowcolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("msg_color").c_str(), &msgcolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("msg_shadow_color").c_str(), &msgshadowcolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("session_color").c_str(), &sessioncolor); XftColorAllocName(Dpy, visual, colormap, cfg->getOption("session_shadow_color").c_str(), &sessionshadowcolor); /* Load properties from config / theme */ input_name_x = cfg->getIntOption("input_name_x"); input_name_y = cfg->getIntOption("input_name_y"); input_pass_x = cfg->getIntOption("input_pass_x"); input_pass_y = cfg->getIntOption("input_pass_y"); inputShadowXOffset = cfg->getIntOption("input_shadow_xoffset"); inputShadowYOffset = cfg->getIntOption("input_shadow_yoffset"); if (input_pass_x < 0 || input_pass_y < 0){ /* single inputbox mode */ input_pass_x = input_name_x; input_pass_y = input_name_y; } /* Load panel and background image */ string panelpng = ""; panelpng = panelpng + themedir +"/panel.png"; image = new Image; bool loaded = image->Read(panelpng.c_str()); if (!loaded) { /* try jpeg if png failed */ panelpng = themedir + "/panel.jpg"; loaded = image->Read(panelpng.c_str()); if (!loaded) { logStream << APPNAME << ": could not load panel image for theme '" << basename((char*)themedir.c_str()) << "'" << endl; exit(ERR_EXIT); } } bgImg = new Image(); string bgstyle = cfg->getOption("background_style"); if (bgstyle != "color") { panelpng = themedir +"/background.png"; loaded = bgImg->Read(panelpng.c_str()); if (!loaded) { /* try jpeg if png failed */ panelpng = themedir + "/background.jpg"; loaded = bgImg->Read(panelpng.c_str()); if (!loaded){ logStream << APPNAME << ": could not load background image for theme '" << basename((char*)themedir.c_str()) << "'" << endl; exit(ERR_EXIT); } } } if (bgstyle == "stretch") bgImg->Resize(viewport.width, viewport.height); else if (bgstyle == "tile") bgImg->Tile(viewport.width, viewport.height); else if (bgstyle == "center") { string hexvalue = cfg->getOption("background_color"); hexvalue = hexvalue.substr(1,6); bgImg->Center(viewport.width, viewport.height, hexvalue.c_str()); } else { // plain color or error string hexvalue = cfg->getOption("background_color"); hexvalue = hexvalue.substr(1,6); bgImg->Center(viewport.width, viewport.height, hexvalue.c_str()); } string cfgX = cfg->getOption("input_panel_x"); string cfgY = cfg->getOption("input_panel_y"); X = Cfg::absolutepos(cfgX, viewport.width, image->Width()); Y = Cfg::absolutepos(cfgY, viewport.height, image->Height()); /* Merge image with cropped background, so that PanelPixmap is the * panel with the relevant part of the X root image included instead * of the alpha channel */ image->Merge(bgImg, X, Y); PanelPixmap = image->createPixmap(Dpy, Scr, RealRoot); /* Read (and substitute vars in) the welcome message */ welcome_message = cfg->getWelcomeMessage(); if (mode == Mode_Lock) { SetName(getenv("USER")); field = Get_Passwd; } MsgExtents.width = 0; } Panel::~Panel() { Visual* visual = DefaultVisual(Dpy, Scr); Colormap colormap = DefaultColormap(Dpy, Scr); XftColorFree(Dpy, visual, colormap, &inputcolor); XftColorFree(Dpy, visual, colormap, &inputshadowcolor); XftColorFree(Dpy, visual, colormap, &welcomecolor); XftColorFree(Dpy, visual, colormap, &welcomeshadowcolor); XftColorFree(Dpy, visual, colormap, &entercolor); XftColorFree(Dpy, visual, colormap, &entershadowcolor); XftColorFree(Dpy, visual, colormap, &msgcolor); XftColorFree(Dpy, visual, colormap, &msgshadowcolor); XftColorFree(Dpy, visual, colormap, &sessioncolor); XftColorFree(Dpy, visual, colormap, &sessionshadowcolor); XFreeGC(Dpy, TextGC); XftFontClose(Dpy, font); XftFontClose(Dpy, msgfont); XftFontClose(Dpy, welcomefont); XftFontClose(Dpy, enterfont); delete bgImg; delete image; } /** * Set the (previously loaded and adjusted) background image as the window * background for the root window. */ void Panel::setBackground(void) { if ( Root == 0 ) { Root = XCreateSimpleWindow ( Dpy, RealRoot, viewport.x, viewport.y, viewport.width, viewport.height, 0, 0, 0); XMapWindow(Dpy, Root); } Pixmap p = bgImg->createPixmap(Dpy, Scr, Root); XSetWindowBackgroundPixmap(Dpy, Root, p); XChangeProperty(Dpy, Root, BackgroundPixmapId, XA_PIXMAP, 32, PropModeReplace, (unsigned char *)&p, 1); XClearWindow(Dpy, Root); XFlush(Dpy); } /* Hide the cursor */ void Panel::HideCursor() { if (cfg->getOption("hidecursor") == "true") { XColor black; char cursordata[1]; Pixmap cursorpixmap; Cursor cursor; cursordata[0]=0; cursorpixmap = XCreateBitmapFromData(Dpy, RealRoot, cursordata, 1, 1); black.red=0; black.green=0; black.blue=0; cursor = XCreatePixmapCursor(Dpy, cursorpixmap, cursorpixmap, &black, &black, 0, 0); //XFreePixmap(dpy, cursorpixmap); // man page is confusing as to whether this is right XDefineCursor(Dpy, RealRoot, cursor); } } /* Open the login panel. Not used by slimlock */ void Panel::OpenPanel() { /* Create window */ Win = XCreateSimpleWindow(Dpy, Root, X, Y, image->Width(), image->Height(), 0, GetColor("white"), GetColor("white")); /* Events */ XSelectInput(Dpy, Win, ExposureMask | KeyPressMask); /* Set background */ XSetWindowBackgroundPixmap(Dpy, Win, PanelPixmap); /* Show window */ XMapWindow(Dpy, Win); XMoveWindow(Dpy, Win, X, Y); /* override wm positioning (for tests) */ /* Grab keyboard */ XGrabKeyboard(Dpy, Win, False, GrabModeAsync, GrabModeAsync, CurrentTime); XFlush(Dpy); } void Panel::ClosePanel() { XUngrabKeyboard(Dpy, CurrentTime); XUnmapWindow(Dpy, Win); XDestroyWindow(Dpy, Win); if ( Root != RealRoot ) { XUnmapWindow(Dpy, Root); XDestroyWindow(Dpy, Root); Root = 0; } XFlush(Dpy); } void Panel::WrongPassword(int timeout) { string message; if ( mode != Mode_Lock ) { XClearWindow(Dpy, Root); } #if 0 if (CapsLockOn) message = cfg->getOption("passwd_feedback_capslock"); else #endif message = cfg->getOption("passwd_feedback_msg"); XftDraw *draw = XftDrawCreate ( Dpy, Root, DefaultVisual(Dpy, Scr), DefaultColormap(Dpy, Scr) ); XftTextExtents8(Dpy, msgfont, reinterpret_cast(message.c_str()), message.length(), &MsgExtents); string cfgX = cfg->getOption("passwd_feedback_x"); string cfgY = cfg->getOption("passwd_feedback_y"); int shadowXOffset = cfg->getIntOption("msg_shadow_xoffset"); int shadowYOffset = cfg->getIntOption("msg_shadow_yoffset"); int msg_x = Cfg::absolutepos(cfgX, viewport.width, MsgExtents.width); int msg_y = Cfg::absolutepos(cfgY, viewport.height, MsgExtents.height); MsgExtents.x = msg_x; MsgExtents.y = msg_y - MsgExtents.height; if ( timeout > 0 ) { OnExpose(); if ( msg_x >= 0 && msg_y >= 0 ) SlimDrawString8(draw, &msgcolor, msgfont, msg_x, msg_y, message, &msgshadowcolor, shadowXOffset, shadowYOffset); if (cfg->getOption("bell") == "1") XBell(Dpy, 100); XFlush(Dpy); sleep(timeout); } ResetPasswd(); if ( mode != Mode_Lock ) { if ( cfg->getIntOption("keep_user_on_fail") == 0 ) { ResetName(); } field = Get_Name; } OnExpose(); // The message should stay on the screen even after the password field is // cleared, methinks. I don't like this solution, but it works. if ( msg_x >= 0 && msg_y >= 0 ) SlimDrawString8(draw, &msgcolor, msgfont, msg_x, msg_y, message, &msgshadowcolor, shadowXOffset, shadowYOffset); XSync(Dpy, True); XftDrawDestroy(draw); } void Panel::Message(const string& text) { string cfgX, cfgY; XGlyphInfo extents; XftDraw *draw; // The message positions are screen-relative, not panel-relative draw = XftDrawCreate(Dpy, Root, DefaultVisual(Dpy, Scr), DefaultColormap(Dpy, Scr)); XftTextExtents8(Dpy, msgfont, reinterpret_cast(text.c_str()), text.length(), &extents); cfgX = cfg->getOption("msg_x"); cfgY = cfg->getOption("msg_y"); int shadowXOffset = cfg->getIntOption("msg_shadow_xoffset"); int shadowYOffset = cfg->getIntOption("msg_shadow_yoffset"); int msg_x, msg_y; msg_x = Cfg::absolutepos(cfgX, viewport.width, extents.width); msg_y = Cfg::absolutepos(cfgY, viewport.height, extents.height); SlimDrawString8 (draw, &msgcolor, msgfont, msg_x, msg_y, text, &msgshadowcolor, shadowXOffset, shadowYOffset); XFlush(Dpy); XftDrawDestroy(draw); } unsigned long Panel::GetColor(const char* colorname) { XColor color; XWindowAttributes attributes; XGetWindowAttributes(Dpy, Root, &attributes); color.pixel = 0; if(!XParseColor(Dpy, attributes.colormap, colorname, &color)) logStream << APPNAME << ": can't parse color " << colorname << endl; else if(!XAllocColor(Dpy, attributes.colormap, &color)) logStream << APPNAME << ": can't allocate color " << colorname << endl; return color.pixel; } void Panel::TextCursor(int visible) { const char* text = NULL; int xx = 0, yy = 0, y2 = 0, cheight = 0; const char* txth = "Wj"; /* used to get cursor height */ // The constructor and other conditionals guarantee that // if (mode == Mode_Lock) field = Get_Passwd; switch(field) { case Get_Passwd: text = HiddenPasswdBuffer.c_str(); xx = input_pass_x; yy = input_pass_y; break; case Get_Name: text = NameBuffer.c_str(); xx = input_name_x; yy = input_name_y; break; } XGlyphInfo extents; XftTextExtents8(Dpy, font, (XftChar8*)txth, strlen(txth), &extents); cheight = extents.height; y2 = yy - extents.y + extents.height; XftTextExtents8(Dpy, font, (XftChar8*)text, strlen(text), &extents); xx += extents.width; if ( visible == SHOW ) { XSetForeground(Dpy, TextGC, GetColor(cfg->getOption("input_color").c_str())); XDrawLine(Dpy, Win, TextGC, xx+1, yy-cheight, xx+1, y2); } else { XClearArea(Dpy, Win, xx+1, yy-cheight, 1, y2-(yy-cheight)+1, false); } } void Panel::EventHandler(const Panel::FieldType& curfield) { XEvent event; field = curfield; bool loop = true; if ( (mode != Mode_Lock) && ( MsgExtents.width == 0 ) && Win ) OnExpose(); struct pollfd x11_pfd = {0}; x11_pfd.fd = ConnectionNumber(Dpy); x11_pfd.events = POLLIN; while (loop) { if (XPending(Dpy) || poll(&x11_pfd, 1, -1) > 0) { while(XPending(Dpy)) { XNextEvent(Dpy, &event); switch(event.type) { case Expose: OnExpose(); break; case KeyPress: loop=OnKeyPress(event); break; } } if ( MsgExtents.width > 0 ) { XClearArea(Dpy, Root, MsgExtents.x, MsgExtents.y, MsgExtents.width+1, MsgExtents.height+2, false); MsgExtents.width = 0; } } } return; } void Panel::OnExpose(void) { XftDraw *draw = XftDrawCreate(Dpy, Win, DefaultVisual(Dpy, Scr), DefaultColormap(Dpy, Scr)); XClearWindow(Dpy, Win); if (input_pass_x != input_name_x || input_pass_y != input_name_y){ SlimDrawString8 (draw, &inputcolor, font, input_name_x, input_name_y, NameBuffer, &inputshadowcolor, inputShadowXOffset, inputShadowYOffset); SlimDrawString8 (draw, &inputcolor, font, input_pass_x, input_pass_y, HiddenPasswdBuffer, &inputshadowcolor, inputShadowXOffset, inputShadowYOffset); } else { /*single input mode */ switch(field) { case Get_Passwd: SlimDrawString8 (draw, &inputcolor, font, input_pass_x, input_pass_y, HiddenPasswdBuffer, &inputshadowcolor, inputShadowXOffset, inputShadowYOffset); break; case Get_Name: SlimDrawString8 (draw, &inputcolor, font, input_name_x, input_name_y, NameBuffer, &inputshadowcolor, inputShadowXOffset, inputShadowYOffset); break; } } XftDrawDestroy (draw); TextCursor(SHOW); ShowText(); } void Panel::EraseLastChar(std::string &formerString) { switch(field) { case Get_Name: if (! NameBuffer.empty()) { formerString=NameBuffer; NameBuffer.erase(--NameBuffer.end()); } break; case Get_Passwd: if (!PasswdBuffer.empty()) { formerString=HiddenPasswdBuffer; PasswdBuffer.erase(--PasswdBuffer.end()); HiddenPasswdBuffer.erase(--HiddenPasswdBuffer.end()); } break; } } bool Panel::OnKeyPress(XEvent& event) { char ascii; KeySym keysym; XComposeStatus compstatus; int xx = 0; int yy = 0; string text; string formerString = ""; XLookupString(&event.xkey, &ascii, 1, &keysym, &compstatus); switch(keysym){ case XK_F1: if ( mode != Mode_Lock ) // Can't change session in a screen lock SwitchSession(); return true; case XK_F11: /* Take a screenshot */ if ( system(cfg->getOption("screenshot_cmd").c_str()) < 0 ) logStream << APPNAME << ": screenshot_cmd failed" << endl; return true; case XK_Return: case XK_KP_Enter: if (field==Get_Name) { /* Don't allow an empty username */ if (NameBuffer.empty()) return true; if (NameBuffer==CONSOLE_STR) action = Console; else if (NameBuffer==HALT_STR) action = Halt; else if (NameBuffer==REBOOT_STR) action = Reboot; else if (NameBuffer==SUSPEND_STR) action = Suspend; else if (NameBuffer==EXIT_STR) action = Exit; else action = Login; } return false; default: break; } TextCursor(HIDE); switch(keysym){ case XK_Delete: case XK_BackSpace: EraseLastChar(formerString); break; case XK_w: case XK_u: if (reinterpret_cast(event).state & ControlMask) { switch(field) { case Get_Passwd: formerString = HiddenPasswdBuffer; HiddenPasswdBuffer.clear(); PasswdBuffer.clear(); break; case Get_Name: formerString = NameBuffer; NameBuffer.clear(); break; } break; } /* Deliberate fall-through */ case XK_h: if (reinterpret_cast(event).state & ControlMask) { EraseLastChar(formerString); break; } /* Deliberate fall-through */ default: if (isprint(ascii) && (keysym < XK_Shift_L || keysym > XK_Hyper_R)) { switch(field) { case Get_Name: formerString=NameBuffer; if (NameBuffer.length() < INPUT_MAXLENGTH_NAME-1) { NameBuffer.append(&ascii,1); } break; case Get_Passwd: formerString=HiddenPasswdBuffer; if (PasswdBuffer.length() < INPUT_MAXLENGTH_PASSWD-1) { PasswdBuffer.append(&ascii,1); HiddenPasswdBuffer.append("*"); } break; } } else { // *RP* I think this is to fix the fake bolding if the user presses TAB return true; //nodraw if notchange } break; } XGlyphInfo extents; XftDraw *draw = XftDrawCreate(Dpy, Win, DefaultVisual(Dpy, Scr), DefaultColormap(Dpy, Scr)); switch(field) { case Get_Name: text = NameBuffer; xx = input_name_x; yy = input_name_y; break; case Get_Passwd: text = HiddenPasswdBuffer; xx = input_pass_x; yy = input_pass_y; break; } if (!formerString.empty()) { const char* txth = "Wj"; /* get proper maximum height ? */ XftTextExtents8(Dpy, font, reinterpret_cast(txth), strlen(txth), &extents); int maxHeight = extents.height; XftTextExtents8(Dpy, font, reinterpret_cast(formerString.c_str()), formerString.length(), &extents); int maxLength = extents.width; XClearArea(Dpy, Win, xx - 3, yy-maxHeight - 3, maxLength + 6, maxHeight + 6, false); } if (!text.empty()) { SlimDrawString8 (draw, &inputcolor, font, xx, yy, text, &inputshadowcolor, inputShadowXOffset, inputShadowYOffset); } XftDrawDestroy (draw); TextCursor(SHOW); return true; } /* Draw welcome and "enter username" messages */ void Panel::ShowText() { string cfgX, cfgY; XGlyphInfo extents; bool singleInputMode = ( input_name_x == input_pass_x && input_name_y == input_pass_y ); /// @bug this draw context is assumed relative to the panel but in lock /// mode it's actually relative to the background XftDraw *draw = XftDrawCreate(Dpy, Win, DefaultVisual(Dpy, Scr), DefaultColormap(Dpy, Scr)); /* welcome message */ XftTextExtents8(Dpy, welcomefont, (XftChar8*)welcome_message.c_str(), strlen(welcome_message.c_str()), &extents); cfgX = cfg->getOption("welcome_x"); cfgY = cfg->getOption("welcome_y"); int shadowXOffset = cfg->getIntOption("welcome_shadow_xoffset"); int shadowYOffset = cfg->getIntOption("welcome_shadow_yoffset"); welcome_x = Cfg::absolutepos(cfgX, image->Width(), extents.width); welcome_y = Cfg::absolutepos(cfgY, image->Height(), extents.height); if (welcome_x >= 0 && welcome_y >= 0) { SlimDrawString8 (draw, &welcomecolor, welcomefont, welcome_x, welcome_y, welcome_message, &welcomeshadowcolor, shadowXOffset, shadowYOffset); } /* Enter username-password message */ string msg; if (!singleInputMode|| field == Get_Passwd) { msg = cfg->getOption("password_msg"); XftTextExtents8(Dpy, enterfont, (XftChar8*)msg.c_str(), strlen(msg.c_str()), &extents); cfgX = cfg->getOption("password_x"); cfgY = cfg->getOption("password_y"); int shadowXOffset = cfg->getIntOption("username_shadow_xoffset"); int shadowYOffset = cfg->getIntOption("username_shadow_yoffset"); password_x = Cfg::absolutepos(cfgX, image->Width(), extents.width); password_y = Cfg::absolutepos(cfgY, image->Height(), extents.height); if (password_x >= 0 && password_y >= 0){ SlimDrawString8 (draw, &entercolor, enterfont, password_x, password_y, msg, &entershadowcolor, shadowXOffset, shadowYOffset); } } if ((!singleInputMode|| field == Get_Name) && mode != Mode_Lock ) { msg = cfg->getOption("username_msg"); XftTextExtents8(Dpy, enterfont, (XftChar8*)msg.c_str(), strlen(msg.c_str()), &extents); cfgX = cfg->getOption("username_x"); cfgY = cfg->getOption("username_y"); int shadowXOffset = cfg->getIntOption("username_shadow_xoffset"); int shadowYOffset = cfg->getIntOption("username_shadow_yoffset"); username_x = Cfg::absolutepos(cfgX, image->Width(), extents.width); username_y = Cfg::absolutepos(cfgY, image->Height(), extents.height); if (username_x >= 0 && username_y >= 0){ SlimDrawString8 (draw, &entercolor, enterfont, username_x, username_y, msg, &entershadowcolor, shadowXOffset, shadowYOffset); } } XftDrawDestroy(draw); if ( singleInputMode && (mode == Mode_Lock) ) { // If only the password box is visible, draw the user name somewhere too int show_username = cfg->getIntOption("show_username"); if (show_username) { string user_msg = "User: " + GetName(); Message(user_msg); } } } string Panel::getSession() { return session_exec; } /* choose next available session type. Not used in lock mode */ void Panel::SwitchSession() { pair ses = cfg->nextSession(); session_name = ses.first; session_exec = ses.second; if (session_name.size() > 0) { ShowSession(); } } /* Display session type on the screen. Not used in lock mode */ void Panel::ShowSession() { string msg_x, msg_y; XClearWindow(Dpy, Root); string currsession = cfg->getOption("session_msg") + " " + session_name; XGlyphInfo extents; sessionfont = XftFontOpenName(Dpy, Scr, cfg->getOption("session_font").c_str()); XftDraw *draw = XftDrawCreate(Dpy, Root, DefaultVisual(Dpy, Scr), DefaultColormap(Dpy, Scr)); XftTextExtents8(Dpy, sessionfont, reinterpret_cast(currsession.c_str()), currsession.length(), &extents); msg_x = cfg->getOption("session_x"); msg_y = cfg->getOption("session_y"); int x = Cfg::absolutepos(msg_x, viewport.width, extents.width); int y = Cfg::absolutepos(msg_y, viewport.height, extents.height); int shadowXOffset = cfg->getIntOption("session_shadow_xoffset"); int shadowYOffset = cfg->getIntOption("session_shadow_yoffset"); SlimDrawString8(draw, &sessioncolor, sessionfont, x, y, currsession, &sessionshadowcolor, shadowXOffset, shadowYOffset); XFlush(Dpy); XftDrawDestroy(draw); } void Panel::SlimDrawString8(XftDraw *d, XftColor *color, XftFont *font, int x, int y, const string& str, XftColor* shadowColor, int xOffset, int yOffset) { if (xOffset && yOffset) { XftDrawStringUtf8(d, shadowColor, font, x+xOffset, y+yOffset, reinterpret_cast(str.c_str()), str.length()); } XftDrawStringUtf8(d, color, font, x, y, reinterpret_cast(str.c_str()), str.length()); } Panel::ActionType Panel::getAction(void) const { return action; } void Panel::Reset(void) { ResetName(); ResetPasswd(); } void Panel::ResetName(void) { NameBuffer.clear(); } void Panel::ResetPasswd(void) { PasswdBuffer.clear(); HiddenPasswdBuffer.clear(); } /* Pre-load the user name input box with the provided string. * Used to set the default user, if so configured, and by slimlock to set the * currently logged-in user. */ void Panel::SetName(const string& name) { NameBuffer=name; action = Login; } const string& Panel::GetName(void) const { return NameBuffer; } const string& Panel::GetPasswd(void) const { return PasswdBuffer; } /** * Identify the viewport (physical screen?) to draw on. This allows slimlock * to handle Xinerama-type multi-monitor setups. Not currently used by slim */ Rectangle Panel::GetPrimaryViewport() { Rectangle fallback; Rectangle result; RROutput primary; XRROutputInfo *primary_info; XRRScreenResources *resources; XRRCrtcInfo *crtc_info; int crtc; fallback.x = 0; fallback.y = 0; fallback.width = DisplayWidth(Dpy, Scr); fallback.height = DisplayHeight(Dpy, Scr); resources = XRRGetScreenResources(Dpy, Root); if (!resources) { cerr << "XRRGetScreenResources failed\n"; return fallback; } primary = XRRGetOutputPrimary(Dpy, Root); if (!primary) { // No "primary" defined (by the WM, usually) but could still have // multiple monitors or setups, so default to the first output. primary = resources->outputs[0]; } primary_info = XRRGetOutputInfo(Dpy, resources, primary); if (!primary_info) { cerr << "XRRGetOutputInfo failed\n"; XRRFreeScreenResources(resources); return fallback; } // Fixes bug with multiple monitors. Just pick first monitor if // XRRGetOutputInfo gives returns bad value for crtc. if (primary_info->crtc < 1) { if (primary_info->ncrtc > 0) { crtc = primary_info->crtcs[0]; } else { cerr << "Cannot get crtc from xrandr.\n"; exit(EXIT_FAILURE); } } else { crtc = primary_info->crtc; } crtc_info = XRRGetCrtcInfo(Dpy, resources, crtc); if (!crtc_info) { cerr << "XRRGetCrtcInfo failed\n"; XRRFreeOutputInfo(primary_info); XRRFreeScreenResources(resources); return fallback; } result.x = crtc_info->x; result.y = crtc_info->y; result.width = crtc_info->width; result.height = crtc_info->height; XRRFreeCrtcInfo(crtc_info); XRRFreeOutputInfo(primary_info); XRRFreeScreenResources(resources); // As we're only using one monitor, which is only part of the root window, // replace Root with a viewport window Root = XCreateSimpleWindow ( Dpy, RealRoot, result.x, result.y, result.width, result.height, 0, 0, 0); XMapWindow(Dpy, Root); XFlush(Dpy); return result; } slim-1.4.1/ChangeLog0000644000273400027340000002146114550270751012401 0ustar robrob1.4.1 - 2024.01.12 * Adjusted how/when the pseudo-root window is created and removed, in preparation for handling multiple monitors in SLiM * Adjusted slimlock to use the panel class in the way it was designed to be used. * Current version of SLiM fixed by allocating bimap always. * Find '#' character * That passwd_feedback wrong * Changed the App::mcookiesize const member variable to a #define * Reinstate install of systemd service file - required by Debian * Note an expired passwords bug in the man page * Ticket #3 : Use xinerama to pick a viewport (single monitor) for DM mode too * Fixed an annoying developer warning from cmake. * Updated systemd service file to fix some debian / lintian messages. 1.4.0 - 2023.01.21 * - BREAKING CONFIG CHANGE - the position of the passwd_feedback in slim is now relative to the screen, not the panel. This is now consistent with slimlock and with the session and other messages. * The selected session is now preserved over failed logins * When testing themes with the -p option, the size of the window can now be specified, and the theme is previewed correctly for that size. * On exit from theme test, the "test message" now reports user and session * Failed login feedback is now disabled by default or if position negative * Applied some Devuan patches - Set the XDG_SESSION_CLASS. This fixes Gentoo bug #727544 - failure to register sessions with elogind in some instances. The (incorrect) bug note in the man page has therefore been removed again. - Use $DISPLAY instead of hardcoding :0.0 in sessionstart/stop commands - No longer always builds slimlock if using PAM - it must be explicitly enabled - Fixed formatting in slimlock man page - A couple of typos fixed in strings * Updated the README and encoded in UTF-8 * Corrected the handling of the -n / -nodaemon option so that it doesn't swallow the next option if given as -n * Bug fixes in slimlock - The active entry is for password, so show the password prompt, not the username one - Don't react to F1, as it isn't appropriate and used to blank the screen - Keep it all on one screen even when the WM hasn't set a "primary" for RandR purposes * Fix ticket #4 - the config parser now works properly. Previously it got confused by option names that were substrings of other option names * Themes with "background_style color" no longer need a redundant image file to make them work. - This needed a bit of a re-write of the image handling, which also improves efficiency * New default theme - the old one is retained as "original" * Some general documentation improvements (man pages, comments in example files) 1.3.9 - 2022.11.18 * Changed the handling of the "auth failed" message in DM mode so that it remains on display until a key is pressed. * Added a command line option to specify the configuration file * Allow the logfile to be specified as "stderr" to write to stderr Also now writes all log messages to stderr if they are printed before the log file is open, including when using the -p option. * Added a configuration option to retain the user name if authentication fails (which is probably more helpful if you just mistype your password) * Applied a modified version of the "wait for the X server" patch from guix * No longer unnecessarily re-opens an already open X display interface. Similarly removed a redundant "get root window" call * Deleted some unused member variables and methods. Various other internal clean-up * Reverted the install location definition for the configuration file, as the CMAKE_INSTALL_SYSCONFDIR wasn't right * Added a "bug" note to the man page, for the reliance on sessreg, which causes occasional misbehaviour for some people. 1.3.8 - 2022.03.01 * Fixed some bugs listed on bugs.gentoo.org: 832303 - failed to build with clang, Invalid suffix on string literal 580458 - open fd on /var/log/slim.log passed to session * Fixed handling of log stream so that all the code uses the same instance * Handle return values from calls, to clean up warn-unused-result warnings * Fixed "sessions" config option (the earlier patch was incomplete) * Several QA improvements * Updated cmake config - use standard install paths, don't force options 1.3.7 - 2022.01.30 * Imported several bug fixes from the Gentoo package: libslim-cmake-fixes disable-ck-for-systemd reinstate sessions config option as an alternative to sessiondir systemd session compatibility remove zlib dependency envcpy-bad-pointer-arithmetic patch add-missing-libgen_h wrong comparison for XCreateGC error return (GCC11 needs it fixed!) * Fixed a bug in handling expired user accounts with PAM * Show a message on login failure (using the same method as slimlock) --- The releases below were the original SLiM project --- 1.3.6 - 2013.10.01 * Merge slimlock. * Add support ^H (like backspace). * And fix some bugs. 1.3.5 - 2012.12.31 * Support UTF8 string. * Add systemd service. * And fix some bugs. 1.3.4 - 2012.06.26 * Replaced stderr writes function. * Fix numlock control. * Fix build with GLUT. * Fix PAM authentication. 1.3.3 - 2012.02.22 * Change build system to CMake. * Add support ConsoleKit. * Fix some bugs.... 1.3.2 - 2010.07.08 * Add support xauth secret. * Add xnest_debug mode. 1.3.1 - 2008.09.26 * Added focus_password config option for focusing password automatically when default_user is enabled * Added auto_login option * Fixed uninitialized daemonmode, see http://www.freebsd.org/cgi/query-pr.cgi?pr=114366 * Fixed maximum length for password * Introduced customization options for session text: font, colors, position, shadows. 1.3.0 - 2006.07.14 * Added PAM support by Martin Parm * Fixed segfault on exit when testing themes. Thanks to Darren Salt & Mike Massonnet * Fixed vt argument detection, thanks to Henrik Brix Andersen * Corrected reference to input_color in the default theme * Fixed default shell setting * Fix segfault when calling XCloseDisplay(NULL); thanks Uli Schlachter 1.2.6 - 2006.09.15 * Bug #008167: Update pid when in daemon mode * Fixed warnings when compiling with -Wall. Thanks to KIMURA Masaru * Fixed major memory leaks with repeated login (bug #007535) 1.2.5 - 2006.07.24 * hiding of the cursor is now an option (disabled by default) since some WMs does not re-initialize the root window cursor. * The X server is restarted when the user logs out. This fixes potential security issues with user-launched apps staying attached to the root window after logout. * Bug #7432 : Added proper Xauth authentication: the X server is started with the -auth option and the user who logs in has his .Xauthority file initializated. 1.2.4 - 2006.01.18 * Added commands for session start and stop (i.e. for session registering) * Added automatic numlock on/off option * Support for numpad Enter key * Restored support for daemon option in the config file. * Lock file now uses process id, no more false locking (thanks to Tobias Roth) 1.2.3 - 2005.09.11 * Added FreeBSD, NetBSD, OpenBSD support * Replaced autotools with plain makefile(s) * Added 'suspend' command (untested, we don't use it) * Added support for %theme variable in login command 1.2.2 - 2005.05.21 * fix panel drawing on screens <= 1024x768 * Don't start X server unless valid theme found * revert to 'default' of invalid theme specified * try all themes from a set if one doesn't work 1.2.1 - 2005.05.17 * draw input directly on panel 1.2.0 - 2005.05.16 * added theme preview (slim -p /path/to/theme) * added JPEG support for panel image * added 'center' background type and 'background_color' option * added text shadow * added warning when execution of login command fails * Fix login failure when no shell specified in /etc/passwd * Print error when login command execution fails * add XNEST_DEBUG ifdef's to allow for easy debugging * Add support for Ctrl-u and Ctrl-w * Add 'vt07' to server arguments if not already specified * Removes daemon option from the config file. Use slim -d * Allow 'current_theme' to be a set of themes, choose randomly * Change default theme 1.1.0 - 2004.12.09 * error messages for X11 apps are no longer redirected to the log file * fixed text position for default theme * added configurable shutdown and reboot messages * separated 'Enter username' and 'Enter password' messages position. * due to the previous two points, the theme format has slightly changed 1.0.0 - 2004.12.07 * First public SLiM release slim-1.4.1/TODO0000644000273400027340000000074014363041370011307 0ustar robrobImportant things ---------------- - Make it work better with multi-screen setups Improvements suggested long ago ------------------------------- - Don't start X server if theme's not found - i18n - FreeBSD fixes - restart X server on ctrl-alt-backspace Other thoughts for improvement ------------------------------ - position text to fit screen, e.g. when at 90% position - allow nested config - make slimlock handle themes the same as slim - option to run X server as non-root slim-1.4.1/slimlock.pam0000644000273400027340000000006314175525542013142 0ustar robrob#%PAM-1.0 auth required pam_unix.so nodelay nullok slim-1.4.1/cmake/0000755000273400027340000000000014550272523011702 5ustar robrobslim-1.4.1/cmake/modules/0000755000273400027340000000000014550272523013352 5ustar robrobslim-1.4.1/cmake/modules/FindDBus.cmake0000644000273400027340000000420314175525542016016 0ustar robrob# - Try to find the low-level D-Bus library # Once done this will define # # DBUS_FOUND - system has D-Bus # DBUS_INCLUDE_DIR - the D-Bus include directory # DBUS_ARCH_INCLUDE_DIR - the D-Bus architecture-specific include directory # DBUS_LIBRARIES - the libraries needed to use D-Bus # Copyright (c) 2008, Kevin Kofler, # modeled after FindLibArt.cmake: # Copyright (c) 2006, Alexander Neundorf, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. if (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) # in cache already SET(DBUS_FOUND TRUE) else (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) IF (NOT WIN32) FIND_PACKAGE(PkgConfig) IF (PKG_CONFIG_FOUND) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls pkg_check_modules(_DBUS_PC QUIET dbus-1) ENDIF (PKG_CONFIG_FOUND) ENDIF (NOT WIN32) FIND_PATH(DBUS_INCLUDE_DIR dbus/dbus.h ${_DBUS_PC_INCLUDE_DIRS} /usr/include /usr/include/dbus-1.0 /usr/local/include ) FIND_PATH(DBUS_ARCH_INCLUDE_DIR dbus/dbus-arch-deps.h ${_DBUS_PC_INCLUDE_DIRS} /usr/lib${LIB_SUFFIX}/include /usr/lib${LIB_SUFFIX}/dbus-1.0/include /usr/lib64/include /usr/lib64/dbus-1.0/include /usr/lib/include /usr/lib/dbus-1.0/include ) FIND_LIBRARY(DBUS_LIBRARIES NAMES dbus-1 dbus PATHS ${_DBUS_PC_LIBDIR} ) if (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) set(DBUS_FOUND TRUE) endif (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) if (DBUS_FOUND) if (NOT DBus_FIND_QUIETLY) message(STATUS "Found D-Bus: ${DBUS_LIBRARIES}") endif (NOT DBus_FIND_QUIETLY) else (DBUS_FOUND) if (DBus_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find D-Bus") endif (DBus_FIND_REQUIRED) endif (DBUS_FOUND) MARK_AS_ADVANCED(DBUS_INCLUDE_DIR DBUS_ARCH_INCLUDE_DIR DBUS_LIBRARIES) endif (DBUS_INCLUDE_DIR AND DBUS_ARCH_INCLUDE_DIR AND DBUS_LIBRARIES) slim-1.4.1/cmake/modules/FindCkConnector.cmake0000644000273400027340000000355014175525542017375 0ustar robrob# - Try to find the ConsoleKit connector library (libck-connector) # Once done this will define # # CKCONNECTOR_FOUND - system has the CK Connector # CKCONNECTOR_INCLUDE_DIR - the CK Connector include directory # CKCONNECTOR_LIBRARIES - the libraries needed to use CK Connector # Copyright (c) 2008, Kevin Kofler, # modeled after FindLibArt.cmake: # Copyright (c) 2006, Alexander Neundorf, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. if (CKCONNECTOR_INCLUDE_DIR AND CKCONNECTOR_LIBRARIES) # in cache already SET(CKCONNECTOR_FOUND TRUE) else (CKCONNECTOR_INCLUDE_DIR AND CKCONNECTOR_LIBRARIES) IF (NOT WIN32) FIND_PACKAGE(PkgConfig) IF (PKG_CONFIG_FOUND) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls pkg_check_modules(_CKCONNECTOR_PC QUIET ck-connector) ENDIF (PKG_CONFIG_FOUND) ENDIF (NOT WIN32) FIND_PATH(CKCONNECTOR_INCLUDE_DIR ck-connector.h ${_CKCONNECTOR_PC_INCLUDE_DIRS} ) FIND_LIBRARY(CKCONNECTOR_LIBRARIES NAMES ck-connector PATHS ${_CKCONNECTOR_PC_LIBDIR} ) if (CKCONNECTOR_INCLUDE_DIR AND CKCONNECTOR_LIBRARIES) set(CKCONNECTOR_FOUND TRUE) endif (CKCONNECTOR_INCLUDE_DIR AND CKCONNECTOR_LIBRARIES) if (CKCONNECTOR_FOUND) if (NOT CkConnector_FIND_QUIETLY) message(STATUS "Found ck-connector: ${CKCONNECTOR_LIBRARIES}") endif (NOT CkConnector_FIND_QUIETLY) else (CKCONNECTOR_FOUND) if (CkConnector_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find ck-connector") endif (CkConnector_FIND_REQUIRED) endif (CKCONNECTOR_FOUND) MARK_AS_ADVANCED(CKCONNECTOR_INCLUDE_DIR CKCONNECTOR_LIBRARIES) endif (CKCONNECTOR_INCLUDE_DIR AND CKCONNECTOR_LIBRARIES) slim-1.4.1/cmake/modules/FONTCONFIGConfig.cmake0000644000273400027340000000443014366556504017150 0ustar robrob# # Find the native FONTCONFIG includes and library # # This module defines # FONTCONFIG_INCLUDE_DIR, where to find art*.h etc # FONTCONFIG_LIBRARY, the libraries to link against to use FONTCONFIG. # FONTCONFIG_FOUND, If false, do not try to use FONTCONFIG. # LIBFONTCONFIG_LIBS, link information # LIBFONTCONFIG_CFLAGS, cflags for include information if(NOT PKG_CONFIG_FOUND) INCLUDE(FindPkgConfig) ENDIF(NOT PKG_CONFIG_FOUND) pkg_search_module(FONTCONFIG REQUIRED fontconfig) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls #PKGCONFIG(fontconfig _fontconfigIncDir _fontconfigLinkDir _fontconfigLinkFlags _fontconfigCflags) #SET(FONTCONFIG_LIBS ${_fontconfigCflags}) IF(BUILD_OSX_BUNDLE) FIND_PATH(FONTCONFIG_INCLUDE_DIR NAMES fontconfig/fontconfig.h PATHS ${FONTCONFIG_INCLUDE_DIRS} /opt/local/include NO_DEFAULT_PATH ) FIND_LIBRARY(FONTCONFIG_LIBRARY NAMES fontconfig PATHS ${FONTCONFIG_LIBRARY_DIRS} /opt/local/lib NO_DEFAULT_PATH ) ELSE(BUILD_OSX_BUNDLE) FIND_PATH(FONTCONFIG_INCLUDE_DIR NAMES fontconfig/fontconfig.h PATHS ${FONTCONFIG_INCLUDE_DIRS} ${_fontconfigIncDir} /usr/include /usr/local/include PATH_SUFFIXES fontconfig ) # quick hack as the above finds it nicely but our source includes the libart_lgpl text at the moment #STRING(REGEX REPLACE "/libart_lgpl" "" FONTCONFIG_INCLUDE_DIR ${FONTCONFIG_INCLUDE_DIR}) FIND_LIBRARY(FONTCONFIG_LIBRARY NAMES fontconfig PATHS ${FONTCONFIG_LIBRARY_DIRS} /usr/lib /usr/local/lib ) ENDIF(BUILD_OSX_BUNDLE) # MESSAGE(STATUS "fclib ${FONTCONFIG_LIBRARY}") # MESSAGE(STATUS "fcinclude ${FONTCONFIG_INCLUDE_DIR}") IF (FONTCONFIG_LIBRARY) IF (FONTCONFIG_INCLUDE_DIR) SET( FONTCONFIG_FOUND "YES" ) SET( FONTCONFIG_LIBRARIES ${FONTCONFIG_LIBRARY} ) FIND_PROGRAM(FONTCONFIG_CONFIG NAMES fontconfig-config PATHS ${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin /usr/bin /usr/nekoware/bin /usr/X11/bin) # EXEC_PROGRAM(${FONTCONFIG_CONFIG} ARGS --libs OUTPUT_VARIABLE FONTCONFIG_LIBS) # EXEC_PROGRAM(${FONTCONFIG_CONFIG} ARGS --cflags OUTPUT_VARIABLE FONTCONFIG_CFLAGS) # MESSAGE(STATUS ${FONTCONFIG_LIBS}) # MESSAGE(STATUS ${FONTCONFIG_CFLAGS}) ENDIF (FONTCONFIG_INCLUDE_DIR) ENDIF (FONTCONFIG_LIBRARY) slim-1.4.1/cmake/modules/FindPAM.cmake0000644000273400027340000000353214175525542015602 0ustar robrob# - Try to find the PAM libraries # Once done this will define # # PAM_FOUND - system has pam # PAM_INCLUDE_DIR - the pam include directory # PAM_LIBRARIES - libpam library if (PAM_INCLUDE_DIR AND PAM_LIBRARY) # Already in cache, be silent set(PAM_FIND_QUIETLY TRUE) endif (PAM_INCLUDE_DIR AND PAM_LIBRARY) find_path(PAM_INCLUDE_DIR NAMES security/pam_appl.h pam/pam_appl.h) find_library(PAM_LIBRARY pam) find_library(DL_LIBRARY dl) if (PAM_INCLUDE_DIR AND PAM_LIBRARY) set(PAM_FOUND TRUE) if (DL_LIBRARY) set(PAM_LIBRARIES ${PAM_LIBRARY} ${DL_LIBRARY}) else (DL_LIBRARY) set(PAM_LIBRARIES ${PAM_LIBRARY}) endif (DL_LIBRARY) if (EXISTS ${PAM_INCLUDE_DIR}/pam/pam_appl.h) # darwin claims to be something special set(HAVE_PAM_PAM_APPL_H 1) endif (EXISTS ${PAM_INCLUDE_DIR}/pam/pam_appl.h) if (NOT DEFINED PAM_MESSAGE_CONST) include(CheckCXXSourceCompiles) # XXX does this work with plain c? check_cxx_source_compiles(" #if ${HAVE_PAM_PAM_APPL_H}+0 # include #else # include #endif static int PAM_conv( int num_msg, const struct pam_message **msg, /* this is the culprit */ struct pam_response **resp, void *ctx) { return 0; } int main(void) { struct pam_conv PAM_conversation = { &PAM_conv, /* this bombs out if the above does not match */ 0 }; return 0; } " PAM_MESSAGE_CONST) endif (NOT DEFINED PAM_MESSAGE_CONST) set(PAM_MESSAGE_CONST ${PAM_MESSAGE_CONST} CACHE BOOL "PAM expects a conversation function with const pam_message") endif (PAM_INCLUDE_DIR AND PAM_LIBRARY) if (PAM_FOUND) if (NOT PAM_FIND_QUIETLY) message(STATUS "Found PAM: ${PAM_LIBRARIES}") endif (NOT PAM_FIND_QUIETLY) else (PAM_FOUND) if (PAM_FIND_REQUIRED) message(FATAL_ERROR "PAM was not found") endif(PAM_FIND_REQUIRED) endif (PAM_FOUND) mark_as_advanced(PAM_INCLUDE_DIR PAM_LIBRARY DL_LIBRARY PAM_MESSAGE_CONST)slim-1.4.1/Ck.cpp0000644000273400027340000000715214206732745011675 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 2011 David Hauweele * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include #include #include "Ck.h" namespace Ck { Exception::Exception(const std::string &func, const std::string &errstr) : func(func), errstr(errstr) { } dbus_bool_t Session::ck_connector_open_graphic_session( const std::string &display, uid_t uid) { dbus_bool_t local = true; const char *session_type = "x11"; const char *x11_display = display.c_str(); const char *x11_device = get_x11_device(display); const char *remote_host = ""; const char *display_dev = ""; return ck_connector_open_session_with_parameters(ckc, &error, "unix-user", &uid, "session-type", &session_type, "x11-display", &x11_display, "x11-display-device", &x11_device, "display-device", &display_dev, "remote-host-name", &remote_host, "is-local", &local, NULL); } const char * Session::get_x11_device(const std::string &display) { static char device[32]; Display *xdisplay = XOpenDisplay(display.c_str()); if(!xdisplay) throw Exception(__func__, "cannot open display"); Window root; Atom xfree86_vt_atom; Atom return_type_atom; int return_format; unsigned long return_count; unsigned long bytes_left; unsigned char *return_value; long vt; xfree86_vt_atom = XInternAtom(xdisplay, "XFree86_VT", true); if(xfree86_vt_atom == None) throw Exception(__func__, "cannot get XFree86_VT"); root = DefaultRootWindow(xdisplay); if(XGetWindowProperty(xdisplay, root, xfree86_vt_atom, 0L, 1L, false, XA_INTEGER, &return_type_atom, &return_format, &return_count, &bytes_left, &return_value) != Success) throw Exception(__func__, "cannot get root window property"); if(return_type_atom != XA_INTEGER) throw Exception(__func__, "bad atom type"); if(return_format != 32) throw Exception(__func__, "invalid return format"); if(return_count != 1) throw Exception(__func__, "invalid count"); if(bytes_left != 0) throw Exception(__func__, "invalid bytes left"); vt = *((long *)return_value); std::sprintf(device, "/dev/tty%ld", vt); if(return_value) XFree(return_value); return device; } void Session::open_session(const std::string &display, uid_t uid) { ckc = ck_connector_new(); if(!ckc) throw Exception(__func__, "error setting up connection to ConsoleKit"); if (!ck_connector_open_graphic_session(display, uid)) { if(dbus_error_is_set(&error)) throw Exception(__func__, error.message); else throw Exception(__func__, "cannot open ConsoleKit session: OOM," " DBus system bus not available or insufficient" " privileges"); } } const char * Session::get_xdg_session_cookie() { return ck_connector_get_cookie(ckc); } void Session::close_session() { if(!ck_connector_close_session(ckc, &error)) { if(dbus_error_is_set(&error)) throw Exception(__func__, error.message); else throw Exception(__func__, "cannot close ConsoleKit session: OOM," " DBus system bus not available or insufficient" " privileges"); } } Session::Session() { dbus_error_init(&error); } Session::~Session() { dbus_error_free(&error); } } std::ostream& operator<<( std::ostream& os, const Ck::Exception& e) { os << e.func << ": " << e.errstr; return os; } slim-1.4.1/CMakeLists.txt0000644000273400027340000001444414550270751013372 0ustar robrobcmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) set(PROJECT_NAME slim) project(${PROJECT_NAME}) #Pretty colors set(CMAKE_COLOR_MAKEFILE ON) #Dont force verbose set(CMAKE_VERBOSE_MAKEFILE ON) #Include current dir set(CMAKE_INCLUDE_CURRENT_DIR TRUE) INCLUDE(CheckIncludeFile) INCLUDE(CheckCCompilerFlag) INCLUDE(CheckCXXCompilerFlag) INCLUDE(CheckTypeSize) INCLUDE(GNUInstallDirs) # Version set(SLIM_VERSION_MAJOR "1") set(SLIM_VERSION_MINOR "4") set(SLIM_VERSION_PATCH "1") set(SLIM_VERSION "${SLIM_VERSION_MAJOR}.${SLIM_VERSION_MINOR}.${SLIM_VERSION_PATCH}") set(PKGDATADIR "${CMAKE_INSTALL_FULL_DATADIR}/slim") set(SYSCONFDIR "/etc") set(SYSTEMDDIR "/lib/systemd") set(SLIM_DEFINITIONS) if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR ${CMAKE_SYSTEM_NAME} MATCHES "NetBSD" OR ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD" ) set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DNEEDS_BASENAME") else() set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DHAVE_SHADOW") endif() set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DAPPNAME=\"${PROJECT_NAME}\"") set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DVERSION=\"${SLIM_VERSION}\"") set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DPKGDATADIR=\"${PKGDATADIR}\"") set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DSYSCONFDIR=\"${SYSCONFDIR}\"") # source set(slim_srcs main.cpp app.cpp numlock.cpp switchuser.cpp ) set(slimlock_srcs slimlock.cpp ) set(common_srcs cfg.cpp image.cpp log.cpp panel.cpp util.cpp ) if(USE_PAM) set(common_srcs ${common_srcs} PAM.cpp) # used to always build slimlock if we are using PAM. Removed as per Devuan # set(BUILD_SLIMLOCK 1) endif(USE_PAM) # Build common library set(BUILD_SHARED_LIBS ON CACHE BOOL "Build shared libraries") if (BUILD_SHARED_LIBS) message(STATUS "Enable shared library building") add_library(libslim ${common_srcs}) else(BUILD_SHARED_LIBS) message(STATUS "Disable shared library building") add_library(libslim STATIC ${common_srcs}) endif(BUILD_SHARED_LIBS) if(USE_CONSOLEKIT) set(slim_srcs ${slim_srcs} Ck.cpp) endif(USE_CONSOLEKIT) add_executable(slim ${slim_srcs}) if(BUILD_SLIMLOCK) add_executable(slimlock ${slimlock_srcs}) endif(BUILD_SLIMLOCK) #Set the custom CMake module directory where our include/lib finders are set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules") find_package(X11 REQUIRED) find_package(Freetype REQUIRED) find_package(JPEG REQUIRED) find_package(PNG REQUIRED) # Fontconfig set(FONTCONFIG_DIR ${CMAKE_MODULE_PATH}) find_package(FONTCONFIG REQUIRED) if(FONTCONFIG_FOUND) message("\tFontConfig Found") target_link_libraries(slim ${FONTCONFIG_LIBRARY}) include_directories(${FONTCONFIG_INCLUDE_DIR}) endif(FONTCONFIG_FOUND) # PAM if(USE_PAM) message("\tPAM Enabled") find_package(PAM) if(PAM_FOUND) message("\tPAM Found") set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DUSE_PAM") target_link_libraries(slim ${PAM_LIBRARY}) target_link_libraries(libslim ${PAM_LIBRARY}) if(BUILD_SLIMLOCK) target_link_libraries(slimlock ${PAM_LIBRARY}) endif(BUILD_SLIMLOCK) include_directories(${PAM_INCLUDE_DIR}) else(PAM_FOUND) message("\tPAM Not Found") endif(PAM_FOUND) else(USE_PAM) message("\tPAM disabled") endif(USE_PAM) # ConsoleKit if(USE_CONSOLEKIT) find_package(CkConnector) message("\tConsoleKit Enabled") if(CKCONNECTOR_FOUND) message("\tConsoleKit Found") # DBus check find_package(DBus REQUIRED) if(DBUS_FOUND) message("\tDBus Found") target_link_libraries(slim ${DBUS_LIBRARIES}) include_directories(${DBUS_ARCH_INCLUDE_DIR}) include_directories(${DBUS_INCLUDE_DIR}) set(SLIM_DEFINITIONS ${SLIM_DEFINITIONS} "-DUSE_CONSOLEKIT") target_link_libraries(slim ${CKCONNECTOR_LIBRARIES}) include_directories(${CKCONNECTOR_INCLUDE_DIR}) else(DBUS_FOUND) message("\tDBus Not Found") endif(DBUS_FOUND) else(CKCONNECTOR_FOUND) message("\tConsoleKit Not Found") message("\tConsoleKit disabled") endif(CKCONNECTOR_FOUND) else(USE_CONSOLEKIT) message("\tConsoleKit disabled") endif(USE_CONSOLEKIT) # system librarys find_library(M_LIB m) find_library(RT_LIB rt) find_library(CRYPTO_LIB crypt) find_package(Threads) add_definitions(${SLIM_DEFINITIONS}) #Set up include dirs with all found packages include_directories( ${X11_INCLUDE_DIR} ${X11_Xft_INCLUDE_PATH} ${X11_Xrender_INCLUDE_PATH} ${X11_Xrandr_INCLUDE_PATH} ${FREETYPE_INCLUDE_DIRS} ${X11_Xmu_INCLUDE_PATH} ${ZLIB_INCLUDE_DIR} ${JPEG_INCLUDE_DIR} ${PNG_INCLUDE_DIR} ) target_link_libraries(libslim ${RT_LIB} ${X11_Xft_LIB} ${X11_Xrandr_LIB} ${JPEG_LIBRARIES} ${PNG_LIBRARIES} ) #Set up library with all found packages for slim target_link_libraries(slim ${M_LIB} ${RT_LIB} ${CRYPTO_LIB} ${X11_X11_LIB} ${X11_Xft_LIB} ${X11_Xrender_LIB} ${X11_Xrandr_LIB} ${X11_Xmu_LIB} ${FREETYPE_LIBRARY} ${JPEG_LIBRARIES} ${PNG_LIBRARIES} libslim ) if(BUILD_SLIMLOCK) #Set up library with all found packages for slimlock target_link_libraries(slimlock ${M_LIB} ${RT_LIB} ${CRYPTO_LIB} ${X11_X11_LIB} ${X11_Xft_LIB} ${X11_Xrender_LIB} ${X11_Xrandr_LIB} ${X11_Xmu_LIB} ${X11_Xext_LIB} ${FREETYPE_LIBRARY} ${JPEG_LIBRARIES} ${PNG_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} libslim ) endif(BUILD_SLIMLOCK) ####### install # slim install(TARGETS slim RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) if (BUILD_SHARED_LIBS) set_target_properties(libslim PROPERTIES OUTPUT_NAME slim SOVERSION ${SLIM_VERSION}) install(TARGETS libslim LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) endif (BUILD_SHARED_LIBS) # man file install(FILES slim.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # configure - in theory we should use CMAKE_INSTALL_SYSCONFDIR but that doesn't work install(FILES slim.conf DESTINATION ${SYSCONFDIR}) # systemd service file - condition is wrong - not all Linux uses systemd! if (${CMAKE_SYSTEM_NAME} MATCHES "Linux") install(FILES slim.service DESTINATION ${SYSTEMDDIR}/system) endif (${CMAKE_SYSTEM_NAME} MATCHES "Linux") #slimlock if(BUILD_SLIMLOCK) install(TARGETS slimlock RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE SETUID) install(FILES slimlock.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) endif(BUILD_SLIMLOCK) # themes directory subdirs(themes) slim-1.4.1/switchuser.cpp0000644000273400027340000000404314402200273013514 0ustar robrob/* * SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include "const.h" #include "cfg.h" #include "log.h" #include "util.h" #include "switchuser.h" using namespace std; SwitchUser::SwitchUser(struct passwd *pw, Cfg *c, const string& display, char** _env) : cfg(c), Pw(pw), env(_env) { } SwitchUser::~SwitchUser() { /* Never called */ } void SwitchUser::Login(const char* cmd, const char* mcookie) { SetUserId(); SetClientAuth(mcookie); Execute(cmd); } void SwitchUser::SetUserId() { if( (Pw == 0) || (initgroups(Pw->pw_name, Pw->pw_gid) != 0) || (setgid(Pw->pw_gid) != 0) || (setuid(Pw->pw_uid) != 0) ) { logStream << APPNAME << ": could not switch user id" << endl; exit(ERR_EXIT); } } void SwitchUser::Execute(const char* cmd) { if ( chdir(Pw->pw_dir) < 0 ) logStream << APPNAME << ": unable to chdir() to user's home: " << strerror(errno) << endl; logStream.closeLog(); execle(Pw->pw_shell, Pw->pw_shell, "-c", cmd, NULL, env); /// @todo this copy-paste of App:CloseLog() should be cleaned up if ( !logStream.openLog( cfg->getOption("logfile").c_str() ) ) { cerr << APPNAME << ": Could not access log file: " << cfg->getOption("logfile") << endl; exit(ERR_EXIT); } logStream << APPNAME << ": could not execute login command: " << strerror(errno) << endl; } void SwitchUser::SetClientAuth(const char* mcookie) { string home = string(Pw->pw_dir); string authfile = home + "/.Xauthority"; remove(authfile.c_str()); Util::add_mcookie(mcookie, ":0", cfg->getOption("xauth_path"), authfile); } slim-1.4.1/PAM.h0000644000273400027340000000465014206732745011422 0ustar robrob/* SLiM - Simple Login Manager Copyright (C) 2007 Martin Parm This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef _PAM_H_ #define _PAM_H_ #include #include #ifdef __LIBPAM_VERSION #include #endif namespace PAM { class Exception { public: int errnum; std::string errstr; std::string func_name; Exception(pam_handle_t* _pam_handle, const std::string& _func_name, int _errnum); virtual ~Exception(void); }; class Auth_Exception: public Exception { public: Auth_Exception(pam_handle_t* _pam_handle, const std::string& _func_name, int _errnum); }; class Cred_Exception: public Exception { public: Cred_Exception(pam_handle_t* _pam_handle, const std::string& _func_name, int _errnum); }; class Authenticator { private: struct pam_conv pam_conversation; pam_handle_t* pam_handle; int last_result; int _end(void); public: typedef int (conversation)(int num_msg, const struct pam_message **msg, struct pam_response **resp, void *appdata_ptr); enum ItemType { Service = PAM_SERVICE, User = PAM_USER, User_Prompt = PAM_USER_PROMPT, TTY = PAM_TTY, Requestor = PAM_RUSER, Host = PAM_RHOST, Conv = PAM_CONV, #ifdef __LIBPAM_VERSION /* Fail_Delay = PAM_FAIL_DELAY */ #endif }; public: Authenticator(conversation* conv, void* data=0); ~Authenticator(void); void start(const std::string& service); void end(void); void set_item(const ItemType item, const void* value); const void* get_item(const ItemType item); #ifdef __LIBPAM_VERSION void fail_delay(const unsigned int micro_sec); #endif void authenticate(void); void check_acct(void); void open_session(void); void close_session(void); void setenv(const std::string& key, const std::string& value); void delenv(const std::string& key); const char* getenv(const std::string& key); char** getenvlist(void); private: /* Explicitly disable copy constructor and copy assignment */ Authenticator(const PAM::Authenticator&); Authenticator& operator=(const PAM::Authenticator&); }; } std::ostream& operator<<( std::ostream& os, const PAM::Exception& e); #endif /* _PAM_H_ */ slim-1.4.1/app.h0000644000273400027340000000556214405336336011565 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #ifndef _APP_H_ #define _APP_H_ #include #ifdef USE_PAM #include "PAM.h" #endif #ifdef USE_CONSOLEKIT #include "Ck.h" #endif // Forward declarations class Panel; class Cfg; class App { public: App(int argc, char **argv); ~App(); void Run(); int GetServerPID(); void RestartServer(); void StopServer(); /* Lock functions */ void GetLock(); void RemoveLock(); bool isServerStarted(); private: void Login(); void Reboot(); void Halt(); void Suspend(); void Console(); void Exit(); void KillAllClients(Bool top); void ReadConfig(); void OpenLog(); void CloseLog(); void CreateServerAuth(); char *StrConcat(const char *str1, const char *str2); void UpdatePid(); bool AuthenticateUser(bool focuspass); static void replaceVariables(std::string &input, const std::string &var, const std::string &value); /* Server functions */ int StartServer(); int ServerTimeout(int timeout, char *string); int WaitForServer(); /* Private data */ Window Root; ///< The root window of the default screen, on which to draw Display *Dpy; ///< Connection to the X-server int Scr; ///< Which "screen" to use (which will be the default one) Panel *LoginPanel; ///< The panel we display and interact through int ServerPID; ///< Process ID of the X-server we launched const char *DisplayName; ///< The display to request, usually ":0.0" bool serverStarted; ///< Whether we (think we) have started an X server #ifdef USE_PAM PAM::Authenticator pam; ///< Interface to the PAM authentication library #endif #ifdef USE_CONSOLEKIT Ck::Session ck; ///< Interface to ConsoleKit, if used #endif /* Options */ Cfg *cfg; ///< Collection of options from the configuration file void blankScreen(); bool firstlogin; ///< Whether to exhibit first login behaviour, or repeat bool daemonmode; ///< Are we running as a daemon? bool force_nodaemon; ///< Are we forced NOT to be a daemon? /* For testing themes */ char *testtheme; ///< Name of the theme to test, from command line bool testing; ///< Whether we're running in theme testing mode short tww, twh; ///< The user's requested test window size #ifdef USE_CONSOLEKIT bool consolekit_support_enabled; ///< Whether to use ConsoleKit (not compatible with systemd) #endif std::string themeName; ///< Name of the theme in use std::string mcookie; ///< Randomly generated X auth cookie }; #endif /* _APP_H_ */ slim-1.4.1/cfg.h0000644000273400027340000000304214357611107011531 0ustar robrob/* SLiM - Simple Login Manager Copyright (C) 2004-06 Simone Rota Copyright (C) 2004-06 Johannes Winkelmann This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef _CFG_H_ #define _CFG_H_ #include #include #include #define INPUT_MAXLENGTH_NAME 30 #define INPUT_MAXLENGTH_PASSWD 50 #define CFGFILE SYSCONFDIR"/slim.conf" #define THEMESDIR PKGDATADIR"/themes" #define THEMESFILE "/slim.theme" class Cfg { public: Cfg(); ~Cfg(); bool readConf(std::string configfile); bool parseOption ( std::string line ); const std::string& getError() const; std::string& getOption(std::string option); int getIntOption(std::string option); std::string getWelcomeMessage(); static int absolutepos(const std::string &position, int max, int width); static int string2int(const char *string, bool *ok = 0); static void split(std::vector &v, const std::string &str, char c, bool useEmpty=true); static std::string Trim(const std::string &s); std::pair nextSession(); static std::string findValidRandomTheme(const std::string &set); private: void fillSessionList(); private: std::map options; std::vector > sessions; int currentSession; std::string error; }; #endif /* _CFG_H_ */ slim-1.4.1/log.cpp0000644000273400027340000000235714322320077012111 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include "const.h" #include "log.h" #include #include LogUnit::LogUnit() { logOut = &cerr; } bool LogUnit::openLog(const char * filename) { if (logFile.is_open()) { cerr << APPNAME << ": opening a new Log file, while another is already open" << endl; logFile.close(); } // cerr is the default if ( ( strcmp(filename, "/dev/stderr") == 0 ) || ( strcmp(filename, "stderr") == 0 ) ) { logOut = &cerr; return true; } logFile.open(filename, ios_base::out|ios_base::app); if ( logFile ) { logOut = &logFile; return true; } return false; } void LogUnit::closeLog() { if (logFile.is_open()) logFile.close(); } /* Now instantiate a singleton for all the rest of the code to use */ LogUnit logStream; slim-1.4.1/pam.sample0000755000273400027340000000064614175525542012620 0ustar robrob#%PAM-1.0 auth requisite pam_nologin.so auth required pam_env.so auth required pam_unix.so account required pam_unix.so password required pam_unix.so session required pam_limits.so session required pam_unix.so session optional pam_loginuid.so session optional pam_ck_connector.so slim-1.4.1/numlock.h0000644000273400027340000000163614206732745012456 0ustar robrob/* SLiM - Simple Login Manager Copyright (C) 2004-06 Simone Rota Copyright (C) 2004-06 Johannes Winkelmann Copyright (C) 2012 Nobuhiro Iwamatsu This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef _NUMLOCK_H_ #define _NUMLOCK_H_ #include #include #include class NumLock { public: NumLock(); static void setOn(Display *dpy); static void setOff(Display *dpy); private: static int xkb_init(Display *dpy); static unsigned int xkb_mask_modifier(XkbDescPtr xkb, const char *name); static unsigned int xkb_numlock_mask(Display *dpy); static void control_numlock(Display *dpy, bool flag); }; #endif /* _NUMLOCK_H_ */ slim-1.4.1/slim.service0000644000273400027340000000042214366556504013157 0ustar robrob[Unit] Description=SLiM Simple Login Manager Documentation=man:slim(1) After=systemd-user-sessions.service [Service] ExecStart=/usr/bin/slim -n -s Restart=on-failure CapabilityBoundingSet=~CAP_SYS_PTRACE [Install] Alias=display-manager.service WantedBy=multi-user.target slim-1.4.1/main.cpp0000644000273400027340000000120614402200273012236 0ustar robrob/* * SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include "app.h" App* LoginApp = 0; int main(int argc, char** argv) { LoginApp = new App(argc, argv); LoginApp->Run(); return 0; } slim-1.4.1/image.cpp0000644000273400027340000005376214543324504012424 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2012 Nobuhiro Iwamatsu * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * The following code has been adapted and extended from * xplanet 1.0.1, Copyright (C) 2002-04 Hari Nair */ #include #include #include #include #include #include using namespace std; #include "log.h" #include "const.h" #include "image.h" extern "C" { #include #include } Image::Image() : width(0), height(0), area(0), rgb_data(NULL), png_alpha(NULL) { } Image::Image ( const int w, const int h, const unsigned char *rgb, const unsigned char *alpha) : width(w), height(h), area(w*h) { width = w; height = h; area = w * h; rgb_data = (unsigned char *) malloc(3 * area); memcpy(rgb_data, rgb, 3 * area); if (alpha == NULL) { png_alpha = NULL; } else { png_alpha = (unsigned char *) malloc(area); memcpy(png_alpha, alpha, area); } } Image::~Image() { free(rgb_data); free(png_alpha); } bool Image::Read(const char *filename) { char buf[4]; unsigned char *ubuf = (unsigned char *) buf; int success; int nr; FILE *file; file = fopen(filename, "rb"); if (file == NULL) return(false); /* see what kind of file we have */ nr = fread(buf, 1, 4, file); fclose(file); if ( nr < 4 ) return false; // Failed to read 4 bytes; probably empty file if ((ubuf[0] == 0x89) && !strncmp("PNG", buf+1, 3)) success = readPng(filename, &width, &height, &rgb_data, &png_alpha); else if ((ubuf[0] == 0xff) && (ubuf[1] == 0xd8)) success = readJpeg(filename, &width, &height, &rgb_data); else { fprintf(stderr, "Unknown image format\n"); success = 0; } return(success == 1); } void Image::Reduce(const int factor) { if (factor < 1) return; int scale = 1; for (int i = 0; i < factor; i++) scale *= 2; double scale2 = scale*scale; int w = width / scale; int h = height / scale; int new_area = w * h; unsigned char *new_rgb = (unsigned char *) malloc(3 * new_area); memset(new_rgb, 0, 3 * new_area); unsigned char *new_alpha = NULL; if (png_alpha != NULL) { new_alpha = (unsigned char *) malloc(new_area); memset(new_alpha, 0, new_area); } int ipos = 0; for (int j = 0; j < height; j++) { int js = j / scale; for (int i = 0; i < width; i++) { int is = i/scale; for (int k = 0; k < 3; k++) new_rgb[3*(js * w + is) + k] += static_cast ((rgb_data[3*ipos + k] + 0.5) / scale2); if (png_alpha != NULL) new_alpha[js * w + is] += static_cast (png_alpha[ipos]/scale2); ipos++; } } free(rgb_data); free(png_alpha); rgb_data = new_rgb; png_alpha = new_alpha; width = w; height = h; area = w * h; } void Image::Resize(const int w, const int h) { if (width==w && height==h){ return; } int new_area = w * h; unsigned char *new_rgb = (unsigned char *) malloc(3 * new_area); unsigned char *new_alpha = NULL; if (png_alpha != NULL) new_alpha = (unsigned char *) malloc(new_area); const double scale_x = ((double) w) / width; const double scale_y = ((double) h) / height; int ipos = 0; for (int j = 0; j < h; j++) { const double y = j / scale_y; for (int i = 0; i < w; i++) { const double x = i / scale_x; if (new_alpha == NULL) getPixel(x, y, new_rgb + 3*ipos); else getPixel(x, y, new_rgb + 3*ipos, new_alpha + ipos); ipos++; } } free(rgb_data); free(png_alpha); rgb_data = new_rgb; png_alpha = new_alpha; width = w; height = h; area = w * h; } /* Find the color of the desired point using bilinear interpolation. */ /* Assume the array indices refer to the center of the pixel, so each */ /* pixel has corners at (i - 0.5, j - 0.5) and (i + 0.5, j + 0.5) */ void Image::getPixel(double x, double y, unsigned char *pixel) { getPixel(x, y, pixel, NULL); } void Image::getPixel(double x, double y, unsigned char *pixel, unsigned char *alpha) { if (x < -0.5) x = -0.5; if (x >= width - 0.5) x = width - 0.5; if (y < -0.5) y = -0.5; if (y >= height - 0.5) y = height - 0.5; int ix0 = (int) (floor(x)); int ix1 = ix0 + 1; if (ix0 < 0) ix0 = width - 1; if (ix1 >= width) ix1 = 0; int iy0 = (int) (floor(y)); int iy1 = iy0 + 1; if (iy0 < 0) iy0 = 0; if (iy1 >= height) iy1 = height - 1; const double t = x - floor(x); const double u = 1 - (y - floor(y)); double weight[4]; weight[1] = t * u; weight[0] = u - weight[1]; weight[2] = 1 - t - u + weight[1]; weight[3] = t - weight[1]; unsigned char *pixels[4]; pixels[0] = rgb_data + 3 * (iy0 * width + ix0); pixels[1] = rgb_data + 3 * (iy0 * width + ix1); pixels[2] = rgb_data + 3 * (iy1 * width + ix0); pixels[3] = rgb_data + 3 * (iy1 * width + ix1); memset(pixel, 0, 3); for (int i = 0; i < 4; i++) { for (int j = 0; j < 3; j++) pixel[j] += (unsigned char) (weight[i] * pixels[i][j]); } if (alpha != NULL) { unsigned char pixels[4]; pixels[0] = png_alpha[iy0 * width + ix0]; pixels[1] = png_alpha[iy0 * width + ix1]; pixels[2] = png_alpha[iy0 * width + ix0]; pixels[3] = png_alpha[iy1 * width + ix1]; for (int i = 0; i < 4; i++) *alpha = (unsigned char) (weight[i] * pixels[i]); } } /** * Merge the image with a background, taking care of the image Alpha * transparency. (background alpha is ignored). * * The image is merged with the section of background at position (x, y). * The background must fully contain the image. * If the image does not have any transparency (no alpha data) then this * is a no-operation. * @note use of double to calculate the new value of a U8 */ void Image::Merge ( const Image* background, const int x, const int y ) { if ( ( x + width > background->Width() ) || ( y + height > background->Height() ) ) return; if (png_alpha != NULL) { unsigned char *new_rgb = (unsigned char *) malloc(3 * width * height); const unsigned char *bg_rgb = background->getRGBData(); double tmp; int opos = 0; for (int j = 0; j < height; j++) { int ipos = (y+j) * background->Width() + x; for (int i = 0; i < width; i++) { for (int k = 0; k < 3; k++) { tmp = rgb_data[3*opos + k]*png_alpha[opos]/255.0 + bg_rgb[3*ipos + k]*(1-png_alpha[opos]/255.0); new_rgb[3*opos + k] = static_cast (tmp); } opos++; ipos++; } } free(rgb_data); free(png_alpha); rgb_data = new_rgb; png_alpha = NULL; } } /* Merge the image with a background, taking care of the * image Alpha transparency. (background alpha is ignored). * The images is merged on position (x, y) on the * background, the background must contain the image. */ #define IMG_POS_RGB(p, x) (3 * p + x) void Image::Merge_non_crop(Image* background, const int x, const int y) { int bg_w = background->Width(); int bg_h = background->Height(); if (x + width > bg_w || y + height > bg_h) return; double tmp; unsigned char *new_rgb = (unsigned char *)malloc(3 * bg_w * bg_h); const unsigned char *bg_rgb = background->getRGBData(); int pnl_pos = 0; int bg_pos = 0; int pnl_w_end = x + width; int pnl_h_end = y + height; memcpy(new_rgb, bg_rgb, 3 * bg_w * bg_h); for (int j = 0; j < bg_h; j++) { for (int i = 0; i < bg_w; i++) { if (j >= y && i >= x && j < pnl_h_end && i < pnl_w_end ) { for (int k = 0; k < 3; k++) { if (png_alpha != NULL) tmp = rgb_data[IMG_POS_RGB(pnl_pos, k)] * png_alpha[pnl_pos]/255.0 + bg_rgb[IMG_POS_RGB(bg_pos, k)] * (1 - png_alpha[pnl_pos]/255.0); else tmp = rgb_data[IMG_POS_RGB(pnl_pos, k)]; new_rgb[IMG_POS_RGB(bg_pos, k)] = static_cast(tmp); } pnl_pos++; } bg_pos++; } } width = bg_w; height = bg_h; free(rgb_data); free(png_alpha); rgb_data = new_rgb; png_alpha = NULL; } /* Tile the image growing its size to the minimum entire * multiple of w * h. * The new dimensions should be > of the current ones. * Note that this flattens image (alpha removed) */ void Image::Tile(const int w, const int h) { if (w < width || h < height) return; int nx = w / width; if (w % width > 0) nx++; int ny = h / height; if (h % height > 0) ny++; int newwidth = nx*width; int newheight=ny*height; unsigned char *new_rgb = (unsigned char *) malloc(3 * newwidth * newheight); memset(new_rgb, 0, 3 * width * height * nx * ny); int ipos = 0; int opos = 0; for (int r = 0; r < ny; r++) { for (int c = 0; c < nx; c++) { for (int j = 0; j < height; j++) { for (int i = 0; i < width; i++) { opos = j*width + i; ipos = r*width*height*nx + j*newwidth + c*width +i; for (int k = 0; k < 3; k++) { new_rgb[3*ipos + k] = static_cast (rgb_data[3*opos + k]); } } } } } free(rgb_data); free(png_alpha); rgb_data = new_rgb; png_alpha = NULL; width = newwidth; height = newheight; area = width * height; Crop(0,0,w,h); } /* Crop the image */ void Image::Crop(const int x, const int y, const int w, const int h) { if (x+w > width || y+h > height) { return; } int x2 = x + w; int y2 = y + h; unsigned char *new_rgb = (unsigned char *) malloc(3 * w * h); memset(new_rgb, 0, 3 * w * h); unsigned char *new_alpha = NULL; if (png_alpha != NULL) { new_alpha = (unsigned char *) malloc(w * h); memset(new_alpha, 0, w * h); } int ipos = 0; int opos = 0; for (int j = 0; j < height; j++) { for (int i = 0; i < width; i++) { if (j>=y && i>=x && j (rgb_data[3*opos + k]); } if (png_alpha != NULL) new_alpha[ipos] = static_cast (png_alpha[opos]); ipos++; } opos++; } } free(rgb_data); free(png_alpha); rgb_data = new_rgb; if (png_alpha != NULL) png_alpha = new_alpha; width = w; height = h; area = w * h; } /* Center the image in a rectangle of given width and height. * Fills the remaining space (if any) with the hex color */ void Image::Center(const int w, const int h, const char *hex) { unsigned long packed_rgb; sscanf(hex, "%lx", &packed_rgb); unsigned long r = packed_rgb>>16; unsigned long g = packed_rgb>>8 & 0xff; unsigned long b = packed_rgb & 0xff; unsigned char *new_rgb = (unsigned char *) malloc(3 * w * h); memset(new_rgb, 0, 3 * w * h); int x = (w - width) / 2; int y = (h - height) / 2; if (x<0) { Crop((width - w)/2,0,w,height); x = 0; } if (y<0) { Crop(0,(height - h)/2,width,h); y = 0; } int x2 = x + width; int y2 = y + height; int ipos = 0; int opos = 0; double tmp; area = w * h; for (int i = 0; i < area; i++) { new_rgb[3*i] = r; new_rgb[3*i+1] = g; new_rgb[3*i+2] = b; } if (png_alpha != NULL) { for (int j = 0; j < h; j++) { for (int i = 0; i < w; i++) { if (j>=y && i>=x && j (tmp); } opos++; } } } } else { for (int j = 0; j < h; j++) { for (int i = 0; i < w; i++) { if (j>=y && i>=x && j (tmp); } opos++; } } } } free(rgb_data); free(png_alpha); rgb_data = new_rgb; png_alpha = NULL; width = w; height = h; } /* Fill the image with the given color and adjust its dimensions * to passed values. */ void Image::Plain(const int w, const int h, const char *hex) { unsigned long packed_rgb; sscanf(hex, "%lx", &packed_rgb); unsigned long r = packed_rgb>>16; unsigned long g = packed_rgb>>8 & 0xff; unsigned long b = packed_rgb & 0xff; unsigned char *new_rgb = (unsigned char *) malloc(3 * w * h); memset(new_rgb, 0, 3 * w * h); area = w * h; for (int i = 0; i < area; i++) { new_rgb[3*i] = r; new_rgb[3*i+1] = g; new_rgb[3*i+2] = b; } free(rgb_data); free(png_alpha); rgb_data = new_rgb; png_alpha = NULL; width = w; height = h; } void Image::computeShift(unsigned long mask, unsigned char &left_shift, unsigned char &right_shift) { left_shift = 0; right_shift = 8; if (mask != 0) { while ((mask & 0x01) == 0) { left_shift++; mask >>= 1; } while ((mask & 0x01) == 1) { right_shift--; mask >>= 1; } } if (right_shift > 128) { left_shift += 255 - right_shift + 1; right_shift = 0; } } Pixmap Image::createPixmap(Display* dpy, int scr, Window win) { int i, j; /* loop variables */ const int depth = DefaultDepth(dpy, scr); Visual *visual = DefaultVisual(dpy, scr); Colormap colormap = DefaultColormap(dpy, scr); Pixmap tmp = XCreatePixmap(dpy, win, width, height, depth); char *pixmap_data = NULL; switch (depth) { case 32: case 24: pixmap_data = new char[4 * width * height]; break; case 16: case 15: pixmap_data = new char[2 * width * height]; break; case 8: pixmap_data = new char[width * height]; break; default: break; } if (!pixmap_data && depth > 24) { pixmap_data = new char[4 * width * height]; } XImage *ximage = XCreateImage(dpy, visual, depth, ZPixmap, 0, pixmap_data, width, height, 8, 0); int entries; XVisualInfo v_template; v_template.visualid = XVisualIDFromVisual(visual); XVisualInfo *visual_info = XGetVisualInfo(dpy, VisualIDMask, &v_template, &entries); unsigned long ipos = 0; switch (visual_info->c_class) { case PseudoColor: { XColor xc; xc.flags = DoRed | DoGreen | DoBlue; int num_colors = 256; XColor *colors = new XColor[num_colors]; for (i = 0; i < num_colors; i++) colors[i].pixel = (unsigned long) i; XQueryColors(dpy, colormap, colors, num_colors); int *closest_color = new int[num_colors]; for (i = 0; i < num_colors; i++) { xc.red = (i & 0xe0) << 8; /* highest 3 bits */ xc.green = (i & 0x1c) << 11; /* middle 3 bits */ xc.blue = (i & 0x03) << 14; /* lowest 2 bits */ /* find the closest color in the colormap */ double distance, distance_squared, min_distance = 0; for (int ii = 0; ii < num_colors; ii++) { distance = colors[ii].red - xc.red; distance_squared = distance * distance; distance = colors[ii].green - xc.green; distance_squared += distance * distance; distance = colors[ii].blue - xc.blue; distance_squared += distance * distance; if ((ii == 0) || (distance_squared <= min_distance)) { min_distance = distance_squared; closest_color[i] = ii; } } } for (j = 0; j < height; j++) { for (i = 0; i < width; i++) { xc.red = (unsigned short) (rgb_data[ipos++] & 0xe0); xc.green = (unsigned short) (rgb_data[ipos++] & 0xe0); xc.blue = (unsigned short) (rgb_data[ipos++] & 0xc0); xc.pixel = xc.red | (xc.green >> 3) | (xc.blue >> 6); XPutPixel(ximage, i, j, colors[closest_color[xc.pixel]].pixel); } } delete [] colors; delete [] closest_color; } break; case TrueColor: { unsigned char red_left_shift; unsigned char red_right_shift; unsigned char green_left_shift; unsigned char green_right_shift; unsigned char blue_left_shift; unsigned char blue_right_shift; computeShift(visual_info->red_mask, red_left_shift, red_right_shift); computeShift(visual_info->green_mask, green_left_shift, green_right_shift); computeShift(visual_info->blue_mask, blue_left_shift, blue_right_shift); unsigned long pixel; unsigned long red, green, blue; for (j = 0; j < height; j++) { for (i = 0; i < width; i++) { red = (unsigned long) rgb_data[ipos++] >> red_right_shift; green = (unsigned long) rgb_data[ipos++] >> green_right_shift; blue = (unsigned long) rgb_data[ipos++] >> blue_right_shift; pixel = (((red << red_left_shift) & visual_info->red_mask) | ((green << green_left_shift) & visual_info->green_mask) | ((blue << blue_left_shift) & visual_info->blue_mask)); XPutPixel(ximage, i, j, pixel); } } } break; default: { logStream << APPNAME << ": could not load image" << endl; return(tmp); } } GC gc = XCreateGC(dpy, win, 0, NULL); XPutImage(dpy, tmp, gc, ximage, 0, 0, 0, 0, width, height); XFreeGC(dpy, gc); XFree(visual_info); delete [] pixmap_data; /* Set ximage data to NULL since pixmap data was deallocated above */ ximage->data = NULL; XDestroyImage(ximage); return(tmp); } int Image::readJpeg(const char *filename, int *width, int *height, unsigned char **rgb) { int ret = 0; struct jpeg_decompress_struct cinfo; struct jpeg_error_mgr jerr; unsigned char *ptr = NULL; FILE *infile = fopen(filename, "rb"); if (infile == NULL) { logStream << APPNAME << "Cannot fopen file: " << filename << endl; return ret; } cinfo.err = jpeg_std_error(&jerr); jpeg_create_decompress(&cinfo); jpeg_stdio_src(&cinfo, infile); jpeg_read_header(&cinfo, TRUE); jpeg_start_decompress(&cinfo); /* Prevent against integer overflow */ if ( cinfo.output_width >= MAX_DIMENSION || cinfo.output_height >= MAX_DIMENSION) { logStream << APPNAME << "Unreasonable dimension found in file: " << filename << endl; goto close_file; } *width = cinfo.output_width; *height = cinfo.output_height; rgb[0] = (unsigned char*) malloc(3 * cinfo.output_width * cinfo.output_height); if (rgb[0] == NULL) { logStream << APPNAME << ": Can't allocate memory for JPEG file." << endl; goto close_file; } if (cinfo.output_components == 3) { ptr = rgb[0]; while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, &ptr, 1); ptr += 3 * cinfo.output_width; } } else if (cinfo.output_components == 1) { ptr = (unsigned char*) malloc(cinfo.output_width); if (ptr == NULL) { logStream << APPNAME << ": Can't allocate memory for JPEG file." << endl; goto rgb_free; } unsigned int ipos = 0; while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, &ptr, 1); for (unsigned int i = 0; i < cinfo.output_width; i++) { memset(rgb[0] + ipos, ptr[i], 3); ipos += 3; } } free(ptr); } jpeg_finish_decompress(&cinfo); ret = 1; goto close_file; rgb_free: free(rgb[0]); close_file: jpeg_destroy_decompress(&cinfo); fclose(infile); return(ret); } int Image::readPng(const char *filename, int *width, int *height, unsigned char **rgb, unsigned char **alpha) { int ret = 0; png_structp png_ptr; png_infop info_ptr; png_bytepp row_pointers; unsigned char *ptr = NULL; png_uint_32 w, h; int bit_depth, color_type, interlace_type; int i; FILE *infile = fopen(filename, "rb"); if (infile == NULL) { logStream << APPNAME << "Can not fopen file: " << filename << endl; return ret; } png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, (png_voidp) NULL, (png_error_ptr) NULL, (png_error_ptr) NULL); if (!png_ptr) { goto file_close; } info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { png_destroy_read_struct(&png_ptr, (png_infopp) NULL, (png_infopp) NULL); } #if PNG_LIBPNG_VER_MAJOR >= 1 && PNG_LIBPNG_VER_MINOR >= 4 if (setjmp(png_jmpbuf((png_ptr)))) goto png_destroy; #else if (setjmp(png_ptr->jmpbuf)) goto png_destroy; #endif png_init_io(png_ptr, infile); png_read_info(png_ptr, info_ptr); png_get_IHDR(png_ptr, info_ptr, &w, &h, &bit_depth, &color_type, &interlace_type, (int *) NULL, (int *) NULL); /* Prevent against integer overflow */ if(w >= MAX_DIMENSION || h >= MAX_DIMENSION) { logStream << APPNAME << "Unreasonable dimension found in file: " << filename << endl; goto png_destroy; } *width = (int) w; *height = (int) h; if (color_type == PNG_COLOR_TYPE_RGB_ALPHA || color_type == PNG_COLOR_TYPE_GRAY_ALPHA) { alpha[0] = (unsigned char *) malloc(*width * *height); if (alpha[0] == NULL) { logStream << APPNAME << ": Can't allocate memory for alpha channel in PNG file." << endl; goto png_destroy; } } /* Change a paletted/grayscale image to RGB */ if (color_type == PNG_COLOR_TYPE_PALETTE && bit_depth <= 8) { png_set_expand(png_ptr); } /* Change a grayscale image to RGB */ if (color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA) { png_set_gray_to_rgb(png_ptr); } /* If the PNG file has 16 bits per channel, strip them down to 8 */ if (bit_depth == 16) { png_set_strip_16(png_ptr); } /* use 1 byte per pixel */ png_set_packing(png_ptr); row_pointers = (png_byte **) malloc(*height * sizeof(png_bytep)); if (row_pointers == NULL) { logStream << APPNAME << ": Can't allocate memory for PNG file." << endl; goto png_destroy; } for (i = 0; i < *height; i++) { row_pointers[i] = (png_byte*) malloc(4 * *width); if (row_pointers == NULL) { logStream << APPNAME << ": Can't allocate memory for PNG file." << endl; goto rows_free; } } png_read_image(png_ptr, row_pointers); rgb[0] = (unsigned char *) malloc(3 * (*width) * (*height)); if (rgb[0] == NULL) { logStream << APPNAME << ": Can't allocate memory for PNG file." << endl; goto rows_free; } if (alpha[0] == NULL) { ptr = rgb[0]; for (i = 0; i < *height; i++) { memcpy(ptr, row_pointers[i], 3 * (*width)); ptr += 3 * (*width); } } else { ptr = rgb[0]; for (i = 0; i < *height; i++) { unsigned int ipos = 0; for (int j = 0; j < *width; j++) { *ptr++ = row_pointers[i][ipos++]; *ptr++ = row_pointers[i][ipos++]; *ptr++ = row_pointers[i][ipos++]; alpha[0][i * (*width) + j] = row_pointers[i][ipos++]; } } } ret = 1; /* data reading is OK */ rows_free: for (i = 0; i < *height; i++) { if (row_pointers[i] != NULL ) { free(row_pointers[i]); } } free(row_pointers); png_destroy: png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp) NULL); file_close: fclose(infile); return(ret); } slim-1.4.1/slim.conf0000644000273400027340000001103214360513113012422 0ustar robrob# Path, X server and arguments (if needed) # Note: -xauth $authfile is automatically appended, vt07 appended if no # vtxx argument given. default_path /bin:/usr/bin:/usr/local/bin default_xserver /usr/bin/X #xserver_arguments -dpi 75 xserver_arguments -nolisten tcp -deferglyphs 16 # Full path to the xauth binary xauth_path /usr/bin/xauth # Xauth file for server authfile /var/run/slim.auth # Commands for halt, login, etc. halt_cmd /sbin/shutdown -h now reboot_cmd /sbin/shutdown -r now console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login" #suspend_cmd /usr/sbin/suspend # Activate numlock when slim starts. Valid values: on|off # Default is to not change it #numlock on # Hide the mouse cursor (note: does not work with some WMs). # Valid values: true|false #hidecursor false # This command is executed after a succesful login. # You can place the %session and %theme variables to handle launching of # specific commands in .xinitrc depending on chosen session and slim theme. # Ensure that the command handles an empty %session, as that is the default # # NOTE: if your system does not have bash you need to adjust the command # according to your preferred shell, e.g. for freebsd use: # login_cmd exec /bin/sh - ~/.xinitrc %session login_cmd exec /bin/bash -login ~/.xinitrc %session # Commands executed when starting and exiting a session. # They can be used for registering a X11 session with # sessreg. You can use the %user variable # # sessionstart_cmd some command # sessionstop_cmd some command sessionstart_cmd /usr/bin/sessreg -a -l "$DISPLAY" %user sessionstop_cmd /usr/bin/sessreg -d -l "$DISPLAY" %user # Start in daemon mode. Valid values: yes | no # Note that this can be overridden by the command line options "-d" and "-n" daemon yes # Available sessions: # The current chosen session name replaces %session in the login_cmd # above, so your login command can handle different sessions. # If no session is chosen (via F1), %session will be an empty string. This # allows the script to handle default in a user-specific manner, if desired. # See the xinitrc.sample file shipped with slim sources. #sessions xfce4,icewm-session,wmaker,blackbox # Alternatively, read available sessions from the contents of a # directory. The directory can contain either executable scripts, # or xsessions .desktop files. In the case of .desktop files, the name # displayed is the Name= value and the string substutited in place of # %session is the Exec= value -- note that this may provide a full # path to the session executable! #sessiondir /usr/share/xsessions # Executed when pressing F11 (requires imagemagick) screenshot_cmd import -window root /slim.png # Alternative using scrot. #screenshot_cmd scrot /root/slim.png # Delay after failed authentication before allowing another attempt # NOTE: This delay is additional to the time PAM takes to fail, and # the feedback message remains after this delay. While the # default value is 2 seconds, it's quite reasonable to set it # to zero. wrong_passwd_timeout 0 # Whether to sound the bell on failed login #bell 0 # Whether to leave the username intact if authorisation fails. For # users who mistype their password, 1 is better. #keep_user_on_fail 0 # default user, leave blank to not pre-load the username. #default_user simone # Focus the password field on start when default_user is set # Set to "yes" to enable this feature #focus_password no # Automatically login the default user (without entering # the password. Set to "yes" to enable this feature #auto_login no # current theme, use comma separated list to specify a set to # randomly choose from current_theme default # Lock file lockfile /run/slim.pid # Log file - full path for a file, or just stderr (or /dev/stderr) to send # all log messages to stderr. logfile /var/log/slim.log #---------------------------------------------------- # The following options might be considered better placed in the theme.They # will work either way; the theme takes priority if duplicated # welcome message. Available variables: %host, %domain welcome_msg Welcome to %host # Session message. Prepended to the session name when pressing F1 #session_msg Session: # shutdown / reboot messages shutdown_msg The system is halting... reboot_msg The system is rebooting... slim-1.4.1/util.cpp0000644000273400027340000000305614206732745012314 0ustar robrob/* * SLiM - Simple Login Manager * Copyright (C) 2009 Eygene Ryabinkin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include #include "util.h" /* * Adds the given cookie to the specified Xauthority file. * Returns true on success, false on fault. */ bool Util::add_mcookie(const std::string &mcookie, const char *display, const std::string &xauth_cmd, const std::string &authfile) { FILE *fp; std::string cmd = xauth_cmd + " -f " + authfile + " -q"; fp = popen(cmd.c_str(), "w"); if (!fp) return false; fprintf(fp, "remove %s\n", display); fprintf(fp, "add %s %s %s\n", display, ".", mcookie.c_str()); fprintf(fp, "exit\n"); pclose(fp); return true; } /* * Interface for random number generator. Just now it uses ordinary * random/srandom routines and serves as a wrapper for them. */ void Util::srandom(unsigned long seed) { ::srandom(seed); } long Util::random(void) { return ::random(); } /* * Makes seed for the srandom() using "random" values obtained from * getpid(), time(NULL) and others. */ long Util::makeseed(void) { struct timespec ts; long pid = getpid(); long tm = time(NULL); if (clock_gettime(CLOCK_MONOTONIC, &ts) != 0) { ts.tv_sec = ts.tv_nsec = 0; } return pid + tm + (ts.tv_sec ^ ts.tv_nsec); } slim-1.4.1/COPYING0000644000273400027340000004307614175525542011674 0ustar robrob GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. slim-1.4.1/INSTALL0000644000273400027340000000230014362517566011660 0ustar robrobINSTALL file for SLiM 0. Prerequisites: - cmake - X.org or XFree86 - libxmu - libpng - libjpeg 1. to build and install the program: o Using the ccmake interactive tool: - cd into a clean directory, e.g. "mkdir slim; cd slim" - unpack the code, e.g. "tar zxf ../slim-1.4.0.tar.gz" - create a build directory and change to it, e.g. "mkdir build; cd build" - run ccmake to configure for your OS, e.g. "ccmake ../slim-1.4.0" . press 'c' to configure and 'e' to ignore warnings . set the CMAKE_INSTALL_PREFIX and other variables as needed . continue pressing 'c' until the 'g' option is available . press 'g' to generate the files needed - run "make" - run "make install" o Using command line only: - cd into a clean directory - unpack the code - create a build directory and change to it - run cmake to configure for your OS and options - build and install as above e.g. mkdir slim; cd slim tar zxf ../slim-1.4.0.tar.gz mkdir build; cd build cmake ../slim-1.4.0 -DCMAKE_INSTALL_PREFIX=/opt -DUSE_PAM=yes -DUSE_CONSOLEKIT=yes make make install 2. automatic startup Edit the init scripts according to your OS/Distribution. An example for systemd is provided slim-1.4.1/panel.h0000644000273400027340000000747614402200273012075 0ustar robrob/* SLiM - Simple Login Manager Copyright (C) 1997, 1998 Per Liden Copyright (C) 2004-06 Simone Rota Copyright (C) 2004-06 Johannes Winkelmann Copyright (C) 2013 Nobuhiro Iwamatsu Copyright (C) 2022-23 Rob Pearce This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef _PANEL_H_ #define _PANEL_H_ #include #include #include #include #ifdef NEEDS_BASENAME #include #endif // Forward declarations class Image; class Cfg; struct Rectangle { int x; int y; unsigned int width; unsigned int height; Rectangle() : x(0), y(0), width(0), height(0) {}; Rectangle(int x, int y, unsigned int width, unsigned int height) : x(x), y(y), width(width), height(height) {} bool is_empty() const { return width == 0 || height == 0; } }; class Panel { public: enum ActionType { Login, UnLock = Login, // slimlock doesn't actually care about this Console, Reboot, Halt, Exit, Suspend }; enum FieldType { Get_Name, Get_Passwd }; enum PanelType { Mode_DM, Mode_Test, Mode_Lock }; Panel(Display *dpy, int scr, Window root, Cfg *config, const std::string& themed, PanelType panel_mode); ~Panel(); void OpenPanel(); void ClosePanel(); void WrongPassword(int timeout); void Message(const std::string &text); void EventHandler(const FieldType &curfield); std::string getSession(); ActionType getAction(void) const; void Reset(void); void ResetName(void); void ResetPasswd(void); void SetName(const std::string &name); const std::string& GetName(void) const; const std::string& GetPasswd(void) const; void SwitchSession(); Atom BackgroundPixmapId; // from XInternAtom -- does it need to be a member var? void setBackground(void); void HideCursor(); private: Panel(); void TextCursor(int visible); unsigned long GetColor(const char *colorname); void OnExpose(void); void EraseLastChar(std::string &formerString); bool OnKeyPress(XEvent& event); void ShowText(); void ShowSession(); void SlimDrawString8(XftDraw *d, XftColor *color, XftFont *font, int x, int y, const std::string &str, XftColor *shadowColor, int xOffset, int yOffset); Rectangle GetPrimaryViewport(); /* Private data */ Cfg *cfg; PanelType mode; /* work mode */ Display *Dpy; int Scr; Window Win; Window Root; Window RealRoot; int X, Y; GC TextGC; XftFont *font; XftColor inputshadowcolor; XftColor inputcolor; XftColor msgcolor; XftColor msgshadowcolor; XftFont *msgfont; XftFont *welcomefont; XftColor welcomecolor; XftFont *sessionfont; XftColor sessioncolor; XftColor sessionshadowcolor; XftColor welcomeshadowcolor; XftFont *enterfont; XftColor entercolor; XftColor entershadowcolor; ActionType action; FieldType field; XGlyphInfo MsgExtents; /* Username/Password */ std::string NameBuffer; std::string PasswdBuffer; std::string HiddenPasswdBuffer; /* screen stuff */ Rectangle viewport; /* Configuration */ int input_name_x; int input_name_y; int input_pass_x; int input_pass_y; int inputShadowXOffset; int inputShadowYOffset; int welcome_x; int welcome_y; int welcome_shadow_xoffset; int welcome_shadow_yoffset; int session_shadow_xoffset; int session_shadow_yoffset; int username_x; int username_y; int username_shadow_xoffset; int username_shadow_yoffset; int password_x; int password_y; std::string welcome_message; /* Pixmap data */ Pixmap PanelPixmap; Image *image; Image *bgImg; std::string themedir; /* Session handling */ std::string session_name; std::string session_exec; }; #endif /* _PANEL_H_ */ slim-1.4.1/slimlock.conf0000644000273400027340000000062514175525542013316 0ustar robrobdpms_standby_timeout 60 dpms_off_timeout 600 wrong_passwd_timeout 2 passwd_feedback_x 50% passwd_feedback_y 10% passwd_feedback_msg Authentication failed passwd_feedback_capslock Authentication failed (CapsLock is on) show_username 1 show_welcome_msg 0 tty_lock 0 slim-1.4.1/numlock.cpp0000644000273400027340000000626714206732745013016 0ustar robrob/* * SLiM - Simple Login Manager * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2012 Nobuhiro Iwamatsu * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Code adapted from NumLockX, look at the end of this file for * the original Copyright information. */ #include "numlock.h" #include NumLock::NumLock() { } int NumLock::xkb_init(Display* dpy) { int xkb_opcode, xkb_event, xkb_error; int xkb_lmaj = XkbMajorVersion; int xkb_lmin = XkbMinorVersion; return XkbLibraryVersion( &xkb_lmaj, &xkb_lmin ) && XkbQueryExtension( dpy, &xkb_opcode, &xkb_event, &xkb_error, &xkb_lmaj, &xkb_lmin ); } unsigned int NumLock::xkb_mask_modifier( XkbDescPtr xkb, const char *name ) { int i; if( !xkb || !xkb->names ) return 0; for( i = 0; i < XkbNumVirtualMods; i++ ) { char* modStr = XGetAtomName( xkb->dpy, xkb->names->vmods[i] ); if( modStr != NULL && strcmp(name, modStr) == 0 ) { unsigned int mask; XkbVirtualModsToReal( xkb, 1 << i, &mask ); return mask; } } return 0; } unsigned int NumLock::xkb_numlock_mask(Display* dpy) { XkbDescPtr xkb; xkb = XkbGetKeyboard( dpy, XkbAllComponentsMask, XkbUseCoreKbd ); if( xkb != NULL ) { unsigned int mask = xkb_mask_modifier( xkb, "NumLock" ); XkbFreeKeyboard( xkb, 0, True ); return mask; } return 0; } void NumLock::control_numlock(Display *dpy, bool flag) { unsigned int mask; if( !xkb_init(dpy) ) return; mask = xkb_numlock_mask(dpy); if( mask == 0 ) return; if( flag == true ) XkbLockModifiers ( dpy, XkbUseCoreKbd, mask, mask); else XkbLockModifiers ( dpy, XkbUseCoreKbd, mask, 0); } void NumLock::setOn(Display *dpy) { control_numlock(dpy, true); } void NumLock::setOff(Display *dpy) { control_numlock(dpy, false); } /* * Copyright (C) 2000-2001 Lubos Lunak * Copyright (C) 2001 Oswald Buddenhagen * * 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 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. */ slim-1.4.1/log.h0000644000273400027340000000216014402200273011540 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #ifndef _LOG_H_ #define _LOG_H_ #include using namespace std; class LogUnit { ofstream logFile; ostream * logOut; public: bool openLog(const char * filename); void closeLog(); LogUnit(); ~LogUnit() { closeLog(); } template LogUnit & operator<<(const Type & text) { *logOut << text; logOut->flush(); return *this; } LogUnit & operator<<(ostream & (*fp)(ostream&)) { *logOut << fp; logOut->flush(); return *this; } LogUnit & operator<<(ios_base & (*fp)(ios_base&)) { *logOut << fp; logOut->flush(); return *this; } }; extern LogUnit logStream; #endif /* _LOG_H_ */ slim-1.4.1/THEMES0000644000273400027340000001157514460203171011534 0ustar robrobQuick THEME howto for SLiM Some basic information regarding the slim theme format. Read this file if you plan to make some theme for the program, and of course have a look at the included themes GENERAL CONCEPT A SLiM theme essentially consists of: - a background image (background.png or background.jpg) - a panel image (panel.png or panel.jpg) - input box(es) and messages and their placement and properties (slim.theme) The panel and background images can be a PNG or JPEG file. The panel is blended into the background image, taking care of alpha transparency. SUPPORTED FORMATS - fonts: use the xft font specs, ie: Verdana:size=16:bold - colors: use html hex format, ie #0066CC - positions: can be either absolute in pixels, ie 350 or relative to the container, ie 50% is in the middle of the screen. OPTIONS The following is an example slim.theme file ---------------------------------------------------------------------- # Color, font, position for the messages (ie: shutting down) msg_color #FFFFFF msg_font Verdana:size=16:bold msg_x 50% msg_y 30 # Color, font, position for the session list session_color #FFFFFF session_font Verdana:size=16:bold session_x 50% session_y 90% # style of background ('stretch', 'tile', 'center') and color background_style stretch background_color #FF0033 # Horizonatal and vertical position for the panel. input_panel_x 50% input_panel_y 40% # Input controls horizontal and vertical positions relative to # the panel. # Set input_pass_x and input_pass_y to -1 to use a single input # box for username/password (GDM Style). # Note that these fields only accept absolute values. input_name_x 40 input_name_y 100 input_pass_x 40 input_pass_y 120 # Input controls font and color input_font Verdana:size=12 input_color #000000 # Welcome message position. (relative to the panel) # use -1 for both values or comment the options to disable # the welcome message welcome_x 50% welcome_y 38 # Font and color for the welcome message welcome_font Verdana:size=16:bold:slant=italic welcome_color #d7dde8 # 'Enter username' font and foreground/background color username_font Verdana:size=12 username_color #d7dde8 # 'Enter username' and 'Enter password' position (relative to the panel) # use -1 for both values to disable the message # note that in case of single inputbox the password values are ignored. username_x 50% username_y 146 password_x 50% password_y 146 # The message to be displayed. Leave blank if no message # is needed (ie, when already present in the panel image) username_msg Please enter your username password_msg Please enter your password # Optional message to show on a failed login. Similar set of values # to the above. Use -1 for the x & y to disable (default). passwd_feedback_x 50% passwd_feedback_y 165 passwd_feedback_msg Authentication failed # The font and color are inherited from msg_xxx ---------------------------------------------------------------------- SHADOWS The 'msg', 'input', 'welcome', 'session' and 'username' sections support shadows; three values can be configured: - color: the shadow color - x offset: the offset in x direction, relative to the normal text - y offset: the offset in y direction, relative to the normal text So to add a text shadow to the welcome message, add the following to slim.conf: ---------------------------------------------------------------------- welcome_shadow_xoffset -2 welcome_shadow_yoffset 2 welcome_shadow_color #ff0000 ---------------------------------------------------------------------- The other keys are analogous: ---------------------------------------------------------------------- # for username and password label username_shadow_xoffset 2 username_shadow_yoffset -2 username_shadow_color #ff0000 # for the input fields input_shadow_xoffset 1 input_shadow_yoffset 1 input_shadow_color #0000ff # for the messages: msg_shadow_xoffset 1 msg_shadow_yoffset 1 msg_shadow_color #ff00ff # For the session: session_shadow_xoffset 1 session_shadow_yoffset 1 session_shadow_color #ff00ff ---------------------------------------------------------------------- slim-1.4.1/switchuser.h0000644000273400027340000000200514402200273013155 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 1997, 1998 Per Liden * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #ifndef _SWITCHUSER_H_ #define _SWITCHUSER_H_ #include #include #include class Cfg; class SwitchUser { public: SwitchUser(struct passwd *pw, Cfg *c, const std::string& display, char** _env); ~SwitchUser(); void Login(const char* cmd, const char* mcookie); private: SwitchUser(); void SetEnvironment(); void SetUserId(); void Execute(const char* cmd); void SetClientAuth(const char* mcookie); Cfg* cfg; struct passwd *Pw; char** env; }; #endif /* _SWITCHUSER_H_ */ slim-1.4.1/slimlock.10000644000273400027340000000446614360513113012523 0ustar robrob.TH slimlock 1 "January 12, 2023" "version 0.9" .SH NAME \fBslimlock\fP - Unholy Screen Locker \fB .SH SYNOPSIS .nf .fam C \fBslimlock\fP [\-v] .fam T .fi .SH DESCRIPTION The Frankenstein's monster of screen lockers. Grafting SLiM and slock together leads to blood, tears, and locked screens. .SH OPTIONS .TP .B \fB-v\fP display version information .SH CONFIGURATION Slimlock reads the same configuration files you use for SLiM. It looks in \fICFGDIR/slim.conf\fP and \fICFGDIR/slimlock.conf\fP, where \fICFGDIR\fP is defined when built - usually \fI/etc\fP. The options that are read from slim.conf are hidecursor, current_theme, background_color and background_style, screenshot_cmd, and welcome_msg. See the SLiM docs for more information. slimlock.conf contains the following settings: .TP .B dpms_standby_timeout number of seconds of inactivity before the screen blanks. .BI "Default: " 60 .TP .B dpms_off_timeout number of seconds of inactivity before the screen is turned off. .BI "Default: " 600 .TP .B wrong_passwd_timeout delay in seconds after an incorrect password is entered. .BI "Default: " 2 .TP .B passwd_feedback_msg message to display after a failed authentication attempt. .BI "Default: " "Authentication failed" .TP .B passwd_feedback_capslock message to display after a failed authentication attempt if the CapsLock is on. .BI "Default: " "Authentication failed (CapsLock is on)" .TP .B show_username 1 to show username on themes with single input field; 0 to disable. .BI "Default: " 1 .TP .B show_welcome_msg 1 to show SLiM's welcome message; 0 to disable. .BI "Default: " 0 .TP .B tty_lock 1 to disallow virtual terminals switching; 0 to allow. .BI "Default: " 1 .TP .B bell 1 to enable the bell on authentication failure; 0 to disable. .BI "Default: " 1 .SH BUGS Where the theme defines a welcome message or password prompt, \fBslimlock\fP displays them in the wrong place. .PP Using the same theme as \fBslim\fP assumes the theme is appropriate. Most of the themes out there (including our defaults) put the word "Login" on the panel, which isn't quite right for a screen lock. .PP To alleviate both of these, you can specify a different theme in \fICFGDIR/slimlock.conf\fP, which will override the setting in \fICFGDIR/slim.conf\fP, but you still need to find (or create) a suitable lock theme. .SH "SEE ALSO" .BR slim (1) slim-1.4.1/slimlock.cpp0000644000273400027340000002024214402200273013130 0ustar robrob/* slimlock * Copyright (c) 2010-2012 Joel Burget * Copyright (c) 2022-2023 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include #include // for keyboard locking #include #include #include #include #include #include #include #include // for usleep #include #include #include #include "cfg.h" #include "util.h" #include "panel.h" #include "const.h" #undef APPNAME #define APPNAME "slimlock" #define SLIMLOCKCFG SYSCONFDIR"/slimlock.conf" using namespace std; bool AuthenticateUser(); static int ConvCallback(int num_msgs, const struct pam_message **msg, struct pam_response **resp, void *appdata_ptr); void HandleSignal(int sig); void *RaiseWindow(void *data); // In the absence of a class instance to contain these, just make them file // public, as they're needed by multiple functions static Display* Dpy; static int Scr; static Window Root; static Window win; static Cfg* cfg; static Panel* LoginPanel; static pam_handle_t *pam_handle; static const struct pam_conv conv = {ConvCallback, NULL}; static CARD16 dpms_standby, dpms_suspend, dpms_off, dpms_level; static BOOL dpms_state, using_dpms; static int term; // Used by a C callback function static void die(const char *errstr, ...) { va_list ap; va_start(ap, errstr); vfprintf(stderr, errstr, ap); va_end(ap); exit(EXIT_FAILURE); } int main(int argc, char **argv) { if((argc == 2) && !strcmp("-v", argv[1])) die ( APPNAME "-" VERSION ", © 2010-2012 Joel Burget\nUpdates © 2022-2023 Rob Pearce\n" ); else if(argc != 1) die ( "usage: " APPNAME " [-v]\n" ); void (*prev_fn)(int); // restore DPMS settings should slimlock be killed in the line of duty prev_fn = signal(SIGTERM, HandleSignal); if (prev_fn == SIG_IGN) signal(SIGTERM, SIG_IGN); // create a lock file to solve mutliple instances problem // /var/lock used to be the place to put this, now it's /run/lock // ...i think struct stat statbuf; int lock_file; // try /run/lock first, since i believe it's preferred if (!stat("/run/lock", &statbuf)) lock_file = open ( "/run/lock/" APPNAME ".lock", O_CREAT | O_RDWR, 0666); else lock_file = open ( "/var/lock/" APPNAME ".lock", O_CREAT | O_RDWR, 0666); int rc = flock(lock_file, LOCK_EX | LOCK_NB); if(rc) { if(EWOULDBLOCK == errno) die(APPNAME" already running\n"); } unsigned int cfg_passwd_timeout; /* Read configuration and theme */ cfg = new Cfg; cfg->readConf(CFGFILE); cfg->readConf(SLIMLOCKCFG); string themeName = ""; string themebase = ""; string themefile = ""; string themedir = ""; themebase = string(THEMESDIR) + "/"; themeName = cfg->getOption("current_theme"); string::size_type pos; if ((pos = themeName.find(",")) != string::npos) { /* input is a set */ themeName = cfg->findValidRandomTheme(themeName); } bool loaded = false; while (!loaded) { themedir = themebase + themeName; themefile = themedir + THEMESFILE; if (!cfg->readConf(themefile)) { if (themeName == "default") { cerr << APPNAME << ": Failed to open default theme file " << themefile << endl; exit(ERR_EXIT); } else { cerr << APPNAME << ": Invalid theme in config: " << themeName << endl; themeName = "default"; } } else { loaded = true; } } const char *DisplayName = getenv("DISPLAY"); if (!DisplayName) DisplayName = DISPLAY; Dpy = XOpenDisplay(DisplayName); if ( Dpy == 0 ) die(APPNAME": cannot open display\n"); /* Get screen and root window */ Scr = DefaultScreen(Dpy); Root = RootWindow(Dpy, Scr); XSetWindowAttributes wa; wa.override_redirect = 1; wa.background_pixel = BlackPixel(Dpy, Scr); // Create a full screen window win = XCreateWindow(Dpy, Root, 0, 0, DisplayWidth(Dpy, Scr), DisplayHeight(Dpy, Scr), 0, DefaultDepth(Dpy, Scr), CopyFromParent, DefaultVisual(Dpy, Scr), CWOverrideRedirect | CWBackPixel, &wa); XMapWindow(Dpy, win); XFlush(Dpy); for (int len = 1000; len; len--) { if(XGrabKeyboard(Dpy, Root, True, GrabModeAsync, GrabModeAsync, CurrentTime) == GrabSuccess) break; usleep(1000); } XSelectInput(Dpy, win, ExposureMask | KeyPressMask); /* Create panel */ LoginPanel = new Panel(Dpy, Scr, win, cfg, themedir, Panel::Mode_Lock); LoginPanel->HideCursor(); int ret = pam_start(APPNAME, LoginPanel->GetName().c_str(), &conv, &pam_handle); // If we can't start PAM, just exit because slimlock won't work right if (ret != PAM_SUCCESS) die("PAM: %s\n", pam_strerror(pam_handle, ret)); // disable tty switching if(cfg->getOption("tty_lock") == "1") { if ((term = open("/dev/console", O_RDWR)) == -1) perror("error opening console"); if ((ioctl(term, VT_LOCKSWITCH)) == -1) perror("error locking console"); } // Set up DPMS unsigned int cfg_dpms_standby, cfg_dpms_off; cfg_dpms_standby = Cfg::string2int(cfg->getOption("dpms_standby_timeout").c_str()); cfg_dpms_off = Cfg::string2int(cfg->getOption("dpms_off_timeout").c_str()); using_dpms = DPMSCapable(Dpy) && (cfg_dpms_standby > 0); if (using_dpms) { DPMSGetTimeouts(Dpy, &dpms_standby, &dpms_suspend, &dpms_off); DPMSSetTimeouts(Dpy, cfg_dpms_standby, cfg_dpms_standby, cfg_dpms_off); DPMSInfo(Dpy, &dpms_level, &dpms_state); if (!dpms_state) DPMSEnable(Dpy); } // Get password timeout cfg_passwd_timeout = Cfg::string2int(cfg->getOption("wrong_passwd_timeout").c_str()); // Let's just make sure it has a sane value cfg_passwd_timeout = cfg_passwd_timeout > 60 ? 60 : cfg_passwd_timeout; pthread_t raise_thread; pthread_create(&raise_thread, NULL, RaiseWindow, NULL); /* Init Root */ LoginPanel->setBackground(); /* Show panel */ LoginPanel->OpenPanel(); // Main loop while (true) { LoginPanel->ResetPasswd(); // AuthenticateUser returns true if authenticated if (AuthenticateUser()) break; LoginPanel->WrongPassword(cfg_passwd_timeout); } // kill thread before destroying the window that it's supposed to be raising pthread_cancel(raise_thread); LoginPanel->ClosePanel(); delete LoginPanel; // Get DPMS stuff back to normal if (using_dpms) { DPMSSetTimeouts(Dpy, dpms_standby, dpms_suspend, dpms_off); // turn off DPMS if it was off when we entered if (!dpms_state) DPMSDisable(Dpy); } XCloseDisplay(Dpy); close(lock_file); // will inherently release the flock if(cfg->getOption("tty_lock") == "1") { if ((ioctl(term, VT_UNLOCKSWITCH)) == -1) { perror("error unlocking console"); } } close(term); return 0; } static int ConvCallback(int num_msgs, const struct pam_message **msg, struct pam_response **resp, void *appdata_ptr) { LoginPanel->EventHandler(Panel::Get_Passwd); // PAM expects an array of responses, one for each message if (num_msgs == 0 || (*resp = (pam_response*) calloc(num_msgs, sizeof(struct pam_message))) == NULL) return PAM_BUF_ERR; for (int i = 0; i < num_msgs; i++) { if (msg[i]->msg_style != PAM_PROMPT_ECHO_OFF && msg[i]->msg_style != PAM_PROMPT_ECHO_ON) continue; // return code is currently not used but should be set to zero resp[i]->resp_retcode = 0; if ((resp[i]->resp = strdup(LoginPanel->GetPasswd().c_str())) == NULL) { free(*resp); return PAM_BUF_ERR; } } return PAM_SUCCESS; } bool AuthenticateUser() { return(pam_authenticate(pam_handle, 0) == PAM_SUCCESS); } void HandleSignal(int sig) { // Get DPMS stuff back to normal if (using_dpms) { DPMSSetTimeouts(Dpy, dpms_standby, dpms_suspend, dpms_off); // turn off DPMS if it was off when we entered if (!dpms_state) DPMSDisable(Dpy); } if ((ioctl(term, VT_UNLOCKSWITCH)) == -1) { perror("error unlocking console"); } close(term); LoginPanel->ClosePanel(); delete LoginPanel; die(APPNAME": Caught signal; dying\n"); } void* RaiseWindow(void *data) { while(1) { XRaiseWindow(Dpy, win); sleep(1); } return (void *)0; } slim-1.4.1/Ck.h0000644000273400027340000000203614206732745011336 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 2007 Martin Parm * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or *(at your option) any later version. */ #ifndef _CK_H_ #define _CK_H_ #include #include #include namespace Ck { class Exception { public: std::string func; std::string errstr; Exception(const std::string &func, const std::string &errstr); }; class Session { private: CkConnector *ckc; DBusError error; const char *get_x11_device(const std::string &display); dbus_bool_t ck_connector_open_graphic_session(const std::string &display, uid_t uid); public: const char *get_xdg_session_cookie(); void open_session(const std::string &display, uid_t uid); void close_session(); Session(); ~Session(); }; } std::ostream &operator<<(std::ostream &os, const Ck::Exception &e); #endif /* _CK_H_ */ slim-1.4.1/slim.10000644000273400027340000000604714400611015011642 0ustar robrob.TH slim 1 "January 14, 2023" "" "" .SH NAME \fBslim \fP- Simple LogIn Manager \fB .SH SYNOPSIS .nf .fam C \fBslim\fP [\fIoptions\fP] [] .fam T .fi .SH DESCRIPTION SLiM is a lightweight login manager for X11, allowing the initialization of a graphical session by entering username and password in a login screen. It is desktop-agnostic and should work (suitably configured) with any session style. .SH OPTIONS .TP .B \fB-c\fP /path/to/config select a non-standard configuration file instead of /etc/slim.conf .TP .B \fB-d\fP run as a daemon .TP .B \fB-n\fP do NOT run as a daemon .TP .B \fB-s\fP be systemd compatible by disabling consolekit support. This option does nothing if consolekit support has not been built in. .TP .B \fB-p\fP /path/to/theme display a preview of the theme. An already running X11 session is required for theme preview. .TP .B \fB-w\fP x set the size of the window used for theme preview. This option is only valid after a -p option .TP .B \fB-h\fP display a brief help message .TP .B \fB-v\fP display version information .SH EXAMPLES .TP .B \fBslim\fP \fB-d\fP run \fBslim\fP in daemon mode .TP .B \fBslim\fP \fB-p\fP /usr/share/slim/themes/default \fB-w\fP 800x600 preview of the default theme at low resolution .SH STARTING SLIM AT BOOT Please refer to the documentation of your Operating System to make \fBslim\fP automatically startup after the system boots. In particular, the method is very different between SysV, OpenRC, runit and systemd init processes. .SH CONFIGURATION Global configuration is stored in the /etc/slim.conf file. See the comments inside the file for a detailed explanation of the \fIoptions\fP. .SH USAGE AND SPECIAL USERNAMES When started, \fBslim\fP will show a login panel; enter the username and password of the user you want to login as. .PP Special usernames: .TP .B console open an xterm login console. No password needed .TP .B exit quit \fBslim\fP. No password needed. See the note in \fBBUGS\fI. .TP .B halt shutdown the machine .TP .B reboot reboot the machine .TP .B suspend power-suspend the machine .PP See the configuration file for customizing the above commands. The 'halt' and 'reboot' commands need the root password, and hence may not work on systems where root login is disabled. .PP Shortcuts: .TP .B F11 executes a custom command (by default takes a screenshot) .TP .B F1 choose session type from session list. .SH BUGS When run as a daemon from OpenRC (and possibly other init systems), causing SLiM to quit can sometimes result in a blank screen and unresponsive computer. This includes when using the "exit" special username. .PP SLiM does not handle expired passwords and treats them as expired accounts. .PP Probably still a few more but I'm working on them. .SH AUTHORS Simone Rota .PP Johannes Winkelmann .PP Nobuhiro Iwamatsu .PP Rob Pearce .SH SEE ALSO .\" .BR slim.conf (5), ... once I've written one! .BR slimlock (1) .PP See the online documentation at the SLiM web site for further information on themes, FAQs, etc. slim-1.4.1/image.h0000644000273400027340000000407214362327600012056 0ustar robrob/* SLiM - Simple Login Manager Copyright (C) 2004-06 Simone Rota Copyright (C) 2004-06 Johannes Winkelmann Copyright (C) 2012 Nobuhiro Iwamatsu This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The following code has been adapted and extended from xplanet 1.0.1, Copyright (C) 2002-04 Hari Nair */ #ifndef _IMAGE_H_ #define _IMAGE_H_ #include #include class Image { public: Image(); Image(const int w, const int h, const unsigned char *rgb, const unsigned char *alpha); ~Image(); const unsigned char *getPNGAlpha() const { return(png_alpha); } const unsigned char *getRGBData() const { return(rgb_data); } void getPixel(double px, double py, unsigned char *pixel); void getPixel(double px, double py, unsigned char *pixel, unsigned char *alpha); int Width() const { return(width); } int Height() const { return(height); } bool Read(const char *filename); void Reduce(const int factor); void Resize(const int w, const int h); void Merge ( const Image *background, const int x, const int y ); void Merge_non_crop(Image* background, const int x, const int y); void Crop(const int x, const int y, const int w, const int h); void Tile(const int w, const int h); void Center(const int w, const int h, const char *hex); void Plain(const int w, const int h, const char *hex); void computeShift(unsigned long mask, unsigned char &left_shift, unsigned char &right_shift); Pixmap createPixmap(Display *dpy, int scr, Window win); private: int width, height, area; unsigned char *rgb_data; unsigned char *png_alpha; int readJpeg(const char *filename, int *width, int *height, unsigned char **rgb); int readPng(const char *filename, int *width, int *height, unsigned char **rgb, unsigned char **alpha); }; #endif /* _IMAGE_H_ */ slim-1.4.1/PAM.cpp0000644000273400027340000001571314400335135011743 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 2007 Martin Parm * Copyright (C) 2022-2023 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include "PAM.h" namespace PAM { Exception::Exception(pam_handle_t* _pam_handle, const std::string& _func_name, int _errnum) : errnum(_errnum), errstr(pam_strerror(_pam_handle, _errnum)), func_name(_func_name) {} Exception::~Exception(void) {} Auth_Exception::Auth_Exception(pam_handle_t* _pam_handle, const std::string& _func_name, int _errnum) : Exception(_pam_handle, _func_name, _errnum) {} Cred_Exception::Cred_Exception(pam_handle_t* _pam_handle, const std::string& _func_name, int _errnum) : Exception(_pam_handle, _func_name, _errnum) {} int Authenticator::_end (void) { int result=pam_end(pam_handle, last_result); pam_handle=0; return result; } Authenticator::Authenticator(conversation* conv, void* data) : pam_handle(0), last_result(PAM_SUCCESS) { pam_conversation.conv=conv; pam_conversation.appdata_ptr=data; } Authenticator::~Authenticator(void) { if (pam_handle) _end(); } void Authenticator::start(const std::string& service) { last_result = pam_start ( service.c_str(), NULL, &pam_conversation, &pam_handle); switch ( last_result ) { default: throw Exception(pam_handle, "pam_start()", last_result); case PAM_SUCCESS: break; } return; } void Authenticator::end(void) { switch ((last_result=_end())) { default: throw Exception(pam_handle, "pam_end()", last_result); case PAM_SUCCESS: break; } return; } void Authenticator::set_item(const Authenticator::ItemType item, const void* value) { switch ((last_result=pam_set_item(pam_handle, item, value))) { default: _end(); throw Exception(pam_handle, "pam_set_item()", last_result); case PAM_SUCCESS: break; } return; } const void* Authenticator::get_item(const Authenticator::ItemType item) { const void* data; switch ((last_result=pam_get_item(pam_handle, item, &data))) { default: case PAM_SYSTEM_ERR: #ifdef __LIBPAM_VERSION case PAM_BAD_ITEM: #endif _end(); throw Exception(pam_handle, "pam_get_item()", last_result); case PAM_PERM_DENIED: /* The value of item was NULL */ case PAM_SUCCESS: break; } return data; } #ifdef __LIBPAM_VERSION void Authenticator::fail_delay(const unsigned int micro_sec) { switch ((last_result=pam_fail_delay(pam_handle, micro_sec))) { default: _end(); throw Exception(pam_handle, "fail_delay()", last_result); case PAM_SUCCESS: break; } return; } #endif void Authenticator::authenticate(void) { switch ((last_result=pam_authenticate(pam_handle, 0))) { default: case PAM_ABORT: case PAM_AUTHINFO_UNAVAIL: // _end(); // throw Exception(pam_handle, "pam_authenticate()", last_result); case PAM_USER_UNKNOWN: case PAM_MAXTRIES: case PAM_CRED_INSUFFICIENT: case PAM_ACCT_EXPIRED: case PAM_PERM_DENIED: case PAM_AUTH_ERR: throw Auth_Exception(pam_handle, "pam_authentication()", last_result); case PAM_SUCCESS: break; } switch ((last_result=pam_acct_mgmt(pam_handle, PAM_SILENT))) { default: case PAM_NEW_AUTHTOK_REQD: case PAM_ACCT_EXPIRED: case PAM_USER_UNKNOWN: case PAM_AUTH_ERR: case PAM_PERM_DENIED: throw Auth_Exception(pam_handle, "pam_acct_mgmt()", last_result); case PAM_SUCCESS: break; } return; } void Authenticator::check_acct(void) { switch((last_result=pam_acct_mgmt(pam_handle, PAM_SILENT))) { case PAM_ACCT_EXPIRED: case PAM_USER_UNKNOWN: case PAM_PERM_DENIED: throw Auth_Exception(pam_handle, "pam_acct_mgmt()", last_result); default: case PAM_NEW_AUTHTOK_REQD: case PAM_AUTH_ERR: case PAM_SUCCESS: break; } } void Authenticator::open_session(void) { switch ((last_result=pam_setcred(pam_handle, PAM_ESTABLISH_CRED))) { default: case PAM_CRED_ERR: case PAM_CRED_UNAVAIL: _end(); throw Exception(pam_handle, "pam_setcred()", last_result); case PAM_ACCT_EXPIRED: case PAM_PERM_DENIED: case PAM_CRED_EXPIRED: case PAM_USER_UNKNOWN: throw Cred_Exception(pam_handle, "pam_setcred()", last_result); case PAM_SUCCESS: break; } switch ((last_result=pam_open_session(pam_handle, 0))) { /* The documentation and implementation of Linux PAM differs: PAM_SESSION_ERROR is described in the documentation but don't exists in the actual implementation. This issue needs to be fixes at some point. */ default: /* case PAM_SESSION_ERROR: */ pam_setcred(pam_handle, PAM_DELETE_CRED); _end(); throw Exception(pam_handle, "pam_open_session()", last_result); case PAM_SUCCESS: break; } return; } void Authenticator::close_session(void) { switch ((last_result=pam_close_session(pam_handle, 0))) { /* The documentation and implementation of Linux PAM differs: PAM_SESSION_ERROR is described in the documentation but don't exists in the actual implementation. This issue needs to be fixes at some point. */ default: /* case PAM_SESSION_ERROR: */ pam_setcred(pam_handle, PAM_DELETE_CRED); _end(); throw Exception(pam_handle, "pam_close_session", last_result); case PAM_SUCCESS: break; } switch ((last_result=pam_setcred(pam_handle, PAM_DELETE_CRED))) { default: case PAM_CRED_ERR: case PAM_CRED_UNAVAIL: case PAM_CRED_EXPIRED: case PAM_USER_UNKNOWN: _end(); throw Exception(pam_handle, "pam_setcred()", last_result); case PAM_SUCCESS: break; } return; } void Authenticator::setenv(const std::string& key, const std::string& value) { std::string name_value = key+"="+value; switch ((last_result = pam_putenv(pam_handle, name_value.c_str()))) { default: case PAM_PERM_DENIED: case PAM_ABORT: case PAM_BUF_ERR: #ifdef __LIBPAM_VERSION case PAM_BAD_ITEM: #endif _end(); throw Exception(pam_handle, "pam_putenv()", last_result); case PAM_SUCCESS: break; } return; } void Authenticator::delenv(const std::string& key) { switch ((last_result = pam_putenv(pam_handle, key.c_str()))) { default: case PAM_PERM_DENIED: case PAM_ABORT: case PAM_BUF_ERR: #ifdef __LIBPAM_VERSION case PAM_BAD_ITEM: #endif _end(); throw Exception(pam_handle, "pam_putenv()", last_result); case PAM_SUCCESS: break; } return; } const char* Authenticator::getenv(const std::string& key) { return pam_getenv(pam_handle, key.c_str()); } char** Authenticator::getenvlist(void) { return pam_getenvlist(pam_handle); } } std::ostream& operator<<( std::ostream& os, const PAM::Exception& e) { os << e.func_name << ": " << e.errstr; return os; } slim-1.4.1/README0000644000273400027340000000501014362517566011510 0ustar robrobREADME file for SLiM Rob Pearce INTRODUCTION SLiM (Simple Login Manager) is a graphical login manager for X11. It aims to be simple, fast and independent from the various desktop environments. SLiM was originally based on the last stable release of Login.app by Per Lidén. Features: - External themes and configuration - PNG support with alpha transparency for panel - PNG / JPEG support for backgrounds - XFT / freetype support - Double or single (GDM-style) inputbox support - PAM support for authentication - Compatible with ConsoleKit or logind, OpenRC or systemd, etc. - CMake build procedure INSTALLATION see the INSTALL file USAGE SLiM is intended to be run automatically as part of the system startup. Get your SysVInint, OpenRC or systemd to run the slim executable, with the -d option if you want it to run as a daemon in the background (recommended for OpenRC, systemd may work better without) As you would expect of a login manager, you enter your username and password to login. By default, the ~/.xinitrc file is run, so be sure to have a working .xinitrc file in your home. This behaviour is configurable, and may be set up differently by the distro package. Special usernames can be entered to run commands that are configurable in the config file: - console: start a console login - exit: exit SLiM (this may not have desirable results) - halt: shut down the system - reboot: reboot the system Pressing the F11 key executes a user-specified command (see the configuration file). The default is to take a screenshot, if the 'import' program is available. CONFIGURATION /etc/slim.conf is the main configuration file. Alternative files can be specified on the command line. Options are explained in the file itself THEMES The appearance (and some parts of the behaviour) of SLiM depends on the "theme" specified by the configuration file. See the file THEMES for details. COPYRIGHT SLiM is copyright (c) 2004-13 by Simone Rota, Johannes Winkelmann, Nobuhiro Iwamatsu and 2022-23 by Rob Pearce. It is available under the GNU General Public License. See the COPYING file for the complete license. Image handling code adapted and extended from xplanet 1.0.1, copyright (c) 2002-04 by Hari Nair Login.app is copyright (c) 1997, 1998 by Per Liden and is licensed through the GNU General Public License. slim-1.4.1/cfg.cpp0000644000273400027340000003247214513267513012077 0ustar robrob/* SLiM - Simple Login Manager * Copyright (C) 2004-06 Simone Rota * Copyright (C) 2004-06 Johannes Winkelmann * Copyright (C) 2012-13 Nobuhiro Iwamatsu * Copyright (C) 2022-23 Rob Pearce * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include #include #include #include #include #include "util.h" // for Util::random #include "log.h" // for logStream #include "cfg.h" using namespace std; typedef pair option; /** * Constructor: creates the Cfg object and populates the available options * with default values. */ Cfg::Cfg() : currentSession(-1) { /* Configuration options */ options.insert(option("default_path","/bin:/usr/bin:/usr/local/bin")); options.insert(option("default_xserver","/usr/bin/X")); options.insert(option("xserver_arguments","")); options.insert(option("numlock","")); options.insert(option("daemon","")); options.insert(option("xauth_path","/usr/bin/xauth")); options.insert(option("login_cmd","exec /bin/bash -login ~/.xinitrc %session")); options.insert(option("halt_cmd","/sbin/shutdown -h now")); options.insert(option("reboot_cmd","/sbin/shutdown -r now")); options.insert(option("suspend_cmd","")); options.insert(option("sessionstart_cmd","")); options.insert(option("sessionstop_cmd","")); options.insert(option("console_cmd","/usr/bin/xterm -C -fg white -bg black +sb -g %dx%d+%d+%d -fn %dx%d -T ""Console login"" -e /bin/sh -c ""/bin/cat /etc/issue; exec /bin/login""")); options.insert(option("screenshot_cmd","import -window root /slim.png")); options.insert(option("default_user","")); options.insert(option("focus_password","no")); options.insert(option("auto_login","no")); options.insert(option("current_theme","default")); options.insert(option("lockfile","/var/run/slim.lock")); options.insert(option("logfile","/var/log/slim.log")); options.insert(option("authfile","/var/run/slim.auth")); options.insert(option("shutdown_msg","The system is halting...")); options.insert(option("reboot_msg","The system is rebooting...")); options.insert(option("sessions", "")); options.insert(option("sessiondir","")); options.insert(option("hidecursor","false")); /* Theme stuff */ options.insert(option("background_style","stretch")); options.insert(option("background_color","#CCCCCC")); options.insert(option("input_panel_x","50%")); /* Panel position on screen */ options.insert(option("input_panel_y","40%")); options.insert(option("input_font","Verdana:size=11")); options.insert(option("input_color", "#000000")); options.insert(option("input_shadow_xoffset", "0")); options.insert(option("input_shadow_yoffset", "0")); options.insert(option("input_shadow_color","#FFFFFF")); options.insert(option("input_name_x","200")); /* relative to panel */ options.insert(option("input_name_y","154")); options.insert(option("input_pass_x","-1")); /* default is single inputbox */ options.insert(option("input_pass_y","-1")); options.insert(option("welcome_msg","Welcome to %host")); options.insert(option("welcome_font","Verdana:size=14")); options.insert(option("welcome_color","#FFFFFF")); options.insert(option("welcome_x","-1")); options.insert(option("welcome_y","-1")); options.insert(option("welcome_shadow_xoffset", "0")); options.insert(option("welcome_shadow_yoffset", "0")); options.insert(option("welcome_shadow_color","#FFFFFF")); options.insert(option("username_msg","Please enter your username")); options.insert(option("username_font","Verdana:size=12")); options.insert(option("username_color","#FFFFFF")); options.insert(option("username_x","-1")); options.insert(option("username_y","-1")); options.insert(option("username_shadow_xoffset", "0")); options.insert(option("username_shadow_yoffset", "0")); options.insert(option("username_shadow_color","#FFFFFF")); options.insert(option("password_msg","Please enter your password")); options.insert(option("password_x","-1")); options.insert(option("password_y","-1")); options.insert(option("msg_font","Verdana:size=16:bold")); options.insert(option("msg_color","#FFFFFF")); options.insert(option("msg_x","40")); options.insert(option("msg_y","40")); options.insert(option("msg_shadow_xoffset", "0")); options.insert(option("msg_shadow_yoffset", "0")); options.insert(option("msg_shadow_color","#FFFFFF")); options.insert(option("session_msg","Session:")); options.insert(option("session_font","Verdana:size=16:bold")); options.insert(option("session_color","#FFFFFF")); options.insert(option("session_x","50%")); options.insert(option("session_y","90%")); options.insert(option("session_shadow_xoffset", "0")); options.insert(option("session_shadow_yoffset", "0")); options.insert(option("session_shadow_color","#FFFFFF")); // What to do if the authorisation fails options.insert(option("keep_user_on_fail", "0")); options.insert(option("wrong_passwd_timeout", "2")); options.insert(option("passwd_feedback_msg", "Authentication failed")); options.insert(option("passwd_feedback_capslock", "Authentication failed (CapsLock is on)")); options.insert(option("passwd_feedback_x", "-1")); /* no feedback by default */ options.insert(option("passwd_feedback_y", "-1")); options.insert(option("bell", "0")); // slimlock-specific options options.insert(option("dpms_standby_timeout", "60")); options.insert(option("dpms_off_timeout", "600")); options.insert(option("show_username", "1")); options.insert(option("show_welcome_msg", "0")); options.insert(option("tty_lock", "1")); error = ""; } Cfg::~Cfg() { options.clear(); } /** * Parses known options from the given configfile / themefile * * @param configfile Path to configuration or theme * @return true on sucess, false if file not found */ bool Cfg::readConf(string configfile) { size_t pos = 0; string line, next, op, fn(configfile); map::iterator it; ifstream cfgfile(fn.c_str()); if (!cfgfile) { error = "Cannot read configuration file: " + configfile; return false; } while (getline(cfgfile, line)) { // New parser to fix ticket #4 pos = line.length(); if ( ( pos > 0 ) && ( line[pos-1] == '\\' ) ) { line.replace ( pos-1, 1, " " ); next = next + line; continue; } if ( !next.empty() ) { line = next + line; next = ""; } // Ignore blank lines and comment lines if ( line.empty() || line[0] == '#' ) continue; // Now parse and assign if ( !parseOption ( line ) ) cerr << error << '\n'; // not a fatal error } cfgfile.close(); fillSessionList(); return true; } /** * Sets an option value from a line. Returns true on success. */ bool Cfg::parseOption ( string line ) { size_t pos = 0; const string delims = " \t"; string name, value; // First split the line into a name/value pair pos = line.find_first_of ( delims ); if ( pos == string::npos ) { error = "Badly formed line: " + line; return false; } name = line.substr ( 0, pos ); value = Trim ( line.substr ( pos ) ); // In case of in-line comments: value = 'strings # comment'. // Find '#' past the 1st character (colour), then cut and trim again. pos = value.find_first_of ( '#', 1 ); if ( pos > 0 && pos < string::npos ) { value = Trim ( value.substr( 0, pos ) ); } if ( value.empty() ) { error = "Badly formed line: " + line; return false; } // Look to see if it's a known option if ( options.find ( name ) == options.end() ) { error = "Unknown option name: " + name; return false; } // finally assign it options[name] = value; return true; } const string& Cfg::getError() const { return error; } string& Cfg::getOption(string option) { return options[option]; } /* return a trimmed string */ string Cfg::Trim( const string& s ) { if ( s.empty() ) { return s; } int pos = 0; string line = s; int len = line.length(); while ( pos < len && isspace( line[pos] ) ) { ++pos; } line.erase( 0, pos ); pos = line.length()-1; while ( pos > -1 && isspace( line[pos] ) ) { --pos; } if ( pos != -1 ) { line.erase( pos+1 ); } return line; } /* Return the welcome message with replaced vars */ string Cfg::getWelcomeMessage() { string s = getOption("welcome_msg"); int n = s.find("%host"); if (n >= 0) { string tmp = s.substr(0, n); char host[40]; gethostname(host,40); tmp = tmp + host; tmp = tmp + s.substr(n+5, s.size() - n); s = tmp; } n = s.find("%domain"); if (n >= 0) { string tmp = s.substr(0, n); char domain[40]; if ( getdomainname(domain,40) == 0 ) tmp = tmp + domain; else tmp = tmp + ""; tmp = tmp + s.substr(n+7, s.size() - n); s = tmp; } return s; } int Cfg::string2int(const char* string, bool* ok) { char* err = 0; int l = (int)strtol(string, &err, 10); if (ok) { *ok = (*err == 0); } return (*err == 0) ? l : 0; } int Cfg::getIntOption(std::string option) { return string2int(options[option].c_str()); } /** * Get absolute position * * Converts a config position string into absolute coordinates. If the string * is a plain number, this is just an atoi but if there is a percentage sign * then the value is converted using the size of the canvas and the object. * * @param position Configured position as a string * @param max Size of canvas in the relevant axis * @param width Size of the object being placed * @return Absolute coordinate to achieve placement */ int Cfg::absolutepos(const string& position, int max, int width) { int n = position.find("%"); if (n>0) { /* X Position expressed in percentage */ int result = (max*string2int(position.substr(0, n).c_str())/100) - (width / 2); return result < 0 ? 0 : result ; } else { /* Absolute X position */ return string2int(position.c_str()); } } /* split a comma separated string into a vector of strings */ void Cfg::split(vector& v, const string& str, char c, bool useEmpty) { v.clear(); string::const_iterator s = str.begin(); string tmp; while (true) { string::const_iterator begin = s; while (*s != c && s != str.end()) { ++s; } tmp = string(begin, s); if (useEmpty || tmp.size() > 0) v.push_back(tmp); if (s == str.end()) { break; } if (++s == str.end()) { if (useEmpty) v.push_back(""); break; } } } void Cfg::fillSessionList() { string strSessionList = getOption("sessions"); string strSessionDir = getOption("sessiondir"); sessions.clear(); if ( !strSessionDir.empty() ) { DIR *pDir = opendir(strSessionDir.c_str()); if (pDir != NULL) { struct dirent *pDirent = NULL; while ((pDirent = readdir(pDir)) != NULL) { string strFile(strSessionDir); strFile += "/"; strFile += pDirent->d_name; struct stat oFileStat; if (stat(strFile.c_str(), &oFileStat) == 0) { if (S_ISREG(oFileStat.st_mode) && access(strFile.c_str(), R_OK) == 0){ ifstream desktop_file(strFile.c_str()); if (desktop_file){ string line, session_name = "", session_exec = ""; while (getline( desktop_file, line )) { if (line.substr(0, 5) == "Name=") { session_name = line.substr(5); if (!session_exec.empty()) break; } else if (line.substr(0, 5) == "Exec=") { session_exec = line.substr(5); if (!session_name.empty()) break; } } desktop_file.close(); if (!session_name.empty() && !session_exec.empty()) { pair session(session_name,session_exec); sessions.push_back(session); } else if (access(strFile.c_str(), X_OK) == 0) { pair session(string(pDirent->d_name),strFile); sessions.push_back(session); } } } } } closedir(pDir); } } if (sessions.empty()) { if (strSessionList.empty()) { pair session("",""); sessions.push_back(session); } else { // iterate through the split of the session list vector sessit; split(sessit,strSessionList,',',false); for (vector::iterator it = sessit.begin(); it != sessit.end(); ++it) { pair session(*it,*it); sessions.push_back(session); } } } } pair Cfg::nextSession() { currentSession = (currentSession + 1) % sessions.size(); return sessions[currentSession]; } /* * Choose a theme at random from the list in the config file. IF the theme * file cannot be found then issue a warning and try again. */ string Cfg::findValidRandomTheme ( const string& set ) { /* extract random theme from theme set; return empty string on error */ string name = set; struct stat buf; if (name[name.length()-1] == ',') { name.erase(name.length() - 1); } Util::srandom(Util::makeseed()); vector themes; string themefile; Cfg::split(themes, name, ','); do { int sel = Util::random() % themes.size(); name = Cfg::Trim(themes[sel]); themefile = string(THEMESDIR) +"/" + name + THEMESFILE; if (stat(themefile.c_str(), &buf) != 0) { themes.erase(find(themes.begin(), themes.end(), name)); logStream << APPNAME << ": Invalid theme in config: " << name << endl; name = ""; } } while (name == "" && themes.size()); return name; }