magit-todos-1.7/0000755000175000017500000000000014472442451013451 5ustar dogslegdogslegmagit-todos-1.7/Makefile0000644000175000017500000000246514472442451015120 0ustar dogslegdogsleg# * makem.sh/Makefile --- Script to aid building and testing Emacs Lisp packages # This Makefile is from the makem.sh repo: . # * Arguments # For consistency, we use only var=val options, not hyphen-prefixed options. # NOTE: I don't like duplicating the arguments here and in makem.sh, # but I haven't been able to find a way to pass arguments which # conflict with Make's own arguments through Make to the script. # Using -- doesn't seem to do it. ifdef install-deps INSTALL_DEPS = "--install-deps" endif ifdef install-linters INSTALL_LINTERS = "--install-linters" endif ifdef sandbox ifeq ($(sandbox), t) SANDBOX = --sandbox else SANDBOX = --sandbox=$(sandbox) endif endif ifdef debug DEBUG = "--debug" endif # ** Verbosity # Since the "-v" in "make -v" gets intercepted by Make itself, we have # to use a variable. verbose = $(v) ifneq (,$(findstring vv,$(verbose))) VERBOSE = "-vv" else ifneq (,$(findstring v,$(verbose))) VERBOSE = "-v" endif # * Rules # TODO: Handle cases in which "test" or "tests" are called and a # directory by that name exists, which can confuse Make. %: @./makem.sh $(DEBUG) $(VERBOSE) $(SANDBOX) $(INSTALL_DEPS) $(INSTALL_LINTERS) $(@) .DEFAULT: init init: @./makem.sh $(DEBUG) $(VERBOSE) $(SANDBOX) $(INSTALL_DEPS) $(INSTALL_LINTERS) magit-todos-1.7/magit-todos.el0000644000175000017500000022520114472442451016224 0ustar dogslegdogsleg;;; magit-todos.el --- Show source file TODOs in Magit -*- lexical-binding: t; -*- ;; Copyright (C) 2018 Adam Porter ;; Author: Adam Porter ;; URL: http://github.com/alphapapa/magit-todos ;; Version: 1.7 ;; Package-Requires: ((emacs "26.1") (async "1.9.2") (dash "2.13.0") (f "0.17.2") (hl-todo "1.9.0") (magit "2.13.0") (pcre2el "1.8") (s "1.12.0") (transient "0.2.0")) ;; Keywords: magit, vc ;;; Commentary: ;; This package displays keyword entries from source code comments and Org files ;; in the Magit status buffer. Activating an item jumps to it in its file. By ;; default, it uses keywords from `hl-todo', minus a few (like "NOTE"). ;;;; Usage: ;; Run `magit-todos-mode', then open a Magit status buffer. ;;;; Tips: ;; + You can customize settings in the `magit-todos' group. ;;; Installation: ;;;; MELPA ;; If you installed from MELPA, you're done. ;;;; Manual ;; Install these required packages: ;; async ;; dash ;; f ;; hl-todo ;; magit ;; pcre2el ;; s ;; Then put this file in your load-path, and put this in your init file: ;; (require 'magit-todos) ;;; License: ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;;; Code: ;;;; Requirements (require 'cl-lib) (require 'grep) (require 'seq) (require 'async) (require 'dash) (require 'f) (require 'hl-todo) (require 'magit) (require 'transient) (require 'pcre2el) (require 's) ;;;; Structs (cl-defstruct magit-todos-item filename org-level line column position keyword suffix description) ;;;; Variables (defvar magit-todos-keywords-list nil "List of to-do keywords. Set automatically by `magit-todos-keywords' customization.") (defvar magit-todos-grep-result-regexp nil "Regular expression for grep results. This should be set automatically by customizing `magit-todos-keywords'.") (defvar magit-todos-ag-result-regexp nil "Regular expression for ag results. This should be set automatically by customizing `magit-todos-keywords'.") (defvar magit-todos-rg-result-regexp nil "Regular expression for rg results. This should be set automatically by customizing `magit-todos-keywords'.") (defvar magit-todos-git-grep-result-regexp nil "Regular expression for git-grep results. This should be set automatically by customizing `magit-todos-keywords'.") (defvar magit-todos-search-regexp nil "Regular expression to match keyword items with rg, ag, and git-grep. This should be set automatically by customizing `magit-todos-keywords'.") (defvar-local magit-todos-active-scan nil "The current scan's process. Used to avoid running multiple simultaneous scans for a `magit-status' buffer.") (defvar magit-todos-section-map (let ((map (make-sparse-keymap))) (define-key map "jT" #'magit-todos-jump-to-todos) (define-key map "jl" #'magit-todos-list) (define-key map "b" #'magit-todos-branch-list-toggle) (define-key map "B" #'magit-todos-branch-list-set-commit) (define-key map [remap magit-visit-thing] #'magit-todos-list) map) "Keymap for `magit-todos' top-level section.") (defvar magit-todos-item-section-map (let ((map (copy-keymap magit-todos-section-map))) (define-key map [remap magit-visit-thing] #'magit-todos-jump-to-item) (define-key map [remap magit-diff-show-or-scroll-up] #'magit-todos-peek-at-item) map) "Keymap for `magit-todos' individual to-do item sections. See https://magit.vc/manual/magit/Creating-Sections.html for more details about how section maps work.") (defvar-local magit-todos-show-filenames nil "Whether to show filenames next to to-do items. Set automatically depending on grouping.") (defvar-local magit-todos-updating nil "Whether items are being updated now.") (defvar-local magit-todos-last-update-time nil "When the items were last updated. A time value as returned by `current-time'.") (defvar-local magit-todos-item-cache nil "Items found by most recent scan.") (defvar magit-todos-scanners nil "Scanners defined by `magit-todos-defscanner'.") (defvar magit-todos-section-heading "TODOs" "Allows overriding of section heading.") (defvar org-odd-levels-only) ;;;; Customization (defgroup magit-todos nil "Show TODO items in source code comments in repos' files." :group 'magit) (defcustom magit-todos-scanner nil "File scanning method. \"Automatic\" will attempt to use rg, ag, git-grep, and find-grep, in that order." :type '(choice (const :tag "Automatic" nil) (function :tag "Custom function")) :set (lambda (option value) (when magit-todos-scanners ;; Only try to set when scanners are defined. (unless value ;; Choosing automatically (setq value (or (magit-todos--choose-scanner) (progn (display-warning 'magit-todos "`magit-todos' was unable to find a suitable scanner. Please install \"rg\", or a PCRE-compatible version of \"git\" or \"grep\". Disabling `magit-todos-mode'." :error) (magit-todos-mode -1) nil)))) (set-default option value)))) (defcustom magit-todos-nice t "Run scanner with \"nice\"." :type 'boolean) (defcustom magit-todos-ignore-case nil "Upcase keywords found in files. If nil, a keyword like \"Todo:\" will not be shown. `upcase' can be a relatively expensive function, so this can be disabled if necessary." :type 'boolean) (defcustom magit-todos-update t "When or how often to scan for to-dos. When set to manual updates, the list can be updated with the command `magit-todos-update'. When caching is enabled, scan for items whenever the Magit status buffer is refreshed and at least N seconds have passed since the last scan; otherwise, use cached items." :type '(choice (const :tag "Automatically, when the Magit status buffer is refreshed" t) (integer :tag "Automatically, but cache items for N seconds") (const :tag "Manually" nil))) (defcustom magit-todos-fontify-keyword-headers t "Apply keyword faces to group keyword headers." :type 'boolean) (defcustom magit-todos-keyword-suffix (rx (optional "(" (1+ (not (any ")"))) ")") ":") "Regular expression matching suffixes after keywords. e.g. to match a keyword like \"TODO(user):\", use \"([^)]+):\". If the suffix should be optional, the entire regexp should be made explicitly optional. However, it is not necessary to account for optional whitespace after the suffix, as this is done automatically. Note: the suffix applies only to non-Org files." :type `(choice (const :tag "Optional username in parens, then required colon (matching e.g. \"TODO:\" or \"TODO(user):\")" ,(rx (optional "(" (1+ (not (any ")"))) ")") ":")) (const :tag "Required colon (matching e.g. \"TODO:\"" ":") (string :tag "Custom regexp")) :package-version '(magit-todos . "1.2")) (defcustom magit-todos-ignored-keywords '("NOTE" "DONE") "Ignored keywords. Automatically removed from `magit-todos-keywords'." :type '(repeat string) :set (lambda (option value) (set-default option value) (when (boundp 'magit-todos-keywords) ;; Avoid setting `magit-todos-keywords' before it's defined. ;; HACK: Testing with `fboundp' is the only way I have been able to find that fixes this ;; problem. I tried using ":set-after '(magit-todos-ignored-keywords)" on ;; `magit-todos-keywords', but it had no effect. I looked in the manual, which seems to ;; suggest that using ":initialize 'custom-initialize-safe-set" might fix it--but that ;; function is no longer to be found in the Emacs source tree. It was committed in 2005, ;; and now it's gone, but the manual still mentions it. ??? (custom-reevaluate-setting 'magit-todos-keywords)))) (defcustom magit-todos-keywords 'hl-todo-keyword-faces "To-do keywords to display in Magit status buffer. If set to a list variable, may be a plain list or an alist in which the keys are the keywords. When set, sets `magit-todos-search-regexp' to the appropriate regular expression." :type '(choice (repeat :tag "Custom list" string) (const :tag "Keywords from `hl-todo'" :doc "Note that the keywords in `hl-todo-keyword-faces' are treated by it as regexps, while this package treats them as strings. If this doesn't meet your needs, please use another option. See ." hl-todo-keyword-faces) (variable :tag "List variable")) :set (lambda (option value) (set-default option value) (let ((keywords (cl-typecase value (null (user-error "Please add some keywords")) (symbol (if (and (consp (symbol-value value)) (consp (car (symbol-value value)))) (mapcar #'car (symbol-value value)) (symbol-value value))) (list value)))) (setq magit-todos-keywords-list (seq-difference keywords magit-todos-ignored-keywords))))) (defcustom magit-todos-max-items 10 "Automatically collapse the section if there are more than this many items." :type 'integer) (defcustom magit-todos-auto-group-items 20 "Whether or when to automatically group items." :type '(choice (integer :tag "When there are more than this many items") (const :tag "Always" always) (const :tag "Never" never))) (defcustom magit-todos-buffer-item-factor 10 "Adjustment to item grouping in dedicated `magit-todos' buffers. Multiplies `magit-todos-auto-group-items' and `magit-todos-max-items' by this factor." :type 'integer) (defcustom magit-todos-group-by '(magit-todos-item-keyword magit-todos-item-filename) "How to group items. One or more attributes may be chosen, and they will be grouped in order." :type '(repeat (choice (const :tag "By filename" magit-todos-item-filename) (const :tag "By keyword" magit-todos-item-keyword) (const :tag "By suffix" magit-todos-item-suffix) (const :tag "By first path component" magit-todos-item-first-path-component)))) (defcustom magit-todos-fontify-org t "Fontify items from Org files as Org headings." :type 'boolean) (defcustom magit-todos-sort-order '(magit-todos--sort-by-keyword magit-todos--sort-by-filename magit-todos--sort-by-position) "Order in which to sort items." :type '(repeat (choice (const :tag "Keyword" magit-todos--sort-by-keyword) (const :tag "Suffix" magit-todos--sort-by-suffix) (const :tag "Filename" magit-todos--sort-by-filename) (const :tag "Buffer position" magit-todos--sort-by-position) (function :tag "Custom function")))) (defcustom magit-todos-depth nil "Maximum depth of files in repo working tree to scan for to-dos. A value of 0 means to search only the current directory, while a value of 1 means to search directories one level deeper, etc. Deeper scans can be slow in large projects. You may wish to set this in a directory-local variable for certain projects." :type '(choice (const :tag "Unlimited" nil) (const :tag "Repo root directory only" 0) (integer :tag "N levels below the repo root"))) (defcustom magit-todos-insert-after '(bottom) "Where to insert the TODOs section in the Magit status buffer. The TODOs section is inserted after the first of these sections found, or at the bottom if none exist. Specific sections may be chosen, using the first symbol returned by evaluating \"(magit-section-ident (magit-current-section))\" in the status buffer with point on the desired section, e.g. `recent' for the \"Recent commits\" section. Note that this may not work exactly as desired when the built-in scanner is used." :type '(repeat (choice (const :tag "Top" top) (const :tag "Bottom" bottom) (const :tag "Recent commits" unpushed) (const :tag "Untracked files" untracked) (const :tag "Unstaged files" unstaged) (const :tag "Staged files" staged) (const :tag "Stashes" stashes) (const :tag "Pull requests (Forge)" pullreqs) (const :tag "Issues (Forge)" issues) (symbol :tag "Specified section")))) (defcustom magit-todos-insert-at 'bottom "Insert the to-dos section after this section in the Magit status buffer. Specific sections may be chosen, using the first symbol returned by evaluating \"(magit-section-ident (magit-current-section))\" in the status buffer with point on the desired section, e.g. `recent' for the \"Recent commits\" section. Note that this may not work exactly as desired when the built-in scanner is used." :type '(choice (const :tag "Top" top) (const :tag "Bottom" bottom) (const :tag "After untracked files" untracked) (const :tag "After unstaged files" unstaged) (symbol :tag "After selected section")) :set (lambda (option value) ;; For convenience, we set the new option with the appropriate value (but, ;; of course, this won't work for users who set it directly with `setq'.) ;; TODO: Remove this option in 1.8. (ignore option) (custom-set-variables `(magit-todos-insert-after ',(list value) 'now nil "Changed by setter of obsolete option `magit-todos-insert-at'")))) (make-obsolete-variable 'magit-todos-insert-at 'magit-todos-insert-after "1.6") (defcustom magit-todos-exclude-globs '(".git/") "Glob patterns to exclude from searches." :type '(repeat string)) (defcustom magit-todos-branch-list 'branch "Show branch diff to-do list. This can be toggled locally in Magit buffers with command `magit-todos-branch-list-toggle'." :type '(choice (const :tag "Never" nil) (const :tag "In non-master branches" branch) (const :tag "Always" t))) (defcustom magit-todos-branch-list-merge-base-ref nil "Commit ref passed to command \"git merge-base HEAD\". Determines the ancestor commit from which the current branch's todos should be searched for. May be overridden in the case that a branch is branched off another branch rather than master. For example, consider the following commit graph: ---A1---A2---A3 (master) \ B1---B2---B3 (topic) \ C1---C2---C3 (topic2, HEAD) By default, the branch todo list would show todos from both the \"topic\" branch and the \"topic2\" branch. To show only todos from the \"topic2\" branch, this option could be set to \"topic\"." :type '(choice (const :tag "Automatic" :doc "Value returned by `magit-main-branch'" nil) (string :tag "Specified branch name"))) (defcustom magit-todos-submodule-list nil "Show submodule to-do list." :type 'boolean) (defcustom magit-todos-filename-filter nil "Filter applied to filenames." :type '(choice (const :tag "None (show filename relative to repo)" nil) (function-item :tag "Basename" file-name-nondirectory) (function :tag "Custom function"))) ;;;; Commands ;;;###autoload (define-minor-mode magit-todos-mode "Show list of to-do items in Magit status buffer for tracked files in repo." :require 'magit-todos :group 'magit-todos :global t (if magit-todos-mode (progn (transient-append-suffix #'magit-status-jump '(0 -1) '[("T" "Todos" magit-todos-jump-to-todos) ("l" "List todos" magit-todos-list)]) (magit-add-section-hook 'magit-status-sections-hook #'magit-todos--insert-todos nil 'append) (add-hook 'magit-status-mode-hook #'magit-todos--add-to-status-buffer-kill-hook 'append)) ;; Disable mode (transient-remove-suffix #'magit-status-jump '(0 -1)) (remove-hook 'magit-status-sections-hook #'magit-todos--insert-todos) (remove-hook 'magit-status-mode-hook #'magit-todos--add-to-status-buffer-kill-hook))) (defun magit-todos-update () "Update the to-do list manually. Only necessary when option `magit-todos-update' is nil." (interactive) (unless magit-todos-mode (user-error "Please activate `magit-todos-mode'")) (let ((inhibit-read-only t)) ;; Delete twice since there might also be the branch-local section. (magit-todos--delete-section [* todos]) (magit-todos--delete-section [* todos]) ;; HACK: See other note on `magit-todos-updating'. (setq magit-todos-updating t) (magit-todos--insert-todos))) (defun magit-todos-branch-list-toggle () "Toggle branch diff to-do list in current Magit buffer." (interactive) (setq-local magit-todos-branch-list (not magit-todos-branch-list)) (magit-todos-update)) (defun magit-todos-branch-list-set-commit (ref) "Set commit REF used in branch to-do list." (interactive (list (completing-read "Refname: " (magit-list-refnames)))) (setq-local magit-todos-branch-list-merge-base-ref ref) (magit-todos-update)) (cl-defun magit-todos-jump-to-item (&key peek (item (oref (magit-current-section) value))) "Show current ITEM. If PEEK is non-nil, keep focus in status buffer window." (interactive) (let* ((status-window (selected-window)) (buffer (magit-todos--item-buffer item))) (pop-to-buffer buffer) (magit-todos--goto-item item) (when (derived-mode-p 'org-mode) ;; Because `org-show-entry' was renamed and moved in Org 9.6, we ;; have to silence warnings about it. If Org is loaded, the ;; function will be. (cond ((version<= "9.6" (org-version)) (with-no-warnings (org-fold-show-entry))) (t (with-no-warnings (org-show-entry))))) (when peek (select-window status-window)))) (defun magit-todos-peek-at-item () "Peek at current item." (interactive) (magit-todos-jump-to-item :peek t)) ;;;;; Jump to section (magit-define-section-jumper magit-jump-to-todos "TODOs" todos) (defun magit-todos-jump-to-todos () "Jump to TODOs section, and update it if empty." (interactive) (let ((already-in-section-p (magit-section-match [* todos]))) (magit-jump-to-todos) (when (and (or (integerp magit-todos-update) (not magit-todos-update)) (or already-in-section-p (= 0 (length (oref (magit-current-section) children))))) (magit-todos-update)))) ;;;; Dedicated buffer ;;;###autoload (defun magit-todos-list (&optional directory) "Show to-do list of the current Git repository in a buffer. With prefix, prompt for repository. Use repository in DIRECTORY, or `default-directory' if nil." ;; Mostly copied from `magit-status' (interactive (let ((magit--refresh-cache (list (cons 0 0)))) (list (and (or current-prefix-arg (not (magit-toplevel))) (magit-read-repository))))) (condition-case nil (let ((magit--refresh-cache (list (cons 0 0)))) (setq directory (if directory (file-name-as-directory (expand-file-name directory)) default-directory)) (magit-todos-list-internal directory)) ('magit-outside-git-repo (cl-letf (((symbol-function 'magit-toplevel) (lambda (&rest _) default-directory))) (call-interactively #'magit-todos-list))))) (put 'magit-todos-list 'interactive-only 'magit-todos-list-internal) ;;;###autoload (defun magit-todos-list-internal (directory) "Open buffer showing to-do list of repository at DIRECTORY." (if (fboundp 'magit--tramp-asserts) (magit--tramp-asserts directory) (when (file-remote-p directory) (magit-git-version-assert))) (let ((default-directory directory)) (magit-setup-buffer #'magit-todos-list-mode))) (define-derived-mode magit-todos-list-mode magit-status-mode "Magit" "Mode for looking at repository to-do list. \\\ Type \\[magit-refresh] to refresh the list. Type \\[magit-section-toggle] to expand or hide the section at point. Type \\[magit-visit-thing] to visit the item at point. Type \\[magit-diff-show-or-scroll-up] to peek at the item at point." :group 'magit-todos) (defun magit-todos-list-refresh-buffer () "Refresh the current `magit-todos-list-mode' buffer." (setq-local magit-todos-max-items (* magit-todos-max-items magit-todos-buffer-item-factor)) (when (numberp magit-todos-auto-group-items) (setq-local magit-todos-auto-group-items (* magit-todos-auto-group-items magit-todos-buffer-item-factor))) (magit-section-show (magit-insert-section (type magit-root-section) (magit-insert-status-headers) (magit-todos--insert-todos)))) ;;;; Functions (defun magit-todos--section-end (condition) "Return end position of section matching CONDITION, or nil. CONDITION may be one accepted by `magit-section-match', or `top' or `bottom', which are handled specially." (cl-labels ((find-section (condition) (save-excursion (goto-char (point-min)) (ignore-errors (cl-loop until (magit-section-match condition) do (magit-section-forward) finally return (magit-current-section)))))) (save-excursion (goto-char (point-min)) (pcase condition ('top (when-let ((section (or (find-section 'tags) (find-section 'tag) (find-section 'branch)))) ;; Add 1 to leave blank line after top sections. (1+ (oref section end)))) ('bottom (oref (-last-item (oref magit-root-section children)) end)) (_ (when-let ((section (find-section condition))) (oref section end))))))) (defun magit-todos--coalesce-groups (groups) "Return GROUPS, coalescing any groups with `equal' keys. GROUPS should be an alist. Assumes that each group contains unique items. Intended for post-processing the result of `-group-by'." (cl-loop with keys = (-uniq (-map #'car groups)) for key in keys for matching-groups = (--select (equal key (car it)) groups) collect (cons key (apply #'append (-map #'cdr matching-groups))))) (defun magit-todos--add-to-status-buffer-kill-hook () "Add `magit-todos--kill-active-scan' to `kill-buffer-hook' locally." (add-hook 'kill-buffer-hook #'magit-todos--kill-active-scan 'append 'local)) (defun magit-todos--kill-active-scan () "Kill `magit-todos-active-scan'. To be called in status buffers' `kill-buffer-hook'." (when (and magit-todos-active-scan (process-live-p magit-todos-active-scan)) (kill-process magit-todos-active-scan) (when-let* ((buffer (process-buffer magit-todos-active-scan)) (alive (buffer-live-p buffer))) (kill-buffer buffer)))) (defun magit-todos--add-to-custom-type (symbol value) "Add VALUE to the end of SYMBOL's `custom-type' property." (declare (indent defun)) (pcase-let* ((`(,type . ,choices) (get symbol 'custom-type)) (choices (append (list value) choices))) (put symbol 'custom-type (append (list type) choices)))) (defun magit-todos--choose-scanner () "Return function to call to scan for items with. Chooses automatically in order defined in `magit-todos-scanners'." (cl-loop for scanner in magit-todos-scanners ;; I guess it would be better to avoid `eval', but it seems like the natural ;; way to do this. when (eval (alist-get 'test scanner)) return (alist-get 'function scanner))) (cl-defun magit-todos--scan-callback (&key callback magit-status-buffer results-regexp process &allow-other-keys) "Call CALLBACK with arguments MAGIT-STATUS-BUFFER and match items. Match items are a list of `magit-todos-item' found in PROCESS's buffer for RESULTS-REGEXP." (funcall callback magit-status-buffer (with-current-buffer (process-buffer process) (magit-todos--buffer-items results-regexp)))) (defun magit-todos--buffer-items (results-regexp) "Return list of `magit-todos-item' found in current buffer for RESULTS-REGEXP." (let ((items)) (save-excursion (goto-char (point-min)) (while (not (eobp)) (--when-let (condition-case err (magit-todos--line-item results-regexp) ;; Files with very, very long lines may cause Emacs's regexp matcher to overflow. ;; Rather than abort the whole scan and raise an error, try to handle it gracefully. ;; FIXME: This may raise multiple warnings per file. (error (if (string= "Stack overflow in regexp matcher" (error-message-string err)) (let ((filename (buffer-substring (point) (1- (re-search-forward ":"))))) (display-warning 'magit-todos (concat "File has lines too long for Emacs to search. Consider excluding it from scans: " filename)) nil) (signal (car err) (cdr err))))) (push it items)) (forward-line 1))) (nreverse items))) (cl-defun magit-todos--git-diff-callback (&key magit-status-buffer results-regexp search-regexp-elisp process heading exclude-globs &allow-other-keys) "Callback for git diff scanner output. Insert into MAGIT-STATUS-BUFFER. RESULTS-REGEXP matches a result on each line. SEARCH-REGEXP-ELISP finds the next hunk of results. PROCESS is the \"git diff\" process object. `magit-todos-section-heading' is bound to HEADING when inserting items. EXCLUDE-GLOBS is a list of glob patterns matching filenames to be excluded." ;; NOTE: Doesn't handle newlines in filenames or diff.mnemonicPrefix. (cl-macrolet ((next-diff () `(re-search-forward (rx bol "diff --git ") nil t)) (next-filename () `(when (re-search-forward (rx bol "+++ b/" (group (1+ nonl))) nil t) (match-string 1))) (next-hunk-line-number () `(when (re-search-forward (rx bol "@@ -" (1+ digit) (optional "," (1+ digit)) (1+ space) "+" (group (1+ digit)) (optional "," (1+ digit))) file-end t) (string-to-number (match-string 1)))) (file-end () `(or (save-excursion (when (re-search-forward (rx bol "diff --git ") nil t) (match-beginning 0))) (point-max))) (hunk-end () `(or (save-excursion (when (re-search-forward (rx (or (seq bol "diff --git ") (seq bol "@@ "))) nil t) (match-beginning 0))) (point-max)))) (with-current-buffer (process-buffer process) (goto-char (point-min)) (let ((glob-regexps (mapcar #'wildcard-to-regexp exclude-globs)) items filename file-end hunk-end line-number) (while (next-diff) (while (setf filename (next-filename)) (unless (--some? (string-match it filename) glob-regexps) (setf file-end (file-end)) (while (setf line-number (next-hunk-line-number)) (setf hunk-end (hunk-end)) (while (re-search-forward (rx bol "+") hunk-end t) ;; Since "git diff-index" doesn't accept PCREs to its "-G" option, we have to test the search regexp ourselves. (when (re-search-forward search-regexp-elisp (line-end-position) t) (when-let* ((line (buffer-substring (line-beginning-position) (line-end-position))) (item (with-temp-buffer ;; NOTE: We fake grep output by inserting the filename, line number, position, etc. ;; This lets us use the same results regexp that's used for grep-like output. (save-excursion (insert filename ":" (number-to-string line-number) ":0: " line)) (magit-todos--line-item results-regexp filename)))) (push item items))) (cl-incf line-number)))))) (let ((magit-todos-section-heading heading)) (magit-todos--insert-items magit-status-buffer items :branch-p t)))))) (defun magit-todos--delete-section (condition) "Delete the section specified by CONDITION from the Magit status buffer. See `magit-section-match'. Also delete it from root section's children." (save-excursion (goto-char (point-min)) (when-let ((section (cl-loop until (magit-section-match condition) ;; Use `forward-line' instead of `magit-section-forward' because ;; sometimes it skips our section. do (forward-line 1) when (eobp) return nil finally return (magit-current-section)))) ;; Delete the section from root section's children. This makes the section-jumper command ;; work when a replacement section is inserted after deleting this section. (object-remove-from-list magit-root-section 'children section) (with-slots (start end) section ;; NOTE: We delete 1 past the end because we insert a newline after the section. I'm not ;; sure if this would generalize to all Magit sections. But if the end is the same as ;; `point-max', which may be the case if todo items have not yet been inserted, we only ;; delete up to `point-max'. (delete-region start (if (= end (point-max)) end (1+ end))))))) (defun magit-todos--item-buffer (item) "Return buffer visiting ITEM." (or (find-buffer-visiting (magit-todos-item-filename item)) (find-file-noselect (magit-todos-item-filename item)))) (defun magit-todos--goto-item (item) "Move point to ITEM. Assumes current buffer is ITEM's buffer." (pcase-let* (((cl-struct magit-todos-item position line column keyword) item)) (if position (goto-char position) (goto-char (point-min)) (forward-line (1- line)) (if column (forward-char column) (when (re-search-forward (regexp-quote keyword) (line-end-position) t) (goto-char (match-beginning 0))))))) (defun magit-todos--insert-todos () "Insert to-do items into current buffer. This function should be called from inside a ‘magit-status’ buffer." (declare (indent defun)) (when magit-todos-active-scan ;; Avoid running multiple scans for a single magit-status buffer. (let ((buffer (process-buffer magit-todos-active-scan))) (when (process-live-p magit-todos-active-scan) (delete-process magit-todos-active-scan)) (when (buffer-live-p buffer) (kill-buffer buffer))) (setq magit-todos-active-scan nil)) (pcase magit-todos-update ((or 't ; Automatic ;; Manual and updating now (and 'nil (guard magit-todos-updating)) ;; Caching and cache expired (and (pred integerp) (guard (or magit-todos-updating ; Forced update (>= (float-time (time-subtract (current-time) magit-todos-last-update-time)) magit-todos-update) (null magit-todos-last-update-time))))) ;; Scan and insert. ;; HACK: I don't like setting a special var here, because it seems like lexically binding a ;; special var should follow down the chain, but it isn't working, so we'll do this. (setq magit-todos-updating t) (setq magit-todos-active-scan (funcall magit-todos-scanner :callback #'magit-todos--insert-items :magit-status-buffer (current-buffer) :directory default-directory :depth magit-todos-depth))) (_ ; Caching and cache not expired, or not automatic and not manually updating now (magit-todos--insert-items (current-buffer) magit-todos-item-cache))) (when (or (eq magit-todos-branch-list t) (and (eq magit-todos-branch-list 'branch) (not (equal (or magit-todos-branch-list-merge-base-ref (magit-main-branch)) (magit-get-current-branch))))) ;; Insert branch-local items. (magit-todos--scan-with-git-diff :magit-status-buffer (current-buffer) :directory default-directory :depth magit-todos-depth :heading (format "TODOs (branched from %s)" (or magit-todos-branch-list-merge-base-ref (magit-main-branch)))))) (cl-defun magit-todos--insert-items (magit-status-buffer items &key branch-p) "Insert to-do ITEMS into MAGIT-STATUS-BUFFER. If BRANCH-P is non-nil, do not update `magit-todos-item-cache', `magit-todos-last-update-time', and `magit-todos-updating'." (declare (indent defun)) ;; NOTE: This could be factored out into some kind of `magit-insert-section-async' macro if necessary. ;; MAYBE: Use `magit-insert-section-body'. (when (not (buffer-live-p magit-status-buffer)) (message "`magit-todos--insert-items-callback': Callback called for deleted buffer")) (let* ((items (magit-todos--sort items)) (num-items (length items)) (magit-section-show-child-count t) ;; HACK: "For internal use only." But this makes collapsing the new section work! (magit-insert-section--parent magit-root-section) (inhibit-read-only t)) (when (buffer-live-p magit-status-buffer) ;; Don't try to select a killed status buffer (with-current-buffer magit-status-buffer (unless branch-p ;; Don't do any of this for the branch-diff scanner. (when magit-todos-updating (when (or (null magit-todos-update) ; Manual updates (integerp magit-todos-update)) ; Caching (setq magit-todos-item-cache items) (setq magit-todos-last-update-time (current-time))) ;; HACK: I don't like setting this special var, but it works. See other comment where ;; it's set t. (setq magit-todos-updating nil))) (save-excursion ;; Insert items (goto-char (point-min)) ;; Go to insertion position (goto-char (or (cl-loop for section in magit-todos-insert-after for pos = (magit-todos--section-end section) when pos return pos) (magit-todos--section-end 'bottom))) ;; Insert section (let* ((group-fns (pcase magit-todos-auto-group-items ('never nil) ('always magit-todos-group-by) ((pred integerp) (when (> num-items magit-todos-auto-group-items) magit-todos-group-by)) (_ (error "Invalid value for magit-todos-auto-group-items")))) (magit-todos-show-filenames (not (member 'magit-todos-item-filename group-fns))) (reminder (if magit-todos-update "" ; Automatic updates: no reminder ;; Manual updates: remind user " (update manually)"))) (if (not items) (unless magit-todos-update ;; Manual updates: Insert section to remind user (let ((magit-insert-section--parent magit-root-section)) (magit-insert-section (todos) (magit-insert-heading (concat (propertize magit-todos-section-heading 'face 'magit-section-heading) " (0)" reminder "\n"))))) (let ((section (magit-todos--insert-groups :type 'todos :heading (format "%s (%s)%s" (propertize magit-todos-section-heading 'face 'magit-section-heading) num-items reminder) :group-fns group-fns :items items :depth 0))) (magit-todos--set-visibility :section section :num-items num-items))))))))) (cl-defun magit-todos--insert-groups (&key depth group-fns heading type items) "Insert ITEMS into grouped Magit section and return the section. DEPTH sets indentation and should be 0 for a top-level group. It is automatically incremented when this function calls itself. GROUP-FNS may be a list of functions to which ITEMS are applied with `-group-by' to group them. Items are grouped hierarchically, i.e. when GROUP-FNS has more than one function, items are first grouped by the first function, then subgroups are created which group items by subsequent functions. HEADING is a string which is the group's heading. The count of items in each group is automatically appended. TYPE is a symbol which is used by Magit internally to identify sections." ;; NOTE: `magit-insert-section' seems to bind `magit-section-visibility-cache' to nil, so setting ;; visibility within calls to it probably won't work as intended. (declare (indent defun)) (let* ((indent (propertize (s-repeat (* 2 depth) " ") 'face nil)) (heading (concat indent heading)) (magit-insert-section--parent (if (= 0 depth) magit-root-section magit-insert-section--parent))) (if (and (consp group-fns) (> (length group-fns) 0)) ;; Insert more groups (let* ((groups (--> (-group-by (car group-fns) items) (cl-loop for group in-ref it ;; HACK: Set ":" keys to nil so they'll be grouped together. do (pcase (car group) (":" (setf (car group) nil))) finally return it) (magit-todos--coalesce-groups it))) (section (magit-insert-section ((eval type)) (magit-insert-heading heading) (cl-loop for (group-type . items) in groups for group-name = (pcase group-type ;; Use "[Other]" instead of empty group name. ;; HACK: ":" is hard-coded, even though the ;; suffix regexp could differ. If users change ;; the suffix so this doesn't apply, it ;; shouldn't cause any problems, it just won't ;; look as pretty. ((or "" ":" 'nil) "[Other]") (_ (s-chop-suffix ":" group-type))) do (magit-todos--insert-groups :depth (1+ depth) :group-fns (cdr group-fns) :type (intern group-name) :items items :heading (concat (if (and magit-todos-fontify-keyword-headers (member group-name magit-todos-keywords-list)) (propertize group-name 'face (magit-todos--keyword-face group-name)) group-name) ;; Item count (if (= 1 (length group-fns)) ":" ; Let Magit add the count. ;; Add count ourselves. (concat " " (format "(%s)" (length items))))))) (when (= 0 depth) ;; Insert a blank line only in the body of the top-level section, so it ;; will appear only when the section is expanded, matching other sections. (insert "\n"))))) (magit-todos--set-visibility :depth depth :num-items (length items) :section section) ;; Add top-level section to root section's children (when (= 0 depth) (push section (oref magit-root-section children))) ;; Don't forget to return the section! section) ;; Insert individual to-do items (magit-todos--insert-group :depth (1+ depth) :type type :items items :heading heading)))) (cl-defun magit-todos--insert-group (&key depth heading type items) "Insert ITEMS into Magit section and return the section. DEPTH sets indentation and should be 0 for a top-level group. HEADING is a string which is the group's heading. The count of items in each group is automatically appended. TYPE is a symbol which is used by Magit internally to identify sections." ;; NOTE: `magit-insert-section' seems to bind `magit-section-visibility-cache' to nil, so setting ;; visibility within calls to it probably won't work as intended. (declare (indent defun)) (let* ((indent (propertize (s-repeat (* 2 depth) " ") 'face nil)) (magit-insert-section--parent (if (= 0 depth) magit-root-section magit-insert-section--parent)) (width (- (window-text-width) depth)) (section (magit-insert-section ((eval type)) (magit-insert-heading heading) (dolist (item items) (let* ((filename (propertize (magit-todos-item-filename item) 'face 'magit-filename)) (string (--> (concat indent (when magit-todos-show-filenames (when magit-todos-filename-filter (setf filename (funcall magit-todos-filename-filter filename))) (concat filename " ")) (funcall (if (s-suffix? ".org" filename) #'magit-todos--format-org #'magit-todos--format-plain) item)) (truncate-string-to-width it width)))) (magit-insert-section (todos-item item) (insert string "\n"))))))) (magit-todos--set-visibility :depth depth :num-items (length items) :section section) ;; Don't forget to return the section! section)) (cl-defun magit-todos--set-visibility (&key section num-items depth) "Set the visibility of SECTION. If the section's visibility is cached by Magit, the cached setting is applied. Otherwise, visibility is set according to whether NUM-ITEMS is greater than `magit-todos-max-items'. When DEPTH is greater than 0, NUM-ITEMS is compared to `magit-todos-max-items' divided by DEPTH multiplied by 2, i.e. the max number of items which cause sections to be automatically hidden halves at each deeper level." (declare (indent defun)) (pcase (magit-section-cached-visibility section) ('hide (magit-section-hide section)) ('show (magit-section-show section)) (_ (if (> num-items (pcase depth (0 magit-todos-max-items) (_ (/ magit-todos-max-items (* depth 2))))) ;; HACK: We have to do this manually because the set-visibility-hook doesn't work. (magit-section-hide section) ;; Not hidden: show section manually (necessary for some reason) (magit-section-show section))))) (cl-defun magit-todos--line-item (regexp &optional filename) "Return item on current line, parsing current buffer with REGEXP. FILENAME is added to the item as its filename. Sets match data. This should be called in a process's output buffer from one of the async callback functions. The calling function should advance to the next line." (let ((case-fold-search magit-todos-ignore-case)) (when (re-search-forward regexp (line-end-position) t) (make-magit-todos-item :filename (or filename (match-string 8)) :line (--when-let (match-string 2) (string-to-number it)) :column (--when-let (match-string 3) (string-to-number it)) :position (--when-let (match-string 9) (string-to-number it)) :org-level (match-string 1) :keyword (match-string 4) :suffix (match-string 6) :description (match-string 5))))) (defun magit-todos--keyword-face (keyword) "Return face for KEYWORD." ;; TODO(alphapapa): Instead of upcasing here, upcase in the lookup, so it can still be displayed ;; non-uppercase. Preserving the distinction might be useful. (when magit-todos-ignore-case (setq keyword (upcase keyword))) (let ((face (assoc-default keyword hl-todo-keyword-faces #'string=))) (cl-typecase face (string (list :inherit 'hl-todo :foreground face)) (t face)))) (defun magit-todos--fontify-like-in-org-mode (s &optional odd-levels) "Fontify string S like in Org-mode. Bind `org-odd-levels-only' to ODD-LEVELS. `org-fontify-like-in-org-mode' is a very, very slow function because it creates a new temporary buffer and runs `org-mode' for every string it fontifies. This function reuses a single invisible buffer and only runs `org-mode' when the buffer is created." (let ((buffer (get-buffer " *magit-todos--fontify-like-in-org-mode*"))) (unless buffer (setq buffer (get-buffer-create " *magit-todos--fontify-like-in-org-mode*")) (with-current-buffer buffer (buffer-disable-undo) (org-mode))) (with-current-buffer buffer (erase-buffer) (insert s) (let ((org-odd-levels-only odd-levels)) (font-lock-ensure) (buffer-string))))) (defun magit-todos-item-first-path-component (item) "Return ITEM's first directory. This assumes that ITEM's filename is already set to a path relative to the repo's directory (i.e. this would not be very useful with absolute paths)." (car (f-split (magit-todos-item-filename item)))) (cl-defun magit-todos--async-start-process (name &key command finish-func) "Start the executable COMMAND asynchronously. See `async-start'. PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the process object when done. If FINISH-FUNC is nil, the future object will return the process object when the program is finished. Set DEFAULT-DIRECTORY to change PROGRAM's current working directory. Process is named NAME. This is a copy of `async-start-process' that does not override `process-connection-type'. It also uses keyword arguments." (declare (indent defun)) ;; TODO: Drop this function when possible. See ;; . (let* ((args (cdr command)) (command (car command)) (buf (generate-new-buffer (concat " *" name "*"))) (proc (apply #'start-file-process name buf command args))) (with-current-buffer buf (set-process-query-on-exit-flag proc nil) (set (make-local-variable 'async-callback) finish-func) (set-process-sentinel proc #'magit-todos--async-when-done) (unless (string= name "emacs") (set (make-local-variable 'async-callback-for-process) t)) proc))) (defun magit-todos--async-when-done (proc &optional _change) "Process sentinel used to retrieve the value from the child PROC. This is a copy of `async-when-done' that does not raise an error if the process's buffer has already been deleted." ;; I wish it weren't necessary to copy this function here, but at the moment it seems like the ;; only reasonable way to work around this problem of `async-when-done' trying to select deleted ;; buffers. I already tried not deleting the buffers, but then I got bug reports about that and ;; had to revert it. I don't know if I'm encountering a bug in my code, in `async', or in Emacs ;; itself, because it seems that `async-when-done' is being called on the wrong buffers: When I'm ;; connected with `matrix-client', and when I have a Magit status buffer opened with ;; `magit-todos-mode' active, then when one of the `url' process buffers from Matrix gets its ;; sentinel called, I get an error from `async-when-done' trying to select the already-deleted ;; `rg' scanner buffer! It's as if Emacs is mixing up the process buffers. I really don't know ;; what's going on. But maybe I can work around it by copying this function and checking whether ;; the process's buffer is alive. ;; NOTE: TRAMP processes seem to have the status `signal' instead of ;; `exit'. I can't find documentation as to why. (when (and (memq (process-status proc) '(exit signal)) (buffer-live-p (process-buffer proc))) (with-current-buffer (process-buffer proc) (let ((async-current-process proc)) ;; TRAMP processes seem to have the exit status 9 instead of ;; 0. I can't find documentation or code about it. (if (memq (process-exit-status proc) (process-get proc :allow-exit-codes)) (if async-callback-for-process (if async-callback (prog1 (funcall async-callback proc) (unless async-debug (kill-buffer (current-buffer)))) (set (make-local-variable 'async-callback-value) proc) (set (make-local-variable 'async-callback-value-set) t)) (goto-char (point-max)) (backward-sexp) (async-handle-result async-callback (read (current-buffer)) (current-buffer))) (error "magit-todos--async-when-done: Process %S failed with exit code %d. Output:%S" (process-name proc) (process-exit-status proc) (buffer-string))))))) ;;;;; Formatters (defun magit-todos--format-plain (item) "Return ITEM formatted as from a non-Org file." (format "%s%s %s" (propertize (magit-todos-item-keyword item) 'face (magit-todos--keyword-face (magit-todos-item-keyword item))) (or (magit-todos-item-suffix item) "") (or (magit-todos-item-description item) ""))) (defun magit-todos--format-org (item) "Return ITEM formatted as from an Org file." (require 'org) (magit-todos--fontify-like-in-org-mode (concat (magit-todos-item-org-level item) " " (magit-todos-item-keyword item) " " (magit-todos-item-description item)))) ;;;;; Sorting (defun magit-todos--sort (items) "Return ITEMS sorted according to `magit-todos-sort-order'." (dolist (fn (reverse magit-todos-sort-order) items) (setq items (sort items fn)))) (defun magit-todos--sort-by-keyword (a b) "Return non-nil if A's keyword is before B's in `magit-todos-keywords-list'." (cl-flet ((keyword-index (keyword) (or (-elem-index keyword magit-todos-keywords-list) 0))) (< (keyword-index (magit-todos-item-keyword a)) (keyword-index (magit-todos-item-keyword b))))) (defun magit-todos--sort-by-position (a b) "Return non-nil if A's position in its file is before B's." (let ((a-position (or (magit-todos-item-position a) (magit-todos-item-line a))) (b-position (or (magit-todos-item-position b) (magit-todos-item-line b)))) (< a-position b-position))) (defun magit-todos--sort-by-filename (a b) "Return non-nil if A's filename is `string<' B's." (string< (magit-todos-item-filename a) (magit-todos-item-filename b))) (defun magit-todos--sort-by-suffix (a b) "Return non-nil if A's suffix is `string<' B's." (string< (magit-todos-item-suffix a) (magit-todos-item-suffix b))) ;;;; Scanners (cl-defmacro magit-todos-defscanner (name &key test command results-regexp (allow-exit-codes '(0)) (directory-form '(f-relative directory default-directory)) (callback (function 'magit-todos--scan-callback))) "Define a `magit-todos' scanner named NAME. NAME is a string, which may contain spaces. It is only used for descriptive purposes. TEST is an unquoted sexp which is used to determine whether the scanner is usable. In most cases, it should use `executable-find' to look for the scanner command. COMMAND is a sexp which should evaluate to the scanner command, i.e. a list of strings to be eventually passed to `start-process'. Nil elements are removed, numbers are converted to strings, and nested lists are flattened into a single list. It is evaluated each time the scanner is run. If COMMAND evaluates to nil, it is not run. Within the COMMAND list these variables are available: `depth': When non-nil, an integer, which is the depth that should be passed to the scanner's max-depth option (i.e. `magit-todos-depth'). `directory': The directory in which the scan should be run. `extra-args': The value of the customization variable \"magit-todos-NAME-extra-args\" (see below). `keywords': List of item keywords defined in `magit-todos-keywords-list'. `search-regexp-pcre': PCRE-compatible regular expression to be passed to the scanner process. `search-regexp-elisp': Emacs regular expression, which may be used for scanners written as Emacs Lisp functions. RESULTS-REGEXP is an optional string or unquoted sexp which is used to match results in the scanner process's output buffer. Typically this will be a sexp which calls `rx-to-string'. It is evaluated each time the scanner is run. If nil, the appropriate default is used which matches results in the form: FILENAME:LINE:MATCH Where MATCH may also match Org outline heading stars when appropriate. Custom regexps may also match column numbers or byte offsets in the appropriate numbered groups; see `make-magit-todos-item'. ALLOW-EXIT-CODES is a list of integers corresponding to exit codes which should not be interpreted as errors (e.g. rg uses 1 to indicate no match and no error, so its list should include 0 and 1). Note that TRAMP seems to use code 9 instead of 0, so 9 is added to this list automatically. DIRECTORY-FORM may be a form within which the symbol `directory' is bound to the directory path being searched; it should evaluate to the directory path that should be passed to the command. (Since some commands' output differs by the way the search directory is passed, like \"./\" or \".\" vs. a full path, this may be used to, e.g. ensure that the command does not include a leading \"./\" in filenames.) CALLBACK is called to process the process's output buffer. Normally the default should be used, which inserts items into the Magit status buffer which is passed as an argument to the scanner function. The macro defines the following: \"magit-todos-NAME-extra-args\": A customization setting, a list of strings to be passed to the scanner as extra arguments. \"magit-todos--scan-with-NAME\": The function which runs the scanner command. It also adds the scanner to the customization variable `magit-todos-scanner', and to the variable `magit-todos-scanners' (which is used to set `magit-todos-scanner' by calling `magit-todos--choose-scanner')." ;; TODO: Try to obviate the -scanners variable, let --choose-scanner use the ;; custom-type of -scanner directly. Maybe, anyway--I don't want to ugly up the UI ;; for users. (declare (indent defun) (debug (stringp [&rest &or [":test" def-form] [":command" def-form] [":results-regexp" [&or stringp def-form]]]))) (let* ((name-without-spaces (s-replace " " "-" name)) (scan-fn-name (concat "magit-todos--scan-with-" name-without-spaces)) (scan-fn-symbol (intern scan-fn-name)) (extra-args-var (intern (format "magit-todos-%s-extra-args" name-without-spaces)))) (cl-pushnew 9 allow-exit-codes) (setf allow-exit-codes (sort allow-exit-codes #'<)) `(progn (defcustom ,extra-args-var nil ,(format "Extra arguments passed to %s." name) :type '(repeat string)) ;; NOTE: Both the macro and the macro-defined function have `callback' arguments. Pay attention to unquoting. ;; FIXME: That is confusing. (cl-defun ,scan-fn-symbol (&key magit-status-buffer directory depth heading sync callback) ,(format "Scan for to-dos with %s. Then calls CALLBACK. MAGIT-STATUS-BUFFER is what it says. DIRECTORY is the directory in which to run the scan. DEPTH should be an integer, typically the value of `magit-todos-depth'. HEADING is passed to CALLBACK. When SYNC is nil, the scanner process is returned, and CALLBACK is a function which is called by the process sentinel with one argument, a list of match items. When SYNC is non-nil, match items are returned." name-without-spaces) (let* ((process-connection-type 'pipe) (directory ,directory-form) (extra-args (when ,extra-args-var (--map (s-split (rx (1+ space)) it 'omit-nulls) ,extra-args-var))) (keywords magit-todos-keywords-list) (search-regexp-elisp (rx-to-string `(or ;; Org item (seq bol (group (1+ "*")) (1+ blank) (group (or ,@keywords)) (1+ space) (group (1+ not-newline))) ;; Non-Org (seq (or bol (1+ blank)) (group (or ,@keywords)) (regexp ,magit-todos-keyword-suffix) (optional (1+ blank) (group (1+ not-newline))))))) (search-regexp-pcre (rxt-elisp-to-pcre search-regexp-elisp)) (results-regexp (or ,results-regexp (rx-to-string `(seq bol ;; Filename (group-n 8 (1+ (not (any ":")))) ":" ;; Line (group-n 2 (1+ digit)) ":" (or ;; Org item (seq (group-n 1 (1+ "*")) (1+ blank) (group-n 4 (or ,@keywords)) (1+ blank) (group-n 5 (1+ not-newline))) ;; Non-Org (seq (optional (1+ not-newline)) (group-n 4 (or ,@keywords)) (optional (group-n 6 (regexp ,magit-todos-keyword-suffix))) (optional (1+ blank)) (optional (group-n 5 (1+ not-newline))))))))) (command (-flatten (-non-nil (list (when magit-todos-nice (list "nice" "-n5")) ,command))))) ;; Convert any numbers in command to strings (e.g. depth). (cl-loop for elt in-ref command when (numberp elt) do (setf elt (number-to-string elt))) ;; Run command. (when command (if sync ;; Synchronous: return matching items. (with-temp-buffer (unless (member (apply #'call-process (car command) nil (current-buffer) nil (cdr command)) ',allow-exit-codes) (user-error (concat (car command) " failed"))) (magit-todos--buffer-items results-regexp)) ;; Async: return process. (let ((process (magit-todos--async-start-process ,scan-fn-name :command command ;; NOTE: This callback chain. :finish-func (apply-partially ,callback :callback callback :magit-status-buffer magit-status-buffer :results-regexp results-regexp :search-regexp-elisp search-regexp-elisp :heading heading :exclude-globs magit-todos-exclude-globs :process)))) ; Process is appended to the list. (setf (process-get process :allow-exit-codes) ',allow-exit-codes) process))))) (magit-todos--add-to-custom-type 'magit-todos-scanner (list 'const :tag ,name #',scan-fn-symbol)) (add-to-list 'magit-todos-scanners (list (cons 'name ,name) (cons 'function #',scan-fn-symbol) (cons 'test ',test)) 'append)))) ;; NOTE: These scanners handle the max-depth option differently. git-grep seems to handle it in the ;; most useful way, with a setting of 0 meaning to look no deeper than the current directory, and a ;; setting of 1 searching directories one level deeper. In comparison, rg and find effectively ;; subtract one from the value, as a setting of 0 returns no results, and a setting of 1 searches ;; only the current directory (which means that when the max-depth is set to 0, the whole command is ;; essentially a no-op, which is pointless). Since we want `magit-todos-depth' to behave ;; consistently with all scanners, we will treat it the way git-grep does, and for the other ;; scanners we'll add one to its value. (magit-todos-defscanner "rg" :test (executable-find "rg") :directory-form (if (equal directory default-directory) ;; Prevent leading "./" in filenames. nil (f-relative directory default-directory)) :allow-exit-codes (0 1) :command (list "rg" "--no-heading" "--line-number" (when depth (list "--maxdepth" (1+ depth))) (when magit-todos-ignore-case "--ignore-case") (when magit-todos-exclude-globs (--map (list "--glob" (concat "!" it)) magit-todos-exclude-globs)) (unless magit-todos-submodule-list (--map (list "--glob" (concat "!" it)) (magit-list-module-paths))) extra-args search-regexp-pcre directory)) (magit-todos-defscanner "git grep" :test (string-match "--perl-regexp" (shell-command-to-string "git grep --magit-todos-testing-git-grep")) :allow-exit-codes (0 1) :command (list "git" "--no-pager" "grep" "--full-name" "--no-color" "-n" (when depth (list "--max-depth" depth)) (when magit-todos-ignore-case "--ignore-case") "--perl-regexp" "-e" search-regexp-pcre extra-args "--" directory (when magit-todos-exclude-globs (--map (concat ":!" it) magit-todos-exclude-globs)) (unless magit-todos-submodule-list (--map (list "--glob" (concat "!" it)) (magit-list-module-paths))))) (magit-todos-defscanner "git diff" ;; NOTE: This scanner implements the regexp *searching* in elisp rather than in the ;; external process because, unlike "git grep", "git diff" does not support PCRE. :test t :command (progn ;; Silence byte-compiler warnings about these vars we don't use in this scanner. (ignore search-regexp-elisp search-regexp-pcre extra-args directory depth) (let ((merge-base-ref (-> "git merge-base HEAD " (concat (or magit-todos-branch-list-merge-base-ref (magit-main-branch))) shell-command-to-string string-trim))) (unless (string-empty-p merge-base-ref) (list "git" "--no-pager" "diff" "--no-color" "-U0" merge-base-ref)))) :callback 'magit-todos--git-diff-callback) (magit-todos-defscanner "find|grep" ;; NOTE: The filenames output by find|grep have a leading "./". I don't expect this scanner to be ;; used much, if at all, so I'm not going to go to the trouble to fix this now. :test (string-match "--perl-regexp" (shell-command-to-string "grep --help")) :allow-exit-codes (0 1) :command (let* ((grep-find-template (progn (unless grep-find-template (grep-compute-defaults)) (->> grep-find-template (s-replace " grep " " grep -b -E ") (s-replace " -nH " " -H ")))) (_ (when depth (setq grep-find-template (s-replace " " (concat " -maxdepth " (1+ depth) " ") grep-find-template))))) ;; Modified from `rgrep-default-command' (list "find" directory (list (when grep-find-ignored-directories (list "-type" "d" "(" "-path" (-interpose (list "-o" "-path") (-non-nil (--map (cond ((stringp it) (concat "*/" it)) ((consp it) (and (funcall (car it) it) (concat "*/" (cdr it))))) grep-find-ignored-directories))) ")" "-prune")) (when grep-find-ignored-files (list "-o" "-type" "f" "(" "-name" (-interpose (list "-o" "-name") (--map (cond ((stringp it) it) ((consp it) (and (funcall (car it) it) (cdr it)))) grep-find-ignored-files)) ")" "-prune")) (when magit-todos-exclude-globs (list "-o" "(" (-interpose (list "-o") (--map (list "-iname" ;; Arguments to "-iname" must not end in "/". (replace-regexp-in-string (rx "/" eos) "" it)) magit-todos-exclude-globs)) ")" "-prune")) (unless magit-todos-submodule-list (when (magit-list-module-paths) (list "-o" "(" (--map (list "-ipath" it) (magit-list-module-paths)) ")" "-prune")))) (list "-o" "-type" "f") ;; NOTE: This uses "grep -P", i.e. "Interpret the pattern as a ;; Perl-compatible regular expression (PCRE). This is highly ;; experimental and grep -P may warn of unimplemented features." But it ;; does seem to work properly, at least on GNU grep. Using "grep -E" ;; with this PCRE regexp doesn't work quite right, as it doesn't match ;; all the keywords, but pcre2el doesn't convert to "extended regular ;; expressions", so this will have to do. Maybe we should test whether ;; the version of grep installed supports "-P". ;; NOTE: For some reason, when "-execdir" is used, the callback function is never ;; called, even though the process terminates and its buffer has the correct ;; output. It works correctly when "-exec" is used, so we use that. (list "-exec" "grep" "-bPH" (when magit-todos-ignore-case "--ignore-case") extra-args search-regexp-pcre "{}" "+")))) ;;;;; Set scanner default value ;; Now that all the scanners have been defined, we can set the value. (custom-reevaluate-setting 'magit-todos-scanner) ;;;; Helm/Ivy ;; These add optional support for Helm and Ivy. This code does not require ;; Helm or Ivy to be installed; it is only called after one of them is loaded. (declare-function helm-make-source "ext:helm-source") (declare-function helm "ext:helm-core") (with-eval-after-load 'helm (defvar helm-magit-todos-source ;; We use `helm-make-source' instead of `helm-make-sync-source', which is a ;; macro, which won't be present if the user doesn't have Helm installed. (helm-make-source "helm-magit-todos" 'helm-source-sync :candidates #'magit-todos-candidates :action (lambda (item) (magit-todos-jump-to-item :item item)))) (defun helm-magit-todos () "Display `magit-todos' items with Helm. Note that this uses `magit-todos-items-cache' when a Magit status buffer is available for the repository directory, in which case the cache is not updated from this command." (interactive) (helm :sources '(helm-magit-todos-source)))) (declare-function ivy-read "ext:ivy") (with-eval-after-load 'ivy (defvar ivy-magit-todos-history nil "History for `ivy-magit-todos'.") (defun ivy-magit-todos () "Display `magit-todos' items with Ivy. Note that this uses `magit-todos-items-cache' when a Magit status buffer is available for the repository directory, in which case the cache is not updated from this command." (interactive) (ivy-read "TODOs: " (magit-todos-candidates) :action (lambda (item) (magit-todos-jump-to-item :item (cdr item))) :history 'ivy-magit-todos-history :caller 'ivy-magit-todos))) ;;;;; Support ;; These functions are used by both Helm and Ivy. (defsubst magit-todos-item-cons (item) "Return ITEM as a (DISPLAY . ITEM) pair. Used for e.g. Helm and Ivy." (cons (concat (magit-todos-item-filename item) " " (funcall (if (s-suffix? ".org" (magit-todos-item-filename item)) #'magit-todos--format-org #'magit-todos--format-plain) item)) item)) (defun magit-todos-candidates () "Return list of (DISPLAY . ITEM) candidates for e.g. Helm and Ivy." ;; MAYBE: Update the cache appropriately from here. (if-let* ((magit-status-buffer (magit-get-mode-buffer 'magit-status-mode)) (items (buffer-local-value 'magit-todos-item-cache magit-status-buffer))) ;; Use cached items. (cl-loop for item in items collect (magit-todos-item-cons item)) ;; No cached items: run scan. (when-let* ((items (funcall magit-todos-scanner :sync t :directory default-directory :depth magit-todos-depth))) (cl-loop for item in items collect (magit-todos-item-cons item))))) ;;;; Footer (provide 'magit-todos) ;;; magit-todos.el ends here magit-todos-1.7/screenshots/0000755000175000017500000000000014472442451016011 5ustar dogslegdogslegmagit-todos-1.7/screenshots/emacs-grouped.png0000644000175000017500000016042414472442451021261 0ustar dogslegdogslegPNG  IHDRENsBITO pHYs+IDATxg[ɶhg@m Z BhL&& g}f=zw% GYyݪVupE_` ޻=W^޽iBa#iX]ϒK_\}}gb%=kÃ/R"\\9Ji]HUɋhiGYeb($r ,hI_rDCUDR0hbV5'#*ɛغ Vh )yI'^ No_ˌ9a7ޞ܍/Xnw&:=Uz:tsh;:]c9H/uɱ ,lSumR!4/,eR*lvgaSh{p6z+3~ D]+Mz}o,j  `zl9ꡭrF~*7*e,!+f1#̽=ֳJŃj=:}~CL%b%FKFͥVK,U_I%p`.,17( Z91K]Hǂ fQdcI|y Ć&Y{VfL9.d@Σ[EIΖӰqߒoRJm0Y=[Fbi^_kK?I]Ɋ׺I 6P4 )aǗO?oQJ,%{޻VUjBgN\n~ ])7qm=K ɪ48AohOm"x2*vrkl|4L.HO`)86#|q~}R;Y"Nߚٛ/UaXfewlba՜w}es,e.`h]KwЭg#ri\D?Q `h!C7{DSnKu/yc?dE}|hY -#e[j띚p6D"el}+$4 K QYZ)<(YK0ŪҝG0yqsPsx^ud$gƬӋUYaW6 RUH-4w3#.ZyQ'* X؊I4}W1¯&o% 9gxQ `h!CEԕsݍzٽHw']\ HfEZOEo'TM/Rnpk:lSi/qMÛޥ;ޓS:fN{,)?Vzo{ѝ]&] %#;3aλd7KVlx0_ӛq#aK0HRܞ:!3|tCwYYXx iS1_R*FvzmnF?tq9Ӫ `@Tykx61s~G]`_My7NGgR0#o:!)ypx0Uv # "I-6Ke!1>TwOȴ#u,2m# \eᲣ{&}ɡ}UIYe֜ثO WJ,l޵s?TH}) P0;wO,3޾s*?x`VoݽߥLS~Ò9WZKtq'Gͽ{+Ceo_?x9~\D;^ˋ9;q/5=iٮ,*OUj UkG-}ckW{ؓ[׆uZzZd+Hir E[Muu2اJPjUT9SuAktQGvmro',*T~3rͣ?5jӒC56A=oyR2}t𓶱WYz `.TMP'm/0&9 #UֽXc y5?2>҇lhvVg}pxpXң(mbfozJ^smnM{ tkjsvmq=W D:nw&:=Uz:t\h;:]C!Nٻ6ƓcXئ"JVE0wewL=QG`Q0y} [:#R0ږбr)G}۔?i#j<wGUYٸUo[u '%Y,#YN룈 f)15^mPCP_Ŧ‭ LM28ގg 6Lj6U#*RuT!(6T0#tFP?[ߨ$3t,;*\^_\Y DXb4oxgGDeX{l?!Q"ahj]KmRX wkd ţ6I7J =#AN2&)6F~ Xe``ޞ`S&o1)<`*eᓒۺ\.QGXSrdžT~<:XX_C6F=) jim8g+~P.M ZurFhyDEa){;`6J )u6M(&{DtM)Ѭ82zM ]"55R C-OzmH7TmlU.|:ػCD~0}NTLϋ5t0DRBI`.3`F l0t: ^c=Lm0gw=nz x&Aaΰ6-\;kvJ{dm<{\򻊇Q0V?1޳t`csռs ./` sc|WXJ3eNKwЭg#ri\&Lqʓrd~0 <񵂒ʬc?(LLPb!w)ںglW0 ;.%w4),`Oz^ڷW(%+M P@5'Q0k[T8>Q6ďcw:-E57_ ؄}B2{>mXX5]_\%G4 E٤)&EW rq*n~єÒmK{&YG<;ZVC{H@Z@z&}G!H)w[Vz.ʤ47 6#DelOWeuaiZ潣g7& "9Ɩ*} 9"BWxrQ^"t:{|hmZ=jQ{ ~ϕxc~v[]-H9 ןJ`fN}bUcn6D*{ܠ8HE 9F nS7L6[V0 jCwc{בoL/B{;Vg]E34KmTSnd#a{B₺}bzpDw#j&]8+C?=_ 2t\4N]>?:ݘ݋tm0ВofإPWWCo{ѝ]&}W݌j. shʆoX#aK0tgmNGM2R%b"F*+(6ݔS<,޼(O\ eg٧*3cD`)#{ks6e>^QMwֱ[K1`Rrox=:)OD27Q[6gZU"XC+\E )s/t>Q.Z\;8C P UE?v*LvhFJc Sïw^//~ƿFcy6Y`vOI3&R۳ԣdb\ܨt8PP0;kG_5wtk;c^ |xR̗Vpws֩R\+g y*iuJ Q008o~u7y 8lzMǧ~Usx"yxo,E Vxo9UVr,3>P}TA:eۍ/ME66HvO1Y0F)7S"LT0S/NOۤ0݌ta٦vLp0<`rqb zC<7:2O*$Fh׍%F츧mJ䉘Xj2Z*ᙕwTmm_qI`묤(TTH]R4fȂx_OפnFN݀t1N]CQ0XJ֘#VLįfr}gO[P,1""!K fpL,^?"|bsi\q_㲽TNU H-r˕o&WI d^Jj1 YVxk ; `iB7"ޙ<@`,LCHP$W;m.9x !JZ]*v[mq\#y˰ᦔ!"ndFR0)HǟX^ੴ mEJ㠬 c3F5V(mv@d/(YF| `^0čyǿl۔*Ҙ`*~eIl4:^ij $vԓ #!9W'bX#k'9@_ALKI>sݑjy`c݅Y&"ȹ ׈sWS0D`Qv@a[MvcAm)3z6 <#0.6ֆr&thJO|le\>Z=ؚ:5NlvU 7zVu眗֧Ԅ'T,l״{$={*t&۱"p$++:؞]8D#ʤ4{t8wgiHiذ4ʀn<(\G!spRkףV0LJ+dޙ۷'kutzzJ۷sdj#rk`^iqoi9fv`ӭL'JQ(9[̊+JfSar%wy7JU39Ă*Cbd85 MXz<ۡl.C;nRP0`6͠2;Nl0"q3XjG$'Ȋ}Qn̕˘aq[|{Mz4)(zsf<)LL Ao8)bDs5_o !jMtpMJ+M?zwVj`VMAfI_RY**L~G 6gwisִ4t}eEԲFW.Lt=Jed߉t)O*[*I;: 2sxM=8XWgW fRvA7ȱׄw &jnlN79@\Z3`{b`U7ϟ[X%(09D}u;G-J&]EB\GQ0XYivKҍ'-2lwLH19ٝs̼{k*y_&n (P0`@  (@(P0`  (@ET ՐZG;7xkV0jO)9!SdEbze̗n`ܽ7'ȹU0_GNWX\1'|vޗmfⱩgfS{JchsyS+xͻx7s"\+TT1rkJnT|\L$L΀LįfK64X 7YQIY3I-3=ט%lt[`EvϞ&١,+|]qJ:( /%PepQ)aLJ[xm0+:(z C }IL'k2lqrbI>sݑjy`\9u_1tj2mΰ Fԓu~e$ ]EiʉRi4*Lt &1͚ۚf+I]xaǟg]US0`@ WLO :HuKr׮`J?Tnm* = |=m:G.c$aeQGO 佾͜ebp-U%;(G'd;ؤ(۟R }u^[Dr H0+x]WfGJERt.=¼o]'\**Y)^1lkbUc<&gI)1{|=d!uOJ SmgIX,$kP1}q?LE_;`oa)V;KEeXts5q|)n K,)̏J?qYt9\,8lK~Us"\wKW) "t|;EX̯c1"2NV%/@`n!u)LWLt>wKY![kt9YB KJkqO_۔A ηԊ@(`(K;HZZg(|K u88CE`ʺ Ip򌂑qPUt9"*4gO[P,1"ɔPq FO5Ms7|jG" l ~Տ8*'ᦧvua <G 06$!w>t v6%Dd%~D}e"_)e+yNk,@#<<4h X}2؏` BIL'k2"l&'I1,QORR)AQ%B=_w%6y*ؔ9{")*RauLwNEzza/ҙ1uDMEG9+͹2 X3ټkdaS=Í䜱T|ix^!B`9q[,< H0]@ )9X&(P0`y{Y'u\2Vj(,)~f[P = |=}/:<}rFt5{}wQO˦˺G6 u}-kT#Ǧx%748Eu]}3J..=¼v;w3ϾwgrFFm?"t맲j xO2>ѯ`*jg3:w LE_;`?*}2";i<^IH~‰UR3N"8QwS? FV73H& Iy9TH# +(XLVdJz|(C>)Q$O[۶5c;T.vF =LYC`d"eDyem0;>|rOc,Asw*y5}*1'#wy?!\C^~0gs&'ICO:lJ9yB=.S0v QvyF{^؋t&gXˈ7lU@|f/w8]SQ%L;km**Sz9Ja/cKUg?UQG:9\Hu!:> >d-+eYͱ}"C\j۲%e89`<R04޼"W>سF|N O 8L/,̓y (P0LO :]!#ec/Ɂ a7 22Н8).WC(DZDvD͋eSeT3N+$!Z?Z4 Xd]o`2%=>|lX0R]79@3N+nzj^P0Ѭ" 캱ӲuS0"2_2/5kTƉ,%@#&Sy & T>gM(-^woC#M3N<09AQܹp|g޶ZnqJ봯ϑU7"jD'{^7h늋Wʼ_Fd8Iz9Ja/B jQMKUx 'n `4 đ,̓y (P0LO :]!#ec/Ɂ ،WR ^"Cj_PNvG+YH]Jzg!/Ui75$Um>Ѫ'mY8/C@r H3/^-C>|0q`ߐ8&5Oym^\"TD*dxJIsĪƊy~c%gxS<5ޚ3}Ez0(h Ca'ܞ"MY4yTH( _8ݿ3eHI~"peZ3+oS3evn: 挂aoM-rw+'"ݘP"Ն6} b7`]n+*->"Ŧf|KگqD2n>~85`(a F)>$Jɺ#7"NE^C+`ف &SP%R}Qsz+~?Y`⦧vua Z*;-k~K Q]XLw?V8[N&*!'6(e߲;WZmEЈ}"LK{|gľ6pIe*1wbID$AzG 5N SmgIX,$%״WiCN(kΒx+%F$~1Oc│9o> 'x,_ʙ>{D#jyU޳T0JGPdH ?JJHn `ypPwP{/Q0E7Lr (Ү'%ýS f\fM~QvŧV*W0hyl|rIyTډ̚bf'nPpVؓ!D,;?kG8WZII zྏJoLJ" gc{߄߹Ǖ_w%6ֱRAJ#>- |{ #olE_3$!sv]+jRsAM2"Ebe/#XCxzQŌq4tBKMv0;PQ0*heۅQ {[T0σhx~բTPg~5ӗW0џ÷|F`׍)^Q΢S0,vř^52DYq1>s 0xV+W0W4޼"|Z³`>4 ğ eyp /(P0eezJ.{IpP0:x)]Wco^'uI7!F:3{}wCahk'v0:Tfj#M> 2 =eɀw-ۤU0_3?FXZ ^+&Y5sRJ̤ѹ =)C) d*yf `)[&3XYԑ9:BfH2k"`$]?c4AZЏwn# )/|z]w@D`kordUHb/p,LCQ<WZ`K* ߡ`2Dw|_x-Ɨwa*_A.Q#<EsI?*mnZ'LaI*%|%x^,ZGkR@H +M3N<(ƪ'J-!R>`#dm < &jCErvkV>w8r%ek.N4f)\_Tem0\ټd2ZfS Dyg^$Bʃ8"(̼*KB3?H̏9e%q]B ajx,#|zCq\Voνߨko,eΉIr>g$@|qx^!(M-P0WDHyxJ  7` [K06p T4eiṩQ1wn}F)3>!|2wB:-]h(@M`DTT#%.1|*Hu'~˵bY+Y(=RI?ATiwHv(}Dbbp-B]/9@t/"w,OCg`⮡ͽ^kܩsQ'+ ǰ$ܣ8JێԧkG_SW`x靟N)&v3zF_K2kid^ZYxckl!Y#4.Wi|L8ѻ!+‰ 7[^SS9`|;So8񛣾>񴑀1,/ߒ1H^RAkR}u7yT cJ`ySBP O>4TUP1 t .R{_R'l eetrVdca!̕3M'R >|x49ՄmYYm·*6+\;EXky$P9O+!5 ]RZkĎ{ڦĐͥmݚa|gE)CTOL]!^yrG?~R)%1<^M+_.d!m}o9:+0U/R3 7O ;TA`.*$I2k^^lr9sF FܳީkH4 K]s$[tF7*xb#W0))"|-Jeo.+`Hjxm0]I ^ Ɠ)W5 _99`(@ B8@_AL`I>sݑjy`C U~}C(.T93LF%h|! WӋ*f ;' ->w{b[Mv;ZDSfl$ 0ֱkWRx%P0y1 2cs 1ׅaq]V:u="5$QZ铊L [4_0F{̙U$Yrj?Z+$)oA6iivcRةHlM 志od=yOӒC&+FuVS,%hI`~S׬(gQKM=܈\ӻ:2O|{t*0.sv+pW0Ƣ3H7:ߦȢ $`@Q35#JoD>Q{*8 s+JnHaN͠ɣ\+dU;s$*Nv,QP0P />0"W L [KWJ`IO[i>Mljޣ{nuZDW$D;jQB:v8 #e-עg#w,OĀ]C {GgO㘻:^3k\E UcliD /w{H+9TC)bϳZVf7`5z7tPۉ 7[^O^W9tc]}܌7Xe'*gΩ7u‰׎<Cd '~2ڿ@E'HnT.#yh16D\@Ų"or:-Te[. ָ-pQ0(R>)7`iDpuXpL6_FS~SR0 plqjWY*(8~qjfJC搂BdE2m 4N|$:"Ru7r.iT{=%Q`j'M>U]d/:v/"W)Z_sM4hmԌj(xu/ܷ9h\e](22+Hxa6P¢ 4|Ί`.*eM ȯ4 upe-h\?gy%_W0##:8ك-"~4 Fѷ9d?kT0ma]֐"1RyA?iYly%YӠx2k{t U8x^cKk'5}Q0 ,bŦI>MuP +VЍ}\kZC6i|W#/b72iQDD0%Pfl$ 0ֱ$kWRxQXU`٢p[.4` Kw"{5n-ķwIW0v\Vb * :KȎ"|9WhrzgCMb׎ϷK"; J]bCg`F z_X0fPQK6=HUҟIbDʼn|.%J!d &2*a"HC~N짚;?[E_u`A$l&.U~\)%> 64v;.ՑωAԹ QP0(Kmw#J0R]r-O=w~G*X> ͈񋻆67^1w/u>Q7tǗ5*$ܣӈ[/>WE+u;iw7gJq(E̵y6{ސBKr7 v Fβ;`akYm9qxL}OO<+14B|h>8}T༩Nv݌"9ӆ+As彳Y/p)[,u%U|Ⱪ#DD-:UVr􈾢0ڜQ0lSj;vH:rqbo#I0 Ħ|Z#v6% Nl.m$Uu/(e!? gO<7:2O*$Lhch*+va(y)'HqUڝoxi4פM䙕wTmm_q╉ mM#&mE09/qzʮEıvqk̑/"}gO[P, *~SSt1pۯKQxئ-*fa'9Q0}@_ͺ0!j(`AdT8,aFia*md;oXפM \1S ϑQl>.": ;\K(,q;ZF`P|;S~?Jr%gc]*R3Z|*۟/~ EslqJR(ȏ,Æ;BhU$ڃqTD|ȡ&M"Ch6>.;UmM!A[H 26AS fa{(^*Q0\5EΠs;ri"!xe%NQoǩXS &C#}|N؊iD[Ѹ9:8ك-"~4 Fѷ9d?Q0𶰮KbkHԼд,6[MuPCS}Dquy]뎼^VȤ&MT0(.O~%GL"d961-&;: jKѳW(XS`]^mK#bb5W[fryncpЀ5<,?N=*R簮W^$]+}R18pm@7 O?nxL {Õ^slT0<*W0 A 1GD>l%CJX}42R1O^`A$l&.UWGR`IO>MlΡw3+|{ _VG>Q.Z@tRbȧR0Ty\(գO`">!H'!$1~qC8N{D\"e'ܣӈ\H+9TC)bϳ ZV`>ѻN~cakQo9qxL}OO<14 _sڱ{dVcKjAV16 ,3>P}TAkN۷-|M8HvO1R0(KȉO<6aI#jE7wyߔvO0qDzG Λ_kGxmu {D_Q7 mYYmG@"N5(-I0 Ħ|Z#v6% Nl.m$g߭+(K?_AQq 7l΀!-mWvs\ =OL7'-#~TgȨTT88߯`z|EJMJS)vP䑩v? ɜYݙƉFAQW>%ui*&L0 xnteʼnTJ ]u {D[t9#FܳީkQ]s${ c}gO[P, *,)):ץuŁ\p6%"5SZ!ͧWsvS?ⱂ3`셆Vslq"GmF*ep(s!:+sCHt<υnu3؅=Ir9LHiP-RR`^ =9[ ^ FNl!s(d1PF߈RީZVօp b mEJY^4Ln(F蠬5c3༎2%DΙ:yɽɧf ]brns5bըeaNhk t}1iQ*]qڊ\9/;EӢR1 {Y[( |g3E~yXN3R׿P`abnEIӍ4#*$S0fPQ@wm>_#Qq"`8؅ `>,gTK_C~Nh#+DiR%R0XRNO񡱩0f=wB:A/:wtբ- \v8 #e-עa|+ &)So2P,̞&=RyIlE_5wty9{*e"_*`;pN#oMdݜu*Osx͞7=~Ҵ\A9i'6,8lz?{]58.79us3f3asN+˾um[m<2:/7#Y؀tz|CCQə彳Y/p)[Guꔹ1||KȉO<6aI#lB3J5/HLj\9 M/`ئvr-ZW#I0O?Mm׍%F츧mJ \ږ '~/,|gE1ܰ9 L෥^IsQafnNZFΐQOcT/Μ*@<.W,*Xcs1g(.!4[98{AAY0RmF*ep؉\,^\LJ_:`CHt<υnu3؅3=Q0 UTb5G [9`^OIb6퉢Dx'`jEEB$2EKxɐ-+픚Q`v#'T6\΋C6eDQO(읊eEX8Bl6y5)Y^4Ln _\'q0#ws5 rJ(4k'0͂h\Y`KsM:8ك-"~4 Fѷ9d?(r/Rd2F55934-5V0Oղu6rTpYRnymoΦ?XZr<41) &GWQpK6KH0~h^$KK72t*=/W#*!ʚW0LN`"~nF:kzWZo1`츬T/$pKx"|iQQr(s@I;%G]z|$ /8Tp&/-+&V4HAc>A2msjU.O X!|`Nr$*Nv,Qoa9àV_: =0~#J S0-ĥJJw}WM9toǧa ' хVT RbȧR0Ty\(zCv|[LTޱ<}w -ln=c^ |xK/thƗ5$ܣӈ|}qk2 n:Pkl!z*-o)p5 Fβ;1$`akak9qxL}ϩO<14 3p]QX8W[m<2:/M:#Y؀tz|CCQə彳Y/p)[Gi>Oc9Ǧ";L7i{Df$77vg8N- w;^E*+9]NM=+hC ȵ[ĉ F`F8Mm׍%F츧mJ \ږ '~/,|gE1ܰ9 L෥^IsQafnNZFΐQOcT/Μ*@<.W9i5PAo릋}+M9ّ鴰SqI\,n(&B3Cog c )H(63ih{t95.{G 9h zgoI6U0\IB}"DlK8^EjCTOb$h*0lP\$CH98{2300rʯsT"˰ٱ)X"=)o=+Dc\F]7]8ۣ9̅Q+*m|\vJ4#L.gT{=%Q`j'E.r=K+/q&CSjF5R|lAۍPp9/Fv ` E=7pw*qbo/`Y ZُL\|]qJäf ]bV4P &R0o)(P,txO)f:f4|b:8ك-"~4 Fѷ9d?( KbkHԼ3д,6[@_AL"(DMq}pVg9>||W#/b724݌Q ]Npک&Io;jұ9w;!uIquy"58e9G8DD0e,eFz_Ack8vyY/" Fj }XbukxXzfu#a]ϯF IowZ铊~LJI`(N=:0H7 k~ &GWQpK6KH 4~h^$KK72t*=ɤ&m;d=SN)!ʚ^Vqy;wptx̤+C;.sv[ |!҇6^H7:vZ|xdGP$GNɣ7 +v|]iQ{*8F s+Jn1Q ⶇ95*'Zsy}h{M#HTȇ"X$=v!ߎ rA%t_z`ω@ -ĥJ@|=| _VG>+Q.Z R0Ty\2'ŢQ+w,O']C {Ggp㘻:Jv `;pN#OW'Q0N8"Z<=o{ZiuJC _\`akl9>jDzFV|n1u$)&>?7cMai6;SoaSwC'`Rsg|༩Nv݌ݳ~3g)ŠԳڎ?}vp8ЮKJkqO_۔xJѫukNS1a}͐eǜ\ږI߭5%  l{?&V:p EX~- K""b=*e ŭ1G<La܇{p9QRm?9EX'snbdb_"LWC8p=-*;N%^T0`kzWZo1`츬T%\Up֍η:sJoD^hS{*8z܊)gS6s$*Nv,Q[ʚO*Ӈ7@ (׻7:i#\V=rpxp\K!хVܺ ,G?.o_?Ai2r~leg/.&IWmm{zлV,^؝7nօ0REwVչ:S6(B3#ܙӵ S9Vھ=S-:Ke+S7y)PJ4J3lgsx{" *[k7~CnQߕK_\9'Q0 {T9No(`n0e7vkIK8q?^%&U IaH\K >;7,$_lt+ScY۾N ̑]Z Lk޹C`h+"u&*m6+kg0ݸeRPs훛V%Y$Vqstw2S+{v%/u5c#*`>ϧ`m^AhiZ]b p9oPe+ N տ&1S /ޘ˟g()eKH._^lϑƴ`%R,δOt+!H+^ algfujt ]E.JOrXFCxX{T{y7ڜbtbs*4=+T X[Ιw! Fhi\XZZt̅9 xsPY2TMlm"du{@,jlyv7C@D7}pp6۝M`ֻ:76 ry(wpt-obtMolP9ɊfɻZ 7q5F ȵ[DBL\u⯱RR($nk1IWCF)''T324&~ K8yi#2,'C I7m5݅m^ٸ+/ĪfwǍdagX|_7r ] tN(s  #{'sJJ ZK)6iG2D)_Zln]GD,Ew$ ʅCjM $4lTk$Rhgw XWm0bdrsc3,THeP|ҵ/(Z2ޕqФXE&ήsZзjjJ֘#԰\_?Q8Oc('(1~q~Y9fKH`K2Q *.\:9]N5,89Ops~gI$mޱ$LflarƲuNjݽvtH )f&FP0X~ 7Ma6pRb)n1x?=drQ{Qwƨ㑉G`y▣0`yh;j7OS@7cCi`Q`sҵ3`/]ǔz&)u(F]̱zClh&Q\ F`^Xda`#TmQh4)ZCN fa{($p޿RKB? W$bW_/d/zݟ'8>_JX?>!'ձ~bqV~ocPKk8۝ٲ)&v:]} ťV>PlnZ#]K4j_i}v`P'$v;$BR=ge`{kќv]}K+3ݤ7;EV0ɣR5Hwfw/)7O" j/ӻP1+nfswgk}܋"{ElZZ_O \}wi~NǰHqY-C s閭3ygoec;`hl-b1t`@Lܲ8{'X`8但 (W0W`@@6H*YP0߬GRSQl SDS+;7o(;goY ! S_VEFԹ hY@z9Џ^2Ok|oŶ;Ƒ_Q4$kw?֮eGP0_B|'_ H'<0~qXsQ'`>liD2p_4}GQ{_ e)̗}?5 n:/V4TU>{A7J~}X57+˾/W[m<"bSdwޔvO0qM̍VQwCCsMȎ樯OW.'СTdcݜL;J\"ٹ^<ǼqHD]'僞dge7(6+\;E H02֑5H~=75cֈM<'k2J'Bva()Gp6ϬWnktL:EPύζ̾8J)W0#}un=!B}QvFa* L8-ujxDƭ$GW50>fȢn7KWQI c}츹-Ծ[sWT.š㤹L<1ݜQ!~sqRi3J<2n`Ɠ||aO₸gSeאh R5H`邩eg{aN ;U'o+ [.0={ڂdNK5uui]1V Ad,a%bWs䷿ (D8yIaI#L[TFqI{?(E];].K><0jI0a9FR3蛄qE; 󃡻fPt5ē{Ʒ* бdJaXd)+ (]7],nO{@)1ʟ &oܗ~ϭ]IgPLk\r()Δ@`zP0Dg! N')ƺ^$TM?U)"#ț\Cw#1*m|\vb%` ~~*xγM MUdM=ĩ銲 \巽kk|f4QWia* LBɔRa%dz97~MjIqE9 Q0t 5SZ!ͧW5(\ C'oq T'>w[uP0F)X"I@3qЯ`2.}'ԓ#zJ,lO%`ȯη8E6GUy%_W҄<$2EKxɐdS^o7rBSA)OP,tx#(R0l[_tũhM/JФ\Sk\#]ZurqE= 1}O5`f\34M9Z=\΋CH+Y0UN 9iT2}W0"Ly7U<2edJR:GGy7-"là=}dQ`]^m>?*;/"5_*K72t*π5<,SϬł űkO*n $k~JħApJ螩_ǫH4Ń5Wv-A$}7z"IRެ ɋuaFr_h<] s;!0UMiL`PtMLVt{rynbpຐa]ϯF I|:ibPg5.wz+(%%>~h^߸/$(}wuܭe3Reu.̧@X}o1& 8@ME9jz@d]j,}WE9?}O +v|]iQ{*8@|nEIӍo)n{S3ry /Z;.CL{?1bDʼn|.%J`> RjW1 __PEK>wx?C `@ J)aNJ}:޻=Wy׻7:_h'"êW돷m+YnܯDxW!FԹ P0`s%8Ⱦ\_~?^?/BKO9H29Ma} QHjU/?ٿ=_:bI$N+K4sx{" *[k7H={uҌ> ?Xv#;x-n/m&ݟHGA_boPDoB||.!ms^A#4.WiʯP0`yR-;XouR$5FG7R0 _RQ|;S~yDˏᦩbc1NJ 7-Ƒ/L΋ʘ|55q<21~0, o/4w7Λٙt9kk@4{|U$?{m- gfsTqs+0Uz{,/`t 4y{pq}cۻsp^%4Ja.R=Q(œEzJ- ?7X\_}I俐wऒjo))#`FP fzlٙrk: ^Xjy5j^ (XPؿ3`Ӆ~Y5Ns阥m]U ^gw=nzj_GV0ֱ͹j/b"*MULwTS훫d/oem7Xy_n^JJTSοZt#7A@pDwzW**M&IN|4\uouʹ1G<;Ra1|#G4&d[Ҟ*1׼n=Kٞbq북e*9$)b[ iZ?V 9ay. 6(Lf~0e[jـz&&ٚh6G`Xyhk&]9פXu֐Z(_`G>Bf=P0גb}FV$ ?S_~;^-|]ғ^;n#ۿ)N]>?:ݘv6F;w4,T6‰3ҥ'Frjxg՜d` S>Md*ݡ3 qo WJ_i(\\wSǗ!Q˫򞥂Sb6D`ד;f |ocإiAToɑhyl<9++db>|>"[ `0 I]nVdJz|̱` co KscBHzj')օ)pkEWaa߲BGI6EP0z<kAI]]I!:}89D@K.wx"g-+ 8L/_ O2<8@ "a4q賵`ҧ#[fΟZw()*$|"7Us癕g[Q.Z P0aKmw#J0R]r-oND:zZ=+]C {GָS99NG?bԆK*liDsIp^|A.3tN.1׊yC &FhiZ]©9(KMÈ{! 7[^SS9.)19O[o Kx9;uݯȜuuTNڊRsg|༉Qw3Gӗ\/c^ 8`/Nj)LLJO>4TU>{Aףu%sⱩƾazVV۱ +n'!A`SŧЮKJkqO_۔R08񳹴-T [s5Y_?_AQ ))M|t$l{?AGڍbd`-YI3z_(7O ;8hU#YT5$.n9@\z)0={ڂdq?77))"|-~]ZWBNi,7Cŧs( A:yĢ8Y{@Ɏ+M9 ]qiTd'!C#ul/Uia*mdoXS0XZwÍFHw/  W;m8W)-Sɢ/~RJNEI/A(Uq ljYIOZ k`=|9S\鏡{,.b6U$ъDѶ9*罞(m05 E`£FYy_tn/D,Sĉ iвNȉeQ^o7rBe9rN P6y5);xIޡ(EF&7` ([fA,/Tf="G`d}M&@D@ƭu][CLH5KfZfQNN8@_AL;4mI;~C+4 "PTPSTgvp^n^;$'+L*vHc<{:+/vIx"&N4T6'Ȭݳ'G\8홾Xä:qfۄItuJrCE\P\]ںM ~L(Xzwt/c#9i2:rƚW=ν6Z+PrY$ƀݶI>coSzK2)ʠ ,N}}H^aR5,V2R(R0NM/A5t!bU<]<<> 0[%XiC@DIPFy*'?),@P:1(_vce7N/u C; ʀY 1yP0W`559 F]E :7J&ԋ,o/N/Ƈ`X8juDʫ/*16̏U)\?,9\ R-UwQ_ĩu'}CEfN\KqF-eU|?[?eI5u ިKmXac *Ew6DDaWo4e~ʼnJ%BJ䪗8!thmI6ɧg$&5Wy;d+Sx'뾋+UO}EQ]/O!L@|j}4JTۧ_;Ay.2cb.woXD&q<).R28wklʒHZ.h [W$iiXޙ)Mw. #CK?H-D'jo9>`'f %>p/LpR|++࠱!6UY%EH M#e vxM#T%gIZ8 Et>h?t m&Lw-ۗڧ`&=][4;3C(H3J? 4]">ots 9Z\]A-iD"F1sl+*lfix#`>(Fó 4*/T1[%T=WM2ϟ=U=ǹmŚq?YC\8P,b[N}*`. Q=QCN.Wu746瓭{L=#N*դBj?!trKSDˇ T0ŕ 87~W׸nSe \gb ͈"ӽHYk~^a9hCHʁ_[gNM/dq*%H߁#B%=Hrƕ* c@w͟(ٚ q&ӡur]}x@ENG$H11WpX[u}Ng^@S7}D{[Tȋc}D{xƐj\bLcj<X9]:k&s 0 >u`zБ'h .y.i?'s>[w>a7|Emy-5#W0lN,8e`~bt8(K|OsS+8cXؚW08ґ_R-UwQkqj_BuߢfFP#bWigMޟOYN6`W*|8k'Ojp6e x)7+NS*2JԕK8x.aTT\n}0gxQ{E:\sLظ=eN5 &HAN'R25}_QT}W˶S0d|>S(@~y`ʃ?0NR's2}6NRH'6$+QK|^4L-dl0j#9c^+N >`w!j1 NT=WM2#v&}ksA$fPu)NnKxޙϞ{ʪqܶgb r@Go&ѩa +pn%r1V@quk6U&|P0kP}HFʂWFGX ϹFkeEW9ԜDZ#ۖ5#- ;(EXEbtk=ML)DH`A`1ϟE V0dNMVҗ~9h@BAiyۻxx|`J=6۱҆r3 +UN~*4)'gYٍKN3D92`BL^5U0L̚Uњn&I/Ƈ`X86@ &l!/MJ`IW=M##S\Ye 2r> t'p ʒSf"Z ^h/qAFW`B<5⮵@bHc_9<<>Z)Uǹe /pw"I!thGx׼ΫW0<#(Xrss*U@v0OߺV~g q6,N3nh>>Ǯh OTCKkuujߓϼЖ؞2,Ն8)mhCT ^']']4<7Yw6ɰ{S.9"`(oN~F`ځU@q0\:J*zD <(QK_mOrj k_z1^E_/:eGxS03H|3" veH<#MW=mǟ5,̔&dÑ}etL,"Tflj7L fT3҉ Jizg}_Y]Q],"3Oƙ$J<3iZH(ru^ē6_ 2Gx6df#i'S7?fUOn:/l-rKZnqߺ풦>9M$b l>?y&ټi۪ov}9Sq|(j4*6CdӨ$͎|zOY#xL_V1 D^5ޓHhIC>ѨC\8 PNWgpl~R<41m$kT~dsu${X\]ںM /p 5>x78Lb$#eA#wxjyk2"u+~EjN"m˚ё NM/ygpuhy lXFg8Ί8R7Y$i V0t8" bUwjX8>:Kd~s|^>L,AX-έ\nmOO.n.uW.G *ɒ4.,1Է페((݄:=2sdždtmbWu=s+U%9Gv0^hteskǵ{EȳCѢޢurxޓ*\Ҍ3 i 'giwlJxow/ukLΪO8wb7ɞJ۹=ںT +%`.tqS9&UY/ %Y&9 NUg \CCӖ- [=#^$9a$[2twkyGŎ=5 ?tT ;-lGy U0C 85orK^J//} fLI$ o_SՋΩwSQF$Mo'"g#R}g.AF~0{iÅ%nbERe)>[I ԈW[i רUFę&Ϻf 9?%S5>jHJWL^6T%LeqcGR3-K3"QY($CLCO]Tnod"w",A` 1#wTZ nqbxqF1Ǧwk؞SEY}ۻwՃ'{;>ZlV̈́Hͭn=!F{OiBQY᳝^CA?#W;]K =].pϘc`ZZE5kˋS?"<u\Դ;' xۊs<ӵ>hXudwbJFY'u3mOyupo];>:q{@\˿'~c1sALL w>(Ɗ|4 Op@\.d;wԞCdt拿SX" fEbj:G{BO /On'+{#l2;G;J_ s.׳=kk}L剖Fu;i88|E b56&zʑf_Sc_i&<^?yzJ im0ЅR0h6LT7 8 zvIfܞ]^]\RnӈKRMǗ ln?*?uD٥ uEZz'SI?Fvj!?̿=eyUǟ|\ºR +&uneb2tBAF.W[WVCb 1 腞Ekh8 6Zut!\A~l{ZQ7D+vΘUNH|=jbg͐Y:۫K6\7ib=)odc[(Yt%*/,lJĆOI=_32Q^M:Z{lupmT$#W`œzԮ/[hy?;d^}o>L4x׿=N-۟~¿ رg`?(!.A ׇ єWef`&V5uH&d8i&<ͳk65^܁Scr.֧DOZ15U1h}MI=t66[Pڽ=`}e|?C\S0g(yH8wb0=ٳW7՘hRŜJ('C).]cCu;n"ȟ>{m(LJ SO-{-L`_¾{֥LֈA&b U+D!)k_ݷ3ߦS 廉TIrOQ7qq[IZtlKAJ} #CoIBmX bd 3ISȠ<ճ#R}g.AFNۖ\ys~++w66F-δC5t_]83T0HŅ9`#ٛH$./Y<"1YC&\rh'%:)['(E`?:)?WF`h`w^K#596%H_#u҆1sDh,Rsup|5X΢[hWbDeuSk;Gvz YMCӢw/v4Q<83 FT;{|4m1Bu̯>۰7B0zvjwV{]HR.'0m?/շ;[yq^=XR]Hvsʊdl+-򠊻?Aw$)?AsѼS(~{.[=c=ŕjǕ5SuIʉS:] QI:ԣf?ySLQ'g>p89L7QH**Q@`~ce P07Q B6_.d4p dy'$ ۼ7}~|UNh5rrFŕ5IMkmQ猥-;Þ .rfM"thGx6\YC<^L"Sqk3(p;OߺV@Ь =톜`8͸qyqmqS}| )+!N{ڡ8AY#A!gs%&׼LSV:rm#s^Oq) Yf= mlV۫k((vz' 6d9 G&N5 &x&` W:'W%5ѯ`p'#N|18(KTiEQ- ^*6<^aA|(l&T"Uນ|0gxQKJF`ᚫ`ƕ)s(P6 ?^z+ D GxvgR⤺ T蓥E5, "[Šu~ҽARKE$S1%}%Cnk Ls'%ezv$VQnaU7tC[2e&K9(vx+P0+00_<]*kiJ"H7뼙VW~SWX!V٠v)‰\RX,!E`e ڒ`K.{Eb6坙Dx+P0dh{><$Yq<'g$Ռt<`ARYE&,.9M$b l>?y&ټi۪ov}9Sq|ިF^dӨ$~|Z?{O)zs۞5+l-Y G8qRdJ I?L|x0NX\I΀ss(k\[ys/(rC[!E{1ё;<5sZwǕx"5'eHi{w"!22! C_2x{k3NרQiJ0JԕKMx.a)(Fr<.nj$[$bu*oSƑM䌴Jk\ٞ2'ܜ] ?^z+ |~| Ƴ;2;z}T5, "[Šu~|GRIe/q ϔ_ y-P29(;EQ,ӳ%"wC NP 1#P0XF˚kb>mZҾ_*civ!Vpc G`/훔4%vlja ulOydtYſec,J]/( [W$%4]sY:ְ3So) s/R*Tflj7L fT3҉ Jizg}_/3"K'kS^Rr7gͤeRL*_q~uhS2y4?&]Tn:$qUœ [K!R`Qx_K4nL/<<&@gd m2?Y'^H~?OŭygQ -MF;J1~aQ?{O)zs۞5(4tWu746V#SamC=JJ1t^e1)ꤟP&Z>MD~ЏlTs01\]ںM #*>kP}n[HFʂ2FGX ϹFkeEW9ԜDn[^֌$[XpPSVRʈJC[侶Q0IW㏁HLQJOF Q*Ǥ3ԶX>>mUx]bO|bv\xS|+UN~*4)`e7N/u C; ʀY Z Yih[~@Bi|`(̎SH(@\3|yl$V K򝣉Nnpy!P/g t#=r,tDf\ngB~8$ԣaWf>rF4RW'Ù\9#j2]kes{dhkH=~`:N#h`!4NjH~A$s(u:$px`̵y^[fP0 Gi;`qq'OXMH=vGODgЧrF?X@s_p6O 9e'szSS3l}慶Da3'vjRѤ~&xx5.gπ)Hϑ-s|L·(vz'.3`8b6qj#LP??M]:'W%5ѯ`p'#N|18(KTiEQ/T.JT'qIM)Mvä'hhWu3'a^8^F[QrKwɼґk˜r/hznaQZ߉ywRtŦy/[dkXuߢfFP# 3̎ᚫR`i+Sx+UO}EQ]//Oxvg@fGo>YY^"_ \^g|/)ET HgJ/J<("SXqGUQhS!(ZBA.֟X\#`rEqE`2똼{_= ڒ(,e5Y GHõP q`8|o)!d#U XHc{3%å,E`xP"} fwkgCE?a-/*tܪg N5Aڒ`K.{Eb6坙DxOpdh{<<$Yq<'g$Ռt<`ARY%\DcwIDumKTμKZM,t ƭ6Bg9o{"Pwe"_MM_O(-&LS 7$9͡D. HRqmݦʄ  5>x-Lb$#eA{#wxjyk2"u+~EjN"c-/kFGOoANM?_,[9J) [ĉA% vIECfId{UM?>gpuhA,,U) }9 ק oQ*nJʅ 1̷K̎RB2^ VvR0 "Q 0z(UњFjD/Ƈ`X8 5S0͗Ǧ Ok`$+imlYe 2r> (p3 ʒSf"Z ^h/q ]o`BgTnw͟fRƖGuD7("E8RB:9޹;3ENG$I11Wp]u}N\^,S 7}D{[Tȋc}D{xW~!gs%ӥ|ᄑf0נ* jJ6N=HhCB}?!NKD|Z.u+?TԔJo#UÿW> I?GCdyƧxC~tvÉ7B[jbG`ځXpH:b6qjh& .VQW%5ѯ`p'#ۭ ZqR{V?d9qנeVkd?_-Y U:%:x|rKQT]qj_ 53G AC N|*e!^*6{k3Nר:\sLظ=eN HA~0R2g}_QT}W d~>SB veH Ӱ3S/pC GW~Љ\ʳH0NR's2}6NRH'[HVJ;룖x~4xfl0gbvk|AbSLxul06w1'EY<]ISBO@ Ojr_{U̮ f<zDa戼G|cVצ*˽HAE|Z?5#r.j1 Fĩ4 Mi"#ݘ^`͋M6HVe6~~NΑ9F½B3MF;J8u&Nw|-e`…|(; N>6Mi?~0F?.9oH' u\&v+(N 1ۻ`.Gf'G\8홾XNs -&LS 7$9͡D. Oqmݦʄ7 1 C{E{1Ź ё;<5sZwǕx"5'eHryϏn#Q)-0av74*[:ou49ҒDK ;(EXc(v? < l]ީ[CbQDSN(O[SU2ݎ6 op̷K+RB[ء kT@㌇U _:o,NahD^0KaP0 Y*Zo'x0*/Dy "X0;N!`B`),&I3ua~ ,  0ѴqoIENDB`magit-todos-1.7/screenshots/emacs-grouped-by-path.png0000644000175000017500000015720114472442451022622 0ustar dogslegdogslegPNG  IHDRYsBITO pHYs+$IDATx_gg3=[L̙~{{{f9>}:7zEFQ(h@"(} ְ,YT$ ߪ$;.7zUuUUIu}~W>/~]a1% j[u/Zz'cZ<4N qdo`fc(U9۽yљ"MMvR[="K^_={pwB@s75Å'b0=}ߩC,>ޥ޷GU{J4mQqF]셗btϧRTM>N~ʰ]%1y+͋b? 0f3ZM)g<'3[5zu;q7{"Lbm*":CBh>v*|s 8|6+39ꩦ8|l8B86p{w{DmHX FY9`0X2Q2Zydj'0aY]#އӪ\7v/$T1an4yMc"Oo0ώk/a@^AyxÕqꃠA4Nߝ bx9ӏ׊4XZ0CJ~QY#˚>GoB^GH9]@u fD릷6EkyˍU j=rI8Fou9ϠLÅeG[LP`х8?#+׹7C!tV(Gh};ڷBߪQ.G`S9n"-<>ujcS yʴ];ϝ)*E:u;eeKaW'|Ky%T(,v Ђ[I6VQEd`了oAUr6dAaix%7Q?kk_;؝}0 o&ճsYxnhi0H=OCG({/`0UȢ+~>bF&# 424YrYӁ m-7[dž SAF5ۿ?γ$-n02;q0RY[Xt5F;;V* |i7ZbJukC6W͝&^8ժ6v9`Zx&_ۧTAdn̶ݩ߭*I$މyا+Ӌ݇8knc޷[mMMYՊm" ͛&[[lP>x } d}o[^+pw[ :ַd >za`=OLm18`yN? GG;-Dɉcw!ۿ_:jt?EF= 3Q: `~ht3j08G !g?23]2n:%TK aiDhV?K'×\򊩟\t7fXoR^y]wliw3hyxw-)`hOɽݩ8j)e`h>朴r~|=( >|)jI -6MK9ʪ PbEɓ99O07Dm~}@$ؙK}w1$H3e(hG_ެ0IudB|/U̬]Kv߅sc|m$|ߛs0L˻!f06u-h *lܪr[['ϭxљ1at6{\K=uPbx9w^8qzz љrQ3wn8lR.0g.M[3𽇂ݮGQoV0Y|p-Nф-Jћ'Ϝ(ft1iUrn0|Kg~da%iREz^ [l ^ <`xͩϓ&'g4N/i=BK#|OJb!` ]|&Wv) wb_y.ݎYz|ƨ>`0.ޗc gf0&iOˣeWμ_W޽KSJ=|`Mb\ 0gg0ce7y :lb WKOPS<# *C   cb-6~Ȓ5t}-gۿK*g0ǁ '<ӣ'2̰njNtwv?.'+B`CMBʇ,ivӴ^͋.U~I(Ȱ7[WԵ3cM}֟f:]mwrJ?[V`CB~7G ]e0;w{dhT beɊu1?yV`Z+En}5\O0e=5#ZS˹j0:yϽˑ,\"K^_={pwB`QʣN~ͶhG;Po]LPt.kQg :~_>ڞmyzna9w2by3TƆ,?{ Y!aiJ.N=~v2ArQDhnhpz^`z8KPps=. >}"94}w>0uoNֱؕVV80c}]oNi3̶eG_%{S+Ņ8BPÊݻ5c}3ENf֠~agn]cCh Oۿ`zSXh7}|,Bƥ޷GU{J4mv&As>{X2lJT~o?g7/{`M4 `HlSe2-w:":Cq=/*|s 8|6+39ꩦ8|l8?bcTf4l+;=TMLZOk5Qe`0y ̮iԄDc?Z[ޏ̴dN{vXgR{]zt>=L:ť fv}Z}Yt/1O{=% nU;9ؕi;G*E:u;eeKaW'|KmN6yl$H6$$-6J,O6`9!^ =s[>.яEe,`w[ ,hdzw V,Pؿgwc> `މDRț8>248/0߱dֱsG?s $T>I܀D碙t}0RԳ$r¢ 5,*W&j]0=u8}B܍M>qQag<İ%tw[ }qXl33Z-pPj`*.lIr<=mIw`=]p@&m3΍y%A'#ONm>%HFbVveD^l{翓fQ$K#OD=rA]r.0\>6NM}7.ʟo~½?a0ӭi?2.Ns,NM6=.~2psL& qC gOVAl}kEwU!q#hhw[ :gݨ^X7u5S[ n#?1i^O%}z>5|\m0>e8ٝ1#y  #Jòt~xnB# 258q0t.p/?JU;VBQw 1G΍XVcgu䘥"iz3 23SmG1bI}rRߓK^1`F MJ NOy]Qb#Gˮzy7g4Kqy7!UasIO c gf0#fwv >_: _$e7y :lb /).igr||fU1xhvo>WGȸL/jO?AM,` p  E/oiME\Ljjn1HӦGSŵ^Z[-m՟&B%;6^;+*@n/6uZ/d˨h2ʛ{ {Jؑ߯S+OvEzr}#*'p0tqY-kgϸ zS3ʿyu#hVl_g_)41Đd兡G5/;D_vڂ"im/J5x]k;٠߈Fneáڹ)|Eӹ`ؚ[4i(c>O ,-v(Vt341 -JQy?¼َD3u1A)B.i!3ϊnM_m?+}rGWW4:Iw7ğ'a_bX4&?'k"y^P^j֍Ҩ^տW,㺪#3݄?v`Խށ"|zlPv#x»?g[n!iUuL^jd}]i0t C"K$*zrijd]Y{(G$5}X|r>ߵ )M_Qޡ'Գ (a\zw?QrLjxY ?j'OJ&n,za/M,+=ʮRv c.e3k(oTFb5mՇgPY FY->ۣ{ f#k mxndiAW*RNO#n۔ZSpI|KqG_tA2MCifߔH܍f4ܶGFG/(KYyY%T&e<^dE-hfN6壇4#6’ŵxcɉq{`h֫,4}1G.NэJZvڿ6 SN3wܒnhOSXTtE&i /:ti?+usg$+hwoW l}-$"ozCTW >DdeEbU`qYIqSk|S ah`uk_+atGصCӺ`H]4i􄊃j0\.7N77ښs`h`;c H߉k^bHmE)M}61|(YE:36e^^U,lZڶz_aQ]_?n7ESYfv'`N/ ާq0( I#wqoR-ZEb4b55}QJl}0Dx}wTbĒz+_X$nlH0G ͫJ@I() ?T-h8WG7p%tQ=Jj5rE8%50*jk1۔"FXYU^4 v+Z1t-Lo3ΥQ$ڄ\7O39Q~;#yzyӿ(NYaV7a~72Ҩ? |dɻ?"= "j1ޤ3묥 zP;q%6+ZŐҎGRDnw<~#MY]1X C檷yie}2iAr3FQ؛///3^ԟ2nR bv N,n g]}Y 6D뵰P9I'S,chU3jLB|reŜN `n:uadsE   000````  =ٷtʋq\=u[CsTW P|*|V+ 9\ hΊ .֮Tp&3md5Gzr}#*'pxX S8L{cY,!fщt FaMn%e2ŊYY"=,ϸjܨ cWFL{'<\Mmo,]$w7Ow'p m)mlnϠ7Ziq:dӬUA5ve\ Uo>TYJ`n ?[?ySoIwA\\wuow`ݲ}Ix3| İ7vcR4דgByEXjtҰS"o37)2cgxѥl_0.ϓRP@O28uwsH?M\&)hMxk#c-o" 'ʬNgN l`LӝNL ίi͌jhA%<c==hl15i0) ;ц3b0/fha&ٰȓd{܀Lg47lf QvY!ds+G_C[ z`k)% t-agVNIGywA^Z\׋1<Ȼ5BI,ӼVؐ<5d0})6 ^n]' +T@ Ǜy,~M;Yߕc]6 Н<):+3TB8 }0ŗ ` c1] {]\ `l+&y_`7fNmln0i?{r@kꂤà jF[oúJ>[ST̹.#j44Ѥ%sWz{ J )iJ*=OBЃtfx  O g= .H#hSy@>< {ړ <"_Mgm/lt#|-UN*uel*,ykCŗ.& k ۣ[pl"eLD'@Lwy#Y>wj kLk0Dg0&wzAAa1Nl fXbXC lYAřAEKPcC=gӬt/U/ 1a:hEdk&jL\zc. 0:OZ4!Q[`sOR.IqrVj*]9#K(y$H槽nHVY&8JIXJ()w5}/=K/C޲X L* +a@/xLHE6eg?yޅzѧw-:hcJ4^ ?KG#!sy7^{&DE\/K,+tj`e^I5dOJ{ۥ/< 3by~^+S/cOy'Eј`"qugŸ(ܸ\?:uTpEn@e-:pEAs9&|nc%~*[: ƂuW}s9&|vCWFV`o]}y m1@Nxrq?7csIMZ}&1<|KUP!D_ѭcYiYlsdsXhz/`m\iI0j˜דJIE%W{,vH'+Rf@w=RU" x\-3=/ Cfqg4I R%)]t"0/^{vNya< U_QyG_ -j\-SֲǾdVfm}$t{n߽DbC>A <[\RWt7.>$+ ѳ́%|qKљejb̐!AoX V~EIQI'C{107c©P 8֛:h^o\U{r51MV/_a0 TҢhNdI*\1Usڗ7ꢢ:r$Il1pXEKAHpN i~='k>,ƱƖӬ'XYЙ0Y.:x2Y/t3B}rFyH " GwO1cռxFx OB=}/c`NAŸT'|1M\8D pQч4 &x=Zv' :z1Ͼ~=E~Mf7\z1.O= =VZ4} En`0f05+Mg5-1ZM'22iI{u. Lq=/%gm0S@^dy&(@,OBڝh^7e"0Nc0NJZ#졶 Ӆt} Qvb0z?-<Ķ{[5j\ʬ䣞d1gs+&L;S|IM/}n0ێ,~列 G=4Hw>gb0`0`0`0   `0`0`0U   f <"d:3|6l.BAs'_V$bkUrǫ{!Ne5S?`fN"u)c/`>S=y-3m 6dAo ĻuTLӬUZ;-0z#'_YJ3N[ReKʪ%K+f >cJ䤢ĻT_Q*V162 ¯rwE7Ƥ>F0rU,ҁj-WB^j0Ec+}_sepU'rͺɻ9&.cFSoy^OY9Ϝ2ӗ ws$fy˟IAmOi  f'HWVe8C1i1M/SnV!`k=_kEd"Ž!lnP#'yrț2u)+B$]uahɫbd*o܎4)d 6DQxb`dRsI AFT3o %c$FUZ LFXy3fK+(B wy!5`4)bW 'ՌSu7Lo0FT@h9/vIi3q:eà RVbBiҒB*PbΩ4fZ`h*4-R}0S``O0$Z1s  H^1_@ȉL25uc-h&/+Ț6%IXH:Arq8P>t4-vSLju=KOo OvJ>iOFGSY0ؽ׮r 89a5Ru+gd % `Xe([u8:ESYUKfk~x.]E)165#މ 3:32uc|x emG82MQ\DH    0`#3q2CB0<h]EuĪZ"Iɨݓ5o}@\_`m%w|N q_2cL,Uv^ꢦdۊgF"ӬӞyqybU#xPgy;w;ݝ4mbwUCj F6Iqݞ%< fPks,jQsf\\nK"@,8]ɝFzR4ג{N ehKe Y>_n f]PLu vCL~WMH|qcIm:EٺjgFY7ѕD0d.#P^2Z,ta r]6݆2*Vf486Uقi7ѼTRzŕ,.#Y$9/`̓MT˹%̸OҐ3/`0@j\]I%I! &ц3A0Di&i]KٷGՌ+k-ֲfrA\XmJO|}0a$b4Ou &C}_ʧ],U?28=|}0XN#YNB%9:j܈Xn`לkЫW]8ֺY\FR_ |q0/E!vkyܴ}:aI vc洋^s_EZ0pF\:woޜcQMKx"27:q)ڒܚ܊.ȀM]09ٝo1JXz67w,.#Y$9`jƌf SYiknVh+oX7~Lʮ0@U12g8ܞ\4O6ΈɹBwa faw?*xl Vs_`|C\pC;,QN*f=fܝra0|Xy vC,U?28=|w`*Zf>@G a2:Px0 ݟ=^9Q`uQyW`oIH3G4Pq08\w'OC |%#|-UN*ue}0(" `":`&5:s}%_RѧWjwd0 C%xw)/:Ls^nP͢m.R홂xr{On< 6D-, _(R& W#~g5-y$H槽nqa03 #P7Ƈ;3?ݛ7g8iүn:G.Pӳ_\ փvK |=3|kVxV|j\i;GY\( %D   `0>xGd| !IIU! 0k`> }Ɍ-̖Xj Zؘq#=U-0wd6Gð7.]u0cXhO`61⻪U0q`>h#GU}bуVύcSW; ۬2c ^7l$;?Ԫ[Ҳ[_+}H{HfI[K-ʿՅkl]#8^FO:Gw@y` 6-rPɘW02Q5w47rYY> _dl.#5u/ۖ@`*8b(&|oSoyD(r8!9`k6w5ktQ1Ljo= ;V,.#Y$k0Jj} 6AZeBOJ7]Uckɤ= c:QI\h/)҉ɍWz?Wc*#R,Z$I=]!`+]<=rz 6vSáYd|,Ͷ1՗ɟQD} :X.#KT郩kI` i~޸Oߗh+n9|}0\5Gj74Q)G&-˸ڿ63Ȃܨn-ޒp6&gi`bW699ayK);ed!8*`":pq0 CTLwy#Y>wj kB/ C%>X?E5B⡚E\3F7JT1 FR2kk+c禃$ |+ Gbd~\$唘sO.j28jÙJK׹{1MUʐx"<=tM3lw)P!<6cK |zx`fǑIJ iY3Vr 6 }Ɍ-x]QM_kG3s3ז3 r]*8 `0`4④쪈NžU]q➰Dȼ|'VHw x6Nj']B w``AʼnwUxfXU 6.=`W_'b8^FOmvyDjJ2(N4SҒ'3c:+Oe:LkF747rYY> `0[}B=ep7&S8S"o37HSiLi  TVrRJ2+S &nۘ0r[(9:%xeU23em ʲd `0Q BOiF0dR)E(ͤ wm8x(+GZzrJ˻,{R`WEvzbt `0y Ag0:Xu\T*î2#>Ty^>~_QuTdqI}(]\oThQńuJc6i0o`4i\Bpqds_EZ3kL67g-ΰf {[v\w'OC lQ]pI邺:$,ekNK`l}}\Aִ^EѽKWh?+?;;`Ƅ  e#)5 v 6D-, `0tI䬆=R%[$Z2^i.U Q%gW*].U\͛Y^tf,5P/S۶+7~x/Uz0Izt/qr .Vm5ސE=HH"3z= z%\t5>5mbys!$ds|2G%5 cW|L0}`ޣ45(+kf0`S Fl,ݶqa-ܧۻg',bp# =G`3ӆU16wӅ,$kMJ0z$͎a#\FG03Z0 9RC.G7UƉٺރlnxZaȢ"c:P&zTkɢf|]} vkԌZƾ vGjk\w'OC nYnB:s}%_Rѧ.N]`WG1.{ yqN禃$ RvN%,ƍq:kR:<,p7oNFǪ* QG -837qR%`0?=Y_gls5yqTs+{B`0,WdΕPB |.CULg ƀdp=SYy*;VQ uOfw{yW(՝;H荫aV(Y7rKa=/iĈV mRGeh#GUEZ=7N6y*nIeo@ybJET_{M"J!}>}Ҍ+ <5A'csCZ 0rvXYjn`O5`j:P6jj` 6!Kqz{:!C^eULtLgi͛47rYY _MijPf*0LsTgByEXjtr`HɈg֒"aAݶ%qy NWf}0h~g?_GŸhjo c,bpW5%P 6D;<s_&%Vu2jUGQIZEZ˚ X[`F=9p=wYڐjKWxzx8k6yk 4>R>|FY 9%r+ms zՆ镒p6#[& i#>䯹Sl%TJ@/`c%"ָ6[aL<ϯe3>3SO1*-I ahǮ9[E6ɐ5$r=5 #99ayGtwR 4i0FsO))܀W%|Y܄ju=KOyO{2$=G4=]3vMp59R<Ƹ0.:Į+nX|ן Js^nPx+-PJR|2x6 6%:4C6h*bR;p  nufuH13VoEIװ >39QʲYQ]VjG{0Yi#L/}`.j_0_ [a'7{E̫({HLx^ڷ&_(z51YL;u[6CJLuQ_{o/:L% fLk[L3e͢C!aFs/'saZ+>w[k8D{#W6Tn=i!/^Y}Wۊk԰kn<mjR^,}!.ԽށY7 F{4:w™;K X07ghEZfr}CU>slX I94FBΫ3MQr•&JN rR†?t҆WF (`js}E/I-wrz/hHO&n]}mLfo`>l^$"j ]bY1S,$̎jy?m00`~j[CsTW ` 8߾]ro;"Q:ϻhN ?Wh\MWA ?kosYaSċ \߈ 1mxkč/흫8k/^oU]k'>wkVK+m8U>La0.Y[T4Kmz-L7t̠,C`0 [ŕeL U|m&*UI . 9%R?E:2v*>ptxh`,gy)kHe ]z\K̨v9`N<|Nyzrji hA%<|ڼEJ1\^koa*.~?/Ulɿ^-_Oq0 z.8Zc”=j8fO JE4_)ÍazwITokϋ-TWO;xj\ISQFi߯udeENJa[+c1̘yx f 5uv_K7vTe㘨7>0z4` [ txHO?)ͪMkjk H?S(ƚ 5?N5M./O E8%2WheؘG5bnWMGBřAEKV&¿bˌX*nuȶBw7'%{_Y*.)ze;nD ^m#oO ;A-sÄ#Ŵz/h`M ?O1%]E!0`0ф(veŜN f `0Ǹ400`~j[CsTX".&/`Φl^5ΤNqśa Yp^'? U@WzJ>F=c [w7\;+*x=Tp&3mđ@ͼx]Эg^^q7 Kkr<[T/|,S#7$ғQ9ÃL4. T EՙПO^NQֽRs"0pO'o5cuAI@tU/غB_O?6vڏY0.19jYTza0mU\)bQ/ʠDŒ^Ohs=Rc&͏tFщt F`t7֡߃r{4+GSzpu_܉Fb*O;b&1xa=|so%}&HhJ^α9&.iHu <К?TZwCS F1@GtxsbFRJ쬫tӥlfTpe0"CWk%ubi~hJzık9R<|.'.X*qYJ}VY->ۣg >o9~@9qsĿ"]^ӆ6t[濉fq'lơ&V cW<^`ԃO7N?r6cՙb%BndLhe]ǖq_|61<)FS-![g|8n4,$-2ɾoY<~HzM8zm.>H_՗3'/>WU&ܚd,̼(PSiq3Z?:zźQYZF80c`&K1mJ"0ѹj \PJnHUn?7uIYs9 .ݏ?J1S6A O0 Jo৆j`mh4hZǏ}#2 Sc(j*GL^F"U R1W"cٱ3h1z~#HܸS(1Td="-DfyCQ$Ǒ̠s%x6 BK2߉_ FkI z̟(pf6G72x~^e;QBߪQRz2/P tm=Lx™=d##yz/h >8ݱ&n]}XmLfkQx E2! -QW%s:5B0O`0 }; `0?-ѡ9m*bME\Lj0 -o~3i_/|󫅤AhGY(mF.aL7vgEoHw ٵHOoD`40=3N#d2W8Z4o~9.+.ߡcw\S8} A3"{Y?SuHiAD{#p =}Yŧ IW!6~֎XzϷ* 7[~MͯTőսށ"tm/htxazkq&[o:K~sFTD26^e% su~84]fF:Zt%']y}s9l+b{p -9׸!քU$W*zكTSfv yyɅqk)W5OceYWFfqy3' -y0KOӵpJwyFo*,xRF >IڪihFc=\L_f^(֤D;Z?:ږGZYZ^[e05`AӶG~Eu\SrVDiPoj QcM<_.tfx 0Bclh0?5hV `A'Y1'zܢ15_[ ?b` J"҈Xp=O`PD}S"3۷,DfyCFPqfйtoq tC 6ۧO>/:F mQ3t q"Öd;aG.%YU bp =>ꚼw^]6D(o MB^lXV0 `v *B3C~ivGZl.E\gn_urCㅳ㸌{2W1D洩,4q18$CbAf+ڧ>`:%'b7Z{{ZDRIaڛ*?˵IQs- ;;R[eg*֚Q+.cΊ ^2U824܃LQm(FTN`eYt! Iߛ2 rY;R=͑O)Wgm0Ţ ~Y FT_{M"J!kO42<.1m1ʹ75Bm6Hpod>?!k}0k5+ !f :T`j:P68FU@Fu0,7ÍS:`n ?#w/V F;dY>?6t/)v$iE] \FB[Ji3dZx=i* gCIK' #h%LNI2FD.{MԽށ"t%c4{k fkijPV2`0uL(hK-N _'Υ"X;\Uϒ%oOoRk P=93nENgIaM^a7&5o߱D篐gPlCO28uwsHM\ *W ŤQǼ7Ma0=\94]fF w fe @l>BQ-q0THg!"lܗIUltaa5_L0Y|f0&G ]1y5cF3ɆEc:[IJ̓M{܀lS!QvY!$O)A 5⤠'\2,1wl0*n{5zjyɅq1<)`橮$KZ e-Z~*?g+LŵJQ ZFz[y v^n:+3m vk,#{(Xo162vRW_vGI( 2Ls^) gs=eo,̼(P3VÌ隇c0^7"&y_`7fN}0wg Z񈏣X.[:kXyp-qZk3iԎ*^p`t%N[njƺJ>[ >Efj6kЮ1M|uT_[HgWpp֣Y-|0|U,˚&THq0^%}z%{ړ <" k TnUI8u+^6*8Vwq\u/u es*'u c+%gɍ^YQ]pI邺\o7)D$95±$]F)Kl=`,N>W\w)/:5+-q,'1 E8%JaEa+eCPqfйt|~0ǨJe )8mv1]]éw^]ژͮע`>ZS W]z=W=Iͻ? Qh׋ˊ9f!`0 /JZ*{Rxc 󼊐̐]e0ѺT zyKthN4ME\Lj |vcAf+ڧ>`:%'b7'|v=؝reqdhy<'7r$9"9*!޾vޔ!_󟪢a*Ǘ]0cZbio,k%n]Hpod>a0{m>t`5wWB^ͮh`jۊvU.#-ö֭m}IYT^kbyLtAzʾ:i`7Oik *Z4qU~˼+]O5ӝiq]j%bFӬU;6uow`hf*0{k1M Y6䦾e>+ZRkCٹDu8p!NGAB-) [[&仿Q|CsL/t㟼nV!R>ȋL-?CI&Zr%m-3m M[B(9ܡv"DZpmiSN*f=޾SBj1dʒJL_f^(+at 0VRQ/jsL<ϯe3rSSoUxC^-u(z;<ܠF\o Y8mҞ4&4㟲"8C;)Yנ]c^fVJ>[ {Dҙ\4c0?5hV K3j/kPN \xɗT镘>iOFG|77=]3vMp :RHPZ#z,^ UqWaՙa vV4ӟeKkT5we$ k ۣ[p==r qJd맍V~=Pj[9gK-g |؆-B de,0XVvc5)H3klsGx{n n0MDq-<6d0[ZRIyv0 +r`0N`-䬆=eݕ3#W8/-" ;b{bLзjA >i0?̎zJ],2!>m|`?YE'>%ԻS/\'Ɣhv$C xኼKG#!s}>UE+OɄ(veŜ2o`0?䕴zY@ d}֧_ *B3CbvGZ쳍>Nnjg@М6e ".& Si`0Ts^>YE?؝qeqdhy:'7rŌ"$N_vޔ!u;0.1m1ʹ75B.N_7 ?5ȽzE:0zuQ+ !fV`0NmE Gч7,BtW0n[Jiƥro%eQyT>E4Ud[hN~˼+]O5F 2-N[G4kĪcm4y'5F.:i}ENz\hK`ԽށF@K X/45(gؐz2L(hK-N )u\B:qdr ѠBm^쟔F;9ki* Z|Jj^O28uwsHiM\hIр=Nj.(derS0B"mEtuVr'IK̨v{IG (|H[`0M jOg!"lܗIUlϑzïTu=ln@36'\==hKyXq2v"$ eP*4ђWȜ7 B&>Ig>v#a^@͘ѢLa'_Z$+܁,??wi ,.cF |]c4Ou &G|_ʧyQւgs:Ʉ_\KĶeA) e2еUhQ$m繹"tE<ƖLOYR A{L/z;aw_~Eʹ !M9+>̋{}0c1̘y_J*EPqc.aI vcZn3SUxC^-uD(z;<ܠF\ou0Y8mҞf044Z{}Dŷ":gܺ$'?{r@k еH"Wl:sJ:t ^EC;CSYf 7d _,7Z}@b>/+1}ӞIe,joz8f0 *rbD8u+RrkCp] 8Tx0?y  NS;NS}Ʌ.#I^3]P7݂iIQ)=ZTʞY`P]t*.[PNKn.qAa1Nl=fXbXC lYOTt.]?1R/iwjlcZ22qc|],+l;±EdQ5HG̣u=77 &@rB{Չ-]d-)zhj` IqrV9U^rFPcmP}&5;1IwVҶHWNKnV!p^ZDxw2,oնC~aE|/`~4Q3@E&纍D>E?L ?OzmLfkQ`0 F(J[+.ͫƆx:F@(LB^lXV !6KWeٓҞ&>" f_p  00Gp}"qNjOVtɇb= *HX05,۵W 煞N6~0`A]\"NY:n7ZHč}w֎aTt"Hұ77~hzc/M~ҤH[ځmBqh} ܯh[`vp1UWKϦXw0Zs;` f!g?vRӆ'sՌcکU|JOXw =nӞXߡcwWl(آ{իW``>GViW`>0MPO?R s%Cl|~֎XzϷ* 7[~MͯTm>S"48K .RgÀKmz Xsܻ8ʕNH.y}9Á bӛLwW3U yb>i;Qƙ]셗b-u]6Z=eNvj0“g1>a!rwDSʙ0&kVs,JQy4YсSᷟUT)Qlܳg,t B9`>˕=!ꩦ8|l8o;I?sUѰ/;tD{d0*zhj$. 9 *~x@ }{^_DzTsu61Y͸D9hFKjA~]Ө <~2`XsE '%S*5F; ZP,n>V8EP?Ouf?}zu8o|y_[8)nԍ ,qL`^Y . |nɺ5[!%w=dwv߯ƟyaXg ?IMdeOPbyW"]?[ !+!JbUA4n;iM}0n)Nj$}hi*2 ^ kG^\͘P;n=`|asqÂ&"QR ?=(M}L;nƒB3?V>ϮRԻ2qº]?5QGQߧ"U豏^ogxSRm\zs6Ϛ7ܙo Bo}Uv{O ZO;bl호[ 3gDvl?%w\>ד4xNxjYْr8^4,>`|i`@s4inT05oQ(7TPoOUCs'I[5hi*c' RVtd8:{ďɓϤ:H6hw'FF9vhyЎ fU7V9wtɬ蜉eSRn:ϦG#wd0c޷[moP,2ȑ,i-&+Z@q0./-fAEƝmOu//-כѸTBy?qz;N$~hi0މY>$ 1bIv57c<`|ai#AF~Eu\SrVDiPoj QcM<_;Ϭ=v!8!_s4v/[s3\|D:t]]?SӏF 隩-}Iƾ'.]wb0D|?~On;}0ߧo胩 O>}0ί֊?%/ 볁'l]vLxaRd}o[')BL-]E#Ċ| F'!ehTrRT,Ro 2T)(5zmiDg,k_Q: ҏM停3 " ?u`8:6u%'iM{6hG_ެ\'0z;G9R1b&&럜ɳOzo5gMѓUrȉ7uc顧RsOVAs #<`|Q!B%/Cg+-q`QPNK"C{\V&',LZ=[]5ߐy?8HhK)m`sCxXFUAU.fv=ݘkDt+}Ǯp)¬5!KQ-JqJ-8^FO^jfijF㸌}IYW+ooAO{wmۧCQf{ޒfV`0ijPV2i'sτ򊖱b0 u\չ;騤 wZf0▉ RV&%T Ťj7mFX7Qm[UG8\yfwl2%5uO O28uwsvm2FLEU-o"(r8!9evnSRŷP'#mAO{hwSڙK̨v9DQ—̇#ciRW{? !fؽLJd~l k-Ϯ9JJ ƻTvX@%דOy-was0<[7~Lʮ0@U12gﮙ/~s_y`BBO tZckd~Y' ^m6Nyylf g4OvB_;0'n;>q/0g0FT@h}|zrL-?CI&Zr%g%m[\ˠkmoc/ Ri'ܽOaj#)+6ٳ>4)bW 'Ռbaݕ}v /[ figq%4ʹ7asH]8K"4Dt~ZNPPڵV'i^+ِ+#+34mwi0v_vL!$%w3Y|yQpf05_ `0?XIET5ns!L2 {ϊw ﮙ`uQy3g;f}Dŷ":ft-1MZ2q_v#eFAV4mw`V\4SA4)xB@:3e5z4/0X x5Y—5MV_'c,K*JL'AR#yDڛή &`}*RHEPG "k KBХkdɦ,Y%^0I:U KDtZj2HLԍGz8]p>/+Ȣ\v#] m4 bkAG{hpLYJIuG|es^rbF[V~=Pj[9gK-7̏Dݩ j8khatk|S9FrGgfY04CYSbmj2G ?WS<ӄ@H[`sO̔nwbH,O{☋4?)NjCvWji&mw3U RU3+ms6N`nGj*3%>!!p^ZDxw2,oնC~aE|#|rl^By3Iɝڇo,2!=mt˹ҵSSG<SOӻDSZ`vZ IqE^ۥףyՃ0Z)C¶(LB^lXV0 f_Ig/<^I5 dOJ{^~_s0`󼊐̐=]e0ѺLz򞹩w1.靈yKthN2GSځS Si`0Ts@qE+ 9F߹ւO|71vgEV\ydyn^} {I᝾S)BqE?nb*Ǘ]0cZbio,k%n]?Hpod>`0`#:i}0keͮ4][n߃;նu&7Gި 9-i[юU<¾YM-e',L]jI=[]:D2e$y+e̮r2Q#J_c+\F0-ϱ2-N[G(i* fҶvwe`sj!r#DruEkBs;3uow`hf0{k0cWߐz2L(hK-Nٹ4TGu+p!NGᬤ`-\DLT Ťj7mbX!Z|ȝWhiv&){hMx^*O28uwsHM\蚉ӵvwy˟I&44J3nENgI;M^kAП 4]fF8Z} G `0>%Ӥ/~F"B6M{}X&-Ϯ9JJ ƻԱZfG*zr-c67 2;& eP*u3ђWȜ߾fR@ev m5(z1QvY!$O)A蚉ӵ~wQ$¼1Ed"O6׿Ѵ2o sV fyɅq1<),E<5d})vEzF$~q-J &`e4B4 p>Ag̎baݕ}"pId|,M5[R eI%M3M"i CE/x7'iZD ڷ !9}'}0ŗ ` c1]-J*EPqc.aI vcZnj*V`0Rv6N%-#7ƇŲ¶#MQ\DEYcad]2ij0ZڷMW+8/-" ;b{bLзj{ Š1|kD5Sϴoh\Er!.?mtKҵ)[/SOsv@SZ>`0_Z IqE^ۥףyՃ0Z?a6" -z]bY1~%Dy%^x=)i~y-``~\'y^EtfH vGZ쳍>Nn]{vy\ގq[Cs\g4h*bR;p40OhJNX锜[-cwVTzǕǑLe\߈ >`0? ;fק7e@~1}0Ev䘘Jeֶ̘f˚Ee [E'/Y40ȽzGE:0zu+ !fV`0Nm Gч70iIۊvMr;3O.5XĻԒt{Rpu4d?8HhK)mX_W~˼+]`7&Q#J_c+\F0-ϱ2-NK-HqJ-/IsLt[bs=rh61 Sfa0 O$W[k,]tBӢ7;@UhS xa5Ocٳ lM}=H}&WK' \ u\R:dr pVf0▉ RV&Yp*b?5ߛ6S_n, ېUrBx~>I%`^]' ^ |kY\nn֯M\蚉ӵ/Y fy`gxѥlRjWho%}vf0R63]^т=JTQ-&|a'3biKˤĪN6h=lyvW*pUf0ޥ2;R)WՓk; hoؐ1_(RI*FP5*ch+f0^!yFT]V'SGft-]t< 0/fha&ٰȓh=[3Y~ra\/bt`8fO +^1BC$/ӎH(3T9[yd/%Wb_gYI̶1՗n!ܽOaj#_)+Iጘ%;VYj1ʒJfڛEĩl@t`0T_wpyrQ:8i`&/3/ 0cS @+ Aƍ 5I&A2؍k|Z񈏣X.["qVr{fG{L4ꩵ>{ϊy"7h\5Gjm}0scV)GT|+B1k&N"YI7 f+٤ fH;*^p=1$WWl=@N[Ӂtfx  O g=§ ,˚&TH^%}z%{ړ <"_Mg ]\0A%IR-T .yxűX "k KBХkdɦ,Y2ۯua0*u 褵8e$H.Kon8M3qt%.FPAC[P<% fv es*'uuٚEtt qJdI0ÊگJW`:Ѣ̠s%H4;5qvB-gm1>.Xo"2(R # :ޞcwR`rJ̹MM&HwքA (=%l7)JoCX.#1i~Rհjc%@Lt%u4n4tyRIy fУg-LjSc }j1E!zGloY,rVm]=TV4G s>_#R}}wfG*jȄk\ӭKע/ԻS/\&Ɣhv4̗a0zDV:wuvn\vh^`$5{.7>*}јq.A>m0/J:{_JZ0{R;K3o~> 0`М6e,`h 7> o|˅o~GnDjE6>m+cwVT#&{x5ɖوPQyٝ#~ƃY/LI=8<C+U7IS}G;w782q|3&E]_TPoJ[0hơy霬ADZlvD{# (ҞjiϭfolO&Y{Zd^Z|Һ İG`0`~.VYUyŸMӥlfT|Lf)w,],Y^BGqe @l3ߪ&_y vD麵\׋lZ7;3Uygxƅ\Q/:l8fO 6*䙽;dFa3w7胙,̼(Pv$X^=bF;|x dSᕱfL<<`UiF=ő !Dєc!5bW^wDFܰO g=s`0[ж!Ӆ3Ql&~߸2F9te="YPyUΙEm٣)e-Fwtà̠s%x f;f/kf7+8\$yie-E/m鹟Z3]? bR[8{g>}Z=TV4C`0kM^ԻS/~DfmLfkQx  n4! -#%s:) `0? 0`v-ѡ9m*bME\LjC`04Om׷j7Q#7b%`GFT^v*:rwL>Bzr}#*'px W8n4,=wEuJe;Pc܇ՍC9Y݃hcGfGt"½ex niO^ϴVqU7EulJ7$ >x!7K p9wbWZ8ˏ:t).Y2ߞ-tWF (90::kkG@輺'""}i'N֩8fO 6*=~vFaf2@YJ0ᡏ'MW c1]Va^+VqQ{7P^~]Ttfx maʋΜ&GZx f 67tጅ}l[ńIy߸2F-GSZ'ZBAřAEKۻ&o/龟뺞s=̢+(.VEņuA@DQ.kò( H- LHKxfRDs>a dnJSM*ft#5/J3ŗ<]*&4xȵ7o K%2*J:qLMZ"K5$a0M[ I0!8礑ZJ쫪'HJRoYS1~ \qcÂەҏ#ZWw Tt:ي0 GqF'KR3>Wa-zTGw앿c6Ԗe͔9?T{B\|HhdXFqɷ}l_?njl\I:ӿWplcZYAcED5&/8XJ\2cNUr>nceOï| S7)ouƻ2XWKg㣶nh/Im} %jgܾ\J,SIqY)Ϋ׌.KW KEuf=Wʽ$:fRI$ t sy8ߘVBRRogK*A9׮o |H+4>4T}aԎq @Imz05ό޹="[=8dw~C0 ~CڙS,Cۣ #׬ρ-VZI0G7&Hcyf+2 H'"!u${'J0ג`/BI.Y j{+Mv?ѩ}e04;;,?YߢJq.r.]27T']^Cyc.`YOx,ݼdcsF,? Bppߒ=u&7dERk_O`S򉵕}z:t$~;I0Lh"sh5G+ &W4>2d[0X,r^?n(̏w4TLDSQ܉a&?&t5 -Q~/2J @Xi`SM0+3 /&C7) xQ-9xc]Kd񑿍I;ۋ{ itLW5v0]OdR%g9՚vS{{tG.RhR}NDU==Hq0"˳*ԅUo7%[ݵ6S^ڧK"GUD#”K:}`} fy!o~f x# .ASBk7lSf vβ>ܘYYw`h.Z.#G̔m+1@ņVǻv\Zdt?D e3K/mGx9Q߻&ݟu"oMcZؑuVxmVRp?ז`Lo؞!q&U>_2* e^} $5>ԧ*C<7;#̞7$!F'wue׏=@=ϿI!@;NYqawDۓҩ }ؚPɸW0)Oo;ZcW< T`̎wl3&7+yp;nC dZuwQIO۽#G9cMy?W$Y sm7Bl<-J5ci@, &=`5ԘovYv!|[^fp"h/=~Zr7#"JM2#7bd(g=M\'}e0db9DL }\S5؈;a!ݗXODe޿~L.?pI5~=yOezWSk }C&/Yyƾ?-@̍ծSH]`b?j2<}Rl oQ\|ƚsUJab U׮eѺn í%iʓ̯NcbwjyCO,iSC; ]/v9ԯ~+ci;[7Ϛ{v^8nl \c}`x~O2* .{~߳Wubs$M2v_f[ =GcuVY  |,'scPoTz.oͿk-y.cB#7Dպ|U97n9*[ı;FSsN:B_?O&6>SA>WY|l?}Q}vm珵7ȝ1GzM>_#WZnɐҷ3ߓ sM.ʟ+5tȃ!qntٵE]EzcK^ɻG".M=$$cLRṈ\_ïg=$$ے+; ?td```>9i'J0ξzI-+Lߞ欙hכ  8kuqwA[@LIӛH0 MC+H\qc9(-BoCB#ÖlhXـ&`ƕ}WkI1K|7e0>O9O֨& ߍi)S۲<iG;?H0qv&&xW;~BX\l|Զ` %M_dSnVUpMÛ$YK^Sa1ˠp!]vjr\[;iō!$+e+ Fag65m;)"MpJ"TTgs/ /fOFI"$zg{ ׾d,I0 U+c߬J#Lxp@YCڒK kL ]iA_!ꔪSrݔΆQs0}5=oq~yb~ kb1>RQn̔x{IB&Rgx+JBNNln㏒pynw2dɮT ^ÿ+/tϱ.O7Te=eCNI=k׮+|kwk#8d&3Wv=R |`uv0)4T'x_7c܂E;ERLMv2b3 -Ql^L ]+}Mhg[Zjکj]\}A9;sAyI\;/=o5̄ynB;|?˴"+kį)7m{@<:#5p'O~~+3sOI78_&qKI9'.~S^ء,N {ַhj%Yg~oehS#AJt 0 MmgyOE7+Y~ޓׇ 7+_BmCuRoM٢1 2s&L.SqLt#ayj>B z`ΆO ӡ[' =8{E.1/j WdMWir}dȶ`ݱX˟1lhM['z270gwVWdeMqSA{_ 2 Cڃ=?`>˵&C7) L[rƺ#5/8ۋʅ_ȴu:co;̮'2MֳtjMYob]e ulET3./X8c6܍9ο|sfmްk$QDJӥWqT3hE; | Qk b?+@eVA>~7oГrr-đpt@Jn0SRx;>8mY9jM lyr@nݲL[y&;ЧM0ƌW'5ݡUrHbGRdc |[e0ǘ$g穘߅m׌_oqEj'ݷ> ̨C/6; M"m8F#Xg\M#UcIe kOb%n.@ξ#I&Bx2lpi}peνDhs])kUWԈCBcUc?9b7J3PeKL30 ^>;g`qlz-s\|;& J0w:oP(Mb_;;Qo͎צo%|\><2I;N{a{Q'z羡S# OnюR:n`,o%[Fb^}ד`STf(;CsGϚ3L`؇Tt'|µ}ZuwQIO۽#G9cM~7+yp;nCI0B5 'S`y{*G|1 ݳ%ȶ(ֈY֓`".tK=@=oN*= :UL K0|jg6謡DT[kk T~=R{'#=}i-M0|Î܈94%\oVߌ)eWSk ]3x(\(1k+ ;T1 1ϯf 17rVOLm"vU/yǗ *OD7ۂuSږQapM0{v^rY펱[ޕ8G_ |Ù_DŽJ6Xg-]9>pu#vݔ[s$M2v_` =GcuVYV?V3=~|E'}Je0H0'scPoT1c[Z8Bm[/ZkK^Znɐҷ3ll|񎨓N\ytzw/aUα[b~6+B'H"6karS3nLnH& ]îc9G >IM\u޴m$Ȣ^D(5)ЍXOa.>H%HiowS 8Z:gieMR -S_Vϯ_`g'EEltaMP+^46$9#T]T?C6GK>P?PϗN0{ꔶ38Zl6meGSQB=k6#Ω۴'*29=Z ߽5潬 V+5`EWFgf-̡BnjF rMꞈe]]~7wtSDJĈH0_0(?yf w^t^zSHw:kwgs@IxWʉe^a9z*aX*3͍uT!,L}6>j y9{ZB &3zU֠ Y76>cd]GMZDkr2ӓ)(B$R5xc*/tϱ)Ec6<Y:qռ]?Ttղ6.~ڸt M޳@ɭR fYq I 79'.D z ܦQly ēTHVc{B>֔QXLM>AE)h5Ü*sh5G+ &;7̓QVdCѲ5J,ց.Xk3F;|q(bO;YEYªY뭴.xОS)k_A5կBJ;&PhY߅z\CR{*1$ }aZ3U/pj^aIyxvY6Sq]R{2hm6|,+}+X0| b[0$+c<$/ʥUkx[Vt5Uj6y |iSik-```9'd}w`,SIYD,cyXP=]rηcB_$g_Uwļz}~C6HŬ V#7ߟ`o|s aV}cnDR[;fh{Ew߽5}.k1 J0.diPjח`l*f6(nMVնݜoG7UKJ# '?Ya1 n'ˏp{-_diuMVQ,(5L蝾̼ yY`~%wȻ!S7}+kv&SD"/icK_)J}$ p}:ׇ+1|+l3GPZ8B9i ;Z} ~Ě._^EOio+ qCrn`쎡nw ƢFJ筻݉'paސ&<|ϼdwvI0Ty9a8࡙ ͍ݓH5dSɵSU _#o+䌨m 摾$Xo'`NcL̑dE98Y:=0~͚f{Z _L:Wl򡤳uE(61lwIn|[H NƵI0R Ͳ3=4mOe?K7/h7LO~\f%)B.[ZͷICȊմq朽?*XFhIIw c F,m3vgoE]Z$X.^ɛ`ҝQП:{ v]Ne)aC,F#YqlX~k3F;o̡ )Ih3Qt"+ dgĔ'C0fJz"Ӕ*i{TwΠ>|!퀰˪'Dqv0.m^[JUy`nqe*Rz!"Eu6XWm!%?Ƥg޲ o&1$C|sHw} X}y[#W~L\ړ!,%==洴^q³0cm("U>HK^>7LI'9hK+ZS$inHRϧ&%Y[ƂqO}Kò4yUK$Y|; *5<m˘fPJF1$mZ&h̼F  ``%ΤZ,| e, j6@`1C6H V'67` mHj2m=$0 ) dsAZߠnHiK0.{4 n'ˏpKG ړ)d%@I|ZwfID^D(Dq#Wo 鲫VP?D<~$hb[d8S7}Kޕ8խvӊC`Û$YK^; +ЍSp]KEuf}]J'UؐHIx99:2gp2qݖ߯ m?,XY76._08:^ Pϗ bHJߜ_u7N_X g_83\SSaVo-c[`)d>_u&cb~ k)(B$R5xc*/to#lcސ&k)9OfĴ5u4˅ڢ.^3[ FYʟLCwGO[X-)"gXv0_LMM]yɘ "w;/ߜĿk}`֐`3]%xdv=iJyJӥWqv0R漢@6xFLI0q]Q.zu)J{Zm~r? AQe-S-$cveSUH:TbH/eJۅֵ[s;}Câl/RH,:-=X4+J,.8}| I?TBRoWH ^I0Q&SX;#"=}Xʯ\pGo{oIm,rMOX`lb_BG_.=\#]РØfPJF|cJ <+t'FmZ&h̼FM0ܜEC̆ 9; .sN9ה`}UBI-?]>E7OV [#аX\[gqF'KR3cP!75#ƳlcY˾+拶T-*13Z䙛puYkH0dV&@IrS gn>ߓ`BeUdE3L*͓c{f#SYK^l Z|G ,ID^$@sa$iuhÙ ʚ._NEWgLc[`yK.2K'ZTHxЕֿM/\`:T]T?C6GZaܲܡ sָbE sQ*/?_;"gDm[0$M iL6Q5 ,Ѡ28S'D{wg%~N.qU{;gfǠk~,ֆmd`sYA,.FizqF'KR3ޛ` f-̡Bn c-LC &vtSDJĈ>E 4cNkᖎG'SE>K۵ DTl G,416Vm%~ gn[1w1t3zZ/BWL^>]k|"FS fY.^R 9:8"Uj[zX1Y!9h!'Nik|7KؒDm_`<'RxH0rC um}X9#jۂyog9 m\q.J:[}1WfƸ2q'UJ ,%ѦF|׍{'y|q7PH-@Ns!jy`\crAV*zO?XL*J+T|$Wm &O[d};xݩ,&Ȇ",b^IߞV˵tV ?=؝|>|!AsPjEА%gk`24JZksBv9yBv0~R1r@UH:TbH$>u*<qMÚ/RXeŹW9\Q^r_q"E~26` zVV&`\O0j)$+c<$Kl;װcLW3]f#7Ws6-pef^hH0{Y{k$XS\bc>cq56+f-̡Bn C Y˝BKM̔wsG7UKJ '/K0d;lc̼ݜJQ p2޲@Ixf W qQ ksmߛ`=T-S WV!1Vy0/XY76NQ T"ҩvVձ%ڰjvU8|)mKg[Mw͹wH!SU  >&v*8dW_PN䎪 iiX󪙉5sPٺ4peMŇ|UNr3EjэJ$V O~޶ byV3 fVr"D2fO] dV̎4ߡ3O` ĊoOL,q*K 7"ksҾ]m$+yZ-)"gXv0IbXK-}a_$v̲ƾ,ٙά">qx֤1$Cߝ`VV&`ܳE;"έ='lʐ]if;DX`̧*5<ʘfPJF<0 ̂s6-pef^h_K@$kH Q"IENDB`magit-todos-1.7/screenshots/thiderman.png0000644000175000017500000022372714472442451020507 0ustar dogslegdogslegPNG  IHDRչbKGD pHYs.#.#x?vtIME ,w3'dIDATxWg⏫lumZ3 vLB!b]ǁt,^#EG?Xw[)̕c id2*~h87;&!BIx8`TR8;srՒomK%mXw?9U;V+v=^JZ1PΉ옄B!0{`XY9Z羲7ڹwt#|?B!Bޢ`6aLz\[MMx-=J6qd}Xԥi;*ϐ陈=9YŽI!B `ѪrvY aI+erl8>MMA+&b$B!뱸nucS[rw'{N_%uOPc9F陈O4J!B(֛|QiCZi!ݢa)Fvs{mc;FLVcf$B!qkd>LHFuFY VJX gn)_YAYZ:MŜR(4vaR飚3g+۳E%qvS;%!Bi>a2I1%8<<%w:;`/璢m }:Vphzź4!B!ދg꼝"abs9^Qa;$!BX7%.C꛺q҂4a'B!u0nCVFv\Ig"-t;';#!BXWkʨ`T͎H!B( !BXo}h<]YDŽB!Qo'7ԏwozjւ~w0B!bb U}pGG*gdGH7o] !B(֛FxzXZ9^YۻW~fv|c*]Tѩwq kzr^/䡙qv.Y/n÷/CvkFo4Fu;%#k  OJΉsB!P7Xslykv:UP I:n=fs85O.dNmme/s͚K!B޲źsb wz"_^6Q$K!BLuZm">ֽ;,O ?5#m)۴B!bb=; {!y)lA)z!B!4yJifΙ,w-G%yy !B(9leVŹٙ%B!PX׍xnԓ=.ZX;=_7J!B(.3J7[kv"Ǿ(R϶ԟoPN$: GUypf%BXov'ϛ9* v>Iݍqx~HQ$m2-_1mv4p։츄B!#֓Z>z:!_}/ۃ:hNUpb&hS˥QQs&0WKiC!B~#3vcm5K'!Xi$իmwOڻd^M%Z~Z z[5iN\ݲ `ځr5{ĽLfővN=XjL8;,-^pgYB(cjvA9cNfq~X”-Ӛź][@C_-Y>|s?W_kP7zQꝻBu~zDpb*8KmVY&B(]gjNMz=#tҒSEL-\Jf- ֿ,W2&uRqEXpG5g$mB&ɘ,GmKUsI Nc_:w+NSFGEcJgn}<vb]۶x)X#?8?P[/uhgqp^TpM-LG|ak}1ͳ c&ƹ 㚈셒ܬ|BXw˄lōrȳKv11KB" bQިIreՍck##$l㋃|B!E+Oؗ)cbKUH1SϥA<nvq /~kq:t>qtV^sA=<vb|An``ʅ}WI}A[t88ԡI_5A)U}O{y6 wz"g'!]>@!PGAbRaٙ};$ƆC'0Bc҆!(TN~12ncgOGw{M7bP{+KbˆrFzH\J21̶t a~zD5I ƫa?rϔv#uNjbѵMg/ 9Wǟu_&uhWM][9^܈utXwgJ7?>z0I$o B(ֽ;09 m D[s'*#Y 6܊,d¢7/ͺS?zR*!QfL~ N_Eڋ)Ĵ)x)Kn VJϓqMٱdY=3KzB!b=b F 19,Pe(¥I3_3DMcN80U153f0e"a OxD1o'`>j /:<Be56eZ^uPa̕\'xْv7EOݺh'b"t*!BR1^= xf'rRT#-׶bҫXDŽJl0J{റ|}'C7bvna.藙`Ύ}!v}WwiIB!bci b a`a$\& uDx)c¬~wxwEjaunƈ;⾷8dIu`[l}ǁ ڊ`#jV^4ݶnDž:G:NÃBz<:L0@VI:BH!lotƨ%Fa;"ڬ#-pLG: qQpM1yFeƫa"ֵHu<$·+6wSnFaK!cd!?ۏ;qh=S˥1+4!B-M p:dtB+c'[ K5u s"MSg׎U> !P#^'g4Nt7DX&ʖhib=BDSxC O)?PEkO.~rW'!u,3]9|RcLXmMm$vNDOko74'MRUås"M 8.c*BznbYd`sQMf`׾nB!B!PSc@DYOkmAH|d q?Bz+ `R!|t3?mAHӐo'7ԏwoc7YY 1?mAH|<>~#3vcm5K'!b=;;,EZXƺ(Pshi);Lmդ9qm L[i$⾽Nj8"RjMlAQ];P.\_O[p1MfAP_>,W2&u_",\Jң3&"dL#*$s/')s##1\ӳm7[r0 X7pS3geE6Kڦڴo4U{Ț69ug7\GO (rsЩ\Ne=fo1X^(͚>!b=Zig~hZ&m">ֽiC%M['PFLn|{uJ$}.{q~LqJV)Y/۱*BS >?M&`Ok`.2IT{7ĺ1 vS_l/SgjmE~֓MlRN20>0 )_/&٩CYBJֳ !P'Xןk1w@:nZ4`NL}vJ+{K'RG.Ul9 HvtLI^ܚpc*ֽNb=i`DQnx}.єe*u;CǸc&t.n,wRO7"~>ig~M(,:PO$M|B([XށɁ z -9Lѓb`;jmljc"jMx7an&2P/}KJ^06e*1zv/X)a4&t.7b)?MmK׹O٩Cv,Y.zVxOŹ|B([X_٘q(2xS҉gg$pq`ajc!f0+C`"DuY$_6IMߛqGJNf0Nv"^uxe胉nzS׍Uv x ^><ԳӹLĺi~eMt faTJ<;C7uhuRO:DUBXO>{x~jw@o/1ҞN 1LYx? 20) ^BK;$O'805d :/:Ss뇏1 NڥC0Z~rn@īa2Ԥ~ٱ/d"&^uLD>v^ݍXo2] &,$Ϧb\&LM3ۀF:O&snHokErʳI?4CAݫ;Xpt'P^vl b a`N􀇯iqXz\\ad ʏI:u0Sv+!,!nMg|.S6g9炟`7n*[@Pz7LĺI9_FB3saR)?ub) BaFw&n6<$Ϧb\pjuAŪI~A-0lfF_yz\ /nlMД۵5>q!#'έ'P=.~g- |mK$<6L-A>7R~L"`_9/-bޭ:҂DK8 .{sm xc/hh*FH2U0&zx٬cQ/x-5ih0]>axouEO~)sȳt.-҃v }.?!~LIݚ\.-I_)/ !b=&ogٸѣSNr%Z~Vk!ڂg+Eh/23sΒ`}B(LaGۯX(jL܀*baD([5Dk BUzMQ/\{rA|ÇWT> !1E}<$`lXl4#϶ v\$Z~ZXOĶ Y&SjtNDǥuLe=B( L8])cuɽ널 1XԭBX'B!P, hj@>OBz"UzIZXT$x$Rw۪Is^N5s<ыa{԰[| } ]G9ɻ˓/?|&ʹsrY4ܢH8?:?Bz"Ra{rR4O%Z~ZXk uX`p^}vRJ4={ź zAꝡeBG^YV0U qN{ !b=ڏԤ3bJ'-9UE W%D-?Yk uw3/c[V#WL%_r'̤XqԚ-[E[R~ujDa !*z)G3?FmA~uxUhUf0,>zʍ*)>wKź|ݩ.`E~{X~ZN-;3<O's]@rvY KNQE.RY;vY؀8յejN t` r>M/W{ WyTsF 9-{Jz.\|Kn z܈yh4Wl-OXs}ä~ngry^׏Z:5E׏X?zJ@>[8!\gԣ:>bz6cr=fo1X^(͚>!b=Z–b+,nv?_p@GVNRP=kY:xp{h1CK]MF5@\^(>&6B;R~L xy@X -W/S,{j޲h*F:e鬝m|.ҕtV~OJˌNwxFuxɄS:t>qtV^sA=<&$LlZ.eG0ɴ%֏X>)Xw:Wpu8q(Wdu[ݎ݈uԔܕ"gX9jt'P'x(ډuK %cI#=ua}@#FHxLp5ŕaix/F01M~LҁNr7 xGu}=?.7FL'0C:xP+0T [|rVD u#O7阘Cx7Lt 3 ^?=oՏ3} '֝e-HZy3Oe(_X2Bb]غm"jg~|ҷ6IbT>űI$pqBIkfcrH"<4SaUp^E<!d潽M.ֽ/źӹd'Fa}aoIc:54C= J6OXo b;&a2tz $9LLc`pe_؊,+aE0^-A'^BH닝[l[OX_5y)F]^R~ש);,q=+c'b}vxIo\> !-E[/h|0ȋ”rGpDW2 ;U.>XzP3H2%pOkmMaSdYThkPH7p$ep=! !-@,@="X$KY\.gBx)c¬~j vKA"3`uӶn !-E6  Z4Z`%.}tLĺ0%@:Xa~ F>s^~[ļ[uaQQ .{s xc4m )>7KZ֗i@C &<-=Gkiź"=lE՛Ew|>9`%kDTY]~u)RB( My,7u:zm QDϳyKk yV~R)3:>w,9ڱ '!b=F~ E4{6]$F9-?Y'Z[~ȳJ)?PEkO.~rW'!b=XGYϳl75pcDZ!Bt}Lfo'7ԏwoӛr\zGB!PǛiCl*b~]`wzrNvu,ܿt$Bz0XWEE 47^vU;LhJ4(ϓ/?|&ʹsrY1܂,8?:7B!PSa{ȒrR]?r,ak~i\p{U:ѦЋT x꽲"X@,<7B!P[ڏԤ3bJ'-9UbU Q./b,;*w̘U:MݦN`4>XWSewKկn^(q\=? !B(^liO+O^brvOcyRD._Aj$=%BHf/1Y?-'qnTI0'>wY4*oPU:Xb!oS^nUo >Q];P.\_O[>ve`s,\J4G=9#ixGO ,"Ǿ\.:r)tI9%ͻ')sM#=fo1X^(͚ț !B(' Pk ='gB>"vB#]mL2ҁPC7ly&qW7Ix`-W/S,{jFz@؉l-Ǥ5 ۲JeĹU+|'%nJS+E\5>s8IfC!XXTx8гGNZ24SKg:;`!tR=:(4&Gu}=ꍗ?.uc'agW6NwmYFQ/pb_'J̶fmS'6oq ^^٦-B!bIAbƷHH+xi:ۗ|I##ɣz1Ώ}ȵFXd>3#q8UV`.M\g >(_X2B!AnWc붉8KeI>t ֯-Zd)\~zuINh9]M:l/ lS'J7?>z0I$oo6BXwvT0Q#0Iq0/9LLcXuHHf+шulo65aǒ"geD/m_˛ !B(M-DH@)/3|҉$Ùd"6ަZà cr(~猜bݤ-LB.ZXH7J!-:,=ӞN 15L'Xo`zL=<_닝3X$?^uLFiڮ=x6&,Z-^nzMMٶ ^)O%=˛ !B(]ͲDC!"RtMqzvquxFSc*. w,9ڱ d!BQ]Ld X(nňptV(Elئn6EϿhpq^Q_ʛ !B(.B~KV勛CyG>?Lr%Z~ZbFKZTp霈ns"㸴B!b]$;'ɽ-n?}E 1XDZ!BN!Bzvs$se~ᮎA|#B(֛/t 2?,{ `Onte7YBz0mhBE,>~#3vcm5K'!BnO$^m{..4u~-f>1m]0 EUv ][:`taIsΣ݂Pԟ#oک'_~BM>z_+88?:7XB!bݞ EtdN9ŕc SO4bbUQکWbݮ7u~$ֽϑЋ9U ^B>Tu{# ڶ5 d3x%B(CԤ3bJ'-9UDRU QO4b*ڽʎa%zʍ*[1T,\;V}j\RW*IFK!P f/ ^?-'qnTB;0 Mrf6J \,< Wwʫj5ͱq'k%Ԝ ago/ W|TsF9Y}xB}uv\˘?'g/tPɶbݚGEc^vf[Wvs^[ 3}e_I@=(;(]U/aл}:&%#z~:DNq=cY>!#oq卖BXbRm;srՒo:X0=i:Hc6\ >FqzXu/XL4͏ D%b:>;~Zxqњ/w ˹ !u~'hU"Q< OF{9ͳK>ϚgeOzjI(K\LxNco Nm">֝-Mqj^٦-B!ff4q{ g:Dݾ;H} M{q~X,Fo(.^s8dUl~XOШ,K+5~1X-7ثl}G}fvSĘuyacSp܄\g=RGphQ3(_X2BX7ڄ#WcGub4uZd)\~:;UЇcYqbݫ@!fӯ gUy;1ĺi{M0E6ٟ(,:аqzMO~PM<*d$MB!f&+b!&1BA;I:zib=R~C[t[&7`h #{6~aKoz1%طd2RGQNjlŽ%E\obd>;s}q.oBźݘ (2p^NLӉ$ÙUd"vΦ1ӑ`3#`:Xh U܈u/yMu&<3 >LS,.v oo ^mݸZԡ zBEKmo[LY(=t7V !BfO nae{HI!DzSEhY&Hbd;x7NHj{zL>x%)`ĺWmU ؆3&xk^=X@7zNnҶȵi{0ׁ"WgPVLWwv?cTn$;=-!]h !u#qSvlg>6 4'_ n4a_T/̚w%!t#⺱VUh9A` !pehu91šWma"HJQv tS׮0I{Wk/_)p)kk|BFT{r7o 5tn8Λ,!Bn.n``WoZouM1Zl`"xu-12_R䬐ɜo'4g/"g`ma"F1p9l/NNfdלuױhLa.PǾ`㐸WKiC!P,oY6nt!\eg\?^)B{ٔQ;uXoB_GraΟP͸[ƄD([eoY-=ڦ_^@ = >+]y%B(Y甎L]T*r-7oUw5Ur."|XR'X/#-kMtguBXfxp$"g[4-E>ZwuU#Ԫ.8y1ueg}֟^ &ˇ%z"u,0_>T[-m1!yX'ubvۻ ek_ >F}:sgfnXXX'BXslal~;nȶA>nޖ=fsݺMrVUo[3+[GH6V\=#;$-8rxC뿾y~u*۴E%Ct|}셒׹Ymម[G޻ rWFp߱_0ehכs7`qU{.I{ɭݡ0z0WM 3^y˶0-I[;{^񻗯 9izL$&ׅ}̴Mnz_['{K𵌅P],3O~rL:źXq{p%q mƨy=w n>/1 .7q7N89#~p:x#uwWx kZ.<,0AwWp_ծ{T𪽊VIgw\ /vIZ9#a)U?4Qԗgt WR.>k#˥%aIzL$&ׅ}̴Mnr_R{KkYu>aԇ)!: >փ"܈q#GRv?դvj[\ҹ<`)?gQ@:xt{=2cWiC|P/wudO7׻5-u ?QwԺ.8c$<ͬs[? [<@I?4iӔ6EzH| ƩYp8kҦ&u]h'RM I;];U%L-e-2:%bb=.b]{L|lvT =9MĹpP@Gv70>ub7Y[`DǺn^َQcl O7Nb lçdRE"ֽh/LRZ<՗bݴ6\^XLSs&`۝'#j"]^1v7vL^sK["]Zˌ0c SB()b]ejW|ZhġT' qó5IH{ꃊr5+c?N'v J6%Sa\xX~sm/bip}#LMachh'ZujSS h?;W:J^mu‹>׎}իzn{KkIc)!q`Ȱ `W=`ޘ OVD7_Zџ5/[uvS.=+Mr ׳.ֽhXĺ]: Hmj L `'0?:goT}D;]M%MWR?ĺWy&búnEQO ض9rۢexcxHcן}`3Hq LZ{P]{e%`#MM\O8Ol?G7Ѵ6Q6 &kpIoʵmh{~m?45mT.z65eÜWapB̏"ֽcNnz8Wzq\&b=y&b-ԵMGUrME#/I|jWw6?n|qn}㻒˜ą0&lLWk_{^&0Q' g_8ڹ (ʧۜ# )rEzXFS?8)-pBWOgśc :~cZYB `GD|Evn\.-mx; n[=,6K7[=uUcgHQ։ДrzXHNk:/F yP}sXsRI6meMEqdu^IL؊i B n ^{% ;g<\^1v7vL^sKCkT{}B z&|u~C'9^uRpb&;_AYT|Dnr >v|>9Ɖ/\e)>]X "xX47L`uɨIn <D[,Q{!~wO˹OY_Ypusr\C7H yFZ.ھkL`65VK۾jg«>f7U/%LakT{}BNr`O*ݷzlǧD-r뷘BIKB()֛Nbe:h)qi۱P"G9t} ! CKB()LqdG,mOIMs|#|] !DKB()SZmbVY|۱pUdQB'-JXX'B!b8ٮcօw>!B(Il Wc$ o։76XeB!P>sNfx aB!b=K3 -߬+K3E(Rt` 9yhf~lKۖnэHǃXI$PG<+EduJth^-_,CҮH^?r zQ^^_ϳt]׼1#vQw gmm؏x Oぼ C:{o`ұ޹+Yioڪ:U e_jrW^B͚*9~w<+3))~XoyC bu6 іW={dߢoHJ[T$bn/vVVp%Xϋ^܌=}aXǂECuV'QpLe]^)۫%vuP?t RkX}E?a(OuH%ъ;LTn.u|5D#L`Dz;K3"݈6ixn7%guu^뭡o/?Sf%^Q=+A;vVAl&mc&n!ݡ3=`XȍllO?R-UҵpS~OIzv75}Ry>O6E W,<|w ?Z9}N'M[ s"vԤVʹfM|d&b=Bސ'm_}VHk#َp" X7&L'RLuaWgK~LQn6C}m"'mjr vy:uϿhFC{zv/hcןWy6yǬ&wl̘=PzJㆃ mƨ!bg19qsuJ v8x &E+W>< 㦁8a< 7!- &x/k> ҆0޻ a/w}߼Iݧk޵t[9j췻ѣ=1xƲ Xj eߗ/S!|ΗBT8<$iC}㡂X7&ԏSLua^׳5?(^%?v9fծ?&bݩMMsOqͧnA2ƫoĹp8o\ÕimJ ny#N*Edgv70BCSǤ\&}pjwz\J*akxxN0'r+Ч7esQ*'woWg:z6//j&[XQ1N07H"+ZHq`WX?I3<,a0N~L2<3KphbݭWV#|vkXǃ3ĺSx-֝ v7g|ކm*ʡ?yCٳ6?M-M?M%uXDWm'˓ɽTGgM{l򪏹NXXXu>.׍zc$YK+aB*V nϓ󽲒8KI ŧO7{ub&Dl E0B#YO^h rU©MyÜr}S s{*Mcr FK`\J۶]L-Z7拷2"MuNlR?^__W=z6yǼ^ݣ()֟)Q٢H]tT+ׄ_)=H{č7pD n #N=z^Ǎd=. VxuL+F`X-)ʄzon׍\=/=/+]M0m]'X]]a)&8 ~hI8Ahr]I=,v}ث7F~Sn{Ix:Tb'HC{I=ԏWחI~L}ՋgW}+=P?3b:ϛ0]["u>OInL /B= {&m:cr#>2|烰.015fI jNOGeTR1 ~LފV~QH._Mы\Z, Bal0 m㏃Q[7.\ɝ׾qiK@< &T.Ӿjr]I= vzUDػ~x%Lcr2ʁ<t{BC7] TFL٤~LWx6yǼ^ݣ3%֓|''>1=X|p¥t|C\3ުi-xYɍL?pv$m;ܗnv 70 /v)+ Ώ*L`uOVVB</"c*atv :aMt<?Ǥ~"̓0&ɲpݿB(ya#m~Qnp^&/ĺS_l,LuT?^]_1?^XM^1/ź(BNb@qanFA?&hО`nݾo:!bx{*im>Q1=6+;`"%`;`c=B(֟10+.BTbR $vPO+QN!^9XJϋExtAs!-A[:l,E !֓vQ[$7y"uB!B(֟.>?c륅a[ ,xďf?B!bbݖ/tR_*me~Xv'_tawGB!b=f Rߝ}?|DgrɮE|?XI!B'IWw};ekR_:>1^9䡙qv.Y.`!8?:7aB!5 EdN9ŕc SO4b}䫯+T-cCC|UT9g96yV|$Q;wBGYPNKU qڬL!g\YZ=S^ψ)T@E W%D#?шuHJ+;ĺ5]欺zԣuĦvc7G"{$98wc\Pқ57cB!5 & =E#| Yg+ xocr`>th1SRW?o$9BF1 ϵʓ"%_{%|Xmľ;s![iq}q=)XŰNe:b]z\‹ߚJ{vb|AZ]W'A[t88~nǩo4Gw wz"g'!]ތ !VdEYp T(v%cI#=ua}ɎcjH7+ê~߻'d"i~X^O0鹎ώ6|oX1 q?9UFb;Z+>GOVqU[XzO;3%/HA낔Mg:χjhi8Nm">ֽiC%M[x3&B(ۊ FMn|{Ag/~ʼQGuŒB{BAǖʗq* q(_ ?M#8Šsثn@i3fZXFWL%Ǐ8R}mp'Rh>8YBJֳ !BZX& -c붉8K#xi:dWOh-M.?NbÝ*űڬ8~SqU[X]7eM yi0FWM#yAyu_t]EUS7;QYufIz%yx3&B(7LV@`mI76aDXF`ɍHmagw=)v(&e}aA~b[65H}9 ;,q=+c'b}vxIo\ތ !P0"I1&S4H,LF!1`3#``mEU6I)јD^uxF Yu;mg- IM4X7gЭz"!M'B!@1^<_`닝=.#D#ͧY0a?Z;dGՓ{=K l5-y;Fa6]ϜcPG6c*,Z-pŠϛгm7ԽSgOKzH7cB!b]wvт0i:N ~eBdqq bS0kߥ &@ xyz:爸nAosFN8؇<ÿ{ \OZ B"luIU[uJQ?(7ۥw}ooq>10H؜~W7vmO`?q\Ixsqވ !Xm sI.}tL;L*BNˏXׂ# gL愘G|Ef/"El5Т8l-LĺI~̶"MlíުMaN7q7#밥欣Gc s8&~&0BHkڼM.p:dtB+òUk4 [R[l̨ϝ:Kv7aB!5uϓ%?q߸ θ躭1.l^vؠD_>mS/מ\宼 B!A/3] HcLs$_;`;ex@Ir%Z~Xmђ)U5\:'8.c*oBHk2c[ Ct;j}mv~5B!l)!B!, $81XB([(X0+me~Xv~ ݛlw0BzKd,ۅ$;_=R9c':qoVa}BXo ^{ ^\9i[(Xlɺ&Bƫț݂Gnw۪IsDi\W 5yhmKjiq8 B(֛ ExdN9ŕc SO4bibLrWbݮ۳ɹNsal|bk0zꝻBu~zDH+*8K'` Bo4:5IKNQpUB9XvĺSg9VvuA'0o檩زU%W7F8}֟a BR L<'QĺS)K7}:US|#"urSS%!] B!q`Ev"έ*YH&X2"-ʐ]t*,Xs7\)V˪CdvDu@su>!lmҰp*\jH2'UNWy'=$#Heɘl+֭|]4fkU[u(ӋStPwvZ=enHQV]Cm m;hԮ-ӳm7[0f#=fo1X^(͚ȇ!x0[`gqEG>"VLB۵Y:vPIo/uFM .[n\.?Zݯ<)b_X:; U6ѓUtP+6ۥ%ĺWma"MFGjSG;ZW6ap`"mWIsjHmᔟm:5stV^sA=t wz"g'!]>!P-եÁ"rrՒo:X0}~>t #$<&m}J_#Hi-  )/vyzcUr7 ߰ bPrf[+ҁsF{&bݤnz6E|Nco f[_m}_2tz6uj ƋkЉ[D\Ǻb=#mWi B(֛C;FMn|{af/>F;G&Gb-0iWzU2?ؒU!%?A# N#8ZDbT{Nbݤnz6`U6D:n*mi*S<?^A)z!B(֛@k4^=P&. |T]'&*ҁ~rOpiAfRpqv\V.U8~SU[8u4R:϶ X5y'^M:I~Riw'J7?>z0I$oB(֛CxdELʃ9@2$F p0IGOFUGOsuZkf+<WmXxu3ԭXw%k%/pXwj ӗnŽ%E\X9^۾8B!%֭w7&A4L9>t" pf0}]i~L]s4$ H3?렾*<'7b˶p2TvT5Z ^>p.mvu%MTkP53nHjr 'n]n:aBXX=bZ?5pۻEe[NJFoiO'兌$0A"Q/29=YW;Ļt2>&"<'Wpң{L0~zrK lE^Sc_D{!1 0{u7bݴ-L:'7nm;HǢiaXA?}ߠ՝D?8{ZC|8BXo^vl0H@Ete 4'a⺱ރ) FO1Ώ[5R+]ٖB(1Eo3@:GD(We'%SjtND9q\ZT#!x#'[ œ s }]OB!B!gf κ'uA!u5_rCxf?kzB!PH匝:'7o]N!Bp%/uQ #<,߬+K3 N;U¥NұηzPf6޹dmcuʸ.N;|؁t~Ko!q=][סz?D]kgϓ^*n2isI?H7/6_5؜B(MvQw gmm=.?m4ț0=D v>甎pK]q7UykfW}FkF;OĺHBrwW/}{?H9( ! fOA8om?{EݳG-F -EE*bgujZ _bƺJd /:wg()֛ k tDI?IR#&w]X'PS7zT~`w݅uā q@|t>zyFKsgI5URߨxvb))MJ$y;ot^)uuaTρJ'c:UP I:z[Ir8wAH>{w`jea!53wKtm Q|.(ҳkfe}Rvy_`?eh7%ޖ}XFƹ`xr)۴E΁ 8'YoMn%/{{nD'|/XLf[8/mNr3FAzqCr?{*נWb\mT?n迺yUe:G}ٹ: ӵ !b=ĺs+n3F g;e;g$ ۇwCū [E-lղ#<$gw`xp#s]y$<塋tz#}y F9ynT}?&]KW*~;Ĩ; Q~ 1rt|G]Ӻw7yF$6ncRN#ezU./AĺӹL©~LB U2\8|H,80N׎iBzuq#6o=|b6rgj]DqG)ڡ !bC 5c7u>bƃ1nz6#8܀i$[hB#BI`PJwb¨ L[FM򌉁/.HסS{iwzzY./D&cz-#܈o/hV6i ܮ s 1q{PB(֟q3Z-PO'Ojtzx㡪> 8ᰊlo\J:ڻȃ>gpe%E%yҷ hW|yևjTQQ@z:R 71Cr`jL4nR?ײ67jVx<Ԙzd!,clǯ*ڡX'P?Lwnч{p"n켸x!1rm3XGľX:LR1D+&D`3;sxeSfF0,f^`tgHncRN)ֽ^ˋk0Qz11գ2Qf)ؿzFmQwFTצ;gu}PB([F}\4M8{WoyV&J(h3 _f0?O ImC&R?ri^vtd]&]0&ua_ъu/ ׍hÛ>G+]?ΠMDiRKzY.A8&I'R[8Տ|XxY%u.KKc꿮0׆ukǩ !bcY/=Aߐ>qfb|{h.\*INJ6-\199N ['TUnۡ~侌㓰̝:K=B^k3:PfLڄ}ip~_@dF E8ZesQŤMDikzY.A8&I'R[8Տ 2Vo¼jbA_׭h*Lr\BB;kǤ !b[pbև@p~kYO|/N!u҄N^`~/O%')_bQG|zB!C0 ATb"$vPO+|)OqUB!P&MV#`uh'6'Cz{wg;B!B!PD3jZ,fwZ'!B:qM:\P붶cQMEpTa"B:ӆf^R FOiu}pG!猝XqX B!b)qjҜenR:nz\]nW)G:~OLܚ5S%k$nFWK}y?/NrJ䡙qv.Y.b18?:7B!Pt^2O]aF5W]_4瑯 Pk&q{q~cgI녑w eBc8.u@,YB!b5§GO>CԊ T/A$M‴TWpU RKȾ-[E[R~ujD3B!b%﨓wǜb}$Y}:US|#C#u2QS%!]l!jz϶챭 9(p`d r5/cR~;,Fh̴|b!oS^nUoߞLLS>s^.=.]O rNqX\]}sҦS$pxJdL+ֱqw[R9MvY3'Wb@5ɸMM3IF7]De/fM͆B!WwnQD.&iBu'-"LĺNct6E$nb==u0}~>b_pON`m{KzKi[@Îۺ2MRykXBg 6m͆B!zd_%e;# ~rKa@S݊`#؎Q~XfvSA˃b} $ZE1Zn~`X6zO$0A &5MM\g >(_X2B!Ƀ}0 0}G爛SC%1u*z0I$oo6BXBc2y!,]lȵ]L0E녉`oZ9&\KCÄغmu/ LRX߱dY=3KzfC!7{ ~Z۸#իM&Q@EYDdÔjvYSJ`7]6IAZb~ xR۱7nb}LoF f;3+gL`]>a2{xz1mSSЭz"!M'B!s/|aGuC  A]QFJ뇏'>=\2X+y;Fa/`2g8Ӕ{j_04Sg {3v/V$umZIԽSgOKzH7B!z@l#Yk"&~R_;i(l!~猜 AKm10HJg,xn9w-/c8U*# SsuxD\7J:Eni\{J}𣎰uL`.xKcҦn][O2r8:q7B!P[D FO qZ,DA쵱?yxuy`zLu0<Ѱ<lwoWe۞k89+d*13:!bq#E`yYxq՛Ţlfo$6uk s8&~&0BX'ޡGyʳ lխέ\?^)B{ٔQ;uX!B(։7 F1xa==ڦ_^@ = >+]ٯ!BNb&<\`0"Hp[ 8_*<0 uJU Ή!>K~E!ur՝jU/9j/}v~jD!BN!B:zk'0IIkvY:qBXXof(/t 6+w~ ݛw0BXXomL%:ො8۸rB|Հ.}XBzb}\5iN2x)E&> vY:Z3%;8`"bI^zx͓/?|& ٿ~|w/ޕpp?!BNWI6UON֫/3 zR;!n'G%t{dO셲n}SG^3+jvȾgF!PS{ͧGO6.ogZ1au ȝI*X ÷m]Qb}Q]a!uui8:ywx).ܚPѧC/1_Q]ek3fjҰ׎U?}ߠ?JCB! E϶챭 9(pR^d Ydr5/cCåwјi!IC*puZ.V3߿={|}漺]z\#I>w^ qkbrv KNm]DZ/w WI^՜Q즽S25'}m{dLVT')s]?v[4y&SLӕshoO͚!BXܦ\L҄߹/|{ +aY'ZĘEpuEh#!b- H6q;4u{mW֫$zܸumslb~IyO5γi{A$c?^r̵v!}h;zRX_L@^7?q=cY>!#oq卍BXof0{?-WdnIJmXvk:sC0~awQ,֑FHxLp5Wf0q1k"_7:Xl>VCj2ʋ]\ٹ*êb rw-l+27x9A::ϰLuL)ۼE5|;}[;դq2҆JzeF!P<|W2?`{ɪ|َCR/ hM#8Zb*!RYTXvb##WzʳI{aܺ}kjT!bZȤޭ4q.L=~Fcc? 5P>F;A)z!Bz‹uI-4b;I UB_[XHsf36^uQu8ii/ `+]ه !ug~[[1 _Ac$7/:KDt҇ǥuLe&B()ɳ &옗+f`_s4+"4k_W`S!B!PSB!BN"9g κ'uA!u54o&?~zS5` !B(։{`wzrNfxՀ.}X'BXO8󒗺SeWoVߥ"юtRFsJ <:6A]9-xJzW\&uWh55odׅ֡> kg v/_{]Sy79"-SmuHxƯgIo@ބ!b=طO\[i>towQ{i@ZvK?b*/<#n@VnߡnTɹ^-E'Z:__RQou(F5wb=<:!Q' 7䟽#|KFrݢ"qgw{:j/1Nz^fΕbEK[XG3q? M^-E'Z]jםuźUS7X'bSzT~`w݅uā q@|t>zyFf0Mq#KT0ҍF͍Z}D5bՈP{*G(ۯ}VF۱N[mOe$ƹ BٻCO[g0zƚn[ wk;%'Ǐ?ndkfe}lϪß2lX ye9p]=rO.e90AD0~x;" E;΢e\G?xHpAc1 nif9O3`ƥo~HZod!7+3} O}3_F-У#z+r#ԣT9Gݨ2҆90jddQ_Z7h'8&mŽ.3g1zy]&^i{Qv/rBR,fn(R6U5EJ(R϶ƈab2 F #YNXw\حZ]*19 d,bR&{snjmY}y&&mjgXwNlp1 bS=ofuEb&s!MhpCs٤-׹`kL^^׫l^ݫv\P 'wބ*}"ORwtܮ>B=(EiwtAwZVwo!l`f=n.tO%q{;=YK&LB^7ZE=#=|5F/ri샀$z1iS7lSzO >\!0+@xݜpkD°/ZCs٤-יu#Vwpuϛ{&Uٽjw/Ezb=oک''>1=X|7҅KeS7C/\vO|zC4yW0nTTmݓrc&nE@^k3V PfF֭ݍ5 LSn)jKC7,bSH}դ\&f~X`uwC`;IAnZ~1ڈo|GɣS?4=SM{:G:Hn+AE>or?eݽ,!-|rź="wXB!{_SIkz*Y'BX'Q1A=>QiSY'BX'уIHIB갱L%BI~B!x:z'P5idEHuL!uuޘ~{K˧/,]/nKc_Ϻ&B::qÛ3Կ>+ZNYyHi'jX(9!B()ȼijm޽Y.; TŒjdsJJW߶/޽$g̘a]kղ`?||]-4u mZ^o( q~>=$,2[8lËhzNd>Rh'Ӝzn9>WkxPSo;E{gmm؏xۦ {o"q܃}qn.Tw?S:VʕdB\?^;꿾~,3TAIgq(?W''OɹpJ+SO_QI 9q{hEENNNNތx{gZl7P(g͐і%%Owo; @#ܷ̚< -ZeFttߎ<}=?=}*\t8b~||yՌ%r9o!"!([.TAƘm())))P9q|wa">Ǜ!bqF>=UP7IGo1MqzON9qnuub?3:::źGb}lhvrʶ7}B$mral]6<Onz沐 #oJOwnܱ'F\uZ9碉9O9ၘCM;8tkO7e [cۋ]'7[[*sVqC앎7p7Hb vE;!W47h/e[Ck~~u}sٵI1cbk:u֡vwCS]U>@몯O͐Rw0 i1i/gUM 8@z(8x[ܤ}޴MG6+sߓ~Eۦvש>Tv7rڝbĺ?NѮ::0.yc焽i]<ߏKqjfع(fe {-{wxC^80a? +9;"i|}="/T ucqFJX.FZ./¤>P-^sEjScuxQnR&l=qDϹC%oߐ9ˍϥE yq1i/3{q]}_k=Y-xq7gX5vwSm:Y`nZ.k٩))֛_YC'h`pa'G{M.x˶_/ŝf0~y݀mwUۗ}=_ ٳ8Pw2\XǍ7R=B^ON _/cs9ݤ1iw7itCv7?N }m'_ҢBCC8 X$/MeU=_=v\DZ9J|hqo1I"<2kЩMb3[sf-{`jd >57~n4-B,WSuLj[H+& M!Mi^!'aˆc`o}vIC&e6ӽGy2=46t6X7-{\sQS71nԓ= '}H4aeuې'(9a⃉-8}u?ǟ~ڋ :913/U[8^_WVākJEўMٝ8n`]=:4t"`jWC{ujzg<e0fx)MH~Lzs\^= LGW2:zB.Ի ujƨE{E& ag%~0pvݨA>1BQpqs}efb(&Ǡt:Gˤ]oI3&E`zVRY3+WiwTM˚WY]挰խ:~^/Try&pe:DF;ˤ&$I$ФH2Cg|~GxӂX7g//_pG:o\ĺ5hRϦc"֝erz,0nFr\q)75f y['Ez,,bjYM:v~qCf7O0䁸AG2u#k7.?x;ǧB^حw-Tp.!X pe#7T3oi[䭦`ya\^i?K\y53s9ݤ1iwH_rCxzF ޏޔf=B!$ Rߝ ~^K~;ձ~sХBiMb}ta".WMӲ ^JQGmUԍJ5ehWi[fJvTqٻdՄm/OS5Z\i}ߴSO. fٹdOԿܻeG&L!P'>+$UvO*jTzEz` UfKX!n'G%t{Q7-SgɢY;C {e%ÉuP@,<7bB!b= bgZ1aRW@; q8 -9U-\Eξ]BUl*ݒbW#u֟ፘBXOlNNns:^cK<&9n_ӡܨݟyo޿Q˗*IfL!s^.=.q$ImLP[/kgJK^~եM'6خ;…$/jΨyv^Hځrũzuu>r2&K݊jMe4{ 3"E\NtY3'WMŀ捚dM3IF7]De/fM͘Byz6Eb&J~ۻ}тw|Ȋ<"l,Dt (BoMtwh@t ۉ6سxlD\^(>&ՓMCpB۵?`+Op{%|XqM cMgEq{GkѓRu{7Nʽ\tD/8 a772i6@GzݸϛRRQc=3G.oƄB`D}vx_QΗIX&)bۭ@99DeXG~!1iՐ\9]sIjYK&SK ۊuC]aOy<;WzXur_ߴ:ONp7mEq?NK%c /T(;g3LTvM)ۼE5|{!3҆JzefL!v|W2?`{ɪ|َCR/ hM#8Zb*!RYTXvb#WzʳI{aܺ}kjT!bZȤޣ?N;Ucu?Ύ})ڃ {! YB!LCHji?Hh/8(z1~95pX+%1uz0I$ooƄBźpH)aӫ< ,]챵m b`X }ߒrL(XЄ g*MOnW?^vLŤNو{!uv="w,Y.zVxOŹB!Akr ^m=YL&Ȇ@Ն&0 =p.bm-l<*Af.7>epnc"9zإCGʏv;rLp7=i~w,f-G>ouRO:DUB!b똀L-|&0ʉͧ.0&4tahԥL Doǹ~z{E`*{e Uy;Fxa/==VɳS{]TVu1g9.w 31AyF^0*F._EB@"luqhG{` 'L`Ll^)ӎR0Ax)FQ`{Ͳ <09x2/6_o(b/:Iw~⸐XH։B!Ic Ʌȳ ;-^0;?h?O 9^FCq3xm#(D4씃Ũ`8Z?x,b$Ϧ}vk^BFvqjwXm?kaI鹴5gC>;^QzlfLcUwk s8&~&0BHk$z(!Y V;E[Vݺnz"MSg׎U- !ub `>̭^k10n6EϿhpq^Q_ʶ$B(։ 0]9̳>̡b]>.2a./H딪.lKC|1H!P/ ;wتx8uu V?zL"B:!B!0IYi:`s5pcDZ!u(f/t 6+I$`Ontek7YB:I Y\`/wzrƺ[ qoVa}B!wU,Rm"B7SsEn U` u#rw'_~BMig岪hŌpt,BXo=bxejYdy=c`W)&q{q~/gQ]!:QWV"AGkvHg^ !!?=zBq>CԊ T/A$M‴TWp/gǶn+lnIͫ:wgXBz 'Q'79/1%[xKWnTWO p7_(KMtYBź#=v Ƕ2rՇ*dkռIs^.=.q$ImLP[/ˈ ^7/.m:v~T9.\%yyTsFeOtU?(צًԭ*ũz1A9 q?vJ:] FM4&DjJI2rqǸ&b=/{77k"oBź3tI<;o=c#+D@@ '(BoM}wh@t ۽` Mƞūeە}%F1 47nbܮ۵X_yR]_&/)cgɫ$vqǹ~_q;7WM)])zƨIzH7QB!b33ώ+2"r7 $Vc5,!G;yXG~!1iՐ\9^>KjVC`j2 FS^b\?xqTx8INZ2mWq/x)q`mEMMㄛ8US6oq ^^٦-B!ވ;ȾKVvG€8|'H5巊uGmk72;z2[H8N v0yg>Wmm~'hǩ=Ϻb}PJe!BXB3D"4>_pP?z'd" k:h~eoILb&QW{)QGu2 Fcih3ţlmS^K{wcR?0!tfߡbr쀾eM0͏S_54C= J6&J!P7Xh*a< ,]l]m b`X }ߒrLLXx F<`"+&Q~}悭MSmi-znS<;a%E\X9^۾87QB!bݜ7{ 1~Z۸#իM Qi@ӂEYDdjvYS<`_\6^6IAZb2|aA}3۱7nb}LoD+$U`8+g,0KmDdLr<ӾjuRO:DUB!Pvj p{P"êaaLi 6@lu' )jK}z E`*fX:&9BU B{xu]B4nZ?pO~jN@I\8sf[:BbQhxԱ[T$?&}\Aݫ;Xpty%B(]Q}#8jڮ=&a"zEQ؜C$Yv9A?3[ #mLDLFѹkH\LMF/$aX7e&UawǤ~6\`r ^ܴI~+ϵzo"lo۵5>q!#'έy%B(֣sWSCaT w~~{mٍ&9^Fqxm'H, {`Znh1ⱈu)վqeKM^͒/$y^sVțǤ5\ZXR^JB!b4z4wL-pvsO,J˦̌ܩk*xB!뤩bagL*,wlc`O)?PEkO.~rW^/B:iJ`[oʅXJۚý# HE,'SjtNDw-}8q\ZT^/B:!ށ/;;eb_OԞVZ[~f`׾VOGBX'B!bb&0Ijbsbos5pcDZ!u򬙏I&Vظ$MKzןP?޽Ooq} !u,1mhL|\o;;_=R9c-87o]> !cta".WMӲ^JX L9˱.tfJvTq>%є%0O.֫<46%eUp8Y!uu̓|Wm!6W]_4g,0*v$N07}/׏K躋\- Q]!:QWV"AGkvHgG!PSӣ'{{3D0KukTIiɩhQji`4>uXewKկn^(q\=?!BN﨓w7`5LxnMr(ֽO^brvOcyRD._Jj$=˛!Bdl-n'eNVh,W2&9Uhr0K#1BTVNy]Vf9ֿ{21yuGi$}29GCm/#v+]z)+oWߜd[?9խ*q-{Jz.uӹLe':ڙ+yb@?7jqL3IF7]De/fM͏BXo::("4!w {(NJGV䉀eS&b]O^Q6‹ߚ"!  2h{@:=W˶+JeՍc^=in:^՜Qvه<߯<UŨò:\;5UӹLe^N 8bi KEGԈ^˔ܕ"gX9jty#B( BȿM7InMB ~/1r,֑FHxLp5Wf0q=!`_7:Xl>VcĽro'!1i s˴"\(ݔ˔[D\Ǻb=#mWi o~Bzb;ȾKVvG€8|'H5FZVazƷHĵ !nR?mt.riH`&c<`3\1SYBJֳ !B(֛UyiL/؏0!?z'T__H':-֯-Icw9`z/:NFzkԏi[8ˤ\n `A]fąEifRQX^bnM~L\&2mWk/?[o(/xsS.7ܮ ' 9utn8!B|`D&}[0zJ~)b!"`w!#Njè;`@TEy a7] `M^m{(q~#(&bLǩ-LeR.9ל/ B/2rSz՛%=$>riqLbJy)M`!uҒѣSvM<X u[uv+l̨ϝ:KvBX'-|A1^XsWz ۹{MQ/\{rA|ÇWTB!%{_X\,aEF^zTx8`NCw x,c]h͔%yb.3-$_0iXxHeWejcg/sϜWK0{x?IR.s492bbbrv KN1Y*۲\ˤ\0: 80:9Ro.y&1SLs85y %Yy#B(֛m:$M·w" y"DhYĔX|mWlⷦDG;|L E:^0NcղʾupzuWO7!:k>~Iuh*F5کٮeR.n-L@AڗKQ.:FzݸRRQc=3G.o~Bz™@~vx_IXbۭ@9ݹUDj0Bc҆!2s|k,ygb#{=٠!ݜˤ\#'Thmy0y]ueb>fJ-"c 6T+۴7?B!b=zd_%e;# wrKa@S݊`t#؎Q~@f q^ qN/8h[ֲGc\.L%;af"M ϨwvsL\g >(_X2BXoV^10c?0SFqC╽%1u⮚fJifיz"G&m͏BXob21!(,]l]LjE녉`o ъs`c:D(\f+nZ {GOWkV36-"ۤcr׳2{"gg/͏BXoz5HDi9m0x]w 0QXh(k;.Tm.a0k#+69)CKbO_ jRcoΣJX3`ܔ+wLI#ؕ\^O^"qrL)zBEK=V !B9 ~ p7cENfaL i 6@#lu')q>4s`OQ:&KBU M]wĺҢMMM0u`\v7pocxŞEbPg#1S}WwiIG!P7 O7#Yk&%~v d(!猜 A]Km0H/gvn9w-balwћIeDa"xJ\7ms:⎸Mx0t lݿiN1cn][O2r8:q7>B!b&"0J !`SH-~B?_ߑEbf0r<ѰEq0&йgbG=Bb"* ˤ\0vܽn ^sV0 yMM2Pz1p+馏5\ZXR^JB!bd!zSku&0{7[`%\EͥW\?^)B{ٔQ;uX9!BNZ*c,P(b60Ǘe^]K10n6EϿhpq^Q_~N!PF`3饹]>wY,`q, $ |px)U5\:';ؖ> >㸴{*t9t:I''Ԙ(N(bQT488"jqC4!`{:ι>|]*vm~^CZkOzֳ!b<ﴶXm>2t3v|q(nW:p=Dxs}+!B( !B!$1Q6 fCF:BX'XN+$Kr0Opdg7dXB:y*('[jDg+!?ݽ[jpOB!b1~+i_ ŊGUuNǢ;ŇVg(/X yX,xy|^/UZR<[/I-ÆSSB!bb)%9yrGJUW `EMr?!nǗk Umi+]Շ奒`ZH,Iz%B()֝c]O7`Z>9C~6䡄I/v,\?3_EPZ~srPA}-BXXwBxqS/0C95!1 \:7=#1O>:T˗#ReB!F7z챭3>.%M]W)\[捛jKˆTǞmք &-S #*uJ5ћ9s|S۠n`I<%w5rL[1M~xfYnxφYfz1.Ff[jl'ullة}̔ Se|!̅R)B!G$M-·8B:V<kR͏BXosf0=)WdD^IJM_xk9jC0;h@Lb-0]w%1"mf6kXǵ>d4m{vӡ՛7ճވwd]>HLZ0J20I^r̶)>fJ|)\J6G!POQ˻XO(ݳdؐkx+h61&uUr LpXT<`*&Q~S{ff`d/LͶ-ȑp_D-wX/\LuƸI)͋y#B([Q}(Z3}7!cTN& Xfc7QJ. Gnt,LSUv_&Gxh W m{vzezIQ۾{F{$X o𒂗w"[/e3Tj4>f1k+b"t*!B(]=0ҫ/\:}x}.0cR.cx"a>GLVDoG`kO30 칭. , W DѓԚimq/O#Q?0y/VH bPv#1S}[w~I)G!P?*7#Y6n0)& [\%Ea ek>gd/.k G٘Tsƹ`RUM,ǮXY y!VFVEV_\ŵEh/MբeWU- !u^c%ևe]]KG رވUvIW= ?ElKB!bG`6[xg}4s8ׇMxA+v1qnݾl%vg;B!uHG ?cB!$\WɄJ?+I&9aՏwn8_aGB!bT@ ?v?ݿC5Ş-5'!ґ#D\:}+nU;Ü9Ǣ;օVg(/X yXP7իJKJgeZjEp}BXoyY[(+m6W=_5g,ȃ5*I_nx^83jlmRIVTZ$yd B(6<>t9q3Tל/`AJ1o^0ouWYYQ%77.O}ײ?B!mcmaX_4agC1brX;~?|P._nHy(}Byz7z챭3>-%M]W)\[捛jKUa*c6kfsԄvEU^fMߜTLSmPʎo0{$o?R.c41!X?fzrrgZϡP3\SyLϵakLTn_BVת)=8Pty2?[I9[YN5n S2'Lusk"2JysSfL!kR͘BϏ+2z/ $ޯD#!G[؝cWh|&- #ރ9] QOrw.XO&yx?bDCA1ԵݴøX^s020~ǾøM 3PX0ۺs2QI[R_ > B!]Ǽ-i9m+K<;^ݖ' sk9#V Qz͆"˃b}{ $F`uXePnC-1p=0~׸M'\  GkbGma?n =B!u.-l- ᆢb?Dln(c+'-4/* KctEuyOlWԺ)qd6RD@L0XGi[La҂QI2 gl[ݛ)eE\ JrEqZ) dSn-'T:% wX/\LuƸI)͋y3&B:Xw5{2FkI6I@Vt08vfa4W8CKb=."aVA]ᮈa)ϻ| "nu:4n*փաi:L`]69C^,h{L=!tcW:DUB!b9|ZM !X]aLe 5G5jh@2ގsmA#T}B%1*om֑sJbH3}'b"X7Cnb=Tz#+W<[ VqN֯9)8ǿ|ߨ֝pE?uRCB!@kXpM~3Y0:]a L{;?|oX( {i_9c&~p 0("q8L"ɓ+ $/$ˆwFB.z=f8HCSnb=T./t|Ï:7ʲB%S1i 'ܪ!2 %ֱ?ʹy(oĄBHGAFN{t[: F#ko|[f P nȈsLz a+NhѺsVDzlCաX7iw'b=Tj{/Ok<;^0:_Aε<7_ 11/F;j 0J+hC!tDNZ6|<룍NVU7~0npaKghiClKB!b/ŢA Vv #DqoĪ__FǞ\pzO%!BNL)g ,aɺpI 7߾6"$vWψ!?Kv$B( y~yvyتc wK!=:Z=&B!bB!u7uHG ?cB!PSGa귟^W?޹n~ !B()v?ݿC5h-5'!Bz= ՃݻӉrQ?7H޸k8,nXg; czTiI)y_ ̓ÆS촄B!/?۹S޾F/X]$/#W'DI\B8oOh.\l}8A/Sek<ϱ7]_>X+32Z$iKfB!PXN2oG"o|I( :Z="-b=mK<2X790ou {c#Ͽ~[}wBHw_츄B!KM!iU+$-"\v^B!v#w5}'k.xXq:zկY'H Ste`?Mf3sSB!PGʭBU[M;GJe爸9vQCG=ry !B(֟7ʼnXjwuH`JfblO6mVl˳yw>(/q +QමxoqIR^v^B!g F{zq"ֻn*<"+OZ+ޮbUٞZ ?%" }? =B!6mth*OW\E-N(yG l}AIGꁚsN(olv^B!#::&m"Ⰽu=!tcbJΜFA;J!B(ۄX?ne,alFUˊ/t8l#)K|߭;7Ue2S'!0'~OLs/cݻ$B(۶X?pS/bգ:uJ6{4[2=Ey|ٵxݯͶW'Ψ[埯?tRիJKJgerݽ7a xC#B()#AINjx^|ռ{K\U,(Mrp6^YŮ4?tUzW $A"ɳ$m&ojB:ź|vpW7`Z>9C~H䡄I/v,\A!0o^,`JKon\*ֱB=MBXXwcmaX_4asjCnƀbrX;~?|P._AHy(76B!bM^6{l+# OKISWUO6+{+ԼqSC?=۬ ӛLZmߧRFUVy5j7}sR1MA*;*ѓy:,JmTXS/DŽǕbɳݼq]Ǿv; Wȹ%_|<^R0_A<7_11/F;?NMa.%/VBXob=rL!PS? FQGnS]9G رވUvIW= ?EÄB: Lx`W?1 _Ac$7oo ūgDt%vg&B() &O3UH/BCztV?z"B::!B!$\[!#Y.D.!BNZLr0O0&mkaB!P~OLc{X'BXomd.TvKkO'Ft#/{b&b㐎am6؎er>x-y|^/UZRJkC|roYGz"HRP.ou}p*A]|֡"P}#4q~QG?yE͛v/Zz?tܟ#}tiV͞gn['BVg;ww؈Qka 8K獃-Et779^ jֈ4KY;X[ڗ͌1P7GX"louu}{ a?|ͬGiLwysk/R.ֳS&̛kțG}Y"m$VMU؞ Q|qW'KyN+32?~R%װO1E W,"s9@}]3c͓K9&g4v˘]p칩S+&HPn=;)īNh!*Qy~acLnWK^T|&"ZyRCܘG;n3k`ܙ~McoiP1?&PlL&nQ="_h+s{sNkCu'l1Rnb\uXlڱE%b77Xf,aVt7o'W_hbϷ#'W:a>)?m{8<9#U-lv N-P>gkvóuxmnWOHx厮ʬJ $`xЅh(ݨg'¤-Z|P&ԡϢiLn[bԤPg_~`+a پ]Y =xS-a`49 Cճi1?74~A^~2?7;7n/ZN(;7ʼnXY,*<ƾҭX/[ēMmc[`trXs_oToJ۽y՝G72ܤpC7r'ptz#7)gƘ 6*{ZfG00~.VɃBZt`\b+ҏخɑPF=;)'&mњDx< 3w^05A=b4/uT۱0r~~sF}Nw0mc*C &9}<|&&F ƭw:tњwB!hO/NzM[}UkERF`|G{(pn_=mç7܄Lodi!Gré1#c4atM-Z`cWW>}"<е\Ҽ mjݪg'¤-Z|աeɱn)-S]`u ;v<M_B(Re7z9o-n/u0/ˆ󔤱*Q9Ӗ֡uu?bbSϟ;2a,dyH֮\#;M8fқ 7: mbXXI °Í\d"~I[n׳rBay>bXnp6!ݹq{ad#瘟 aQ+e2|mۚXXl-nZϑc>a 1ZM>ZbݍEk :źGO殖0u-1T Ƕ~}z%uHɳ+g7ҝ[b]j3E?~X^jS_p:M`47Mu'뾟8ۢXw Ӷh Yf^3 ǭ2eR ̚9;n u[tT ޢm3S`~褞MbЦ"27e-U%֋w"NkMЭEk :ź~sCZa[źhB^D<ۖuF<-k-h[b]BŃX `2v,ڡ>ö-\ ;}aۈl 5ޟ`F=;)'mZcp?M?03cqLH8L#)p.帽<i\OmΜwZr@Ek zx$OG[O|ߴ\2".ѳ#H&~LAH&lbMCm:cr\>}5n,#^CYˆnrMϐvFcr?tR価G5'xkI]iIh;XbSPwKq1MB-"đTC51<>a7s;/N9P=yOaFYp.Lv"\3F`ib{HO0rhrֳrBay>GWgRwcqLDO}_!Z^`>abb4&#n[scS8) '}#X1:`꾁\ab@|iJK?4.cϝԡ[uF9G0!3'wE:5骤dSSZaP0!f"ҞJ:O+8zO !cEGQc._%XX'a*X-KUG'Y'CK~,5!< uNۋ BNvHaÙ,J>Ip9YYQxRc w_ B!PS_n۫UQ',xdww3!BNJ7MYUz#'% gOLs/c?ƪOB!G\1uN2'x-V\Q=SKaGL5+3[Ǘ]WJށzf_uS iI)~lYLTBұp}BXoyY[>VUWyLTUʂB$/7VF:M>2qS} IX]28jPCjlus'ule;ո-Lɜ0UF]2X\(M›1!..vHe;iPcZ&npL 8F}˸-L)q=sDWJy(7cB!f0">?zR($ ,^z"r alawQ__8x'$T{vdtQ/D==ED~4bb=9~Y;ճ_KxPv:bW{4jv797`BcAEh@rм4,Qis=6_QXǵ>Hճ3Pbnr>nM0I FS&܂)muoq2(>~)4ooƄBźpH)aӫ! ,Ym+؊6N G녉`]x #%!`qh3ī NźPuDjwӗ7ĺV`)."bp2&"gL6/͘Bb}Tߡ"BL{wկSoI&Lr&YE T͒Ӽ8`\ng [(-pYKu"&ӇH?6n'-MDXV}e2u U0{xz1m SЍYK\V !@C&i 7ypW7cEGNztA~1 O1=֨=d!x;v7ϵc;`.S qXF-kZGJk)M$#UϰbݤMĺiPum\oq*LZ9Yb}[w~I)fL!t=@`5v7dIv0@ ;`(!n~猙,AÅs37p lL9\0*&OcW,#IC pyI:|FF#aMźIPuYF?[0+f~ LǤ-p#\(X(汣B!Ic 9m/BDؾ`)~l!z&FCq3m##12끈;ɣEE+[WO'鑲YUbݤݝPu>%_<x|Y9|9/ļ-\(+ K_( !:i9zv6V;E[VnEh/MբeWU- !ub `>6[-"ďcǽ~}{rA~Ջ=ٖB:1㆟yGs(X9&%%< |~~H-^5?#ז>ȇ/k<ۑBX'_@ eUb-9j/ph~jD!uB!B(IvũCF.\ze]B!ba귟^W?޹alOLB[ X'BX'΁MOo?|P͟:q'wn=N!B\헸מN܋Y'Gz_v4MV!ew}ɵ^vJ\G6'm"y߻GkΛN-+Q_xV¸p޶MҞ|t^*V o]ѵ[5]IŜ#B+v?9V%oTXpZϦ׎=^Gi(Ӈh5Lr5O].U;Ucd Tz a 汣6Q=p3~?oS_yjxzvrf߬-ZS(0~*GCEe|>~L4^WnS8RouB>o;bN:u'BXoE3FWy¾bckqDȳE%f0uXʠ$W'! QӇЁ>Fƶ.]~uC9}ur(4oCDk|Ȩylwݴùv/KԩĮR"pr]Mm8F1b20)IcUŷSjRXwro!V۟!;2a,dyHzwq*&í"ɉX-W0IA6'b,"=XM>n-\}a?Nm5#ܷ-՝y UNiN ɳR;sVA&2:9_rU3tbf$&Iv}D7e7-e"֭m 7^};q~kI96*1Iڏ:Ipwiq#dD\gGґnM $}'8J1Y ` *0Ce6We#^We/rMϐNZ$3 uԳk(eIqBkCiX팱Hw]0-?{^䰅;Qbr]n&qv 亜uAiv> דx>_r@s}101:!bg[<,Z`" ԯs{KTd%äDX'6Hy*騠>QXr=) iV&_xxA<!PHؑ-,JNHO.$a-9D!B!ځc'  B!P1)agRSoÂ5!Bzlw~vOLs/c?,T!BH&%VLKJiBD{ ~a)v6B!ҾĺUP'DI\B8ʞnqznz-[e.yU*--^HҖd#B! "9J3yOyp/4, ^=MCfy`k!BHySf^!al^w;)?00d:b-Ffܨ>"\v:B!nzN]DX羓&[vS2'Lӕusllfnv:B!~:4-k_6ϊXsD\;(ġe~g}WCtB!]^vW7D`cJ1<@5|VDӃ_Toy%&Iy !BH^VW7H1A{p`џ{G؄e!Bib}6UpP>_uʠyF}Sǣ}@M66hyJ6B!#^>ݱCyEغ[yL)\LuƸI~ӻ#nc#)͋!BHz4dj c;*VSЍYKOZ*;sVd*!B!mB]^DuaĻǔ>owNMGX%[ !BX'B!bgn۫UQЩ];,h~;BX'+7gUړ?p4Wn~B!bDISՂ1~OLs/cݻ~D!u#D\:}[ިUթ%U#qݚ-ˮ+%~AUߪ:qoĵ?DWK7ϖdU{o:N&C!.Kr伏-TVV<[beA@!nǗkoc[g}`JR}}A][捛jK'4}Ũo9{Y7;/۾O&T+ԭ*5kDo̥bMmUvT~٣'ytY׉Fx;3ul۷lL E9`L]EwT]F]/9$ܩs#&VٺYuXû{7눻{F /Y5-Q߅%r(O;}2nSSsD\;>kR͆B!4 aѓ}EF_%ax`눷?c su%;eyQ6o6BXw5{2Fk2l&9v"aJqdfI i^%\eCtpz]D8ݶIpWzIFhL33u2lr*XXӘ)zBƬ%ut B!ϽXǤojz/\:"99]$E]^Elv}h82ގsmA#T}B`%1q*omt &s2M{HM0ez7tgVxRR֯)/Qݭ;Xꤔry!BH{ &8œ',i.1AVKA9953fA7v5p lL*9\0*&OcW,xq@NC$.nKh-"}t{m,B7G3ID:Fq޸mt:^Fq=Ѱ;30\2hr a d4A^,noQ$Q}JF}<^,wXK}4&hGmBYIXbbEM`!BNCRO> VŹVJɵEh/MբeWU_B!b `$I`j^y?"nHĎFK꯿jtW/ޯd"B: ׋˳s9AJxA9 [j<FD-} _bx+B!PV˫V[sԞ_" < 9>XB!bB!:0 (IENDB`magit-todos-1.7/screenshots/branch-list.png0000644000175000017500000010146514472442451020734 0ustar dogslegdogslegPNG  IHDR@sBITO pHYs+IDATx["[ 阚* ((88N8 C3wWծ]]î9] ݧyn}=/LD}kZ/zzITV}mNeB#*IJQ a6Mx4cB.j!bȬv2RI)Iqظ,ٝCp.]-NyӍq=NXVV GkPX!lXGBpx(nuk/v'R4pW}i'=| 84nJx`0O)BF;S&OAe@`L?8w y(~ h@>5J?E{YrF(*!/ i{O=zsg+ ԏ9lX Y8pIr +ꨵ?J?Ak]7s9UФ[WˣҐwW0wD-=C?Y*sx NK<"x/;< W0hl=b?f?,sΪ=8{\|0wTT'޻\-'t6]_ =,ltw*% Y3*oH`B=2Uumtuׇ/iDtThDZvjӣ+}faiv )QzğFZ7oe,7ymi;*%j>0S,ȭKv*eRλ %zw̨ i"UcCH"nJRK_葼?$b 3 oG[Y2K pT|:3!j2'7=g/'SS-4[#ff:19.f76l)AP Æp,rG!ec S-mǗcmÛ??mZ`g<[+zbeNҪFǭjTd+ŕTD۶xBRqk|_VT=e6^y)DQ0x:2M{ /c;I#STV{?OuiWo)U.]b>]35A\NbV#{68OYCbmoʫ4nK* ctXeIΥHĝL9q}_-RL.7`7uC` ϒJ60u|£^Т ^o"sTk"pJ%>(@&bjrٶƋɮ*taC<0]ɵ+,{xdupsv6!#L{#(MyGG&th:mYg6 H"6\-)xxbGšG-Hݾz;>ݰls )K^;8՝u iK(L5/\o(j!2Q5 A\ 橼v'v?xdto[JC{n\3>iڝ\K[Y FHadUGSK%TJuZ< =*~M to(9t-)%! 0wc ӋyVNLXZwF[†~] !aD(X׸<"fu1'ﵞ C N^z:ǒa-"?q08K %1MǰdVeRCHDP.YzTatۺ{O+8wLbl7|8;Sy݋`ڰ>&„TӟY1OY8l{jq "b9튃)J18sGt?&VF:M8E±,jy4cm ? 7\޺sRcKuȽHem{ElQ`]WuK4۵,p X 0'|sώV~ߢ5U~24̽%<#>3  `@Fu.7eH5WcjJPp޻98|ηTF Cn, \ȺzYĜ1̲YJ!uK$&WX2CMԌI\&Uw``A.Q"*{~Q_*IMg7-?}Uz7ev>͂kngB.7ddXu ocBg4GO6QocͲj \LtThtlV%#$S ˕lF8k~wDa:۝=+[~p"!zRJ"~UcR<Ξ2ɰsRU9CNDy7]_/l&f-z\8 &0SկWRQl۪ƾ IV`CX@m S0W,/*~T¸C?0Dq-h)O=]uMQh{;. & biQUTŬ'qx ݘd{Ux84tUn{%w4n$ư[Z#K7t0HcASԽ8vp;lƫӖQl]kYHg!Kx[]5Wφk"/TEa8C#$YlʶѣM;:9`P0A(yFRec89|0y̓E6E%~ U0φjjf1{Dg"&hM3On`*h}C`] U0Oj [fyΊM=H \P+KVmWݶ:cq0~i"S3$UH01}c-eDPBj7(ZtU_-,e\*IrߵH> (umC*Of^?ƈH܉cb[ZM'2(f,]‚"MZSsaF[S^9Cnz($pK0Iil^ 7RON!b_<#\|R[] m5CkT+3)l(z92oʶ_BR>4B +桎* 4#Fu DdDؿݟMc" ߢQ*V!{R0pѭ__\jWei  (@(P0`  `@(qdh 3̤MVY1Q7dž\̔/Bc=FFc3o7G|k¨ *jX L:ʽĶު(w#/T"R( +4oS[:x F@I;3w?)˜bKsƫGI"@1_o6G %oW*nмCv[eRʳf;sUt4S*/lU`Y{"_8c&B~=*hל v"~6ߢǿ]ʉ/1?113Se4/c Xc?7X%{L"r^SDCLnF{#~̤"ҟq^ӫ%©Ysq` NL~,HOqQtN_V1X#SWkg^`E?c }:A.Su츺7#{̍%8*OSųXDZ{ 5B6Q{>JCMuT5ϭ`29gF rIޖts5?>*Z SS_ߋnGQ1-g& DfkDA ndv>f/^ޖ#S;tw) uN߸67n(IqcޏFZO"D[_B4T0( Z擙|*[[ u?.X6n." #^iBzًpO/-?Y.v pton +=.XdM)Vߣf.S6)f3 t`pK~$^ogY?Li~/ラ]<;T RWf뭥NiG' )RGD&BC` wZs^O &]b@eJbeF`tĿAF T\?/vPTQġH[9d&`S0Z,>&:W:'e̋-g,X¦+y~J4Zw 70i7U;l[ԓT? PK1_a1!u%dbS4)Mw`((Tr*d6`,)p|0JmLV~|c-Sx9{։^HQ-Ѝݬr?t#x@ V9Hy{+f'3KtOӛ;"^^TsH˪i^F[6*[SX Rf0HmֹzKQ7`Eb56N%e0F Cb4'[wc=#glS|"ݝEbv̇9 ,D|0HQ<_FX)Sb!I35a璑AQ+SA`BSNjGBl8^tSxoLMaG+inDX>VK܎AHioյfoD֨VfR0F 8|B'UiT:(b a o"U @  U0K)!Q/jL]dx v$&?i[ v:kwHCLYEɃȖ5kյH& Gջ E`|E mAՆ}0scp o=}-UҪȒ>\}3vYV-/a鞈 I[ #0ǐbn"jȱy)b~bp}g %b~,Hz5o+qazc!uBWgj7mocK\Ӊo#~UcR|UմnBx%1cls1~$7`)ĹU_י{ XDZ{ uȍ%d.\'rTvj'_ct6\'ma靣gVPqɸކ0P3@r*v/RYp$f7dL/Cbck34Z׶?yRD0#|2Oeb.XtI瑽g3}Μ1M1YH/{7饅U>tBDMw]YCVŔ5g i{ ch/8[S3A2!#]z e$^uxW8̟6ό=>vkKXyT Y{"Ʃ`~> c;7e7;)Wgjƻ7moaiAfǢm@GFb?ҹc&|=Erms ~AU E͵˜Cԙjaf6`1Ԭv`ď[Bsa B(TIrI2:j~ }f=qLQiH:joT0ާr>U_י{ WA 2kǒ XD%S0јYH{#y9`^4DApit/oˑSS٩E0A`NYP$iBzًpO/-?ef?]߂\>9惡y`ޏ‹-g,X¦+y0+&?3O/g )%8]Kdm%zG$V0E3&f6)\nI{8IgL` &g`v;;MLGxOX!U/9{xmṪVȜKAˏ\ׄ~ͤKj'~yMbc%3w)E-(:SX~BW0uok'5W"VacZ$xh  (@x 1Zc~$(sK"Rչ\?31u5V~ vd3gx2; 8Oڙ{G|{YJ! q| V_]ol(wZҤjxl +b\ f?vv4i{g/PBBqG o=o\HeDHT'|on6˪E0"1.Σ3TQ+l8~B~Agi7Ѕj޻+H)gS-L*}ՙ--EJ}~a&}31ĥT t&?^rwlRg IDQMw79ñSUI<;\3C(($-[  `ЫG3ZiǼ-,t@ Z2D#㆖cBꐾ6S3ɏ!Nf.nm9Ryz*;H@ufvЫ{ ,/? }Tg=my%)7#`B|Hp,H ]O*FF;t V0xVv1+.GeԻr'qش>Z$GA~*yQLP/é]D@w0 #xt"SAQE/LW2‹-g,X¦+y^ ^w/L5<";?(/k\bSO6Ray!?nb;[R͝Bs`@ ;$3RT tc7+<5ZKߘ;JSY!U/9{x%Q1ߩ`fЏ&g %Q[)AN˨Y;r?5tr72`,_aKњ%P9+!i MBx0] ;mH=;"L*\kszAI2=VM]Dl"f,+%7jj4_NvW߻L F|ir+Q A_ +桎* ;0U7EDPX`  (P0N(!Q}.R՘++HŌ ?5emrDQ|f^n s V_]ol(wNջ E`pD e4qu OqɔJ!!Ԙ<{ݖ>jv:!!B*[$BZ={6vYV-/a Q[ gCE-xYʑޱ)j:'?HA^R1Kc0 !&!a*u1`U0^ǟΝn.vnkg.>8_s_ I7{3HC7&{i=*V(+C] f'zOGlOO³ raɿ8NI TS JfAFv[eK5 Zxk-fZP0"{Ykt,C|3 cc{Ytë0$|\ ZE} [8BYxq@tXNڛ>|K{YDA˘lE-?qko UxgiWJY~yܚ7rF>|M^U \CdCX͂=.>.$~QGRGlxV}>޸c6sm6`'E(E#gNJE#ݖŒHԠ5}:SMTeus'PYcī.Wۺ[Eu!V0qLD嵠`@CS0^ÎpnGݩ?356…靥+cC%a2?v|eϮΝ95D]avaxO;h[6β]\)KIlh78Jonvަw6*2;r~"k^4m诮 6|=JqN)CEIMeXECvEB&Yą+4= =]T}c骕dj! HmOUCŔzxu61NJ}D0By`b[gOd- כTcmuG8}ռqwksN5+N~R Z2nգ'--h< "0yvgMwb'&J9o0kYe: 9]9OYsԳiߢU17TmA*BT GʒRD<׆&O ڄ=Tddj۞LOXMP=cu8:|ũ5`+7#괳vPOS%^obwvyQYvm 곲 ]|Ѫ; L l:L#){T ?c>=!hs1&UA;|6 .U#-x,l)3\FܛE"r `ZLu[A5HX>:qh:ۥTݮ91Q }j؜9߷j\Y?),w_νhyn_:e_3ݦ۾z4ڳNzp [ޡ:>LUe& /:}z(xX yKAk6=cI  Gg\U0}]>I{|.]\>Kwz(Dp|0`z38~=:`NXN:BLcuXq]\VId>;D &V2:3շ4F8'W) 3mѮ䃹k>4|0+k'2bڱOyoXRkpDw7+gT0.(_E5fzsrވ-_*C,)SJD};B`溣+O#/K`|lwr@qI̲V}ïy#5;+{g;x0V&w(!D=.<k- (x &N|&%:ݕ㫎OtD eϦ#I|q7*SKx>NѣٰLev6 _\q0xBӞϪ#m~6=a9E}`OIElj)A\ӥusC2XNaQo:zΩ-^Y"C(V #H^I\Nk۽#&Q]yd˴xgW(>[inO&gϘu;SOJkl:\#z|q0i#J`+FQ&yԬR3쌃 dR 3ݑ?Ԅ׏UÉ؉AX tnS.̞P Quhak(:H+!rulrxSw}KIl~J5vt>4hGH>†ysAKkn,fi˺VbM.h2ak;~nW*]$z?{xuW)`O'_Xw{H^߇,nR@};B鵚ZZ=ޚH*%Zӛ~x})Qo{LɮЩʺsdR[P?Np:DNj?jY>988[RO`H^k^D,l̟^ftMI_OLxByfU[ <@+6jEeYU}>mĠ30C Ǥ>MqeI)`F:HV. P&>6ꛥx@  (@(P0`  `@l E80s ESWc~< &c BZN,"/ZPlbSo搟$5U8Ee+˜G?4^]7%bGAp9zpj uNջ Eѿ~Hl}D" &܌_HaF X\D%N:O³ rdnWP\ViLE dLѾu5MM櫅HDݴqn6vYV-n/Px{#jk!lI[ f?= 7Ytf=@^xT&?^r`StN"ra*7T::n W>nʪ2z.)skg_,Gܓ/ qT^T[9zPg.\'rTv)a\~grMZ:# !Mj=%zԢ^2nfDIf"`wF鮂1q3PE-u^2^asxQU#0Zc+J7h}0.mZ>~K,˜n5⻖Ǎ6r[ی̖r7.W!4Z;P}3p S0_G}9Ƹ\y?(D=[ aaIW!VKmOa PYc82zev)}4kugZwv +iTYni7e"{d,(U!sNe D@ /b$Q2L@>"ɩ)+vK?ŅկjL4}LւVpN͒ \"f-޺p[,]Jv~kC?rJ ïh͵Dᒘ:B-_bILTqK4*2z(.+s-1͜V0$vK,X-Y:crFn Qg7ϫ70Ms11?1Se4/[_n -v©Y#]>h Yҫ25w{Qs-,,/Rf?fRQ08L~,HOqT>j:'xn^N,($hV1dT(ۙSvl_Q0L1clY$jŭ`,ˣ1~=DGr^tKaHk|:FAf} Dk3&80==k'~`Ljja$s#ZPv,ɰ6QɣIT*\Kpit/oˑSS٩7䒼-èTDŽhd\rp F{$и^ȫD)Qh{X_rS|#O,e]XȇbF#|2Oebk!g5>Op+ `͈k- ]ΦXe{тI~5QNGK4c4̩`p-iULD+y|٘^"1ntK |zp F~<f#1)av`wZs^O0.oäq vE )PT RYbꨢ@`>*Ht)r2eh(b$X"zD|-g MP]D) UH(`a+W:} W0Il P0_xY[/].Q7M_!}~m3woA~CSiƋj|= +Z[W)e#?>)5Y,r_:$ejNq\CH͊G4maC8 o8 &Ц{V}>޸f>(`fr28Gn<ߟq-vI ZhۯB<ڜi7n ^-E"*[DuO;+Yq+ "?18P0`f^F ɜsU.c8%'otx- U5ehMNEOHYX:R604\ NS{Ȟ *&_lcÍa ^bWsza:?ۿ|o?jHК9}xuujי7%B"~:[^w-Mm5!(aĎPW'&5GV{fcKuL zt׼i;u ]\>sk2N6TaLk_]l]"?cuƺrrMJ72~{@}?p@jvNuX:̡pN Ur6BQ!':fm  蹧Yٵj%k ZFF*5 _n٥D *iRkz}o焣/=f,} }&jPXF$NXޯַR0-Hrq)qelX sTk=JB1Td+ŕTD۶ЂT0Qi-( GH.[#ѣVm#:hs*`̩\Vx{[+s8V5:n5Uc$Bzrq0t~ pZ)F){'RH٘{:`x[螂\wg1q,ׄ'zN\,LG5Dĭ'~# c{%b zn}_H9*]=&DG16Y&,e1LA }U<'LY09ct5|lt j<}pvu$CX~ح]KCԬϜ ہ7l||+hk6|fD)͕;$ M33luGZiwfʠGx U0>S0o>3V0[uD=sCMTqkZFFj{s}{HD_.P8CtyǐXl7W Ș\[*D3Xѭ>GSte{P0ou.!ڕ}p)K^;8՝u ik0^Zvվhb{hjͦByZ P+fy'jeI׷^O7,('6•Z5z9-]"Dt8:/FU0lt??`0`ǭ^> -js[X?WO8|?hqn/ `]8Ctf+q )5P5עfuKbkL)|%1Q,Sxo&*\iی5JǏݶP;|0Sa㞎{?ua ZPKBD=]q0lax1㫊pX~x[Y]D( y <>$]Ҥ.$p2 (]3ƭ$thN3xnם謢 ʽuK?jy]MzۮbۢEݪ5y~0pſjj`ɶ"h-HsxųT-T`7qʘmj\iν<_^斉hՒuTtH A)5Ȧi /t{B;pKVa_10qb&T0Z$ZAz52Rlds[uSEL_X@<ԐU!AɇOj J0l=.@,`tX'5r2  `@(/TPC :Km97doٯon3!\t e'Fӆ7.-$/ 7oy5Hy9>*?gDoǼo<?؃G`^ڪL7N)s/N{6쁄ejKu2g-*4Mu(?xФjx[زduG+{`Ѽ o 6SځHyA2C:Js ov\@̻=Ca(y_ +Zh/'-+gvg 1!,̓`[c_96s{t]@sQ0$vK,~/R$c'mub*[D~_OŠn9@|(!>*=Dny0H/|Td9*1H(]uQS& q{T;a*ͳ,"~:[^:7Fkrn;P`9Z-S\8}'+p#5qOGKb]RHوtݣ秷CL zt׼i;uS*~ѳr~25BC5ssVrԮ3o2.aLk_]ltEFOZ9/0E{:fTgshg2G ~vFCeflmsO.-%jyAI/v5yw6iOadJٌjqϽ0Fv?R3/NtK@ B`6] qA5r Avg툺NLqh=7{3ްy {dž 8G<WCk׭8y &*]c ܖ'r#xo\"/y'P$?HUGj@\+xI<| A#evI ?AS0zL<08"-IL~# Z=^ Pc} 8=nt.ZD` YΎ;ly1xb7^==-=~(܆ t;(X?׮d(~_&fp+ZNH̝~1|RVH`rBrG0qp\4~PyO˒Nuvxu.ǛEIJy2*gŻ&h&vtR08jBݵ+j۵]$xRI׷^O7,('6B[0ٺּrM*lI*+q~WI62Qfh,oy ($vtFv[%hBwEzMt=98a90;hG2`.]v;$~\Y>BKJ=QX?WO4Db˗Xҵ&hM3OyFR 9/i{{4[X_w`=Q xS bSO6R?|;5nI|Rl`fW,Y(Gdt0>|0鴫kfq |{?.p-H|0Sa@GHYWy.S0|0^> $ZM}ăw( F@[w"=.P`#j,DYS1F=ϫo^ӚPfFw^Yr)קUjrɪ-pn[]xԪ9v;n&aˆM5MY;Ř,C$/Z$|8']PF&W7£^~v-7KZc8ma ɬʤ|A[ͧN6q= :T}zlDL R:W Շ0Q-hOHd cune9z9 Kq`|OkdDZ9\-Gk:z~;hid?.p-H䥷oڶ8 Z>my/W Ƨ=`!f%bep`^;=owD>l<"&`WywGi ӎźu0I[Ԡ`y|"%]Ҥ. a)d.Q~!qk/ ,=;!b_)TOY󻆱D`pxEa^Sżv<!D{k]E QEro`jv-e.We VMӫ%ߵH#=zxkV@ ) ('uþb~aidrg# K힚-*ůʞ!J*+_A>VCUُw7e/ ?r4ٺξ?ߦAz?,~fQz[ /,̓`[c_96s{ N\%eeeSɬ` hlͻi=UAާT0dnW]1EZ(Ez%*$sVH3Es+JW]FԔ H\l^59="eŎcrHوtwZL 8N~k[NjG>8DgԬ x{7 *&_lcg]ejvNu6ǞH6z #9(=R=Y8vSKKbJDܛ^/{NGP\тJx,*Ox^X **|;GKQ(iRS@irl˫RUw_w-K_?C{/cE8uNczLY65]RN`03ňkxꃱ\oiFK+g^ɺNl Nj{al~xBLAoϽUv`Xx_K%i쬺ͷ\1h^,k%$HX[yܖq0~badZe? '{G)?\P)kh (̮"# HclHCm&u01=TX$hi(epHS$P&MOpN.HwW0\]`[ j&8\Sq,&iUMi%@ OXOŭY$ߎëS@!( (:(P0a@||Y,&!-ׄQe Wǣ`^ڪL7N)s/N{6쁄ej@KGzRjo7sCJ9XTw J?p=?^5M5?JJsux?f4ߗn<ߟq-Ihۯ[Rxعq=TXHDeiG}7G'<>/( C"Q9t\pJ$N"9[@.#j$.uњ^bDZt^9lDa: d'SN靯} yqp_j-[W3es'*rhܜվsym:̛L,a0E[Y! ի7Ti,E,-(ŮW{KߧEs&^m{dZ`sd!xK៎=N /WFn^P˗We2{Xpf&V%өB5oNGU=HTOT>­'~A&!R^hGʧG7kۛoy^=˽̇ *iRS@irl˫RUw_w-K_?C}cXF$NXd`,ݙl b5alky*9R[-'풲`~H%[@Hcڜ^\,LG5m]j1DvjTd+ŕTD۶\ԳzbeNҪFǭrI..7lm3&J\=(R#0G}QR!T߇킏{*m.vwjrAz*GD݁SP;Bp;vGp|>~'u8#܃x+=y{hx fW G^16q6XRQ˺kOcAxOW4ar2j+ Ek׌(eҲҁ3Ln^`YMy85 |K>veYSd)hL'nX_0,f(A=g D_bQyCkWG2eg!5˹Zxn{pAz*CG݁3M6޵;V07pG_. d`?Cq u!%$fHA?n1qTg[})2(q]/ bfɺ){:V637ZZi8bŬopSX?WO/Elbp.%fmwRԽ8vp;lƫSwzI׷^O7,('6BF})pS2kOSgT+-D]]Ng̬Qfh,.MĐo0TI8t@{` 8 C|̀ ^w| }{x0|3Y =R0]Jv~kC?rJ ïh͵Dᒘ:B-_bILTqEjmlUݶ3f9}MR^SH><6c񋭭jV0VͮXV>5.XشXJFo37a=Q{WDҝ>"M8@zM>~M^6鴫Y=}{̃S0R tɬX܀y^ (=~\ڗ732E| ;N ;7ublC$C4ib:}zl^~,vZGV癀oQ`,]Qlax3\:6MO}Q+KVml!n[]oͷh{ KHfU&5cA&8k)=2 qg os+9T!;g"NvG` tԧ:';Ȝʹji|Mq0>NЛx#܃}`ֹj>)jAKw(w`ssGkiRDG=8ąKwC G^Xw{H^BhtzeLF'դ/-Z\4cZI` ('uþb~aNWS&{yӣ _ 4ٺξ))Qakq' ܚ,uʼ4?Dg`-kn ~  `{¨Ts5 L:ë\HMDIx2g-*g[Q|fJɒw*kFD,4Z;AF]CqYH飦a^koͮs+2M2=VPS-1GpvYV  Y!bfc&B~=_^ѢGHE͵W~TS4 v] fYZR#moav:?^r`MW9} BFJch!l*Y]ۥxܚts@WOl!]NV1o[`%Οvp"Ʃ`,aOg7?h|21nڱ$.vpGufv0cuoVCG'mQ3+ ȸdv>f/^ޖ#S<%8y̍%8*OS%ډX+a\~g`MZ:6i(IqFZOGD[_Ba⺗Ee «~e!j7p˟^ZHPVv1(AtS̟] q04Fky8Ts43TbSO6Ra8[|C.ahѤ=GxʤK͠r:䈃rI7͢Cxe_VMs2jOŶF|L0H01F@)Af0dDDeW,t+lQ*Y$u`ţcXvI Gl z<:SX"~B~3w)k35aGȿƎsE%θ1cݧS0D*zͣp2{ ۟!!b_Bĵ=kec ^GW'56 Gx odq !J*-TRYbꨢ@(w).EO %YKD4AU[쫋"U @&"sL}O_( _yށ `>Fu.Ww&1u5VT0︣*8O$&8ud&b1-Bjb`6љٗnu**E;=Χ1ҷSJ*S2V9oemDadlxuo5ttՅ-iRzw<P̻T,dILQkzPTȞc$)0);+"~Ɖ~^1aODgsPg~#sYMM櫅HDݴqnzvcͲjt3|Ho-b^ӟ63d U-Q㹁 k8^*=%>#xy]\@g8KBf1,RXƤJlϕۭ*Ltzmn+f-zk`Nļ}^( rO,)y\b 3,+xnD5MTVsC3}U #}g 0P3pZmTQ,ѣeq#JRmovCD}☱wdɞJ-æ\11љl@Ly p/8+/Bax(vf56N{S *&/)yM y[¸v)i~]l c^NɺeY[%8_|u;'-X<<` Q̤Oސ A_ +桎* 1y U7EDPX`̻Z׏` E80soS Ts5 2t<| wS|_#kKc~Kc#dA?^f Hb2HeJHg Z̯rT~Z(˜'qժVWFeMhRzw<>̻/ƿ_c9# (#JS@AuIϦQBKѬ9<xe?՗ _`E\Q*:]CqYlii䥷![fYY1sʃx \X! W3ZsuTHeLпUok#1%_# wUl]/Z1*kʔ#YUI>X׷3.پ`b}o mۉ1*Shlc +HŪ،aV}[-ѿXPS9ҿ\Ǝ$))/SE1ҿ^Rl&M2~tC':;t_(Az!ٺ`DInH?j@k  3a5a)*GVR[I7N )]tR(:N.u=2=28ڇEzy'T]g:;۸h A*|0@P!$w{ti׹,ATogIwBRN򏽍$fe΋8>P{ Yv0p"!1 efr3)lpy4~P%a 3lL`M;:9`V0~=ӻqҌMR뽔JD$dI"i,%1{$_+Џ5s?f")~)y>4Fky⊃>`0lz<49+6d#8 SݜCdL SMl 'SU_MbvVbڻ%$i/mYL#HJ,~JOy} APh:iAZ3k FsJYJ*l$1Fwȑ&?l!WtzVS.@z\vm0sK}ܯ!!b_By Q̤ǭ`Ȟ!J*ݿ4A* VCUx0" ip"HAU(BP0O(O+jE1IENDB`magit-todos-1.7/screenshots/matrix.png0000644000175000017500000020434314472442451020031 0ustar dogslegdogslegPNG  IHDR _sBITO pHYs+!tEXtDescriptionWindow Class: emacs25:5tEXtTitleemacs25@Onyxv;IDATx TTٚ ׭kʺֽ]5ݮVw'& 9`ED@EIDQB y5Q3L5pVPd5nwU~' gʕ}=<B|\T`u\*eIgMڳ*1G+qkR|M{cozNCxc4~8tٌZ;]ZbM;Qܮ2>`f#IC,7;{bಆ/z^丵QUp¾~m:d^4π}r +B{PRQy['2߮ʤA`یׄf'(lM_߸b}BIk)\gx2Ӯo!;r/dOQy P4ŏ9=Ǎs`:/꤯׵;DzR0m;'\l-zGh´}o ^(懠`>=UVK_`~L`ޡH Yz. ka3W}{ ;rC8S/yݺt= oΪO k;v%އK~JL`n(m>DWfzTwR0쮱:3*k2?^{&g~{g_= 4x)rXa+^_=}njm #{o::~k.b=z}]6ݍ\S-g8~lj O%gTk=}}O_ܑ6 +? \Sk'.w!*=x=)2B?w("9mҸI1.O隺כ<7?l%816n&O:2΅wUp*tڜxߵ]K\$=Y *}3B^և ,.*rxtE tL>K8Z65]E,i7o|$_O0 _G$y97)joV~$QV^~k 9 -MXazkу#ӏC)s&W *{.VN?Ӻo|81P}/ޞ %"L&]? Ӧl!ۋ>3,~K5ӏ4v6oZO )Qvz8ًy[n NCW$ho6cI mw&|L!^wx%q[–[ZzkV֒H5dףڙ* *f${ .5_{r|*}-!j޸$!SLDR訒i6"Tc@V2BQK{"D?wA6i\%\<&? <~W~sqԽc=m2]TыF솟{E$k3|gP˥#wX,lzy8I`]9b? Y4'gF*̰}mLdf~ &Oq'G26cw9X5q-|3Z+B|A>'g%e34U7ښn_s_WlX}<ݝ>iOqc6ݹdKi>D5o܎4+:i# wثo2O>>#Ƣ`?ڟ@^ۯDNe{t07sL9DG_zry-Ì4x\d_}Rݓ:is0퍧xLuw~~GnD<|;9T#IJTk_}z*K ̓_cQגݏ$mfxQU)WdA]TULZB&Q>L_1q W0ͷ=5U[# 58S"Dw^P)n9"qWz;7]zrl-yWm~uuWٞ3Iq|>_^߯tsP)EwmK}rY$|5o>MֺͭjlIv{?Zm[zu7Po)?4\g>xוbKh'[o<5sc˖_MŁULhlTg}Rޓ5\nei{[lNYvhEc4 RS?잋(bk[nd:ѵd#û>d%;lPDWUKhV0h()"|0N4bz %Bs.t^,qzb`oN+G `Q\c\|٥M!aWh;*ƛHݪy UL^ [Zx~ӞwWě~va?I3*۷/"`Y4ɍ-=y2J#tq{5fCy6-`e7:Loimh>dzC|Ё#Y!/\6n5OΏWJt8cZsnҡc_moo>0A?A1r+ Ǎ>))qÔvPL U1L' ]]z]K"u޷OSw4Ϊȵw8^L؋8`\8&ˍ+L"mGsw3UB 14T-!wZPg q1t{ gt\訦h&Ωu`}F'-/^?#AЅ,Jb/u[^$^Җ޾֎;G}n5ԐmJPXN<Z)iϵ>xHe0F3Ƕ~}u ƅ铺"ј{N(TD|YRii,8 Ǎ>}0{El뽵$j~|YUd]v|,g4ɧ%gNbIۥYiӭUc;uICpK_G?n̰rV E1$B[ѝj@|< \Jd¼SQx&N΂g 4g://|IJ/< #߅_~WJ<: dpKb6Y(h`@ x/K~g\ fQKohDeP[и#^(]6g}挝B$·_n;4l§cmuofxe _qkY}_quW,q ǟ{b|˦juv}tT?{Ðf)p1I7> ?n䦯o\1VD}+#oZd`wU ^̎;˽^qRO_P4ŏ}i˥:u>J4={|7P>Ak#dWd . #(&qM X̷ ^,77xWVoZ,}y{{Y)P`:G+ֺ.|)8~5I'8//mh{_b;ю*9k;v%̓z{Yprbn͔ ]GӽMn{&kg?ZI(~}5ï9]jVٜ.mxkg04^]ߟg?IWR$\܀?{8I.{dGiOgQ x!6T>RF ”r˓|MwH y)S4۳Q1iw ]@0i e׎b/cw0"d<эMjƔZ-wٸFztwc-qUw٦'O}-<ҤsB^z3q`D@f7]P9չ[\_0M>"/b&;=k>Yu Ӿ>c7zG˽M!ևy}ԸpQ6v~os'D?wוG/yӫxZwǸx}=8qɽ*8YAJ:lб 01 ~u!fk'bFіj6qƀd AOx=)2B?w("9mҸI1.O隺כ<7?l%B 9zǨ{<њ?=xBā~PEBwmd컡 :3umYE'Z7,`\)Gp.K^yU:8Jۧpՙ.jw|n'(]ct \<)+`B^NsUKU\=0ij=C:<2R2B_e) 隉2 VMeN0\7mX yZb&dFxBG>Q`8( y8[ۗ}S%c /wU :K]15cU0IhhwJ \)n6"MŞ!'">R|sur}}tKwq(S汱? Ӧl!{9 ˮjR|0ͽ <8SG fTx9𒷷\"#ɸNԣ71ͤ;k >& '#PF`wҺEvK]"YKwM1ʛ]ZfzT;_aREԌ䡀 _'ǧ_OK:H2ʴON(*ٙf#B5d%+1A'GszNI*=.!:jO?/{u}OdnT N+ w^]b%""]yvȆ{0 ;R(DGLpn9 4 vUh^!LmH I\b#yM qc8Kj2z!=m,t2Lr\H# $B qѴMmJϝ ~X8OtKDfhbn5j`美ذx;}VlsɬӾ}9 bOk# wثo2O>>#Ƣ`?ڟ@^ԃWzC3NIqOy{uTmd\m;Iko;0?L%v4`ՍֽxCr ס\,tO%>bdXJ|Ϲ|`fGwٵ!O DV3ЕgQKhD6q8``Ҹpu_30v=AXPmyC9:`PY枰BLF*8xvq5EL9I"9G>,Id{[F8ijt_Nb>;k<КD=gX3c7'3 7vWkI9ctہ d)I *&:g'&tP c\mW>Y*Gtv߳]wŗz~!O9NŞ;͏x3[i6>H!=]#vܿP?EDTݼd 伂AdoWFwxXԵd#'d#|YyT#}0‘ \5{*Ǔi6xDk2@Di7Lz#LP"z`Qwd1iޡOHí//,T0 {]!2T\t9g31Z˱A@9EH`89e,;|[uկE`TXt7!e{~ֽxwXuHB~&a)'RpM2d'f;|l 8P09חGMij =hà|A@գhl?5cۃUARZbs>Elm핑]ʰ #O`Kn6b+f%N+I>MW1=(Rs.t^,qzb`oN+G `Qؕ"}p\P˥u0^ Ooړ6W2d3}5iI~6ۛ! ]bRDÄ) D'ȟ5v`E'ӽ, }ɑxBo{ * `h!ޝ _`u0pOcˑ9?j4bh N<gxiL벌7/7& [Ry-?fCLoh;o4SF*r{ xc`&](NXnt!WۛL9so>9ڔ}IyOy䎻^  )J9ISv?|76K/u?yc@kIɣ~JRSvfYNj { du}E)UhnJ輂A7d1,}7}";8ɬ? <^E2z' \L(oN#"M,AD`tRHr/ҋ^cT0 7fjȌK-e`?Ǩ;2H֟k}t `!p7-kgm 'uE+QPE/G|YRii-bSP׭ON{El뽵$j~|YUd]v|,g4ɧ%gNbIۥY)`Nئ[M]vu .u~ܘa]嬂A6b"*yLQK(W0TϝqnVI*R4?hzSܤkAG;P6,sQAsL^dƏ]elrL؇dDі) kLH"36q*==/w_ٓ'@|>_%DP'[޾4 sP0OȎ||3W0@QHJg -3xe>JzL=qGP1?7;?8~uGZ45~ o㞘"޾779n-#+m93|;ߋvw|^!qpS dJFQk;>ңOcFWw> z6M_߸bv$zҾ742w/fǝ^:~G| )~$8Me5t^.I_kwX{]C'ƒkオl,>+i?V%Qah00G@+qLg X̷ ^,77x[VoZ,}yN{ߔY)P`a93 wg _)]osmWݷ _t9uGGҩ"T(~}D.D`dw)Ո4YvJcw.":эMDL{Zw[kԮGw7"QĦGw8o=kG?j=+gxGohG#3rs<<`؛}bE^r{;Ťv2ՙs!lBGܓަj\L8SR9XqLqmp{2qBc{'kUZq4;4YtfcC+`tc@(pӽN8݋-9l㐍QTV%{Rd~vQ4Edsڤqb\ŸHˣ5u7=xxyo~`KFrQQDyt5zGϯ Qt.tFޞaӾ~`]9УB[;9~ZEv3w2OSmg_J.0Ԣ7\yZSG?*%.e0pTwɠ,sẑm;%E#c>D*+xgHBܝ8m;`Bl?V=8R8BD‹=Q 2;Uޞ %"L&]? Ӧl!{9 ˮjR|0}`FVq, W ,R-8꓃'/y{͵!2҉q xġޛz*zݽֽ[Gx e%jɮG3U&UDHT 5_{r|*}-!j޸$!SLDR訒i6"Tc@V2BQK{"D?wT14b+f$C_ }qQDy;]AوӈnV󬻯o+c#_B_;Է7M̝i3S&q>YYh` ij RJL.}3D,IggFfD Iۼ)bJܝV0v;*;B8OtKDfhbn5j`美ذx;}M?ݩ޸ iWtxG VW$p^]$e||2GE87d=_It҂l|IqOy{uTmd#2ܑ]FT!o}pP.YKZl{LSR2^PUp\u0O_X{Gy`#ûX'5"+ٙfj JFV3%{~DD8R0c0i\@KyԺ/AA&>n78W0  ߼yӝ+t<#_)fĻYNřsȉ$k`# &>0' Uݣxv!?#Yz نl#D8kLAFvPv}oJQz1m`@#bmg|0)޸oet"4x3[i6>H!=]#vܿP?EDTݼd 㼂AdoWFwxXԵd#'d#L7;GM" Jv~HGxM|N)14byN׶J91uh |NXmyC9:`([3cĪ;Gw6x_x FiFˋ$;AjԽ.C*^.3僙w-XF%pyvN*c~^8("y7Vktl%o=.MH}tƫ#$;olD](Q_Fv[wGP _>)K|}yԚ֫֘,ԹۍndV46AӪ )e-1sH"H뮃yeFw'}0NkD7T1ѕ|Ax $ǁj&[ۏNP9:/ `F81طy΅T0Tڨn '+LPVwx=|%/5lL$"qqT_`u0pOc39?j4bt/7s$?b ?j+!/wPV0yT3OAjN :"޹x1b/S༂q,7H0T W0f,&lP4N8PM6i\Q*ǽ?Dz.$AG;P]wZ(U w)V0ti\;slW߷O ?Xumzg)2FE`x^ʛ?zȖz$Ehn-L"YjoEvL)wqY5\x 2^UyEF*'?2Cw&NHd 9g=JKcP0Ȳ;`}n5Ԑq#^i=[k IշQ+wdxw.z,)kzٴćw~t1ǩ`K ȗmwOo%_}vR-zg{_%aWnWcg%<O>e-1=cwO.Ms6jZ:`[T0t+x *g PQcj6ZB"zctSD:MW1 A7&5_ 8ށXFygz;u7`yvc9Dh˔ ?DzM?],8uj z~8>@}G_#׏]8pѫp s,[Fē}:gˋ<_!aRҋÀj>"36 cC^0A;eZOeOͽ}-6*iP`>6 P0`@  (@(P0`  (L2yRh fM 5~B6̘ Gh%j*6:"%ofY SzO&?-r{Esw cq$ +P)fw;/fǝ^,hy)!+j|4C Mbxr¼YSfimT0LiA?>}-?@ߴ*f`L *,vUТJi yrNw}F"y@$T0 ]_.Ubq4[J.Zs| Cʅ?t{Ú:Mm|eξ˚i\5e>7iFB0,<1juu$zA|O>\aErB)DJ sw$j[RQ`!頊E‹=grŘ# XuwVʛ x$kOOC{1+-K8L1'?)f &0>GFHc+b~5M "`߯7V!1/f4&FNEk՘ir\.BMes:EF"#~`Oep&,X5RòtG çs#1r׵ƀ=e hT0G)Em f<&bO98a@'׹EcDFݲ-y>SS+FI=r X0ހ5}> rF- >tOQ>OOe R`ÔoO6S+\4ZM KlҰɢ3VI!|055|! P0[Bk1}.7iLAPD(Xo] -]RAks/aRv-sPżmWs^@:;[Qֶ^Ɇ HC! ݡ+Κ5` QKwʑ`F(xbPd44Va` 9ml}3W]EbnjRhv__Mh6.8)^eǎ䵁~% m`vU%/GDKtxJSq"yH@NhZ,)V>oh:(DLoh;y4vUd{*~7QC{"޹%\ X#doPK4ӵߋ4LH*s3qC̕I^$5ߨje2t_Bl$ߣy05/c[x ]>jnh.y Mǰ ;3H^D5pkpn LT}yB" }}\);;G ;V*Wh@`ӷkB^g뇳|0F>q.&*8 @  U0LcVa"G`sP, bOT*>7ǐw8aݝ%MBdE2잲:Kf,:K3u~XqsZ,)l5?2\e/tmCEc;Zh5{G S_c¢eW%cX4eV%0HWXЦ`s`2b')^e`34&P0q,P0%]ed$'.Pi̛܅653R1`z鴃wo0)BqmYWmyO5_)#LQKYP2g[ᴂa)6,oFff1Ƥ`[Kp!`JZf굛͍G`0QIe/@U )nT߳t: hNF#ku087IiWݯ/Vm6"-K=_oS.y^$ǮڲK}LRҿJ-+*.S)9o0 ۋ4RЅ\M֤n^_8 c[;52oxf.?W0b&]JdJ隂 t#UN4rtIoMAmTA'k*P0oMpҗ~g}Tw:}M3,pyuJ_oq$'CNwϜ=Ђ* +@y_E> ]ܮL w3|g<̓54pyX^~io6UXE%_TЉ.:3[#c-l$̿S]Z,M][zuՅ R$k)_:;Ocܙ-u21 Ş*}Qo?T|:Oo=%i<ΖL(&wk:\^#~'Z@ɔ/.<њ$)im#Lo44r)kzEYByŝk2NlwwgIӢP#Q r˗ᕼcm*` ;Jog {RxTUC,_Hފ2q"_ԀXX( %˘Yl Kđ/ZYژ)`Z8Db}QnBȬV"M[\n*QE7nOM`"!?/9/Sq5HU]Աm̭b#:Cnt *%y]8|j::)vhu)b BݫLlF"?a)v VmZL0y}hF} "{RYL[+e: 5M61jd f%/,7K!EDA?7'ۿ4\($c7~7ȇ;F*KmS&eo׳LFټe "S oĨLIWO\?U!d` |P yh75B.%a)6,o.`^o ZVMqZ$/,.23LP(9*I-Ԗ.&.)6)T[+ זuՖԓ(#s[.G!?So2ZXC͌LW. !g22o+0(̈ɣV>ت]2g[Q yG6"Yk`W!=T &VuD|0)=2뷕أ(*d<1kBQi ~ x ̘J4I:{Cى 9c2$g}0qf1? B?fJyyu0O8qqВ$-j]譥3Gl`s W%aR~ϮU#PrPA!P)V3M :Ʀ S5;D aVo-#הj ,c*bIRqGIIu0*:&`,oE]ߟMYu4NcI1O(5 7 ȽH#]{0QIe/u0g-RD\ ]!:'+FC`e/WSipۼƵo1"eE]u#% =-=% nK#R+:!ɝq~I;EwHOJ~2mz x^1fIh㊶􏮫*'"흳'F v)v-ue$kGl 3_>#:&E.$[v &f_ Ej[zl|,,QUQˋ^/n[y}ydP0`ϒ Is|,O>p#hҽݥ4L4)X`@`]H;Ϳ][SP$U@ (>C..gS$>2 4f$ qaǫ`0oAm `Q0t~QA'q0Zљ:akBzK:O޶v*%Z,)l5?b]쉪Cŧkn+/Z&Re=e=uH?+wfAK]ALYm ,{*TWVFE1>KqSiׁ}e]EuY;d0ΒEF{R`ު&wUK8{)oNG˭ P:?7 &J ,Vo,x10X_}ЅRXtф!Ga3 m#a8E+K3WeEz[<6#۝DŽEˮNSܓm̛ GFCD押|@,iѧߛUbES*l7G:8})Yp {RÝN+2O%'.o =) V0, A֠ ]b>vdXD!%wS郱'e1x )Mىhwр&)|^I=*N2֏JZf굛͍{R7`\0Zgb -+*.誳)9oj*_ܶ&u^$TJRH*YW5C{# ;$]%wʿXRjWr5vxa+%"wՖ=\C5 'w=8K/r`t/{4D HmRm5) gaT~bZ]~>'|/c.&| F,Ф{KiLi<]STx, c.&| F4iޚ$N/X\Lg@Ex?ȎvS`>Ԙ ۴ {Q0 |: F/*謳.:3[h^emjdJ$˭'ڵYRZk~^'4U/-OmyX_k}7lKg'uEY3Zʯ- eZO[fIS2*YʍJ,+-X)_\ytiQ5Iس{a5  è [W0LSvaoUB tջ*~E^e`34QP)#/*CD.L(1Z8Db}QnBvJaӕF 3 m#a8E+K32q"_ԀXqywoOJb|k#ȞlŚi^tsTBYL޶DȎ#;"R}L2}n +yaY )KQr~ѦŔ ![M6jd $0.HÞTVz5cR0Of"o+ i$E1O*u1x ؼ!C%?jpq`P)mBnz:Q ![>-Ԓ>vܢօZ], =s:ӴBTz8M-\:TP.hCW1P_t?{p"•*b 6AKL,PeE]u#% @\M֤n^_8܋JII6K*fh/rqax$W+ӶXJJ\npۼƵo13y^$ڲK}θGgI;E eas7!xLrnL~hǣҿ-p\L޼#4YϤ+@.a2tMR]^>#UN4rtIoMAmTA{,|&p  X k#`\>`,:K3u:ۉvˊ_/X?yۆ kdJyŝk2NlwwgIӢP##_fIS2*QeO@8V0LSvaoUB tջ*~E^e`34QP)LimF; V]"&-Np,m( 7#;HI`Jqydk3҈=fDya)6,o2tpJHqäB]m`0Y O\:TJ *,[Ej^ܘ! 6AKL,PeE]u#% ^$M֤n^_8܋JI*I6K*f,R۲c[x.wYֽH <93>hnV p`󕲷`!hҽݥ4L4)X`ߎ_FTi:%5IR2 (q+/wqQ>s=Dv@lj@#`ItYNS/_V~I6TX!SaJt]whMb=^Xe iò;b0tFc4eV%0HWX[TU6C1U1a޽=)A:#{‚kkyiR :#xr ƱDȎ#;"RR*{3|aotקno ya)6,o2t6\=ofXʈdJ:E?3+ BXl=o`i3۪b *#xl N_H:Y\ RL._]~e!&nOBcP0vkl);.XS*! {vUyhd1>q`P)m2nz@=Y|5K'k-\?BfO@E|&^?h7%*\`ۋ\^~qۚ'{P)I#f_ d L9Wo?\|&O?kQ]ckd~AfO@۬cy·m;OUtow) )k *ow*M'v96I-YF|NH`Ƣ`hE]cSKd;VkOTKIw/鯷lK`CR0bςD}zbvWTԖL2wP_ oTXEuEgft˗_ұ~ pEȔV!0ΖI_m"+q^q皌YҴ( c-l$̿S]ZƨLg a {RxTUC-@*S*JR0 ꭥrܽLimF; V]" :-䫷 wMg DȎ#;"R" KugZ-{nڲt* `J<ܓO\/*ٓJofJ$Hg`X;8 ]b>!\=of?fXʈ)dJ:J0/RN*x)l0)j)P?!{řY2WMN).#Q&F_H:Y\ R"}04b Hu`J.!CB2 )DJA>ÔoDh`LxN7L*Uq:޶ P5A CdikNᱤ0C¬3LWvyh T-R_sx"5KU)3$:;6 1|&  x|&pز₮:Ksm/rymkR7/oLEBI 1TOǕ`F~/eMa+y1I6K*f,R۲c[͸=wYֽH m'|+& 9_)LU0b&]JdJ隂 }+we*M'v96I߻yW& "ru3׿ȎocSiIw/鯷lKVO H`*CjˁM&{;xg)s+K:lvzK:O޶a.()eZ +q^q皌YҴ(ȴh͒2NuEkeT42 1| i.JHaRzWݫLlFc "%Czk驜w/+k,5FYߥϮw9U 6#۝DŽEˮNQ21>Kz[p7$xy*LdތX<:#"%KugZ-{nڲ i 0LIW#]>EZ#{RYLi<`L KygyCK'4,G K1eLɒ߾0H 8 CSR"C !{ĨHlIQ0>,`W}0uA}04b H%$X8u32])g.!=2 ) $x(|7e'E`s W%aR~Ϯu0OV,'q` *%fHս}b)jn6H`0QIe/u0g-RD\5~ycDM4 1|&  x|&pز₮:Ksm/rymkR7/oLEBcy7,k* ߧm`$,aHmRm5) gY"+I3Q0c6kuX8Ȏ$>Z#hҽݥ4L4)X`߷yW&*tbKzk j +we,(P0ybuܭ ݇[ZC(2qoN.' ́[*jrj3_U+iF{EP<:d~qAѥ}G͏$&q0>KqSiׁ}e]EuDh:Crg6ו_[ʴVܜ5K [kϫ󄃛s(9{hn?sGݸ=5i5{G ]0I\Ow y|0Lcfms$,Ghei-#`s`2y\~'k.Si.8ٛ\gH/`%/,7K!%LӽE>|,C#Ig ]վH)e:S[StTंJb_K\})T[+ זuՖ[Za̬+ʮ. [~-i]LP]dSl86iVб66UИJ! 6wsӮ__Lb)%e L9Wo?\|&OnBwKgIC{ AN{-K/R0r{'&jW0۴eRx*|4 !ʝbLuM|D  `@|f eLJ=M/ڹ&4dh,pyuLiY{DXʅȳ*?(OS[/G=Lp/ 83gn;۹xх§GK/(B^ "%#(mP :1('%;ܨ M)%E> ]B+Y-vÎ՚OG4򲮥!alW};tl>G Sd甖v/ 4i<'z<[y`NUX1yE/7%a݋/Ey.GgW0szZ`]@ :EgfΩ#Nk)_:;Or˗_ұ~ i"1ULΣKIL`T_^# ċ9{W.,j)C+imwsgnBj77{RYYkZx<>7sA3斻 WN^QֶC.kJsLkJbKd3) ӹ[RnTu`iw_YWmQ]>Cw3Ө3()*!IE]?wsqu~n"L&X9ݫLlFD`0I\Ow yUѨ{b"qȏKt\[G>Vd`<²/%Wr=NL]J/)JI^!Z|},8넉|&, v8`f4tJB]Աm̭mlOͮ;r6Dz1V0ȼ|!W3{*ue:늩zGY5#}Ctof_1MiwO!eN0?gdn z:݁0\E y4uazzҿ>ėFeeRfk]v={sC꽽j+=X0 RlYdC0t6+<FsV=o\3,eHe֗L̓32o+0(d3. f(P$9رymGQE⻰'&Bmm)|RA#7Zm^9R*[\k͇:\'/uO{Z_vsu"#MN3ͨ4q4%Lo,}kC/32 #郩 r3-.?f "; 8 (ҧf :v`LG+֕]N ᄊ䢓NS!OXO-x)>u0TٯquxڡU1qij`2M>D_(%8&21W\c+ionAƴ-+*.誳)9o0`!WSe5ח7NT0s;}g:́ǂ]WUNE;gO ^$LTyq,V>"cZ6Ꙃ/nOs_ؐM+d1g?lYijzP?6YFSXᜂ06b؂cZ%ӥ2msk+,N^y92#:v)/K w:&ETnkFIgICzkwu0kmDz&0&:f.?˃ 4R&SO,U^H;Ϳ][SP$UР6f@ (P0 P0`@ (P0j̘ Ghp۴_7ca\0BdL݌Ww$ihXJ0 JjטE5L(W̡L۟5Ur/4V ^,"VN7kJڬ## 7~Ӫ`)4VG6=o7b3"qs~<},8O9/Jh}&~9?$\Z_6556ɟFbfͽD$`T"~=W(N|Wٲs7tL45EY<` `bV04j ?Of.vzT3ƌH&OP%vi&7*itNG ~Y iʶ\5#xI4T19AY!HeM(|Ϲ|+ LQ &zDlh)=mn. ;`0 _T0rS0h1f"r9=Ȩ&}O9 gZ,6 ;BVUG -;دu0ÌGIG԰s> $bmg_}z*K  .rc~{W1tWLT7[fU0+Ȫ`pqY^6Yv& QȟFF0nux V9Ǚ3AiV:Nҵѥ9-}0)o[\"aHFT0*v)+ /aUg"H6W@*d~ڣ;tYF181%Ǽb Z=2 ~ XI D8X _ͮ ;j[_B8k MFߥW'իL 8N^x` Uꂗ`P&!i;i.v6_3cƔ]=NJ$n;wˡZsC1;BtLOc2(&bA&ro |ҵڋčVc?[nxFuKoJR=> ٰIqGo= aj^揑ppU+"äs/oW2j advRWLT}yEyz'lӭUXR34m-+\|AV[[ӵ !n1;sV0a ;-(?y< x FOdrlx5GPV䞼cP0oU} k YE)[3zee7Ong~c3{#q1B]*"Vu}w6&?|/#;4??2WyYiιgGa[V0ݛNų~tÎ 'ǎ{qۡLM<9yq=1 Zn砂n᱗}=6WU?o`s ErY`Qw|̖X[r{e$$`v=[~T7z/Rv{FthZ,)V>oh:=DLoh;ڌсA=̳֚$Mq#޹%\O@)(W?sab[˂퓖cGdr}8Cz1zAΧuidcz^-gU| ZHq'8u?7]iצ_`V.V1GA_mF!-]=47 VfV~rRإց:T&Ʉo[. J d)9[smw9g9e+qT0^j0%ɀ+^܅SLpeW'| I/_9\Uȿ+Ĉç\<Iz '7 K9/- Sz_h6"2Hƛ?4Mf.) S;S\sTK٦)Bx>l?s▊ܭsJŞ*}Qo?T|:Oo7KqSiׁ}e]EundhVܜ5K [kϫ 2잲:K,}fYɽ99xtLcJ te Y>LiC{sBC=1354!Nˋ.u&ydK`j<& 8IY}FTӎ˅~wmV`yT"ȝxDF!DF9a&E"nZ 1EL*„!\8ުtTcc/>ѵ'"%&NW@/WKsop\Ӥ *6ZBBqOMiHiJ cJMQx!xegH"Y*?ƛzd)=Uγ(7Nb;a#n)}_`oF gEٝt'G(cʠxp!MB=bx]=4BU㣊nܞĴzcqċ=܄>\._&GR`>5wiFc1I$qɡxIE! $)*!'U!/t<ӻ'%s1>5H^ӓYl Kđ/ZYژ)U7 >:x!%gA޿1W%uIv4/i:f_S$i&+SOPɥYİ A~?)И"^'[?1Df# <):1|Mˆ9AH"EeDEG^nMꭒTI Uȝ./ o_#P+ J$OSTQk2'b)dd}S7/}}P']xxMߎqB(&qyNpQO$:~"tqOt$QHSpO⴦4IExc[i4/hL e3tx!^(wy}Pv"[*wZH!Q)xCvf Kpw8>r=($0&PD2/UE 6޿foN:/Rt5,ԡY[`OAM~u107̛ۙiʞS LӽE>|cl7Gھ9YL1*ʤ($MNۅ|\3m[_r.ύU1? qţtT1@z1%fҳbKy|7~?1~(BH,4wܓգC:Z?4y!x/2 } S` |,]ďG)^lG#2=II!iMQQ_>*#Z0y0n& !sĻL!VDuOU}2$۷'zj&xk 2D||pGhfIq僿b@gg \bkɋNRj#-ϖ e9A ب͓P9 rǤO-R)iZINOc^ bWjNAK3ξDTr`82}\3#SV>--勺+eLQܙHLo,}kC rނstl`+j'KPLb)6,oO3t66`̬+ʮ. [~-i]LP]dSl8cl ƺDW5ͅ *Kϼ4|s Xr )pycxA|b|'S" {:8HC#&d>ыmZMu²0r/oߵBW~i2UtaWiyP܂{֥TΈ'};Jȗ"am)&l#dzJ'q#)P'&EL#>=W7fυ2Ws:=K$`y*U;Qᤘ&\,8K- JMD! *],FN_W*#jW "MdPBBI t1YK2br|Rlsh} %']C3%tա(um^rtYZ8 ?ROaJEtDJr.fΏIģp;[]6OĔTUYQ"ۘz3#6l&uJNHIFR qh]BxqZZF.4`K 匱+LX=soڛ[,cAP$`KUtL"PM\3$fxN7L*Uq:t,oV]ߟ=xJ*x /atMJٶ7Mىhw+Lab XkuN7ZEl/b1wr (h1r=Wm%CE|M1 ~m2"pJw`h'Qj_Taѫ6" ].`.qSRl3#5ڍΝ. 5dz֨48[Nm%  ˑ ;DILdШu$%1w8FY  yO$K̬^I^A10DnAFY"1%igI mjPkLHe,qOj)@ef1L@)j(;- '($PjM99Saٕlt򜄫Q;π FF>8T}MB=b""ެ3IiWݯ/Vm[zޗ=K"{;e^aG-U[p/WdCgEetc:`(MbxGU{3ieE]IGJȭL60Ns_p{gh` x|&]H`/QKtm[ bV WiͶ ҵ!w9Eʁ^ $|:IIĸo4Ecb!>[2䌾,yyD#Q ,ue1l_ &2wCa03+86J̧R]^7~_X|mJ]L$ⳛ;P34&xE&;OP]J{8#}H'V(!⤪crr n R &{RH'Dy5)9 j$QD$"D=4|4q`# HKq:#a'sx$d{vq wٕtTG ᰌ`'ФkC'$0(|Ejl#8o?jCho8l! _߹Uljn'~cufOr ǟ&f^kS`+L?ݺ.*8" pz4>%8XK{oc+GCn;Ĺvs 25t!qzop8*y'c)7n*:һ.zq|\Kq%yBTyvq],}fYɽ9yy/ 7^#ˈ:nIt~QAgpљ:uLΣKILP?!; A,O~(iխo}q_)f΃8e"Twq%PZpε] *ydl)AgXe;L &vd]TFE#SN #S3B^.tÿ;L`;Hk''eH"CILK m". #ćr< K%R%HED,=lG+e 2ĺMi5.kN?%;0ęW!G@8|Zcx"LSzO@?q$]B(&dk/4! msv|qYƿ:\eoaL/F7ZsI1QHMEO |cR1V3U:>F-Yg1X)8iBu1PsUQDk4yzwn6Cs+]e>> LL7Hx1e=~26uu~n"-"l;zݧfׂn~q9mcO$*p(^cRGn`TQ&LمU )<%(:J$"ޡ/G4FɈ(00ċ' \H yܘ(|*$d1ժDb4чDdJFi\ky*Cc|/逐H<_|1OyU&(E$P qKӚ&b10N7d-⍘l SL1ٚ{}&x ;{1cmC>!X*^!/ᭋ"NN =#&;m) ;>J-Y}$j|$xМo!žw ǒ;b\Bv.XZc5R)q`sW,NW( RH*e:U꽽j+=( `Ȏ#MDqtof__ʐHM@e _qr؃a YܹKs#~?w__B\h>r SDlLOgRπ7#5FPBTS/5 k1wLz6[zi':>k.LfmSCg⡳DB:X}FƜC]Lb(Ia{ҥqDpADG&LZcJQdOHD$ tp9Ny>/OORj镚dʉqȏd"@n6@uOwR#pay$ch6gR{R;86g/'GOt0Bk\>1Pt%sEbn`ҙ c {2-ϖ 2]*%Cm3|4Ӕ Oζ&wPc9~":ibb"XoH0.v %K58ch6NEk˺j{";R(9*3{XֆHY$V̅Oxؙ͡RlYd:em$mYWו]]BakR[Һɦpu.O;믬9A7w0͠/? ~? qibB0- 8!$=[!}+%]bIJ_?@rLBWklȅ%M͑kw64 "14joɣM֞ r DI{݈ubh&%BI ~gt"[T"N{ (G.Df# =(+"3+"tq؜|Znp k޺Ua]E6/DJKƈvTN}\%"JpvStCIg=g<-I*qB.1R^Ol C2 YBsbSc=.!:iJux֫$ch6(bSŕLy#kBQiːU1^:65Ҕ߾nm'(`H0*{̰Y c+뷕Pц]}N/X$}.eD/4\wQ*<+lo3.tv,XE8}e\[TJ"IQIOIOSӓdT…<0Zz^Vbw4(zb"ND|فB0pPl[x;Lr|Rl1!Ii${d&MĤp'y"Qxv|YR2W&>}&uJNH!ǫ(Pm>Q\h"!cW0+z Cߴ7X0I$!D<fIU )nT߳t<,oV]ߟ=xJ*x /atM24km !n6|Sv"] SE%Z]21rdqQE,?U.ZwL ×+Q)WJޅ'7I^h&N`sƁi6SR&0Wͦ"D0>CAvHO?'*ZyժL‰|]*'ڍ)EX*c|RŶ=2!# LDL)lJHh@b$Ff1lD }Jw`ekDQT"!18_NbtE{4,/ՕeRt)fظl|+d;-d n'8o!ށ,' ǒ;b\Bv.IH̜Шu\ D]=,;$]%wʿXR:ny_6/i.ﵗ y^zsWm%\[Kv F1V0&1<ʉH{ڋ4JT ز.ܤ#% V&LrnL^7$,!ɝq ^%gIO3B*3WKtm[ bV WiͶ ҵ!w9Eʁ^GqbۗgJ$Pc>1X!B'ن_ ߐ8e}QE/6N:0&?1IS)Gv:D#8ۇh}4qI YK{\}<}JrYh;# ctVplʗFz ;>MA"\Sl tqX?&k Sr2 lL|v||EJiOnb2QVv9e+ptЍa d/hյD,bɺ7kTO#hZ;Vj|CCspN|@uCs%A?M&:AqVB;2{wPH@no m3MF"hؘ c^aL4rP|VDn~a B'FL6+ V)ј#( &1LJȥ> ^.1ZKI(_   ){qsImޯbS/XX)])8'Lf+L?ݺ{.嘗:/v^r:  (18 OqE5s"صŧĹpLzN.Ooq-/sqYcr6`;|P0v +&oa%yOeʨh2d%_TYg?\tf8ꍥܸzKᄇڢp; P)7LΣKILP@Ȉ*nNQKq%yB^emhL"-O~(iխo}|J1wdx,"+qNE /ӌň;3smWQ?=x2~sw]~s_oo󩵓uS1_ݿ{ኣMڟv}lӓgǖ_]\iR0uҺmO{6.]Ϥ9k/=n4 F:sշ{z#78F+g"txr`S0Ei%_Kު&wUkKia3 m#a8E+K茘qzd.Ƨ<"&RfD?MɄ8{)o[+&i'-Wf8V߳d]T9/i6pax-21.m꼾"IȔ*v6?9D@KoυUrA5ӏ3_% YbHU==) yks+vB/AwP?:i|(3"L2vp8SzkE W(ʤ($ıc>O/sF~}:*Xxax]93S!['4"!m0@8T[}%^O1%h:X꼂a}y tY :¥V\t̖5n+GL7k8c"S?io_$p)%GottuvncQAP`&^V}~ QMܺ{㍇]mytpUC5>hyCgWW[[kK= yOtoNa<|l<QG#pCɭųAmuo\scb/ٹ6> mOĸ PBsKO-Qtcq\]B?ސ+jPz#,7u, E&*-aZ%p2}KiDb<,oɔ2P)YW0`_C -z3{.&/5`7f˂+9ug2ȏtu]WBbE%N>PGT֧tzkmW>LSMM{7wv[%¦Nj42m䫘jXx:QMv҆oc g\&J,:l \e7퇲2 >u*ÛY¢txt0NFWU~RXPSf ,kR;W-` 2hDQ|(57„܋4bKi(\g|pMf0wq5+acID0C 6u$XV|{M!c0"Qek69hCBӕ!&4weK9ms C0Rn~ Uf[=`EdSN`>}xX/.w$SNwt02#9|ݜ+u0Gt0.,]%l=d'mh0r܄ f喺`0L]3VfWVK#''Pr5Y!W%,յu</)!Q g~6>ƭOƹ`ƽ%sH#K^I벘4>Gɵy"Tu\[*wi}bQ٭ m+禦&L+ah(Qc>f?ۄ肄T2E0AR*_,QR>KlA ;ȝk[F ru<Z}>K`޽)I ABu~0D^3^uy,scc|e:StO㩦4b{/&$5=2lW*4 ռ{ӄ:gI.ϓ 1S(rCRɲeH/+x4IYyI{}m3&Sʞ2չcWpd"¢ v7{a8`43jjb45Ev/1g⎆3T-ZX}܇K| XSJ_CF{D7b{o%bګͨ|^pug C#M[r 8E %Y YI|K$ ٬Ξy5 `0l?^dJRNUk+k[~r 4G\Uپ{~wCmΪeaXfv[>"GZQ_ϊq&VUܞVSj*oLQ){"{)rj6mkOA$U<{_٩w=hVyI>4!yEvϹ<ҧ5byl KzT{߫7X>sm !qIq "!7/oWxPS )LWp}J2@+"B4 RU(]af_n0fXRrMAѦ[L0$&-PN>#["2R.fMTF0.q> ӧiL񹡘+G C ߋaVH=;GmN/%=wJvqXi#%\ ϧ2Y %BOb$qU>IDjUnόPe!!~I K<_0CÓzw.DcD7 F6~-8%lwgri4L۷'7szjwš*^uuCZ<C˃EZ ۷|{`y/` H/2W~0|~ҍfV@l5q14Ha*I,"Q3;'jmOp$X:$&̅V:٧'BU@:W^g00XaPP:qYd͙טc4c`wy/i~?g G R*P~I,yH誣7 yH:8*cm @oA!#0 PJʎ )ċPN|[=NPbdUAwVliāXp0pTh~5l ?b9'yZBX"i_|ƞm$]`3o4kLb%kᅼtB 6Yp};-D#|( l OFO:jl, c-k8?bZ?c8_d*.l=%qJRyqڧdUrg\w8M2P|FiR_u0utt/EWe1pr 4$xDӱ0:ܓVnͼxmA$ĔG9XWlOw\vsx%_p^}u0Lo'W-?N2rP'2`²n;whmMQ5MSH9D.kY HGjQ<DFNhn eHTٚMsZ]lĐPt%.9lk' M{W;*Zc6Ѫ0k35: hۋe$ыjddʟBF{(u4惴1lĊ`08;O?p?g&p! UZrM5r ƎKv^@x 'lb9jҁP =('2BÅЌ|ńAVjfh _dܢ'?? 3o8eD+aTgϬUsEvKoO"ѯ?!AB;F?}bjew&+Bc`0t.anu81ػ0" D̞8E<>?!"Q g~6>ƭOa'ژж|-̴>SV׿b+i],~rd FnV|Vu83Җ";|D@R}>TFRz_F/X ~7b`ǟDK"}?<{=ygsmkb㗚p8s&~o]"~f\{ a ?.QPCf(*B#Q<:K/G1 ]?L*15q|_NLKYRG("AT!vU, i_IuGcDTP%n#$,e'ZQ.Qk J kыg&Ybk>Hbir)TC,ݳ1Txo:wOB`8 .{F,T C1ki2n3>M X-"yyO,yF7agz׷˘bnugZG`aR) Dž]6͇X]pW+n}R|~Q槵lbeOWӱ`k8]%Ϙٺ;PӾ*Eo}ixk:-C.zА7aKkNsD Ϗ(Ʌf_-.-(HK#f2*H2L 0b0 x`+((a2Q ̶r1 њÚaW[+ęXUq{KqTޘR&K^$|#5E_SE6mkTD!"Ye%mNM6QDK>y Biq&6sy5O%"!_j;%QHSwbQBElh9׾plg\6MjXA0J^bEBn^ѐզX==&)AUSrY|KdJPV=#E!S` eaˆQ4~ixj[:cIf@#W(z\twpw D ))J78XKX!ؓfMTF0 8.Z䎳ǧlP<1@{;170'w `N^-N\X^+nHchyHbq֚/"ݹ=[<% _9o\ -|&.F|I IJ 썓(!X,Pe"^0sm|2fضD U@:$&̅V:٧'BU@:W^œPz`F-`rHGǁyP"@ q?Y$;4KׂQԘCՈ\y2#-zUk21ӌ8vPu RJ5ɚ18%CMcG S@"| lAꋹ !\ߖ:<;75VӞS\g}Xx>4fH`:P* صm΁ (ҏWl7ese*qGd0T ?=tb(!AY,'$an1, 8aQoPt;G 'W@ Ũ9%7N>ᄡ &G2X&-WfPʼnH``܄XF,ejtlWHvK3g$34+Oԑ[uۤ:TN5Uwqgƕ {i>UU,AF%?0H>ZW`Mx;u0|~pޒ9Rw˴WM,!2mܵr  @+ XS"%pkYoܺdTu\ږoܾrx*ݪPy%b놟\;pUM;44HтNJJ":\(G7,0sTN k>X#b*bLҌrY.(E~OG\ۚ0'/ꗂ%MJ'z\|~f\</b6$w_Dy׆DEA2s>2G+F)ϲaan Cc-L57vħID<<]a$ %j@j4t5ڜQhJĂ(e0P0EY|BCx;N4D#r HA/9? '}'e~Z[ V}5*{Z򌙭;H 5;33UWjdAIpkQ$UvvnHCH&)+/iGE_q؄e53jjb4)aѢK~W^aф{{a8mWS1r E 7/{J":ţqШQ#T)y}E宰1{aE!kVN@AB2\gB#&4C_L9X5%XjYF+6蜋bD1 ꈢĖA&,%O$'H׎$2a잎 mN8z'O+W Y^"2i|?A 0AD`݀dA`6 0`M +C StR 7JVŃibΑ$ (ݫe([־H2,ם 1g+#碈_~Q4 nNVslM=2B&)h{Dmqۤ:`0ؗ԰Zgn_2+;BU>ꨊ4cec0X1*NǿJ[_ޚÖ:49iχWtQ2ZMD(ɅԈ27Ē]w|-y6̰)q\X%T_23ġtQ 9a2ߴwS8)A4/tgEņ9#jR ìlQA/^2 EL8GbkGg`5a[tјhMYaj|Nx#>& koq,}MH.a /s+T;IGPtyP/fwTȣXE0WO?q4\ _tqM;IJc㐗 z~7 m>]ۋ֕Lr\)Rɰsxmw {ON1bߨ*wnYվ>; \t̖5n+G[vHgbUijĎ3hy/К""m5?xT񬲒}e&(Y%m҄DɸEvϹ<ҧl3Sկ5 mлKN߉E?TĆ#|. qe46 jXc ^n^q7{M  4K*AYXs6s2>>7f tcV% mk 6bѥ f65]ABѶ) DQSǯq6Du5 LqQթA$s I$:Qfs7084ĭ2h*P @ ]\2"j9]\(iqܹ,'3 .d )RɒVqw{7G<8X[֬hy|Wԗ58*pEtyGѧ",(ʻ_S]qI]?-҉Db_nE+dӂ78dаqZ0xBz#JtC[6?JM8T/vGB>P$vd 3ž+6O |k_`I.(cjq>\'szjwš*^uuCZ<C˃EZ ۷| 17u, E&1o\ -|&.F|I IJ 썓(!X,Pe"^0sm|2fضD U@:$&̅V:٧'BU@:W^œPz`F-`rHGq% OS:J"98 ݣ+c be*G4vXP!f$ 1sqiΥ&a fr dλFk+d$%}ztqc!#s:,Z)ۜI#ĶegI\*IO8Z!?p^bR\+*㸽_)$#9Q rWOsiA{?& [=.ykn2U:[BXzz)Ei\D"@yr [Pb[JM)lg01׷g0Mfs3<Vt0Es+]pb"x}vȓW|WC:MamtUGg[Ja2*Ga9SPi3E]虹"I$Ž2T/f~Ē wABP0vOȥ`_` 1ٷ[ b 1{0" D̞8E<>?!"Q g~6>ƭOacژж|-̴>SVוb+i]<*nܬpg$׊ءAuRRaԇeB9ҷ0`uRn(̅Xc!MS9$cfWFr9@)w{>rϞL_YL.؆_ Q4:1VeG7h.%=|BCpS:4*T5I e .Q m2eaF>HfGF\*՞]` IB8 ϢDZ,+`ؓ)Ŏynd9.X S 2?lޖ=))7qQm}*T 暸D"숀&dlL㸴F ]'*L؇#17~z{|#XxӕZ|&pClk?ɿ`8T>|8O4y8(0[DɃav(Є0a逰& 0<xeH.8>)>(~6LuUq06.Вgl݁EniQuoٟ\XO%mG?sT9Yi[" !U<iřb~ XljW~jзEv/1 ^aф{{a8AXoKלcs)ZpY68R4zN8zh04j9vԈ6U f^(``d+l^cu5̡iz޽"1+?(:\;oH&d`d2L)HFkJ}g c ` /X"ppv9okN bD1I"Y6)>`bg>ug4ur}2b}L1/& 5PLŞn?ro8x=WOG=@v86v?U#UǦ;/)rhTG+-3b,Z"v4x^QGZX} l\rh~kr&,{5E FP5Q7`B&}HΖb7c*.#yc;d`~V6]~EJ&9k)dXe9'oTUw7vjQV k.[:ofˎoL#byXD}V$345L1EE^HHkܿ hm֨vCDQųJklpf}>K鞉/ش~ قegd_j;K#@ڠwҿ*bCduCg8clKoB1JsuhKܼ9^1H%7J |Ft|Ywqk:^eO/ca(%GottuvncQ0:ueZzgO}B_oma݇k/ǧ?ux&[n']]MG"X"Б+8&AxɌg\{B]mWDuуUB _ᣮΧMǖg)GDּuawM>7l]j곏˴B_&dI[_5=M';ZƝJWD]ݐO5`B5_Ds{MݽxyK@%|ɝl ߾t[pM\<_D{$J E}YD\Fm>eP!1 A AHӓ[t}j*K+I(g009$㸒Gr%Bҍcѕ12N^;D3OR2 -"QkoM◳-\&`h}tFv_, zkmW>LSMM/:.9t:Zv 5>mۮW1lKFH{A< >,pa%,LUvp-&}PG}G5 '(Ip>5Qu{¥:<[/ @1H "'$E$D>4GEĊ-=<6DͽxnYM;^I/JØTeآ]]<1_I&OCܻoOFSWMGRtU3 '"(IoOGd0 3=ya9v̻ۋ=*  j 2'uez qϪpV;W- F?:kxvT)एDyvފo(2*#t=s۠N32-sήWISrǩ2{z8S26dѫn6̣2Kn<>+C}͍} wϲ)Yg4q^1<1o;"I%AT(";ņItT 5Qsegj҂WnݛaOL'O/O$!e ˺E3j1?S4M!,Eڮe!&h nEqWl|9qyaa"Qek69hu9"+q`nn~ Uf[=`hݻjQѲö9Vń!^3ڱ/ ;Ō!I?p"J̴4j!CAA :Y5& o| \_,"Q&,iSN&'a}lS9vy8GSÃT__̙G?:n, YCB*5D äDc0 o>\e0M7VCkCF[''a#vu^i8MΦ!m? Iϧ Ʒ'`؂Us~ϠU63rR3gjs3<9]",,vfUkۜAY)ҏWl7ee*qGd0T ?=tb(=(I;I[ w_/ I#x&BpT 5QSVוb+i]Ƨ?v#7+>:)7N E :)) aԇeB9ҷ0`uRn(̅Xc!MS9$cfWFr9@)w{>rք_F@V< {hYtFV1*f75 e0"qs5fFP=QZU n8GT +7ɒBŦZq2c"J􇸃ߙ =ɰ㧸UTiJcl:6|e;Y{~wAXiG;N aoȿC~0y^p]KOX^1̊`4%hoy62=մ맸ul<ЊC&Ew;V%TBs"(lz!6-P6%g;Kp^AXPtSu+v["dBÌ;nD.E@[g. s`0?-glB+̢D=.Ԕ7v|9F?ғ1*Ge0R(Ɉc-Cy*`\1E3NYwЩIu&OyL:Egzxc h8n9+ɫ8dNm֭?lS!1?15<`"f1w@7\=S۸-~1a|*K 2asϢC.V"SD4:vksG!ٌn4L 7e.GX<]}$T7iAT[CJ+E@Zr(INƴQ,pG&l>2qۍf^'s]]}8Wltn[u3oWwWWF/_ [lZ:8 `0BuB#I, R^?d¾-mO;KC$^kfַ6i˂oV%`B F4FY៑Pő BlqL ܠM[nQjĦR %}ȬqsLд֝]ӑt?׉$NG )(?-6^n0ݍcڦ;v}[/( UB}o `ۅJC_D%>'Ա[ E]m}Ȭ NbmE2;y۫&^vCչAQ nvtp"O#1"-ΙM" VI"جa *]Ea]!CB"* GIR7wBByʌIYǶko<><ìȂCC#ʾXS~p4q۫#4cZi?S% ;ة ƛ孎Yb DY$ȳg.]2&kyt *IYUykb+t7̒!- 2aKE< PK =2(g/~lYĢee0 u\qkAeƮv$GCF?ܷxsW[>\Eu>zp~cJ+CÁV$2w]?XLdXeZGZ[Zy؏ ?{_mX}n|['?g>΋Zp3֞;wqk:^eO/ȄyVͯtlyyŽEVS&K2 8"2? aOeYn^ƅTYFuNYiSM˭YumO'pڠo,Se,¥[}~(KI}-PL>~DŲ IjH:!~0t[ŶkULR~acQDػw[y欸O~QƤ*]U\na%,LIxv{3CTuGW<2/:.9t:Zv 5>vD(a!Qd"bEOB ܒ(KF#9эޜ-qyiӭ4c7]ksRv{;~(gݦF` .ƾ.o>2 3m;'h9bQk^[Hr:O^xX3G;Ρyb0]?w<}EB>"<̴k«³gu0QtyK\v`(S?/BqC).fcNr`a^xN)  ]D::7ֺ-zR3"z?QNz.ÃFh!D*k&:D͙۝M+"/@[gxse'o>yvcQz;`Zы|s/By8GJHr`a#vuak$0=tDUY6`xR}E%##*eVHbupdqPl?χHGE("elFϧHʋY J$ $PN9 r*7Yp#νxT)Gk&&E{˦~qRKnΰ1(F`E`Vn\Q型x/<;~ۛ$T7!P$BEcofH.v5ܜ2Hl||FKlc;׶&KCN<&GF_~Ɋԫ:;]F[꺂{ y< ` GDjQ^B欈ɘ9r 4qN6'`0BH8>,1Ix 1ԎU{t6  3 fbLBQ`%v`@NL>GDxM}a?U`NC]7r'h—' $e0\'I [[hM0*kyTD>ԥQ#e #>Μo1aE43\6 >i\(`mH vICG(8Pk]Jm(} _u(xFgO o|Gm0UT0HkZ*U4TjYh< ˩xL飖@9U$ 㲞&`zV r) +`f:R,Xǝ Y%ĝ>4:( r_! ƈ!%Q&K,<-E1 FX ˨blhVZUW_#YW0F¢ѱXS͊~mgo}D_OBfU|}JLXkm7N#t+u~r CSw~]?'F-wB'3o[i؉A|F&Óٶ"ϩ͊v&;TV'Ͷ70s2zQRRgD_xfP62JF5պ+~m:]mDq1^yz ݐ;!LREr(X7GE}qt́ٹdyy~GjQS#K;۩4/#wJ'vc-1M"&< r#.n;=%͍5E4 2G^`UUH.E-|=8P/4d3xťQ>~mssÌ֮6i0 0)U8]cz||HApeIB>WrKtϳVOC_CuדM?n; |!.{|_E(MtE˗rZ-CXǪG7;cU GtӵgWrr1<[Wd[$=4r{Ge&&k=X:q :XS02ЬF?.DiXUTiʋܴ.Y&fI"6dL?/`얃]c l@O5^BōJ@>T7}IB$k|lm0l036b{DkTSyipVhD_$RXSzP/`p8֟A{2uŖi6-I2.Έ PY}`E%YƓWMJ妌lo6u{s[m4}'P0ըVڭ 92vg^qf&` c"U-S} \--͍6E-W+{%(cl"|,^{{Se&{B:+R:Q` ݟJgb)M#rð(H]g?&i&KdMF?byx)+1Q!/S!uxP/[(9咁 bP09LtW:s:NnN/ _:s3M!al bP0%فxOaWm Dl+%$'\%=ᰔ*zQnSL<}tbH&͌A1ʇz[!05Y yZ1,IQ^?_N$5-ߋDwr|Ze O*gǬi4Q)Dz$a\$] 35|J fO4q6ٌʰiE@Ȯ\)CR~=_ ifQb2&@^;JNp (GW0*jL:9܃+$!Ƀk mo.,|, wS,Fq\,5Y0< blb0"7mC)6u cŚX0hw*b{:=my[1lxMSi0M.ΙW{;WH#Sz9뇋 "ʙ?#$exvjِ2LNd L n>M`qi,q\#6vN$+;9^kNVM[j]L.ӯx%LmLSHZ[c);j!I?bh`?&B] ͜Av>.`օbU,Sl N"AAk2͑ 5( :~wςAC1r8⺟Z&颌 +^mH`pags#aQO^΍'o'YI',Va.Ye zlMZ7 HOkǀ<ڋxeL-1e >FClzAmWZa;<+Q5e8;U47yo`l FVen.q '9 ċ޹q<2,/S` R/1xvJNGk%ފYྙpCQL8+q{oaqX)7DTA@\̨DGvL[Fjs}%%~>1LgC3Cm0F*OB6bd7 4Jb|AKSM}MhdѠ`4^c&Y2X_Q1ЬOєc씂Zϧ,z  P0ahM,hȾơjTz[PjM6`F0`,J`_`0A`Dߪ`j{T^^qGuV0ۥtOGgc+?)ӕ6SZ'[<5\0{JC$B$uS08%]w%14;>=enXa..IT-|=?㯡3HE"MOdm)x:];Wlr7*iCF^C{oHU"7+-?ldvߡe/Җ"-{dKFdHrZ+gM-)%C"-װ^&`hz;)+lOJatP&OܼaA|;\,?7XRWW8̣2bR: iixDY,C&o(V$S0$-"jEǘVE/6\zUH6o ^It[؁3:*&i&X4<6EYFxGkFVMaɤen`gh.-aKEbϧ#o1 :XWMsP0MGLVюMQ*s _y~ m;3ez^x`/Jb<  vˤYwmc׆a #h+h~Phz\(~S0Aanz%s kWIg`XY ΞE%iclff}sK;o0PҔ {aZܐs~6ljݪEs3)<:? $]Wϛ#-.c}6,S0?q88P*N |~+#g`(Cΐ:T}[5pV8hmP0j;U, 'pCeJq{>#VA $aWMA@bx @`GWhSb9BTMQ587be>ѓvZI:6\w@*,y(U<'\KM ,%f]5?]\6 ڃsR"yEL9v`Z(vtXјڬk<[[2m` 4OM8) ӨZ0}|tØ ޢ*$뚏Pe2M.!9S9iWo6VWPT:Ø8 I7Yktk+X?ړaH`4DX4 J8ڼhJ`¼L6s,yn^JYAyR cQ=V$W/ )4iR0+ `2]`kl@1dz-NMMd)AelE(g[]SJ?QCtAۑ`1Z>.j}#Ѫ`8 Ɠq !9Ĺd|<9ݠ`y߅eOVr+Avֳ>/&C!Ie) Sv}״ݱ.3^t4V~jA̺#.7WZJ*&+#j\dKC c(:4orh幂ʵIp{sDt憕&=}؆#@ET3o/SsK->mOf+7:o DWHk q|znR0TQt{{o ,Ғ8^ymҽwDaoYV&VVm/ܮC'쫲f0z蒀W3 uNiZ*Yσ ύ<sf27Bcȟ8Ѓٞyr %&r"aj|U0z!_n8e;%8 uܵUFm1A&yL=X:Że ~d*S4r[b)x_Gl iYɞY9k[aB*-0BkoXw{<8✅j cVV-?!jݗ G \ !ƈ^Yk.VSm_sو--ȆspVh^|Uh&=Sl*U~0 VG0YcS-˩t-ÜMPHfa=]2yU&_Y2cWpoo ,`.W)L!$)R`E2!IՖ6+@Lhc./d{0eL䚫CS0ڍKtVvI 7ەc{Vូ3gKBUȱ`3 l0@`,c0HtpǷkETmUVC(+G3miцAT8)U U6Nюdm`  /Zԑ@}"HQ!wN1k^ Y4E]FWaZj7i]l8>9rx6HO Ɛ~hKmb>F-(_:7lR0֨xǙAsqC=v_ܼľu?=Q BlNaguld_[g5oCW{v `(4qLKs.GLД  i`#ڍ9Cg0+hۋS$3 ,PzIgCeiεOtw9:qq)lx^\PC%8}C#wL#$ nq6Tߋyz]4͘Ra"Y>9osl؋r4;!t_Z(;vFQcGr@Y7m18lYq>H Fř@C*Y~VoGF Q2Denʯ%wxH&WQ%0ϢgZ+rDP0\?WШ`'rTva WG"gw[U!e f?nDVЭm6GChE)yboG̜87bpuتC!xV|ޫCپ91]cWlOYjW0~*vVGꔼ.Ǻ&Ɠ6IC7um'ـhzӨZB p}N[k Fhښ}Y' ~jCVgtC~tc4,qc{,j?b%%`Y#*ڣxdܢa*c]XgS]P}`dq4e{sBa1ZwW:7Z"&+ (O$nN ـhz}Hoq+D[4ݞ@q/Ռ8ڄ6>!-HHE@b+jex(% &A{U!\'k1Y7mtma+B ˩t-Üaͷs@GsJ`E ٗ83X0:WG`(HR K i.>+6+ju5Wek = Dx&!&d)um݈!7ەc Ʊ`3 l0@`,cɁn`j9yд",xT*Bv\it>iKDvo@6pfpHx‹u$/4pnHQ!̵` :W 5$mi7mtm'D【c1ZO'?gd1<@` &0ociY֨X)j~Ce Pt6+ Ư h(.v`2g5Ƙ0xX0'2Ǧ*KL=GP bSw : sf ڳ;=ehX̱2='57ؔ`(&*#iq@48`(8 Գ^ِf2RgF'S"ֆD}&û41 c+'f#xJºq6TERSO~3Y* `h1J TOf`{|ln-m&R.v* ǎڽ6`Ⱥ|۽He֯aϷ9 T{"5Ԥs;59Den%wxH&WQ% d"m+hT0OCL$Ҟcg\;8eڥ vacK N3q ?yzc0EJp֙w?ۥԣ'N=?.߷bBvm/JR(ۢ;~{Lj(mbE~sT/J)9;q2z3~1E2xQ`%7w{/N~X22ڗ:?wjxHoCS){$"zbRUH)ъ;LJzrvi8#*ݦpOKo}=[Owe@6T:9{޿к~ /"R~j׍+]5Tx߿j_$dP0 `>;}w߯*[:}|nfmt~t k6~׽[gqn:hζ)VHR+W&r?\"0#hB)̟|yed褓 Ɛl< ӟO|te8k|擫WV5 ~ݟ|r"\m˛Ο_>s6ktn鐆H x2NL~46潟ъ|M4-3~ίㇰU;_S9A3_l5w?~oSR2vWs/}7we>Z*I#BlB|7_|pLcW>9ǎ޻~h)aٟ, aX0?ă>(go q , r-(_EfE7㧷c]Kد#~\) |߽NapbƧ͡+IX^P0_wom=? +KoU f,;~qWfgÀ]nF68_..<+e*]y؎ ۟Iut /9=yq+Ӓ?_Ҹqߣ/xΟ+[FnoY5B $Q0R23;>׻NU$^=GM/%cD%O*-˿d?vc.;E ΨpD3/+2 _-_8i&l Q0`@ (P0 P0`@  (@ P0OCF~PWC?m4=.^sU&=w!ts{SGBl*tSDqaѠRfݪEFǀnHT>$%Ge32yhgXW%Y̢JWFr*{*Mow/[IEŊfeU:+D`zlG3jM1 Ko(A鹢.4\clIFB`(RZVd)!1z 1ͨ&ӨZ?1ϴH`XNt"Zq$#Li:2j*ݩVI 4DEׄ޵`îd)-| ;d%{Fgo,?ma;sj =,雕 GDŽU5JVgĬEcpwV0!Ye"!Jjc:0]!KipiMewHv>, Ͳ8gˎv nv /ccYuyJ cWpoo 7^y̴6-)-!g<`y#]9)dF6cE-6ǂў,\>lE;X&čRlI؎d6*4 &Ѫ}d LMr6mx6HOWYVb;fN.mًdhކH) 9CgPcVնAS$3rr3\Xa>%Ҟ@:)ۋ˟/gj/\dJ. uonGŇU j4MP?Q,:|X 'c“̬=̵$lCu@ΉYE4"skq D;#m#sKkjߐ6X2$+-mlj΁KwP0f++aDSF(~493K1/)YNcmgM^ ّP״|/:^ϙ9P˘{_k$+dƘp}B}o/OYT0>fpK)G̭7ޖ6XPW{K`H|j`*Yb|A^Y!ncFվX'wD,eWQQR59K0׾5j)_=hͱFOPϫK ix~et`Hl$3?f Z0~<.طr":U0S|7N}T0:]6nL-v{3ϰԌ/Kخup64.?׹$BpeI+ٺ$Ke" #UB'ue&& bMKGdL@zNT[8ThBZQ`R*Zfn_qE,{T4窖]'4QH#mӍIݐy0:D f `VUtSQ5O_(~0=WRNPC<[ Ύhmt<~T9Q='IR\X0=#@gk nz P-)N U*PUMrZMt',tK6IE&fLFa4V&|9F 2קYr*/Rq_$$mq[%yv$htGSPU$u3HK͝EE6 lAv4)LMV_0F30wcD[?s'3S`Hxnc6LX ćqZbO*_-S.X"a =S?ck@]Z[լ6nGS/N]B*`Lk[ߝXZUXe\E*#o``N#Qi1j wpz_Txb::[90l ckQ MM7SnXEH;4CXY)(L@R h5$`L5 &~d82Ohϰ&-s|k-ݲ qe]")Qxn6zдIMٍ _Z[RY㑡,!d vD05WlŇhXݸ ~0M~0BAU p&̌Č%ۏ`*[(U)+D0==/M Y/J!\tX~1 GΚ%A(eDnm_5&K^$ނ^!5t`JT6qQ`}gnrh`m0% i#B* AY,,9]mfDioHYhʮ(Ҧ4g] t m.ߌd6Ͼ/5{^oNN{4)e2tW0v<앐td٧_y sw篋2\QϠG&6)E8np s%L2͵Tlf`ۋSf <417Vz*þs,弁ғd|LjHWetnh˖+I)S^$дSMd+EAX}'=3fX?_%r@@<]y5b@< ;s3M!a6!q`TP0(Ji< ?}O==o,kD/2b?<<[Tپp3zBoh=8q (`_s`B-kn zQz;xU!kЗAY\]} n/qH7aqi4eHǐy~r˿%4ow/yYJOY IXs(`4œt~ W?(a\oRb(*8=셻,6iƯ@ɝo$ģ|%q?~0A[`~w}BAR\F4t~Y8Ή[ S\cD`u 9zF3To.' *ڬ~RH;X.X+n xu!*agZl/{2G ʳDmpL$==u?uwϖq-9eŃ;X/a)ڟRacg:vuV{mRP2zb#ΒV7|el寖bmdauEZd͹|_sa7?x &V%cK%B0D͹iqCK(߲]Z*AЊew*bauŒ+^ir@VB_Fǖ4'޵SK,/q0 "8R.ɮcQrsu^~t,;P]z(k^잃[L߄U$ߕe7k+T\{' ̗1zYJ Ԉ@ˏF1 |ϲ(7b76k{^y`]mE^1Kge3o.G`wꪲu_w)F`ص@[.  f-PUllמ݆-{ץckM&~BS/P%uzQڢ`#L.ª⦢_[pK9P0ʹ 2"|k7lr̞]\]lٓvv*rvT>k m/r4 nGV6w: bmdi*ٽSfUwH9f18+_|FeawX򙀘yZ[wZ= $_j藞K]1֕Zt7 -\ $jgvhQ0ח*-Kgnf8ViזЏ6PŊ2(#dlJoN|.|) ˲/"v _0-HkmBPR;y@s;:KU.J³acKϹs)+ OAZjGlW=]K TM-%L⡦`6 GZ6wlQ0GԪ``๳euxl.6R /0Y7NemƍohQXmX23:kR`I-\\䜘[MU.B/f'L򇫓N`vz{Oo1^_9q4y|oa;W7lNɮ)6?e(16gO~0Fk|h$SA`A 3]yS Ig`XW`oTc*.¹Ћ&cff}MFܾ[O.$ ̓< d0*jBM"m#(:+Iug|^׾H)EOo&; H*B~ٵ/q$ʺcRlr9^\bٴ})ʺ[/ MQ$Ύhk%9‹7^}ܚ.|FhT 5$#e3>uo͎ɢ$SPTlMhmd 1|GQ~si ~g (yj+GfUHUO޾oEwqO^Oe/uDΌpץ^$s~Oŵ-PnA"oHˢPl/RWO m'6m֐]}j2b&{ܽFD}%T|HxeS ʰ?l'd YvgOLHׯ=r]K&kOa9\<}kfE[σWS`Rns -#|!,/2w@-b5p͵j6tú$krblY·n1Frϳ"Љ[q ,R?z`( w 7;TLiC\j_<:ƽ= 떰[o-چB#-hS%Ԛ}代!To޳̖Pg7 ٰc+ u),s~9<| 4cYq7NW(vija}g{%bfGlӆWXU0?o? ~_|3Fy9`@?wyQԄk߼}Ftpž/1Qc\4I ޻f M{zoݿKc[|ɗ5j)uP0 Q{pb/k@i<~=~e ??JNw ;vuoxwQ)_o"#}(s?(WN0mbE]^Z}0ֺ$\RDv4w7(߲,*AЊew*bD5dCKڦ,{aZE m^[%6܍?Nܿu~Tx_r?Њd׊؊Xd{W/..5GVeCx7ؤۿBEĻC8 yѸ%po5Or *L ˏbx ׏,YERX,Te~bnV0?FS*{w%Ri+CT#i`x rL3. \3~Wq]gf9xU~17D8cتhL'.D>u2@x3ZAEY~#(j'W0>98ӵ1%MY 3$hao/8å*[n*H?d04(+&aý\_dacw>>ŸQx_x3\{<, ܸ̠u^F1ORyϔjэ I o2 -KǤ;%_ $7 Zscy >~018+_|FYX=sj|& ct֝nGO.,H0R//5YKOv 3{t ʥ꧛\Koz<_lP0s͘`ځozRuA`aY|}Rd<0]dpƁOk3,_oWH_X-xN|4B>n`r!x~a@N̯m$A͢esHJeW.Ej]'^ZCY쩰@P60j,0܅-<8ۥ%\rBn!ˮفn(OTkU0Ѯ'`޿ fKǴ >^mUS0.:d#@RG/o_ `H:B`FXzpL bܗTd'Ȳ+vJP'U p&̌ĚXR+Y䜘[MU.B/f'L򇫓N`vtϣG1ETL*h#z|B_0`6&OCYTx:"Qߣ ~`fx'#!er SX.{*)Be9_?ʙ7;uҵp&3Dѧq?#5>A4;nXP&0 {WC`x+!!Xϯh 1DT]sk?MH+4\&kd뙽u:ĺy 8u/UgO^Iug|^׾H)u<氟JC~A?]DvQ#) {sA= 6Wm/uDΌpץ^$s~Oŵ-PnA"oHˢPl/RWO m'6m֐]}j2b&{ܽFD}%T|HxeS ʰ?l'd YvgOLHׯ=r]K&kOt®0,:F @|7zeG6p>>穻y~^OǷsӯħTQZ$v%iσ \Wl{vQH, o9[u{#jJ1yHxz 池j.ى? 3_ []GAz7!ؘpR ;}lCA.זEc/MdurH9}|M sǥ]8䛑09vEM $$* `^)# @#]Wb ceh}Ef/Gh{=!GSD|xLPe_(Vكs+/m!Ԣ}1P0`tL㤷1rϣMSvgwB-kn3V M]_' H$2_␔o:n4eHǐub7Kh"O߳3|{?^z|9Y:N- `9[v;8fE_`_ | R]n.7B` %\w`I6~M,*L| &+ł xˋǃ ~ aSjW0vߜ0Y8Ή[ S\k]*&3D͹iqhHoeU`ibޠuhE;DDM%mSwW0x6/i ڌEX1ɑWΏ #KZZQ:~?U^nKwr`IdP0;M׼=( smH' pЏG~)&Ly/f<a]u [.ŧwqe(#?ߙފς])~wQC5sDiOobGYW>Ǧp7b76k{^y`]mE^1 Kge3oH]]4!­d`ւб'Ai]Q"AtmǕl@RN]U!1]84lP0]&/WWi["fD=ikgⱁX?^_ ؆ >.I 1wgǧ `uś d/2FkdO^rfZyИzq7epXXCgbbeRk-B7H2C YvwSr/f3x)O|=̜r%80p72 zqsbYJk Ƨ>6taB8C(I&FHUU͗~)SY`He2lEcŋrM6dLdyX1Lpp*Ütm98C#b#N׻+ÈeL/2I I4P2 QaP +,a+}᡺:H|;U/A>G]u:yB!]8?`:M^cqV_X=sj|& ct֝nGO.,H0R//5YKOv a|&ϮJP3;VŦ^/X][B?nڌST3CA+qkdmB9v/0fwtOfVQeY0/2 Y\?PΣsHC OArjGlWqSDS OZn Fku:䧈!hX- FEeuxl.6R /0Y7NeWN*4N fM,}5)V~[91sp l]^4"N(W'x76= f'ph^_9q4y|oa;W7lNɮ)67?e( 16uo͎2d?`z ^Hֱ;3]V{=u$CIDN-^"-VCH^u?-ڴZCvʴs壋7Q0HtPݧ["፞N-6*2Z< U.i5d=1! _u.n̛=O1&W{2r#v.o=֧_O΃QKy0=W=0h܅5תq H]]G.F/K)|K :cD, tbVԏ(j>|<'nw؟i=)՘OHYA|a«{mw]5X“렶a]hN6o< <.!-Kj~<Fȩr(qp0K;IuaoEXHn ;`L )ev>ٰc+ u),s~9=| 4cιc/E|W'`r)|n>K=4N%%؝lw}#2 @TܴOqֵS/WWi["fD=ikgⱁX?^_ ؆ >.I 1wgǧ `uś d/2FkdO^rfZyИzq7epXXCgbbeRk-B7H2C YvwSr/f3x)O|=̜r%80p72 zqsbYJk Ƨ ϫ /X!wbN&FHUUYSR񙵲0NٳlEc"&B&f^*z,<-}D:~C(;dB]a2 msΤ$+X< 4 1a%%,xbe~/'[H[z" tf&cvm i3NQ\ܯǭAf=eYܫZ-+چG\2'" ߺȎ.Fto^u х<5ѭw[ ~0d}QB;8$^_X-xN|4B>n`b>BxÀ_I֘E-V *"ˮ\^)#dzb51Az s]ƒs]Z165 , fHnU$H tlIi]ٟG٤`~r:L?pR(Ԓ6a4N]aFSEf7t:< č ,0r;(ӥ*cQeY٠$rsz(-Ґ“z:U:ѓWӀ:Jc4:6 euxl.6R /0Y7NeWN*4N fM,}5)V~[91sp l]^4"N(W'x76= @0>椯8z|B_0`6SdWCx|"H} {Sjۋj߄/rM\w  U٣k_o-IuAw儽3uPĔiNuͷJOx3QcD}*%ib2,_: YC]k/\WRƼ 4ccrq'#W0"Ook`n}<ۜC߃s 3]8{y \s ݰ.ڵ%,+Ky.1Qtϳ"Љ[q ,R?z`(T;}9Nt+??{jsQ՘!afw Fs؏qs逬lN?4o; R<κ7 E:0BN5DQ_mO{4/B\$źwӺ ـ< ƄېRPf >ҋ \kˢ1s[pL3G|{快 `״Ks+p7#a/zs[(c- P0+ŋ`P0( ( Fn;,Le$>c|U*;Boh=8#O@7C_Slgn/qH7aqi4eHǐub7Kh"O߳3|{?^z|9Y:N-%( 0 8>< RvsaKP0Tq{jQ;HOc6~M,*L| &+bxˋcף ~ QS=EyױSL?s9Qc[Y+EY,؝0e jhU~cfuf[tvz εJCHE֜kT=vCIl0Z@8Iמ|yAb`ôu{iXP6a<%ŵo]/LSDsD|.K\C+*ݩ B'jʎ_W,iŞ&i-keyqLcf,܍?Nܿu~Tx_r?Њd׊s:Ov _\]k5K"ˮnQM=aGljedǿfB.\5o9ȎH]"M/UDXW$woև/|Ǟ\8wS+G_Tϓ;*#*n*oE?H ߪ`VAa7ѳ˙ݰh V\9[_A_owS1 ]b9xU~17D8cتL'.ع}B)5epxf2?G'gV4ĸ)k'[H[z" tf&cvm i3NQ\ܯǭAf=eYojMMn!ˮفn>*[mIh*]m0[RZ+{gUGM+V-u,Z'3l 7%LUlWw<pyVR0]* CV}9O=F`n2VZm0ryFl$n^!l0#[ = &D1zK*2L֍dٕSJ%(oh٪`klCK_fFGbM ,֬`rNܭ&t*[oH &ml0;MM-F p#濯8z|B_0`64ٺ4FXMp`ށ5bn)m̯ q2~2@x%_lXE)/ؑV\E'V RHVV`Pyjd4JPYN+`rMxxN]=t-}* }@ƈ30pܰlOdj7,([a+oj!Q0v<l> MTjLeڥ^8zф4Bs,e6K[O.$ ̓< d=#Pz( C70o]a4鵯>a/zJuO&bakE.lu7RGeצb s([|fE<(|oqO^i#*7x}-Kɫ B`y]sk7^{~*`ًd;)3#9uijEɜS'~pqy_K2tHEl/Ҳh5ۋUBIM5dWکL^:woQ>x3QcD}*%ib2,_: YC]k/\WRƼ 4ccrq'#W0"Ook`n}<d.u`7;yre[kkոm(oCΝA njiHln{vkM{jsQ؆՘ `x~!sv/'Mm=.c <5cmH)({SX^ ^[9?=n@Vw˓oF^ҵ碛`P0`Ȃ @ `+6?#kJF9鑖&'M@|Ҹ(QcpKͧdGI1d4uԿNHWV[s=nI4I`͒[/:VWz;~ r;!,P+isf,j)yGDɇd*Ǯ$Wb7wyY<``v`L{}S~aotϐJ7Ե*LV֗ V椞Rki^d ۥr.yR0"5-vЉ́ٹdyyjIG;U0[.Qc.#CL.6"fV^ՉNl[ݑ[DM4/ZF^-B^;yȧvqQu)xnn"܃ŝEC2y/>Y`DQqQecqxD\\Ȏ*hϡoo `2q3WTwr()Q$7-e׫v(֮u^0%V5#vIMRIL-ItQ"^Hn8%MRÉ'3i*㿗*Zqo}f~)BgfONDٓvv*~>ǫ@_l*vSMM"څx\!S1WRPuɘr梒}!zlMNU"e\.e׽v(֮1앴xvZ+,6*(ڒ,)=KyeقơUuk.w..BxÀ_yꅚE-V *"ˮ\E*#TI/`4y~u+sK +LtV0ZfΏ7zHnoѨ45;d~lo8Jčes/*V-ӍeG{3N ;N̐ :ln LΚDu:tq~0F^=M=F{ / F.?˖3ň҃`bHm0H群"cÒYv*If6 m5LΉՄMPe-6[bGi#Y, ᢋ$(ǒd#9h8r,!M/5. 2F)#rhlĨ1YJN):a{&{7vHmit+"")ƣ2rDĂ }=OHXۺdn|H$]cȍ36KOIa_3E"0gkrl0: zԮs7Mu%)ż[XZ`+`HRRW0^^F?rSIɿ~^53o‘ew٥kL&U>gO~0Fk|憝oI koaF"MTjLeڥ^8f?ef(sgP#]UNEޘx`UeJ`U& Oub{I;œ'<{ y0pN@ȩr(qpM_|93y JpVx,<C`L )ev~(>ҋ \kˢ1gMA[XJvP(džR.}yH>Ez (\JLʇ&pzyu`@^YxZ.?|& `v4=%$'\%>_@WP2N~p&kzر4I`͒[/:VWz;~ r;!(: Z- L7ԥeJƵm$yzuR0=XS&24w/:4%:]VƝ'c^^v)|~V FUf!9+CrRnj}9Quf)牣{cy QYR"CKb1d=eR0IiQ^M˒{1`GLG]9ca P0J6./>k].)N3w7)&C|.&VJTkʎhWW,iŞ&i-keyqLQ;EHOaɆGtcVo=uMn4bVxKk[xpnmqzZvCƙF nljWã7I*Ҝ5=U!n5Ye֖v )]GYZ;k!`j ;wHf %IIl.,v-קe6?҄]R'-H7a#N OvJgۚ"^?"j'Ic40 ;105vF8s#[( ܃ŝE#`d.K2(״S0I&u!GGE}qqAq0^w+Zqo}f~]R=;`O٥<Uǫ'ts$Nɽ=JJ gB){>Pg9N FcvM=A`JPMCjz$+Hܢ҅X>vyGk|舀˲HmG?jT0f`F֏"rXDM̘Rs'Gц{71,["f_ZU'b![|7@"Ϗ7 ɟ-^YԢln R"UP^]h(Vw0Vd`d7Lͬ1o({`N#"6ui1j wpz_Txb:VE$)-tLu -a Il Yc:)5Hc¯mtxkC?o:+|YadDs8]2,K;%3C2qOِ!CM" fE}&ӷe":uxl16R /P TȎm2j63w ?[m0$=2LOϽKٓŎ 6 2ӄG/Lo !\tX~1 GΚ%A(eDnm_5&KI9ESCM4~PhŸx,GNAk(G;"j#aG`8c lɳŦ\^~-0Cޕ77]Dbx#JSL ~CڣL/eX(HFgDF.گK 󨺹4ص?̳oýT0rpKdk``ۋSf <417Vz*þs,265d|<+Vk瀤IP ;|rbH65)޽6jŝ**ҫv=z1*Ɩc ~0'qx]URqZ8^q[|d$t&_hly7zi]ӵQFTu"$ F߻ "YNtJ̈ow]ZQE2ԉ\\{x^גxDN-^"-VCH^u?-ڴ!2b&{ܽFDb/Eex@\Yg|SIT0C\@½cǦ$7KoXa>8o\^1&턘< 9ClVK c褣Y?8d={exbYtSL~8zvb[d-'o#Bx uMڴ `oaY;(ɇDU wϝ* T* Rvs.HgrCr<`Gye亥5Vb*Ug{879K0׾5j)wDDiʳ d0 R#( .I\?ƐU|JTgǗIPs'Ey6,KV_qǀQ03u),ca ^0mbE]^Z}0ֺ$\Rhg<%ŵo]/LSF|.&VOTkʎhWW,iŞ&i-keyqLQ;EHOaɆGtcVo=uMn4bVxKk[xpnmqZZvCƙF nljWã7I*Ҝ5=U!n5Ye֖v )]GɉZ;k!`j ;wHf %IIl.,~&Fð+5(>JdKL i͏4af cuX sÓٶk6i*F$확fv*kЈ!%Q&~ F=;iEN#h(av"c`jP&%5\v,<-@c =z\Gg]rdP:ΡhV0dG5Id=iT\TX7.qQ)ʹ 2"|k8G͜LQP0,ұ$IiXĞ<,:v˖+ &3]BHi3 5Y 3^qh̶Uḫ FSvM=b"5/8+-:p$=07aJnjc wt=X*M-iI4]hjy7u!)NB%#{=&`T&whDEVqxKhnvaxqswhX.=9"Hl`ɽ=JJ gB){n1;Tr04KNE`4gIḫG:(xCH2BG7 ȇyɖ[tR@RPg 5?>qtDeY$5*~30#G p9,M"A7;96L߻ (=²l}iUi|n@Ykwo=N9qn05l? #G2wdf#(qL2=g_<'@‹"/ɱϟd…Q,^Y65GV;1!}Oބ,fL{e1%̨s#3Qp= Snj/>0wN<0^эhk&<#ٚE8SqouYTu>4z ƷOqֺI~WM$I)ͬz?FMۗjdsBқ/{ {UΩ&2}VC|xJ &Ч ̳zwΤ͌amW+,ﮮvV9,#<h^IGb_7Dm'h`(({X,N!sȢu|Eo&ۣe$gob2E+Oe>=&k%Bf4MZzk)roW&E+bylO MzB"K!IR8^TSxyL7 {%ƾ8zZr U׋hɨƤl`LۜBT#3×,E Er*TU :rJiވUc6 BXhK*0ᚎIma5e:;|$E4{nXQ ! 8chj N`DLE^V֮"E i# w~QOۉtelJe_nmck/PgNsorE{_<;&9Fk>Y4ty[vk;?-NcỸ `0iS1lVwN޷ Yz'Cv~CR8׆=\ܯvͺL%cvx 0(3NOcwnE/M͔lx!kᡦlHcsdcU7u/vL޿zPS3If@@ _^rtl~7V=Lf\OXATQjˊ/Vi҄@:9^`qTҕ}S Ɵ[өgO ~⤧S+Nw#7H}óXޔc/OATG´Ƨf `ҏ^4&;g0y))=va6$z kCLiךx '<ӂ']8_n-ק5%dVPv|Z搌v +܍F7MXhF;o{{?Ċ{="uIdÕ !*ݿ>\];y[EI8&tn>^]YeGL,Os2F?9x}`<Š` LSEY[Yi# 3TS] 7O,՛ 1QUYqPځzb~ɓ9MNIaÇ~^^8dT&H\lUB V$)qZ8LcG $~sy:T"\ݏ8O>ʎ2 3 b{c~IYa 9jiE]HftP26:|ZV 9o>;`Z3LtZY, ?`",:ӗޢB\„nlj~ +48QGWП9 睮(i5"go?:n +.κ,`j`i*ͬP"HnJ*Ӧ+N$rd !7zd JVT<%é{@`t,*]e;-7/wd.b/\K;t&-}&SV{L?E!x &,uf29W[[#6-0gq;goC3gXl0c[(j#Ƶ@Lw&:!oNQvD-`>WC6`j1Os2!x}-Avzir4jx}~05·B}ig̑@ͅO2Y̵<2ĉu&~0iO iS#./?H!`| !1o쩹8[|gy+b?YS$jVl~׺O0Wv|ٙ|?0[cmeiy:L8EQj JF\t1LO!^HxQDwe\?9T0Jū9զj'&{›#ӠH4*|2 Eڝ33cy`g["E 㻫ky,#<h^IGb_7l1JܗPXQ!/wX$B.EmL=;:"MGHڽsKd1B9*W5W8|.{NWFK\rw>fE\dʯX䥡Sg0g}.ФR$OH)^/]l)Pwq4Ѯ* 6.n~"Ydprq1=|# FfXFMήsG'GH(渣?a0^Jd 'ixUQ0V~ u2){ ~Ntե,znềߋBA&791²zlq ?sRDV',v9`0o= *xN3vLNs3q|h?F%* 0׍NyzEn|qs 楑vk;?-Ng  0`  1Ӧ~c&tMaCfv~^';֦fJ f6PSn69h21uO* ɛ x ,ڧf % o\];y[EI8 :L7[iy#&*̼ۜ.G@0Yݽ/db JķH݌Tl*hz2sWmAc3.AG1$u|<=&s0Ff/>'/`Y823ă[g5JC!FlW;zcbWM PPDߚhyf鵖*Ô B^ ˛]O5e /ys_,YgUL Q'I^)q,q ~sLzyyzQ4"ApT| Vv$Xti0)jn>8`𛳢>t,%^k^{o?q 3F#$#slXuL4ucFX NM''(-p6RE|팲MCeuf#cՄ=iyf9;+ U00M阌"[mZƔ [QeG#B#O|tDq|e0+ gN\=&e~3PfE׋SՌ D@]EꬥQRϢ2:ӱCpͬ=SFQ0H r8#vl> h鲩dl=kYd<CXa03tKx &"΢s.;}-*%Lv M?NTi3?|; ϞwVuV{Tq g0}^Yupօ`aS4oMPmf߆ʼE\tSU6u]qr%'Hs=&+gP(N@`˲fDP=>aaK5i3dsVCXE,r_!bAb0#qm0P6SINSpQsGx6|l0U3[1?/m08+ LO>` AsZY黱;J2El&ak tl/Sig̑@ͅO2Y̵<2ĉu&~0iO Fj$\ ~0>7\WBa- , ML5+6k݉'Q;on>P162δfE\dʯX䥡Sg0g}.ФR$OH)^/]l)Pa$mS}D7&-*Ktkv FR12$Z.4irˀ_+Inr6+`00TS] 7O,՛ 1QUYqPځzb~4_27Ǵ>0)) Nw>I#[AUoeGIJ~V*ؑ  9+CRBe[Kg1~-Sܘ!4-0"U!f*=g{'0qjz9y1-n>mc0hE*FwVPd*V1S۱C E].ת3Ŧ qXBz'`0 &Lx=G:&V1eGiaTQ#H}œ><*wAEeG B?S0f~IYa 9jiEa\7sNOu5R`0>BL43 0B;8z`d1`!,!1 K flE`ĸ6($Y?SpQsGx6|l0U3[1?/m08+ LO>׽4Dul0ie%zL ]6G:KG~9FC˒(44!KT1&Eǻ2[N-YCTZD|jx$=6Z<L-b=N/ZlS|^ $QG*?~Y\$\ˊ#CQg"p7ӦF\^~Cs6BbSs]qW~0+*+<242IԬu'`F3ѻ@`ֿDŽ8`A7tq;23b& r~/ EEypOS(IjW#>ߓEbGI ]]9!>4QLaU9)`Qm2Z>OFk$3EIn:ŠjF Hs&Uof, ClKXZay|wuo% j2"-WґX8s QB{2 +J<9.qA>S%h?-gGg[$h Yxy~"F(GQq0ޤ}umD)$,7}wkcV* yZe_X@A^?%|c7! M,.OŦcz\5]vʏәȃ67:]Q?5e0`V֊B(2$쨦Lg9ݣ`Ȭ&ؔRolnH1){ ~Ntե,znềVN^R2B *x;vLNs3q|h?F%* 2!m'N0F_,8u+A", 1Z~ɭi$@0`2Ӧ~c&tMCeWDw)\ܯvͺL]%c!'|ONCfv~^U8i?޹66SZg0"t!qGᏩ{OVYHԽ9G{X@Ò&¹ZQӈ(G~(=2-)c =smf/QanɌ)Cz+&ۑ8B91 e0Giost3B~: $uJRtjx$9 3IU^oxKݛr)HۘQ ` YQGO[پD+*U=%8aͫN)(M鱫pe6: ^+Y[>=y``0=9!/V-<vwWn>)( @iC2-Lp9] Oh[mWwXQ":#cgtB|]غ!l]#Qׇkw?o( '`ZaBՕ{?-=^v|D}7_HF0L#Oɵ mYMOx-hlfE#p`6՛zȌe *fҰqIGm!E+0KTTvGh)lzՊʅNCtkL<,%5/h5w5V:7 d*MeFp=N#16 `fx]H[q"[${ eq ³|c)y؊$5IlYQ`zal/Oo{F嶟1G+7>d~0'Fԙi>6,7ӦF\^~Cs6BbSs]qW~0+*+<242IԬu'`F3@`ֿDŽ8`A7tq;23b& B 𢈢<~r'٩pa$F5Ws֫M͑NLHO U=\6aW98=-dArLHzu%ZW @crà7@gkE#q8{;?͐)lQx\6 s݈& :XeTC֣ϓe0$BK?{ݪR좱Qf̖ZF⼂쌈:kyC$79Ӗƶ`xG{L]B!XPdX$~ڮLU0s띮'&E aI&5\1=|#C`LYu;DE8 Rƙ!aSJF̰ip=&NV\`* fU* S8M:Wa$=lO^c0/Rj{K7Yg~9yI)Vm0I_R V[3ckl$W&2gbA2`nL(WYT]ųرcri${E1*Q!`0od2$}B3m8xG Uݐ-0S^Q;oyiZOS3)~!`0oEcwig ΛMnF L# `ޥ[$` `GiS1lVwN^`^黼r>dwGk*Pt|/ (xpߌ[?3yfC=u22{hN8i?޹66SZg0"t!qGᏩ{OVYHԽX o`>5qOxCg,-1ma_ǖT(!%KeVcNm6+zw@ X;g0Gުȋ7`E^!?Z~6)Nz:dxpWk<N /7\];y[EI8&tn>^]YeGL4ݙos2Ffuy$)"v3Rar 38]Hcc;ƐԽzcpvXql(fRFƆ^k2L#Y&48:T a@FUo5HEH!=%Wuz[c ݿ> ʭ*ڴ>ؘ| pI7ށ+M簷(Y= wt|N,P[TVL]e6(fXFDkӡkov3uMhVb>+b*ҨMVנJQ8dDoEַe2ޯWXe:Fh,VlW#)Cjb{?MMh5w5Vܳu~! ]z. Ow|qϛ'L`ͅ?󘨪տfd(@r=1?LJ/Nc[ck6Nw>I#[AUoeGIJ~V*ؑ  9+CRBe[KgW[ iyGIȜ7/'Va9Mw>=6SON &QZ8mjSG4-çĎ h"vF&2y:<$J) svMŐ? ܌߮x >.= S"a6-Ŧ qXB$\gtڎ6Hhp( vA]V5Av"crIdE*lo+B̈ \nW\n}̖e`+KN. G`<*dDEeG B?=_mDw` as(3AբE)ڋxjF"r.R"u҂(gQj!fցh #Z(xGP$9Ǹ`St 6y6fd($˦sXۯea3i$ !>]=*$@+(5r$`0zkN09dn6y|EudfM4*;:@0D)sZ?ڱyA: o&lW_2 l"3WN7u" Fo LH&&#+ozqƭxLDޝE\v[TK81 ;Br'*ȴʙyg;]+P:+kEX踅3>o~8B0I7٦y6oCe^"a.)`L89ՓK$3(YQu_wPc fd~0e{R3"|x[3UwRMZL068E2zq/ (sXYk,vuFlP&O"d*]V΂`ĽXFf D`B0UaJR:?f;QL &o̐Ɔ7ap@~ [gWm]!K3,a6-F5j`l;k$=9G5|gS^5IjPx.N4}1?XCМVVbnδ> sх.IB## W !eIAHsG%W3X$G1ת4uNR-<] Sn ]XFNŽ^ J+`:z$b1ך0 b6u ;`q_HuU`E`j=6`~~05·B%Rm׈3rx',_Vw|Ĉ:Q?4'|ֆxԈ#5p?BH{j+Y^wEeeGT&ߵը_v7z7pCgZ,S3ζc0r qGf1]$AAZs$(h;2{Iv*\%Q՜jSsd1L? u&EBȁ@?!=pxt@AMoF@=y`qYRIt78(1YdnDEqPxG{L]B!#I @qg&_B^.m*(`0CtRPfb܊^Zz)3BCMِ渣=',$o^N"o`>5_&ǖTm {mzL Xr|ɳSp>C/;%RTf5f%xBΞSu[b0G;vNfxtjHN8Ԋ]H f9!.h,7 S1Q0zM3fh(MMt>zᦳ촰3eE7`0䘇[y<޷`Zd ]]$ד ʎOnar1 ] Oh[mWwXQ":#cgtB|]غ!l]#Qׇkw?o( ':L7[iy#&˷9yU]Da{_<o\0 9نUdxڂf]1رHfcH^1y{J;NM`N8^M*RZ~DvW\aFdzZKaJew\؇4Hngmmfw Y쪉 *,Gn":!)mqB܁pv~u‚dKyD2'2IӆfA妙aUM1!^5~Mϩk2E$Lkmu.&vp3 bڢiv FlkڥzŌ&z:UdnzEqa0># ]z. Ow|qϛ'L`ͅ?󘨪տfd(@r=1?LJ/Nc[ck$~^^8dT&H\lUB V$)qZ8LcG $7) XJxĢӛ:'naZM1isW(ۤ1Tf8O^g6򹄙vOW.p3B ~Lwtde#Ó}\26|]`+yy“tkT#HaS}\dTp=}AWU &Lr6{H"+*WgSE #ȀuWRdZ3z 6qjVt%I"'pd`.;6fd*n=6B2ZljcQﱶ_"?^d{pF@ƨW5p+yy"WzT-yI#PAv/`&lWs0ٵ)`E? oJ3`ܭ|x{/(2ΌLe`B2(Yӆ鉾[ Ȼ蜋N_z s ]'&aCDeV^9C>ϷykJZgExͽH !C_g]05ICf04fVm ~X$E7%^iS'Qz2q@y]=ar%+NjԌ=ȏk'+sNNWeyH& LwRMZL068߶9,5XT:wZ6((f*7~0/;Ov3ɴ]9:?E3*$"g+Bm0WD{ ^xK?ա0PܭU|`P$ĎHɦ\e`ĽXFfEgxF~`Ab0#qm0P6SINSpQsGx6|l0U3[1?/m08+ LO>y0Dul0ie%zL7+`0]貙}-?Y:˙p5XD 1w _ !x5E"%ךy#ŅՕ}MsIg;7U3,zf*Mݧ?:ݪ3Ѓl[ H߁l0QG[ &oxX+vhm`z fS[D-K+ gEgx+½Ezr &w] NYw^@ tt{Iך0o?F! kDZnsd9PrsLs/+;|> qbDLpv|>k=~sw~QOۉtel [n 1UU}옜8f d<~JT `0-H;^sߵne3H `0iS1lVwN޷R+'Cv~CR8ںMҀҎW#237@W` _;]24\7M͔lx!kᡦlHcsdcU7u/Z'Ճ7jN2LuҶ-5!~Ȧ]qۤcK*6G0:^pR՘fk qw:=9!˗9V7wh6ղ׵(&m3}ob0" N-?{9Γ⤧S+Nw#0H}óXޔc/OATG´Ƨf `ҏ^4&  |'R$5vKqv:o*+P}G@f׶o_V]wlxeM։lk~`X{rC_<[0-x2څUﮮr}ZS1eeh0ݘ.kt~ӄe'jfSȭK?ϫC( g~3:^!.RZl_qO6\ஈյU|% WW)KLmA`N/Q\a#eH!C{%8+"Oʭ*ڴ>ؘm`]²;S=KN(8MqC7j_b 8Xzs<&*p/+<>J;\OS&ϟ7~sLz†w'2iDb?7 H"IԏJa;R| q7gE}YJH|ki>ύB #R9o6^Nº s&ױ|#{m1o9< ܌߮zžcrhZއZxHʎ2 3 b{&e~3PfE׋SՌ D@]EꬥQRϢ2:ӱCpͬ=SFQ@E85Bxm3$M+(5rW`fd$]q_I9C/"K)וqW%l&0 q̚i[Mͷ2.(=kYd":"w e0qB&L(Uc=aI&lj*2!prQ+ڸ!1Lvל`r~FglP8;,] 9!fdpB &"΢s.;}-*%Lv M?NTi3?|; ϞwVuV{Tq g0}^Yupօ`aS4oMPmf߆ʼE\tSU6u]qr%'Hs=&+gP(NH 簤`QY*iYWy5HBN+e0+z9pqUFlThE[m0ׅwpBKl̊^6`DNjg15`!F+{< >ZglQ7zdVWF~Tt];Xsu*+xF"~?+"̔d*]V΂lki" `<IcmQ绬r Mx6s6~y}%3ňFm0b\ Tgm7(;斏l0`ʫfb~6I}_`pV*v}3fډ/6`JLߍܙvoT`.e3 X[t䱛3jT1,)BIcHDCjZiMU/fqa^DVCv onc0uJl/3=_kBm03,zf*Mݧ+ 0a30I嵦a^Hqaue_S\-`pWD!<ks4-)7WHl2it>l/oOo{F嶟1G+7>d~0'Fԙi>6oM0R# l)ļ koկ`pWTVfydhߏHgw;s5jǗ*u=&Pƙ ԌX4`ܑidE3tP/zs$(h;2{Iv*\%Q՜jSsd=y͑iXPp^Ion\1S. U0FE/Lg{w4/ 6s^MX$$ +FE`3^эhk&< $/F^ڌ9D~0x+ AӍ iMSaڪNHf`pWD!WPw>/;/ 'tT߰Q^!m\,I=ے')VX]][$c,H,Ңy%EJS|=mm`(({X,N!sȢu|Eo&ۣe$gob2E+Oe>{&k%Mf[KOW\RYx"E.hW, P)3 Q]OhRdq)~'.6(^"h'/v_'"C4 Ļ8chj FĻ6FhLbAB*TU qW ܩ)F'G7 YM)ݎ"6'X5a бEI6q,ϊ^ "j9]MZCáSla0}mIk[ t2Q6S `g@چ/*i;Un͹p U7`Bʢ/L#A5,ǏQ  0ik~ԭ,~0` 0`y9m7mBԊ3!-o!!3f?/LtʌX[KkSo3u3^Zx)B7w4'dM݋I ,ڧf3/:ciQԼGgUy 捉6& xQ德JM1nnWO=$HN8Y<d`Ɵ"‹ b{S]p<iS5 2GCa9ůr+v$:`0䘇[y<޷`Zd ]]$ד ʎOnar1A] Oh[mWwXQ":#cgtB|]غ!l]#Qׇkw?o( '`ZaBՕ{?-=^v|Ē4'3ot(`Vw GŸ-k7#f!'0# /U[̾4F;)l Iݫ797OOiǩ̩˶O)o:6:XqOUf+lk>96ׁBmmf;Cjbv&S4LNkmu.,GnUنɤZ S*j4h5w5VJ[]`0ty멦,'H'`C ʯm_/&O^ēW3u:TDI=PL5hOESעFac>z 6qjp؝zoLfdĂ^i@Yމo&lWsЇE/6ep!-]651pXۯec039´H t `Ywg9Iz&t?NLnr'*ȴʙyg;]+P:+kEX踅3>o~8B0I7٦y6oCe^"a.)`L89ՓK$3(YQu_wPc fd~0e{R3"JCÒZEe3zG&$庹s}9/`:aaK5i3d^8-d~sB`M9{B-$Fa m1Qe3Y$~s #jn ja+g7% gEiׇt=y`!hN++1}7sg}Q_B$cm!ґn_΄QƐƲ M`$#EHUh h,cMS0ݪ3PYX. W %&1\e &ת4uNs[%o`6M it>l//Oo{F嶟1G+7>d~0'Fԙi>6/7ӦF\^~Cs6BbSs]qW~0+*+<242IԬu'`F3ѻ@`ֿDŽ8`A7tq;23b& B 𢈢<~r'٩pa$F5Ws֫M͑NLH2KusOa9 UF#Ht$)=N\CԦX ŠO~m"2w,ZngY.o=ZF-=^_*&㯈QTii\s9յm!3n-=]q}Je5O7+ Ȣ_<6KC` &D]t=IťbIR8^TSxyL7]i =vV`V֊qMN)j3æAC,BXRIt780 gJ[`0/Rj{K7Ywie<3 UU},v옜8f d<~JTd0CWuC"`0/5]KYiqV?DXb0b[?H0! w`H e=/?BBl)rBK-F.<~c6]E^=8i?R'df煯=E[lx!kᡦlHcsdcU7y.Z'Ճ7fi81Fs3B~: $nRtjx$03I^oxKr)HۘQ  2غ!iٞlE S^wD¼V^?nJIFB5:i¤(pյ[OkJr=h;o{{?Ċ[yd_EJWVQ>_ ƓDn7#f!'0# U[̾4F;)0zcpvXql 32Ŭ2yY Pk>4lSK'&36l <2$Z֘4|&#IZ S*j4ܕ$79{z`BUeZڧ!7l2O(L/[ fvmYձbs/J_Wc_2DzPˮ~¤\3p}`SRAw?//^]|2*F$.ӣ*ti0)jn>82q 3&FĢ#$#s|Xu,D:kĩa0d0¦&A,B"vF&2y:ŲZb4m 4U% %grM7N&`[kUL1G4-'3 v4WF/(6MWo;QOw5ܔL:%?w<]Vge%é ;L`w&L;t&-}&SV{LXZ9ڧ5euhGE۵9['۫0/97AL4E,a E,#aHLIReu,xLZ3J?Z1BT~2Uf6I֏`zY| fza<0El&ak tlUO'TN֫ )4k).k֘K86ufqP~GTt R굦͞gqoH2̙-[oK:ds?[DvfYzPNӎ}gm8rϘ́╛ dX &(H$k~&Q;{,+<242IԬ$g2wdf#(qL2=Pg_<'@‹"/ɱϟd…Q,^Y:4GV;1!ۓ7*w:Dg2a!ٚEȊ2T\`cK`2M!CQӃ)BEmU'$Y~0]6M2`&,t#Ռz`28dčKq^e0A T[q˛lX$7R1Rͽ{kʊ`"ۡ?WY-EW_7DmdaF cJB6"mb0Vxr˽o]n|/ MWFKϸGQ qை')D]t=IťP&cz\5EK׭U!,xvI/{c۝ne}9]MZCze ˨)uNh~`c,&@5ƦzcSwu_a*c_|D>0lK9[R REe/I0:`018%d0_&\$?FhB_. LOf8^q[9 &յ &-sHF'oy*W}g5^u땒])WviMI7N!.-<D!/V{lju*ݿ>\];y[E~2 a $S#3me0,E39p\iv`ֳAW+,.10EC2?beOLdglzqy=Z S*j4ܕ$79{zusgJ̰*֦{H6[]*EUgehE&[Rժ7WPx*hk37<ʐŮ U~ˌ9"kﴹ9aC`pjk>Vl 7~򇀻2yYQE*|[ G1!eٵeU^(}`_2DzPˮ~T\'U.MNIa~^^8dT&H\lFUIԏJa;R| qb00>&LLOF> ܌߮""}e#Ó}\2\9ULnaS  hP[IoꜸq2OL=iyp\A4]_!KHqB܆M*tZt`Fur2pXw[~(`*t7ڰk,4[A|`&H"3Ra_Sy`pjqTfܥDe4 F>.92tqX}A~fϯnr?ցq4B#1s(;+;cT);g~Dw_i)yJz?/tu4r JM&j 0Fmd[j/$UQD \z3#+H|EW̬i&f0xS򕐔 f4opّ#GL+rPj\6]@ K4=%03da08 @n̅frQM&Vg0keJ{hj(hiSRP %P6SIbQ`6+;6LO>xD/E|2R` #3Sa0w po.N]U/-ZauML| 17,Ezl*ᓑ>kMüʾl$'+|v{IךN׺P`yc/dhmyb@Y fz f96a PJm?c~0Wn.|b2z#5pF?`F3T$Qb8VFߤać'[̓WV;1!}'/ĎLs"қ//{ {U)g O&e!<ѓ7*w:Dg2ᓕ4_L2-j:!'^Nb~фENb`|Dg{xw4L&!rkGhHa> IaL3"ݾkں,**$c0V&v\SEI^s*P'_0/ J*?`uҧ-]d{"%闊ɐzo[]TV!HuѾj) z!jӯ^f_<[$/dC,fe%Vxr˽o]n|›q/J2'N2_.0G2QJ) ]vʏәABhi]U(dv(L̀Š vجMPƥၪ} =ܤ54 WfD}3#dcSJ}lX$)12jtv=:93E>xݎ !yRҼ>3lR"M *TU 5 gKmcj\::v[Y+zε_D!,xL1=|#3#){ ~OJx% 3`&"g wrE{_<;&9Fk>Y42 }nH[{ 奵{~dm]nbF~6 Pfz)2{hONޱBCMِ渣=',9RWsN"oPS07`vG^Ю_ fxtjHVߤ8Ԋ]Hf9a\-hl %r)HۘQ  2غ!lE S^wDBX,zq˗n?WJ7MS3j7wuӚ`ON!.-<D!/V{lju*ݿ>\];y[E~1ǵ mYMOg~-hlfE#pAIgAzcpvXq9yTeڍji1벲$-L߻HF;鵖*Ô 1we7MNޢf hS3F8:dQ#^t18 1Bڹig_2DzPˮ~T\'U.MNIaApzuɨL ύ[AN8T#Z'P>Nascf#g#(Ifü?sCpǾpcm85= Ư<-lj2"T8*kgm*3'3yyH+(2Me kC o=7$s$p=}AWUMR#BBM  MⰄ'N`]2tqX}LQv|u^i ŅG+bP7lQv^Wvt=*ƨSv,OT7)+ hF"r.R|$u҂(g{C sA:ӱCpͬ=SFQ0H r" lW káH~`\$e0AFj$\~0\eg>gY呡~?Ifw%q8ۭȗ#3AɈ.f :9^Q~O|$;.Ĩfjy=yeR=y{Ct&I^(pN6*d2z8 O;=h꿘"d[VuB2\k$3 &(1h"M'QX1R(-2qV-}8MGH,\xy~ ^յ[Oeh0rPp@q6Q3#j1mj%y!b6++ēC_-r{LoҾ6Z"xƽ8*WW8|.E 0,0mzo".w@%qW~/ӯy3ZAag_bo  f9^`qT'1/S`.JKzy #4!~K3<-`;`b:d{)RL}{wGQ aHU-_]^) J5:iz`Uﮮr}ZSMdSȭK?ϫC(i˽Gƞqb] DJWVQ> $z>5%ibC,: Ȍe9ϋBsITTvGh,GnP*6]p띎!]51@A2卛2ہBDf31/h5w5V:7 ȆCzm2Q0=%Wuz[c'=2 "Cp2sNoVimZKkjl'jN]&3,J)3'2,GfuYY\w"Qj՛zM+R~5O_Mg31o^\aFR)G1!^zڲc/ISk^+8eԲ+0U%7IhS}`SRAw?//^]|2*F$.sI&)qZ8LcG $`wt-lj2Ģg2At2#ʭRJwq!=< z  n;m4`m(LHzSčI6Iy8> ?nr?ցq4B#1s(;+;׿Pe?hYsM d0 %* ^ۘ<;B2Zlj {~-0'Z{?pa^BxpNwXPAp݇ɔg`W/;=]s!?grLU0MF@ovGޖLL+r*`z)'o`XOG~X(q GD|m W6mRgso(`\jƾIڧeOykJ^[ݮP:-R};ι8Lޢ"EȻ &ih KL>e*~`&& ,aaK5i3d@> k\$GvE8%bWYgN˺? xE"3%Jmխ 1;z0rY?_dZ}|϶ .E2z/RQko;euhGE۵9['۫"}m` ʔPѲ#Ӧv?/D<'SKl;kd9;^lVvDm0gv}O{E4^ !-jj*|~g&~J_8٤kUO';Z(0R/6lk Iْr3znBF+,3?<"oxX+8{0_K@̦܆lYf` ݘ"bUoEx2aczp5ry3y O.5 G +5,N `0@}魷H%q 29P@t-d";Jd,=(@@ӴsY/rϘ́╛ dX &(H$k~&Q;{,+<242IԬ$gm7D$!F0D>NLH6DI^L>pN6̽Wt#ڃ Ӈ;*)*1"ioب^!7_7^Bn{ ၦ;uYTu)[${e q= ֽ1zmd&?u2̓7*w:Dgx LF3$?BcF [1<  'y$xAS!sآG_`6SvoS.o=ZFbsKdHH7ﭮr~*+F[oh_k_eMHS|=7"3VX}vV!i+J<9.qA/Ih(_!3_y4."0G2QJ) 6尤;o$qp̰2str4C ~nsBo^&<`K׭U]I]&rd^ãOTE3Op7̬iu[x$yҬ]MZCvkNOّ=E?'v?x5I@N^z_Ž*0;e0\eQuOic OǨ `y`kސ `^ik~ԭ,~ `0 q] 0wbve @ s>^^ZGF[`6ƹ@iǫfW:(Q 4&zqc$q ?-'^0uwl6PSn69h21uO* il՜੓H{.+4;7cz .2RTf5f AW(=2 nzp$lHzjT}Ft8,*vY '\Iqө'ǃZ㑄s$ZxѾ`YAJ% S1Q0Wv;I-ȿ,ٵaNط;07`(_`0[9$ݓH_ qf,dfVqDӓᙟj wbv8"FPҙFg|<=&s0Ff/u,( ` .Z[%1 f#NΊѠܪ2MpiS5\EeESY*A,`3Zd]rĀ"N)x_a{p vXPA[ٮv!]51@A؇4H nfXFDkmLF02~rOUfl-o=Oz0;{FC~+Inr64GlJUk2^<}?~⮈`qğ<.62*<Ha YueIp&Ov^EG;% m7:`0 G1!Es <ʎk˪#$M{Q)+8e:es] ,YgO\Dz†'2iDb?7 \KJ~V*ؑ ([0ȹ1CǑF$za3{a^‰UXD2ur 0?2{H"+*Wg ie4 F>!Pz|tWc#S"a(z#Sx`NmF 1:KkaEDa+KN!vtv7<ME<]V5Xw eOW.p3B ~eE#lx\A]J,(6MWo;wQR`4X i@FOh;y#d_E?__E_7w? e^ K3nL>qȫ `J3憗wHz2 &e<+YqDqe${a$ɞCݰEqx]tDUvʎ?=Dwf!""uGRg--z703;:У=MaD_ $: ǩ"w[̄jΘ^|m(C2Zlj{~- _9?/`ƽߏ tJA1h+ j Y4rbFVL] +zdfM4r:7OI{ >]gst[&7ypq4z}}L7w?2UveBq'^EϔB6gnG,RM̱vwm_ ?It =t@IaBkD#+4yzTL6"΢s. o"n~8B0I\tSU J"WO?(/rz"L;t&-}&SV{ fJ2.[gA &|iSHUiA/`BzqjNѠ=2 aaIgU;LKa E,d1toXͅQfrTmqhE>. D쏪%}}#2Mx˄p>. o7 .32=g45~?HǴO QE(OdT($Y* mm0QG`]^\tfHgc7/gըcHcYR&0ܑ"$|*4$ kUO'{_ϩ\C-YدJ@&3, SRnX&/v^ D ²uYJKw >󺽒ΤkM 9|꘧V\@t$\&;El?#}k/]lO3pl0 NoT gJ!D y9933w%pz-tIG3 q|8;sˠ=Ȏ,KJ24'|ֆ3sx',. Jw0R# l jԎ/;>, ML5+6+nE JF\t1LOg_<'@‹"/ɱϟd…Q,^ WvbBV@gkE#8S:Ip+(epȽxwvV@|tGev0;W$f0>doRF<=ByV3^эhk&l!ZiLo>̓P=䧈L_4a䦓(f] ɏИ} ht$\&;ySMt{|}|Vu0{B ^w~3ϔ6$9 NU~ڽO[hEK/}/!!܋v &Bn}R4!=N\C&_}f_<[$/dC,fe%Vxr˽o]n|/ MWFKϸGQ qை')D]t=IťP&cz\5^ʓ'%N1=|#85]85g0367:]Q?E|P L.۳Ҽ>3l/Ă"MKveGF+jtvptr4g0;yG{L]B!#KȬ&ؔRolnP4G,Yu;̉rq؆X$FOn2~dЫ7'L$jb5m'Ù &G;%`^xʎ/*i;*K7YƫITv0yRTow 2P~gc41Hx'cT`0'4&ACAmC`$ݦZOS$ `09T걻3AmwjD 0wˇ_V >奵{~dmxm"`v (Pn|uw#y˦ y35GJ;^=7LdRjy}֏ּξ6~2yB ~[(3NOcu,=4ya''/-;05K{7C==UȜ0өa)OhLI9%it9nq$PV7BWf*wd_8Ka&}s2]!v߲."HL{Iy.03=Jc*GFfFSym`vٵ훒^60uhd-R8Oʿ,&b׫[tqR[.kt~Ӕ ]]$כ h[mWwXQ"Ӑ{+=ĺHȑյU'IiGq֑W?y'ʨvؘ9e_ݯ Fh,@m0#ZZ̺,. 7cb";ckF/0q"kk&xp[8(ce6L&-*+jW b \iv`i:G'kCng0x V=MWN)hS3F8:dQ#^t18 1BڹJ/N8­XPl%8J"=w ܌߮0g0[,|S; QsKpf`+i2tqX}L Qv|u^i ŅG+b6lQv^Wvt=*Sv,r'`b6= ){(i "Ca7nZR%Aã ܝzpҙOrN7}9o:!-]65 =cm&]+ \vd@_.79"9aj@y }fb09i̊֟;=]s!?BuoVQ3b]-Ouj#?,Ird8Q#Wv9ڽWl#:A(_h$3k0YJ#1FUPj2ٯm_iSsL0 lE;`+63ݹU{l05dc*$2gDxӵ%yچ ݮP:-R}vo;ι8[[TķHyWV]r?u!X$ |sHyK 2=fFq!WKG'Sh>ȺDO 'w(^(cIa[ !FwRMZL06YNt> il+xp@ZNoO̴J=,w=*|S\!)y1?-1>qLIReu,(\^F3wj5=&zv2td{UV+0 ĽXFfEty>6aIgUӂX{ g 7w``Bqf`+w_M]PPbr2O$f@@df!0$LRAta};?9g{wqyƔ45$LzgqC_}OjRʬ?Xk|*dq4W ha|v_Ϧ.Q(IwXC ->(RN<`yPtHŐT")ORyzyɎ"1Y))*`+ #jչFY\vڝ0SX1+ʓ6w>q@Wt fmU[ۿj@Gڪl0a gq (>as֔'qN6XE-#e%g r)/Է`0šѽ2M`n`}mw%>+/OHU'R!ú`æ=Цf gg3/b?Q'`6%`b fgn 6޸$N/`!ޫ/]z`npeNy>Sijᶘt>j[op8 &*H]e<$>r?&Z`4=pq/MHT]eXP&2Կ?Ā Mn$Aa>Ċ:*0+L;daݓW`q{K2}hx,E?l/݉3/IQ}E](ri2;f'-$N쌱w15+g0`_qUGD|VTt?tonyD&=hy&zC4]dg2$aa 5pU~0RHH q~0X[:mY-{GI3␘68SMboWLˮ؛u-2y|n8F6f5#+nE3u޾rV|x9_ytu~I(x~ym玦wEzC|Zϗ^BĐvؠ?JeLYPe%N|zhW6wy'kϴhy:ikL_"9_~왼*KVYVŇ}@e~ge2H6QuP^Vcxf7K:GNli?-2Ԇî́I53:dswk vDǚF{vXV ! s6WIӮm *&$j@^6V|vwg3/b?1!̣f%`hʎf{W[?5i b'%Е6z= 6 Rn/٦SX|̖O54sC*# 0` 2KytM^ lV"`6<Ċ·#{Tv8 ~jp߬<;3אk%Uϴ˒p z[ CO4Adw]W"rTv3]d2)w%YB*ڧυ@6H>RHÝԿOC=(Hl$:l &G%DDxVςjc2OCu1ym~mmg#ef[k8)y6_~Ⴋ8dx2N'pI#=Z!g VV?'}ɤ^x +W׹iH3_G((^}{De`E`2f 2"K0U!υb ? HDH"vwyou Yo[St Qi<_5+o`Njo߿rcN]yQ v/ו {!N:ɞ)l]$dvԌU˅iG4y֏@"#2pˢC2mT _'Cdf7nb2v0H9=}%oEi&p%0NsI|1UAۈ;@H`4u1?ז 9\> USirȊ+(#Jr D)Yok s^gn[H`35sf(yTcG{-걂*47or457Y'õZ;n``$ǃbnƤR6b) fjۄ@›:IhpW C ZuAH1ϹZmA?7D6(p3h!ܐɑvQt~0f0ObZ( +x~Z8WOQ&'m#}@ /ugP )%F`,S \qfE,]$aV{G|'D>ktdcXBG}`{[S" p^PVNDĒPq,UWHpUĊ=JDv]_7[VB*d-O8.ښh#  `0x eӦ:wyme?ǒ8__rI$UEj,\WMPYs Z{)A򵟯xuiX  .#HA3##[K):3zm\U.!>+<9p+ v4X4n-Xqaϼ~g13pi;u;E. y5vNr\G)y:?'iSG+ t.w۶JZ$t1=QVB<5Y;7]=YgtF~~F?"a5FbqA68]M=K0n]zǬcG^(AIof> L,jkFVp>C JgL8OSC”w?!KBGsڀLll0ʎ>l0nl${'u0C" q!uDS@5 ] =DbS>S$UV9FԪsy;= a|C HV ҧc0k޲U =:Vf K=l0MEq \L|MG?zMT8hXg2=hdHv@#H}Ԩ Yuá*+g8aKm0 ٢e({fUӆg I*:u{nEB3ύ(̣fd%   ="˙{o_[y`Kov>E=4ͫ_Ugume<{5//?L^ x%B+,+Љ !Y3LF&޵7|G٢} H;ʧ Ԙg1Hbc8jsy 9PW5xGGUAG0 =^FUNl2*#kv:ayt;ȹ gjEDH27:tn@r9X=:5T^9:tjg[M-Ho6vml FMڬљ';]HX$:4cZMNzLvmLP1!QVZqW>Q zB3ύߘjQ[3EBڀ3#}b3[41y ړJkw=};EKOulS),`y fݚ{WX!H `0B m,t:m'A%5!C߾ =-Tr$Fdw]W"|zc8ALq]I֮z sM080p/p:?S;} R?8vzא0LI#d *$Rm~> m,K`0>{a a0PG0 MLkFB$KcD3g^jQ |OGv:s&O*<`*} hwOMs.tjq #~i&'o]Qv|uw$O*N N ʎkʎK֖XSvt^70s LkJ3e j5@8f@}~nlQngBC4n+ҹ!vQi>ktdajUSA+G%k5=SIX220pbi6R=Rb$ &=]w[{*&;l/13pzH2ujO?:;ec"TMNeV<2WYK[#.̅p g0[n2VTih  fUoHL3l8BE`"a3X۳:Id׵la~'o2 󌮎  eӦ:wyme?URŹ-U~2__rI$UEj,\WMPYs Z{)A򵟯xuiX  .#HA@&#[K):3zm\U.!>+<9p"Q䓮PATyaܮYǎaIz)v"t{tw3Ya 8\myL$H pBD']Ċ;OH0zXdޙMi'f-mBZi1npbE3k6]'w@O<]$[I{ e1π<}E`"a=Β#KO`0.l߉ZhMBj\T21?.Ϙq)U,.~HkS{/I-BJk@l7ʵn-`1`B}6`4% =IN`Ň73DA!CS$0?Kj 桻&;zd|,TO`|6 Q3aΗL_Ԓ*nClZFJj5mR^ڝT) [[>3Lx[4`,AOnQ߉llǬ-TڝOxl0 66+{`PBt71'lΚr1I g! Q [F[?9:Z94vpLGn6y`RwۆQ =$l!KEM.< &`vv`鍻H vZ~ҥw ZƸ`7Q__thijᶘ4(~0-uv`rj=ߍUC-`F܃ *;ǛR4MՕmVPrh(Qe"3)ʮKC VKRCh?+I_LL!њ S2tcMv =y5 Z$?tonqwHor1–N`owGI3"D&?!a 9Kw"UF6G68SMboWhH*#"} ;}%ubl95`5UWHg#`0eGy'BYK[QUuZ ?bDm]v=e]9v'Њ.e' lL `؉IOF\48TLeoj]"dmth8 E`T{e܎=j3AO=|މ>:Pq9(6jRi0(W fëY$ʣ _DHBĻk+7 ue~ge2H6Qu`5x9w\漟 i9gs4ƙLFhkz;3Erat[!orxrKǝz伃v35""Fx rjstzT?AM=v-=}`ۤ#n{S[Gcb6$j@sNdםx['lHN@nr$.|po8dɮitYT |> /!b$gI313O6ww|Hm`6 QĚQq9c4&`0/yj);ݗ^-?x]c=] &/ MS z0X 3&p &V+m= 6 Rn/٦SXDiEKWM^# p7Y:)c̯p fݚ{WX!HD`Z7 y<x1 e`0 b0ꕕ8"ڽNd03אk~!{84"G 2TΖ}KJ/ZQ_1")N+RdW>}.)FGbNxjAAg'џI^J1y2υ<R/^|OtR ; M?ңU y`eUxȝLh b(*|z4u䝌ɾ? XɌw 0`ig?^@"=E3߾{Kk"}kߚ?LeF9MY;^o}wʋVÈ!~翮,h qe!O7N,Na"E!RM5c~m{mkd0raQ&M޸$BhZifQq@U}.7 KsvUZPN8 V~EW޶H $^2VyxR59'xdbDZB`~ ٲiS?ݶ검 f ~kR__rI$UEj T+[,dU|wW4wfu,n@q`$AHH@ xWzp摭 E=X.*IYIGbtgQ d^ 8+G &6` k6PeG |6{z6 wBqO:jh! }|PtHŐT")ORyzyɎ"1Y))* :*]6YIGζ;ZR$U!WHv3k5JA`8v2?!t7=d0j)jS3+ a0 NoEwd.~07Ms2cHL2X];uO^MŢV<&\>@YںzʚHd|6lw=3 ӆg I*Nq>&iպ&D1rT{e@QG7 /;E.]Qu:t6?I@%lubldh^E3u޾rV|x9_ytu~I(x~ym玦wEzC|Z40Cs!!Ak]' ʘHJDO7~mN.W Vi׵u֘Dr3yU,ࡗԳCB-:e~ge2H6Qụ 튦S&nwxE41  Km4{Ny>˶I%,c6yHVqH$YUOI#w2i{Ċg|8un'בw2 $c%3Wy48zƥ9AUON f `=S"P#Ks=mUs'zdvSS!r7i`W5S#P64 ? HDH"vwyou Yo[St^h&W b}ܘSW^8D;㢡{/IY0 %)2Z^ ԋYݍ8pŌʃEkn\4kSEgmb6՚ceN ]M03&ҤdXsJ1̌WSo'}\RT@Mq3Ԇd):+b%SPk`K%\&$`'~?_ \{cB(ֽvUl/޹ zGaqw 㨛eRMZ58,3I~i&'o};Qv|uw$O*N Nȉ{|C咵ۧ] L7Ӛh Fv|eM% 鮄:*d{(в~E"Eۙo ۊtnF(Oh[=^xJmF|]ӵ%)u~zf2_ 3LAV #F佃m%q`Iz)v"t{tw3Ya 8\my FA*/4v1kHB+&.D_fu Oh4^L$ z fEH)`m\6iF &6` k6PeG |6{z6 wBqO:jh! }|PtHŐT")ORyzyɎ"1Y))GUOSCbqd>*/ m?| Bn8㰮3~Ϻ {&` 0O7c`X밨eL_sV.ň9O.v9_QKhY &{z}&"bb1F)aWȆ jX8|`"dGl0MEq \LĨg`t`d ~5! `{XXw`w,饢}T &`vv`鍻H vZ~ҥw ZƸ`7Q__|m1'hQO:Z*ʩm|7RW s.īשׁ?onKa(4UW.YB_ȡC D*,t+:/1`B[-IyPtG8B& {319Dk.L$5%X4X,M=y 58 ^^C_K(r󁪫iɐLa4]ի/1.栐*+g8>DLAk&C2(s6חDj>/IQ}^1–N`yQgifuC 4St j1`CT6I5! j'EBm8,ol|. jP`9d_MT8hHg@+3`0]'FL l#Q7`0BXXw1MDd 54`5LY{+w[Z}U,|Յr"$t~]浕;2a"d]K_j>7Fa C> b~O*1AgB8n^\yӮk+܋1}|gXC/ZgY!~Ӗ93KyfɈ"QDٻfQ4[O37e$y>hdlfjv\^]՘kU$-l1]8 C kv}mfČ<>MK:GNWio.Xι/)BԄ3x0 OQ$H:"WV"dAN@n j}!tܩG"UgjEH5;lqv0T=3~g82c4&`0 yj);ݗ^-ofy d)"Jkw=[>w%'@ԺK`0|̖O54sC*Fw~ 0` `0 }.)FGbNxj$AAg'_tC´3!0$yQx3/Ҩn `>'Ëv:s&O*<`*} Aʒ7"E4SUq6^ ,-. M+29Ms&LSWvnR M^ok s^gn[H:ʝ QIhpkhb) j>ZY=1L}f|F9Ÿ:{Ic眭; ;`´Y:4+VYTPvrU߱ b µ吳Ҍ5ͅRu_Uko]s T.MEb FQ:yan3im&[+EHLEbf2"YҔ/BH#Y0`$W "ѫ RO'*9 T Ad].J=ȣ0,DU8'([e08bCup%sDž|$ºd-j{qW`j*y$&=$n݂aH-!CX*v\t K 8Ε~,RڿcaNAܝ8*ԩb",8tv 0M caÛ舲㣮{ xjUqpBN ה*-r>eħ蚽'n@VcfZS(N$ݕvXBECl1ZsHdp;!p[ F.ʓ#hLpƐf@d~c”ꋅ0uv`O`QBC+GS絚U\n)LK,8 g0bZO=FmY5]YnZUl0ޕ;`fydk)BgFQ-=KJ%dVgX{9?Y$dV"S Y],A<| #BkઋfWL]}p6XԄ0dk0SEX"l7Y(OH}Zbtd=SZi~B ߕqyƔ45$LzgqC_}OjRʬ?Xk|*dq4W-lт 6Ú &Tg ힿM]Pܓd$Z|Hq3CDR!n1n>Hb ST^aoHLV~b Ģ=xjcs(m;\pLC09x{zv f@W !`< O=밨eL_sV.*L9>Q` &`vv`鍻H vZ~ҥw ZƸ`7Q__,6|m1'h]O:Z*ʩm|7RW s.īשׁ?on܋KT]eXP&DgRz|&4ՒE+~ϊ#dp>cHL2X];uO^MŢV<8TLeoj]"tAD4(H*#"^#}3Gr6a0]'FL 7AKle"{ڟɐLg2RG`\geq@} J0(W fëY$ʣ _DHBĻk+7 %Ӗ93KyfɈ"QDٻfQ4[O{2BO^]>ݖY1ט;:=*ɏY2ZF{];9ťN=r~ܥԔ~*DFrat[!N ZkCv@zi\`k/O&mzn{S[Gc`T2<5Д K~klӼrFC'&T`0[e0]im㮧bݣh` mj? @n"%@׫sAeeSn_?,ܐ$`B8׼ivn@M  `0(C`<^Y#ڹI^R|7#3sWFn.OgUa'7p28"0O\^h݋1s'+`9`#B~*{ҽvWg dSJvUO l |$kaN_t~ߏvQ~qosJN%LVY_ UlrY%;xڡ'D5ɼ !aZ p0 %7 f̳Vjx6Ϛ]t0zf$4υ<R/^|OgtR ; M?ңU y`eUxȝLh b(*|z4u䝌ɾ? XɌwśmT8nPEC6K[e0/(!BnE@:szXϐO0tE.殻`W5S#P6x v$]x^;˿掺m,ҷf)_:Tϕ4Mf xVnߩ+/ |O"i]Yqн$ʬCn.?YEB:jyڪR`´LqGy |[e!6*ąqE~J71rQ> Aʒ7"E4SU8#5h=sq=S\̜hMϛ=ڢ8[p}jhXi(J]Uo 8}j*Mαtmm6ak ]z {I(#7p*47or456(!qk|]sq9rzTcGb B_@9Ẃ`'AUAۈ;GA>7IoõZ;\ҹ.*VU>uf) k]y!xGl~Gk y`´Y:4+VYTPvrU߱ b µ9Ҍ5PN8 V~EW޶H $V^2Vy2nImIlժ y2KÆ79yf{ xjUq)+=4e5e%k~>eħ蚽'n3NcfZS(NP$ݕvXBECl1ZsHdp;!p[ iɸJɈ^Yzm8xy8O)|dVvzf2s]Y}ruGյVV{<\F>LV{G| Y b0aek{V(6b01y]N0]qFhIBFNz q:8>=hlN ?}r|d̎AA.3:' eӦ:wyme??q{wK#;p3 nH$UEj,\[NPYǴV=.Rk?_<ˋYձ\(F!#m]Á4l-X(ѷriVIJ>k/:Սu $y:"Lw;>բsiXq坣 18{^_5A-* t.w۶p:`²'h(?cÆZ\a=0,Lw3Ya 8\my jBQx}b&3K"?QkgY^;iЫi\TlLgL8OSC”w?!KBGsڲ-`1`B}6`4% =IN`Ň73DA!CS$0?Kj 桻&;zd|,H,x߃b0&M;8lq  fE͎S%e\č7`tO` B7$TqXg ޲UGD '[C?̠{UL< m0aS5ڝ'$!\Y٣sm6\mD^MOcS:G׹3GDz~Lς.l88qI^ޑ#BW˯_D 7&ʜ+Y8oZ-- I~?W˖ߺ|Ae0Q9F*!і~0axUU͍{)lE6+Q( 94bh(Sł2`eW!Lhr%)!V4ȟG$Q/|O}&&ǐhͅ)~_d߱&w랼E\bk6삸M舛!q^4XmCS(QtB4 {׉S>PiC3$vUc0`_qUGD9VCD '51LLTbDp&FeSX{ǜ;^/B'vBޭï!Q8⥞CF~ O)*Ed 54`x &,g}m;-*r Wj9P:?.r M0P%/tja B]/ b~O*1AgB8n^\MӮk+܋1}|gXC/ZgY!.Te~ge2H6Quye 3LNfw:"+z‘{Pĩ 8&ܗx0Tt70LUf0/xh;1g^jQ݋[̓o@B}fә˦g#kG%m񥻇/EkQ$Rȳ{jGaZvg$Ks=mUs'zi `-܆8utLzO;q.RH_[_sG6[֔w/g*!MY;^o}wʋGp}~翮,h qe!O7N,Na"!f nG?_[y^[uZg~; m~NSΨݙTV7cn[> O2ےÏ \(wͫLNUm~7נyT%s %yx6kZꍖhMw4[p}$u`^P~W60Ep zۜ?02(NͮF<1Oz:V]C 91oPv^Sv~\6k򟸁RcfZS!1 DճƐ? Q$1 QcwJ_1Ib<8 3[J2EvN-_qAaO_XdJZ]050bw:+K@t/Z.W FN`P+Vv9 PC_f4^Yn$ڰ5 닅QeGCp1X]a0ӮjꐘfXi|(Q;2׾A smpaCW32/3AlO.p,`Bd8=__rWMG9?"uv Ew-y2֪EJP|+]Gpy;k:62wed}F-Grf".Wz:arGVݙp_oJԠܹ K``N[QPLOJ c.OjBE ^R兆q;f=g~3Ya 8\m+A6p>80bZv1[6Pˎyc L}3{f0ʉ<>3߬'/uv$Hc30+LX"l7Y(OH{Fڗ6y<ٕ:S;fe0+vl%FDpuoiqFE BsCB+ *))ijHR46"Yx T6|h\{т 6Ú &Tg ힿM]"wх?J?i1[ (1MUQ$j$a»M_H&c$DE`a~0XsrxT'XebTIe*aۄ|6i0K|4jIm%1:kwz{Uz<  -?]P_K|[dttlzӀ`*a0Ҹ':`Ԟk.4ʥ( 9"b0kzoYoL8zQI{o8b]a06wM4R2ε' >ˊ;Ȳ2^]:$nqhcWȆJ~&C7`b fgn 6޸$N/`!ޫ/]z`npeNyp曦n9AE}ղ..pPLTNm绑xH|~Lh{pA%^}gUxs^ @ryJ` (:7tYy49^Pw\OO;A.XG KQbQo ORycs+wQIUzeӝQ[]OaC7& Vͤػ#ӽy|"!Q[:mY>G%zdPE,\_$E5*+g8\Ruld=u M+k( ς?A/&K=;90X٨cV2{׉Sk($D&?!a Ύ7n WxDĕO2PG:1mq0ޮ;st>?P}2MҪuM\aջy<݅.;:Q+1 K`rVn^8ꛝ"g+.|կ! /7є!H_uZBW 3X?NG;~P :IOt.}Pv][-_^Ѥme iԯkVt`@{z1\hǓ`E̹/Mڬљ';]Esyӣ*a g=yU-&>H N0CK\ͧ+ȨP8a KKkCv@ziӊZ9ťN=r nt>SS Y0aFhkFeOzLvm&wWDvNIy30=:PFJ2/?yp(ʎf{W klՂnd;5=V94*^lɏĽbToIQJt΋OM-Z* 4p.pS!#-b5mzzmZ2A%KQxzڣXJJP0jN|aH}wpCUGRХvbKj`b F5A,µ3$EMvjHӐUSO}cMSNu9y-^2&~!&1aָY*eNM hl) f8&tXFKMYLya,BS@#@4ҜKpFkmV>`fG+}#itA`l`YW(`! : WO^f~"6J$'ʲf[m\ Qxu>ak5Y) &I8{+ FW[YqQo꼆+P0"vnmfv?7QPUM`jX|4pn"KJo"4_8$.Vsb:Dpd-$L؇ڸ,*" z|ڒH؋aev.*1RۖpdڲX4p (P0W';'D4O,Tr*o1?tŨ6{.-A F2ّg2Wm}] {]㪹l9~*eZ{6|j͈ ;.TO-DƚD:+/Xy-BkyA*] ˹én:+R\}uNRiL KC:*DT/Of^<"e翉]V]87>?N0d _BX9v骲g8>8OZU}WO^A_e@CXuF=eiП2-OХє#E< ɰJu" (񮘉PJ3F@mfbZ΁L>ђXQS<+Sb<]xseGmmb^+=yX^"!FsUIL(i( 9'뢬7҄;/y|2X0k \ θ-KBx*$zm}(G.n-%WU*J)M`jjZa-N Z?; .T68JlmwSoWTSݎ7W0rӁs 'ڹ'sS)$)ckkKڲpӲ&=RT5 DԶ6ڛ d fv`?fvyB^^|X-7JZx%tSȟj-yӲFj!/D'( -N W"3ps.4sn^2ɂP f yZr;?(bVG"V 3w.&XMIVƶoh?K753z0Z}͜cJaG(lj 9 F\>7具ϘDtn䣮eL%e1_5,$Z=HIRY꒎]yt!S3n+Bߑ*iChO`Ɣྺ 8~H&zXgWpqobiTϿF$++f?>fnvfCd5ćW0z" UF_nj#;~1hUϮ9^{v׸j,[NKS>6W+dM i/fnm ]αQ*g뺮u.¢*A\T]\oQ+Q5Mu;qvRiqd1rciB^˶A X~cw:u&NRߩqmtL&,LO/r`_3T YSFL_)[cXTn-OХє(ʤXPѨW0<Bn VꔈE]>w*N1$BPxC_q3\* z!o><)22H0ЯWm3E' & qlFʨ Q8ܵ_[Z.Lnʺ[.{g SEDP\&zitlgmٱE[uQ,Ia_w9d}Г%^T 7y Q=.AFZg|V: `լƒܫϦT0I+F\+V쟓}z 'ٖ{SZzT؇P0jgxlnxY75ԞUY0dW7d0jl&:)dUm>\A/sɋ[ [T8ra ]1UkDžK>e`390fܮȬj;`N牪R\&sciNhU f<8 i kFog.; 4*)GDR%!N1jΦ_?_S#T0u 1]LZZzU;($0N"UHy#MIR[ѭ"窕F@"9[P0S]EwAǦ }WtIImܮL%]I*5xw٨e&vdΓ+z" B8~09kLe"`b}#'Le㞼ܓ9Ld/-nPĔ9);d9p%:ytkS7qO/k߶tOUo*Ep* gO^f~" %.9Y][Ŭ.:2ksZ*L\Lg=vT\Ys2Lb,ءuZoַS+8\ jGg/6g^H$W01rݝ-tnau}Tvv憗dsj \EK02Wɹxvbƈ[Qp96T~FP_/M hG`NٞOh'6h'uE#]K.b/Hq锂jfOy8qikдJbGfgj~ mmiH@`^cRYmf8Ѕ{w,k}bv! yݯzѽ䜲ٙ^EV0HPS0#T <ȎuPef,X@ʼnH@ p:  `N ͼ)fniy.'E\u@;y7\7lاo/ lSܹH'ߌuqza]ۛ3 kC-yQ4G"mk"`F4&ך(v%YYA3j`U96e=|{f礗Wy>#s@LbUy=gc[+]EfbcIħUӱsџDB8w>wwQ)iC&?Ł)ƌUzFܔlj,=C&+s3ϧER( J/7`mrNQISgAT>0$]9`( ߤ>x9 kߴTϏR0__gC?y#?V0XzٽÔ"RP0V٤rm:ʉc`YuC|dy7RT_Kbeb`*6}dlkJ2Y*n+m[m;˙" ]lS\,b ڼ_qOwV2H+;Á x̸ɍGP3OȂṡ}ݍr XB}"#myba:9[J+3/Xc9|9\/2@N ]|rĮ ?H/ח)(&;yWH)LXP3G=s؈;WRѮ90rS 1r-Fwg 6-\/a\3jQ>dy"t鹽~,]+I|`0S^ay`Wz x~nTH ./X؎{~{T(6OomTya*Fp,;w=tR0`3V>p!8>9]tO`NU)܆y ^ay݈KzJEpeUI Q4 kH{w^)׎>z53T?DppUC[Fܭ+c~ MzaKpqjCpޟ.b~Iss©qxhY%I,]w>5Cj&6pޞ/hV$%ȍUyT= zq003O&R &6mXOY[%U0g|v}|bwy90ЖG.6'ڳ5]0JdA;ws`V.ڒ]9'|/Q,o8wvx׍~C\v\'v\ C7dĽ>ڜT|zm76ݼQgn_sٻ(d*! %edwvg R*wnP}^YQ I<ĮPX)Y}CI?xFr] XTQ'(g ^$a zG`"R0OSzJ/3LUy=gc[K}&#pnG?7&4_R )zR`RÍ9{6k }ys*A@;vt/yBAOUL!DWi+ P0A7U pptj &iv?f#""HT0m7Y]rnq كRx^M6eboiK*3S؏/H{p v>;^(˾P3]}\,d dqxE1 lȂPU"+γ .*W`PC cHJGZEt<`TK;mwY" YA<çg_w/اXEkCHIDj%t"%/+*+S)pay<uRoj0 Fzn:>pj'#shsKDգ={`-zDωcqQDZZ!(նx y+],qԭ0]1#dӍ,*(secVg0r' tЕGXeS_A|MnJGYtvCp9<`iz|:5g: 9^rbgkN{$H/,>_P:\%?S?YA wLN,^Ǖ) 'EЄ.8Mê JL&'c?mz͐lt{rvK_lr̍VanO_~DUXTA*Ţ*3NAgͦð~0䖏d&'r eKGZEtYO,,m{Rȧ P0Iή>iGRaYwxGSQqD%?r?rن/i|tJJi!Ĭ1`fx\'L Eސi|d{ks⟼HvddA*U$ Ml;#pڳ{h׶5|+!|$0Pt^@goT^ǻܣ]sWefTI{IG P0' :i~xQ]] ޥrfm] %#yZV)+^1by-GNXaAyڅ~#V/zOC uS0WrHth:l";(( W՗#"q4t6Y<0 87Ep`Ό#M#^ZЯA`ao(.pq]ma(/ƟkF֜G1h5;JO3 /EQ̭7ܜ{`u')jj/Yq,%ʻheZ&V{bczS)/EQ)w8vYlxvߖų2S, %jum9BJK+/Ou+3FzuJĊ^YN yӲeE YՒ.Q^X"͓]>w*w.vxDDպ#9cqϥ!rV1oW#} |>@@XU}3˕T)S-FּScJ%D ]KNwmi3PP墾u\aBT+ZDo5o?3[L,'P]Yɓ8$J'Sm?;ȉϞ9gd/,gxIicY2>!oQwְEb[Ӧ֚;u-cTQoluMravySwQv놖:aAJ M Fpcn{m=5`"e2~ʟ=XɮSM)q3-J0jl&1:{S3wLշ:9aLyU+/Vr h SDj%rwcfçK:v3n+|n`B~0B~;`v0V0W )Y@Ȃ &nasyJl#pbӆnj+ vͤ6nW c<8T0lQ~J^J$;kd^J*7t)Viu~fV)SaP0(Cv|e+jڸvAع>az0û:}jpc%~p쥶 Q)@= ?ٙ~lsEl.xbY4T-J0uwV2(Uˡr/oM͸RlNmc2@ Lhߐ gٸD`d/.E`bh䢑@זE *jfOƯG`S&@+dJdqr.7'YI&c5zi!Ҽ}Ӳ8]׮?QmsnKC(]*͌N0 Y|N'f[ :9$53baF(vѧV_aNyAGٱ`̌ ".N_EZ߬/N i_y@YUu'cIxir1I}NQZgoc9J @p36_I t~Wf^'}سk\l*jdN|/[W/\YoqLW&N1eN?e۟yR$q<Y ۞4ظZE4*2NR3ӧ}kt#8^5?o `I_ M_WǷSMs?)nYz^8"Zd٨.Im%t/JV cF=Mqs `kT~1G5Z'c+o ~@&_`L(afĸWGۯ,덴'(^5M?=={KT0Zi@̏1䬱wjQ&[~7 14E#gG+]LR=2s|rߛ- `y s;J6>=a,Ɲ]޶幵6eɢlްfe+9`zݹnrଫRTɰjq 4,܇gVu&!}qѾǁjʏ վz!YOD'tQ9ةql{nhKP'TDd+,O#iѩ<)QOD'L\-cqP0WVwL ټօ*m1lZW7w'xLx \)/s؏ԯ//ExƼ'†G]˘%&J˦-bcW !CVO#RԮi:%bTUU 9Ca Z +6}kH(l͵//fw^tW.zFDa:z[Q\DT>j+E`D3#f V (ʐɎ\IJGϋ!edW;wj|x (wZ˘14|xQV<'J; |LKоLvh{F I3jsdT2 x$^I#R'dd zם'S2z !U֣ vq,GZA^/X}XvWQК ?QgT04D壶b)lW0ȧ"L\RVR*WN*y E[uU$Vau34! +)yS2~*aOS ~:yHyy4)Cgcii6Wm7 '/]$nY1]w8N>:Qhx5} ]kto{%?tϨ`LD"' vTJ i#\F̓pٿiǻ;L'/E~`vt* ι턉lnlg-4W E:Q芋]q?)sx:.!#4@) 7iز,VݖC3x15&(7E  `@(`4➺udl3}FĴ_jRrY'RP0/\{~Wbo4ٟWehrJه=Ƶ.Ȧ2#FLtH+&=N]Gn^^y)ز҄$_cJD!{] )v]s x&oW" ,"e(s42i2j|o X`3:KMљXXzԬԾ5.jlh-m楼.nVˉ8jTզS_cJaH9`emzE"ZiNyԦ\`"n=W0ϥ P0 |(CKdl/hIJ_tQq(ŁDm?Q0@Uz| &J«hG^(Z (s>̏1䬱wBOO}!1vCch|坶14VgSrZڛ-V$ilPl[6:ڷZsy&'MoV6HG5IaqXݮxFZ=sYWeqQSl^1oZMC3&dby *.T)m[vaӺ8%blݪR( *iL\-cqumig왜]qbm[[k-\ңɈ؞4%ftNlq({[~?b*,(E㈰nƹeTvj۞TA95SiS*o5P,"'/o`5cחP䣮eL%e7W !CVO#R߿]: ~,sR0ޕt>X 6`abdu6]>43D]#j%B< g`YKEwFR^SXjuyMg3\*CO/RzW{JҌal=E3L_zUh/#o\|JfoS% u|JOǴ?/ ,v'MDbDЙOޞla &Qܶ]۶Ϯ`b"q߶-.LK~³E\1̎=B_knݹt{:Z&ysnۿe2}`(&UD"EҲnr>k}C! =f{yDnycuR)afsUt<3]OD(^BV~Mʬ<x:u' GďUz-BHGĕ'S03S3K@> E4Ⱦj{ %緻B"#)sxr@y-۪B`m941(P0(P0Kqu'cI3&bT4Ϛ&=0y flf'M*pDS>Y5utA6IFa5bgSFLkvۻeuw-R>ðM$sA|YG a><[v4x`F;?sTg7XVVkJv"oa=~U{a\LՏ ;^a6]%TfFӢ3Ub_ow~6.9g[$z# yi3/.Cǁj DIIev,Z &ۣ Ү {d'XQЎ8L^@h~dž//a/PG]˘%&J˦-bW !CVO#Rԩ]: ~|"Uk>gɚx,v$S$W5晴@tm{ c]OlTJdTqi$p:-U85qH훛czNňߕ!@V)9[PԲ5oo*h],sզ&" rtD ʭ <yď+QD7R֌9êX1w"=@a{?`lqp & /J@~0 )+$zd޹S+(h35%FG NBmmh qI G2%z#k޼P#HbVkx*Ht[S!Ejb-BPٚk__\H[Ȭ=SV7PNWL3*0`:\ZT>GI%``i-cz7o(+֩w+W2-C2ۡUZ*RB|]p>Ua$=*/ZXF'd*{K*vq,#{dJdIz:60ٍJuIIkIA!/F"Mo/W>S E ZϾ6 -2PBA2*RVR*W"=΀T0az]=iL1/#o\|JfoS% u|JOǴ?/e>i"#R xd G̫s-vvH{n"Y?!M[V}`(Q)~0[w:]x9L~Nja >VF?MF&?Ӹi%N@A[1tWgSFǦ6O2ᖵd([Y6yN@<'s<uch)Ҿ5YĢV=}{As J.q+5-rS$D&q`uF;?sTg7XVVkl()46C#-Xn0bLrv5qgWmynMpdU0"~s0'klnO,(s2htqUVQU3^LUоjݺb!G8KJ 6`a""PdR"LBM OO+[ S9ko"̛ڙëL fLa ހRa .Ϯ(?0Ҍ>5HH%zK3-,;Bn@o[\\onm͖)iPVa<EC*bw|:rdEDem04C]DI?cIJGD*yyH&;U$^r՚Ydv}}bx)y3CqyjL,_}`Լ;}CKw >jkC(/+O:ȐJG;9'GqjJ:͋d1c!Wqjd۟E*RdRƦo0$+Ú9>GF%#~Zkx'Dgxq)kM0')?\vHH:7ۓ-VEkl?zg;̼9߲mnlg %du~2C2Jqe}{չ]yХG`LEZs3- d;wmEU1R>޶nOwFkǹ]Rƞ&ﺂ$`uʪ4vEmXE@緻CxIq3LxK G`@/ Fjޤmc˶jXu[Y33ڗ P0`W W՗#0cbE5 | ,@^1Xp`΄{t'r/-gr7tqu'cI3&bT4Ϛ&=0aneP`:|NѶK~K7[{~W'4ٟWehrJه=Ƶ.Ȧ2'FLtH+&=N]GnhaBF5wDK dr޻Ox0(Oߢ'U),UTKñD`y)ز҄/3 *|T6i7n8U"ztIjS_.%^3[4 "Vbzs0i^f˜RY?L$ x$?ꨡR}?[ykx}W.*2Mivqj,_Ϥ|q U{ V)i"YsFF6~(Z crU tґ wyJ#{(`4c/ͯ//ao+G]˘%&J˦-boBNF ]:M(ɚx:> >4B'%`"f^ 6gͭ+Lt32kD ]$j%E`f,t\ X 6"`p<"L8*+(J*h_K&moV(bzr*G=QNV 뮽-!W3!cؾ9VAY1we(Lo۶KL(\[~Ux~TI 3cq*(*ei:|dv?|t.]PZSHϘq 6`aʞQPܹj L4{ME+-6OK /)t̘Ww'/cɯ.|vE-fLaD粊 I0 .RuzxskkDH8u TЙWows!,EYOURN{d1-Ӓ?/!SZEi`^'L`R8uUi E^I"Ŧop/_:T%;*RzF`l0Δ!7*RhFx=y|yR|o ǁIZ]cw7ъ0LS=!s`ΨϑDia4dP"!,J P0$]^v{&[>T%NDc(*7n/4dL;=s\(g-:%|+L`e7tnKi9Ֆ`^Yb7.>%3zf:>`cڟˎ,v'MDbDЙOޞlQ0tEҲ~\6̼9߲mnlgt&@$nY1̎=B_5:~=Ӓgd{-v-7Kܻ NO/xo g[^L` u꿻1Ax"D@+ҨO܋dii6Wm7 <V7vَbҟ)O>w~go46pڥ+噱Q5z\UB#B;Cկs };L$i;wmG3ҔhR7p2({F" ܺsR tߵL%!4I!SmsnKCj85jKP0/<*pn7gmq"c]2Xms8U,Kްf,k}b6G_CEm(uy;jKP0`~` f/8d@Fjޤmc˶jXu[ŤXNΠ{#;>#~LMC׾t P0`(gU0_O\爺26o>#nbZ/F?I9JCym )(`=?+iv{O|%nUx#<FaqC L3ՈɚN vcWY )R(oRI1 4.ocˮ__J{QoL{w& {/Ioq2~KI"t^UOX{i\joo|~K|fMtWgSCOq[U;UQl_KRr^h|hƈ)nYz^qދxI3_ cdTW| `P x$?ꨡR}?[ykx Ld$ _`L`o.y>Aʿ\~8| Os̏1䬱wBOO}!1vCch|坶14VgSrڛ-VIM䴂i{vɁǁjʏQ`[[rG;Y:6$+q۳W&ɪ$4,܇gVu>>Fİ!z# ~}g^Y+1YSX#yNϺPm=Md@9yiux7dCtgt$k.+M}a?;s%mGDPL !tGJJcp:;˙]>4nFb!H8K6n 6`a\41ϖNwFrR^S"1Ϥ2۶2>rؠp*GwMĀڙ#{GSdI+z2NbΪm sa5]` 칆3Ȭ% Ei%P(9<7F+yMGDP=94h;`^S~73E"6z#+7o4cxu #R>*R`=x-=x0+B۷#4wA,QQ0uZjU_Vb۽H4:"βJ\fִ0مf__)#<3QuzxskkDHy*wPAgmG|FQ)yq+G$ B̳P0/I Pi\z#}b_a5hiRĝ?E\0UJVI";F`PaNNMIg_z}\*=V5oiI$N 䙄UI[{$$Ȭ=SfQE;TV]=2!;eKȶ#KG^DZ\hsɶ#SeLn팊R;v-Dp=탋LB|]p%Ua$Ls%`O,eӖ&@=r|F" )))C*G<Ȕ vȰ'#~yH{"{r8#?y f_G޸ߦJi^.;eb}D$F ;ʯzowzn5ζ󓹑+Hܢ5:~=Ӓ@׃կs[VY?02J`{ۖLP5uT=w-e<*]f;QO%J˺ɽ m=YWV=i[8 +m~:1jv^=YF#3T/U0\dۓ"V0g~$ f۾ЩY7{!O^4ȶR"wVQC.饚C][z! &=WS5W[!neSNGNű#]kQg5O'r"9cqϥS0TY714Ѧz>ogw-9Fߵt*-Ta f%[$Oȓ*> y *ofq2OCIeCKC@qDA* \.[_(tN5RbLVgڜ3csE~Ӳ߷sn|[ƞd)87۞YT1T_L BU M Fpcn{jOͪ,en5}CؕXybB8iۡ8Ā-49(/|Z)^TLuфhIeNN}#͹4qKm*tE].q +dfR|fR~l`^A1W$%*cSR>Zz!-!Wu,bw%hTFGSQW41]cTFgsHylb\&9%=Sp /cU:6+ vͤ6nW$;g @]ի7竎zVlz! &.sԈV! qx4 +~Pe|1&_-bK,3}'S*|ɍON ͎@ZFzJC%s@E i"t /6&3`&Aݠs6Oɟ2cT]< M|`Y LD]ؼW=yyȎNΠ̋.c]:T =@~Pye]}9T4t6YQ "kVgEw{iA>y *6">E^P_?׆g 9K67 jwFJgO^L̓[o9>|NѶK |LRd*'^ Xh ʴ*LL7!aу @_5LR^HSp.61Oy|ʎXuy7vxSaaR͡-6m`.y<#֭})+{Rvf1;%YBO˾S)\JJ~fUKDDya-4Ovߩ8}Mky`4TO*r0V8B\=ʂo )嬪cޮ2G|߱2f+өȱSvݧZЍy*7FWK>3 jru!gE}kޙT.ԩWkjìS5qAjq"/|Z)o "uфhIeLN}UxYfO`fG+}#Zz!-1Wu,#>&hTFGS(y{`r*z<#+jp}V^X!˭hz"1%=Iec:n<RKr |a7Fo`s34a8# (YPխ]3cryTc=QWbNl7zNTa g' xUb7jROY k@ZRwM`xK]M4g+Rmѳ-wg$mt95˥\~NCAMËBI<6c;9-A3s,G`S+0m7u(dbʓRF`NXU0칛K۬֙5J  «0˚WFnq킀Csk}j`nI%w!rCuz}S5p]AKKm͙R0z~03x=$ l\tK9ӸRM^J (2+lJ/YiȠS0|NձIa6\Vn4ٜd|[7^ {VKFFbz^ &&H. ymI[]HZfojq| l=eADGmN-WrcOzd0K\sfPz-{:̖ti9=s8]]cmsnKC*`t63V8.Sw9Z_`%*(u)P0ϑd·fWU,(4.+*S=3(XoUfsrj'"oVa4&{ebY)<x +tnL}xV'ѸsT0OpZf;4l?}1ƣ dtZ I=0{G㊸ųJXn#UѧJbŤ?~-xM1eN?mKiʦ{sӤV,}ֽqU5weH}Y ۞7|Pڵ7w zɥ=[{;ϵF K !JnY+LPXu7tVծT MBȅ5q ?ޒ=*nio3/y 0}c_PR)/NpK a@%M}z7@N &P0d 0Jp?i>wqaZb3\39 8xYG a><[v4 =%~`A\$6a]Rڶæuuswq$vM0VL-lCumqd8^yzz?2;z-#Jȶ,q+5-rS$DLFZ=sYWeE$jnnXVk)&`l BT]v1: deXZX? S0*!ێV鼫Hf+"}2Vi3[W,$:gݶZ adJAs0N讽dBrkgBBV2lۛ% Z6\i)Cn]OcX 6`aR@0Ģk(ʈkvh"6`3C| d/E?=J :ہ5DVaQCa+K8rqNE*ōЕJ7c(vo%{9E g{ϲ iƃ\Qb{L:Nk09fa~%s)mqqyxt5["]8V&]>5}F<ڲ;Z ;K툋9ŝ;[دav|:5L$6`KwWꒂEU9dJAHVxUkfM ]aI:@Zm`mnuu:nM#)}:" 9Qy">gUlk.OBUA pmBu0dP!M})!h+QQߎ= TЙ ({IR>/L~qcddbڅ%2 QͲ TBhΦ QSҙlsQ0 B.=SI& eEhɥ{;8ud[3((:`49[p_#/E?Q=iL,[OF V0f 'OlA|bc/?h51ㇲO/oƘc|g/O4.6'7>917;_Ah{F zRb.djcbgyt E[uivVau>uI_̢qL\RfS**!ێ(B*HC^I#~@'dڐOOXE:2:g_ &"h tzŕT=t\`z;H6 F`lpSR*UG6' vh%*u}qJO ev?ד-|. &.]f;QL.L]?UN#I̫s-vv 8Z6O4 “(QZַ}oXjMսgDP:zƒǪ3YH F` u꿻1= &qD@|;B7{ YY۷xvSCTc]2Xmlv5gC>p jL`@*LCW0[P0W8MtpP0` @ 6:~]# 1k}'ߦJk]W_sc#1'ѸsT0F4fVٔ(bG`ޗ{ n'Ѹ"_sVe}'c1xȼ*T=a7~׵w念y}0w@k*-#wޣ=!#Q8qu}BUZTjL{w_pŗV/}澹ee>k6t,_W^~ &%7,E @ pV͠wejmU!x15q ?ޒE,/Sr}!-kS/+1/Y%M}"/4COq[U.'E>ըMF[^X^MS})t8U(~*E`"R<ۃ{}  9`Fܔǎ;а4Rއ{|4F:fҹ,frq :FB_|y y~ZCM/W^93/F< @R0FDf| ;'kU@FV TB F!$!GG+P_u㲆]ʣr?>6y#xoLlQģ){t96&WVwL w%ftNlqd/qak1҄%blݪ$zZ=sYWeqQSm3;GuvooJk Iev,Z &*a'+q۳W&й yTE'Y ,_lnnXVk)?t DJO`yM]%鞱 ;-BҶe6m<&j2kݴCg"DbϳL/Y+^HiBh%{گC/!{y9cE:aY&V0-{괉E:1Ug3 ?+G=Hg@bϳLdJjڛ$*v&d(`=\9k'k1ˇݞ&EgDGY' Qz(KrqNE*+|߅o2 8+PjJ>Hs6"/f75>ܾwط`DltLSQm :qvM;=qiWO s\!M,{\i@giF`n#Om*X$B.bhFUMZ9Uvo;*`dAd!#S 7m!5|v}鞱!;-EP7-..7fKHe"6Y+%>ս$M/jͬia ;̾\qTHyUrEd-:k%*ypQ<~|s_&~?Ĵ Ke>RͲ TBhΦ]|) ?p?gO0li<1ľ~{]6H%K5R|0Ǖ'1N)LLT."o|W0!PT)@k޼P#HbV+`m-yF`͌@, y{$Ky]Չ*!M iC,RVZIvȼs,fI FC(Vl&2% #V_ZlOU$# `NŌE0<&Na9ygx_^!6R<.á}ds?~(2fI>WLIJ9lC{Vgtj(byON-d hVq߮d>uI̢>KO]cw7˱ۋ5Ȣɽ%!qy{>YJKXEJ\H*LRi702ٍJ/6ux5GfHWvVt6hyk.*a|` !wp鬕y{#LƓ7PVD};P m"P0d-:k%(u e1O'Ag;y"YO [֦^WD*(º>E{}@J@6O,`<ǿiy;W TQv0L$}:ùU0Dl#nQcG hX)ÿ=qGpHc1+Pl&b&'Yϓ/`" s.`WX2Γi"G=sT0ם'@S^_mMdװcqRV DjdJ%`d"r?ztU7.kإ<*c1E`i׃ug]Brc"oa=~U{aB$ӉIM,H:5Iμ8HԤpݰ8nTS~< y;>c)hX2-6ϖݭ,}&]>dM= ˺Pm=MdIhgvjj͕PCO/t[fX_%ሙml{t+Y;Zmskm'O`([7NZl$Ivd"Q}n6!EA$vr{T+M}a8aR2*;5m mIB"i;iJ :2##q({|/ 1uOj P5cq**lC ΃lQBMdV~ ܞ9'  SyJ{ְGDed wzșW »Ǐ λʊ4 j뾒) W-y]vd(D`"jKu$FmG-FX"c*F `^Fy{/uyoϋUV2"W0=O8v|OD%Tg@6tH] _98|'">q#t寒/MFb]-[i`&qQB޳~U$fZjU_Vb۽8U<ޔVa<7/jͬia ;̾\qL0nO,{\i@gi%yRuzxskkDH!Sl[GTHDVЙf⡭*3 ls-!1o6sE12  SdEmH矣!gN^>}zz`.ޜǣur5H"iigG"L$miȸCؙ#I-47Ou>6V0/{jCnht9vlt+ H{F#v}O=wd_Bud3LwQMQ\+"ێR.r+%-6Z'QmiȲ4DۑD~#V0H#G.D`{J?׽皭eEh(`}TDf@3Gp1?ܷsG%Tg@Dfs`v0ԜS 4/"Ef@3<ٷl.F->I3 "39R0}2tvs'H.V~TиOliǓ{X>&r?~̀;w.`O]DYLn_Yx̦-Zs3- 3Xkl?zg;I=ysnۿe2#TAf =f{yDHfDiYycuoheT$qjgƢKW﹉F Uzi"ێ)qӹ_`06=$`{?w]Gc۾ЩY7{at/nE~A+;=S3Akl 90!'iʷzOQyI,97Bi x&Ǯ7$ӗ>P0L &JnY+A(@%5 _M0Cbqk@%{.H-.h:)A tRs $D.l% Q<] oJr>w)ܲ6R|FӝCi-Cx ۈr=vFo/~|0Ձ(6e1 S~hΗFa_w9-dmw%x8di af=t]^rѪL9 ʻ4Q{ꪝTne\x|6ˋC.ΞKMowHu@iOM7-}:ͷm9:\ SoB|s_Krcddbڅ%2 QͲ TBhΦ.dr>yLe|U(l#J(؍5f8j(jM6:Þ3@smY8w=ܚHcS# y] G:z5Gce)G8AN.p*ҦnZ 3YXJ+ɮw"PG` zN &-s_!o;XL8і v}oڰޣ  ~[>}yXK}<Jۄ1&_-bK,3}'S*|MON ͎Ziѯ"EºRٱ[>Bjvcfd0tdS&OɔC 8,iǷ&nM$k1^sz~s8: $lYIdQ6AAQ 1 d!D}87]dEtU=tT=X'!Gn >amXwZ縷_q04wmͽZ٥s% #Bٶ$ mt\P4`J-bI.ݡU _}M3g0 OXro[~Rm︔ٶB0D1XJإ0j"s-%<[3 W'U-~,}@>9h<·KA@ôdʊ4:|g&mL ˎ5O/x,<9O;[-᝼@x3( `pqbh3x #.dӽq>ăUF{ t'/®΁g\(LOX;uF@@@ 1?瑲㗄ʎoW_"SRtN9fp=I|T9|̗`$=h K]y0g:A@@@@ A@``(mJ5N!/)$Gk?+~N'#1=WpxX,ΰ9M`A@@@@@ f mfo!ˌв-Gx {wo vUÔXKկH;BNx]ylSd0 #G |™׊m,\P9Ygf|:|l@꿦2iO@.DO*oyCV׼l]%.o/ =ww 5Ah1SFg^C+3{Qc{$,~Ճ%Xj/DQF~OMq}odf 6"Hɳ-ԧ*2 $[s(T#lT#/;OPQi\'^$\P.PXxO=GqZRlMad**0퍱e/|nxjT$~0  -;u" r G=ASqq|e8eoFXD%7ce[ВQڳх|uj]{R J V}nWkh f9MB@@ S0RnY#Ic`\sxj%10Q+4^9H~mp3+έ;+R/%MÒrE@VƖ<0y3NDz67} ͽ4M'6~Tuz`5كφJ׈.m`Ԫ4zυ|nghlWKT9XL `Q̊+g>K>b >3]8&! | 6Jq<׾R0CI(ޯyO]\OxLs—RQ`6{/k&NA h );uܫmZDmYe# hwBe>6#?{8n4dq""Vٱb9Bl=u(BbIH74G 5#dR45ɲZenUCY^V =jVqzYW]N#V`F\4a3c0tQ:\Tt$z[w,\Uk)5ׯ=75Uʆeg0՞4;迖d˛eٚIpUJ5΢)ֲϏ; Wˊ¼'kͱQ, /TA+`󾔐mRH!'Mj|b;-x8߬*avn,&ӌ% y 4c6 1)?e g&` > ]}<1J\:.B$4Oijl#qiv|S^S8 d@y ,h{(X;4EF58i63dG^{*U &gv:y鹂Reqi"  6 ׷eFshYyΖy {wo vUÔXKկH;BpPx]ylSMW}NRl7)yD@ C ittkEj}%x **͟kb"m#L+[xSs+8YXIcHMA"jX3 }s|`O~n}FdM=`vrL ~Wr ځf5 H勨c?aKN2LUo4s^4fD/p̾uZ`^CiaBN8@k_^JQTJh!oT`?_@%jF\OxLs—RQ2f08`0#yMųX5pIMM.=pΞs坲x%u\e54c ]$>4s6d)Y<[} lRyut ѢXK[E\Ji`-=a9N玭Zc1ZX5vV%aIS,V}ze*BLs# ?9B-y hPF@@2̑=(5^?q5WeB$ʡƏ@ɰeS8J)ʗjHb}GznF -οl|mnIPY)-2.ENKGABM143֝&!\Uf$_H+:쾔&h&ㅔ@U< &!hDCNR{qJXFW7F$4MH`jOiK\_RMcN3^ tWzI%:f|t4#H.Z24 bCF%P~VHld'wr]yYp:Ԋ0-塡o^ʀ(qO8YRb<@d`&>eĸ}!O^/-lŹ 05  ΒWߞt?{jCCZA$4MHX`U3V^fHտxZO cF;J&fd贛 ^(.h͵p27J15$na0\[9EpCq" l@% Elz¥i GlC!^scfjԨ‚ ` &$](Bd`iPK0m 11&O0xq f埛74ssG3XH;x&EVSqo;[ug'iB;f0Ts`$똁0H-Ekw&A%U2;D(Ȫ Kh8F@@bPKcȃEdCs8LWaq4.q\@EA!T&֜[#^q}V+I*k ;״)L<46O͏k4M i N!忪槟 %S25B>4ͧfQA3иwcFw; jQ70Jq(/lEBsjD͎54!cQ]4Y!BXmHwK@txge0&fl贰@n!`q4# | FVfTꟳ8Y{%͓aɱw5'-R6ۖemox:ښV]%IfwCfG6˔E=)\wdȡir'-~,}ԓ4JUoZtͅI;i%.(\0*NPO.<ϼR4#Afqh~q=hj4g6igkZrؒ;vU~YpR£Y3? Msk05xsi VWwן䵺ZflGhE4#S ^!̝' *z)%F]Gvp%(F#`AWf`} 拰-m; 1`A 1`dCiW*H6F թ91%{ Vuŏ'sL$*3lN1=d0O/3CpxϫOk{L^~@R1w?͌cd~VB\_}Zogk%HƖ,}jISaO0Aj2i/vCioS_ӈ< ,UKN&TT?=N^b>~&&s"j+iiw`h VGJ5X nGD:\F0:`9 6Jq<׾R0C^~xJ> hgK8#:/余d`3s<`-=a%׎vg+SEg{fW8qq!5t]Y9G蕭N6/1R Gߛ?])`/[B7gV^ \ ֹPzxڌ`%ښur~ˬG >h{%í"nrFi=`B}M\>]FJi3'8cu Rbixh5m\}1w-; $j?2C!W͂54:4ine0ʔ^17v(4ْ!;]|l]ve5.bFk 1}e0Gnnx8x |\ ɒ])j ;JP1Պd| D-v<6b^K#H)a<[6|POH 8dDm!=P oqj&qXM|b~`5L8h2ӏ[IgP^}{9<Ϋ 9j+2V:x'WKï{*d%K- 20-塡o^bxF䲹 g^K$m =EDU)Iy- -;4M܋'OBqAm=WEprEo6S\=3=H6`/ô/! xpyOrJ%>1#:!]7'̶i(TPdͦI@'\ Pz0M誾LhZ0mz EVSqo;["1`0lIP3`0347& (Z0MڍARV Z hpZڸP=`nIg0CmV YUaig[74h״)@}RIR3И&[dIJC+yjkACX0䍆uO8蘳=ϠA@@@ @@fTq99 X<ى &{^px"EN)am9 f}0^K`_7L{? NlEw0\yU~?dv~oK O2[~2ۤ.S}H<vvAfqh~q=hj4A ?>e 3N N XF1f0)۶7_r{}}mSNmgP{@57;e 8BNޭlpвӤI֧~/R` b|<4\'W\2ƼA@@@ 栜F{M[^v8K12:]2 bt21`ӶPe=t,1`A@@@@@@@ 1oPFŕ#k[=~ujy1pLI$9^{1|]E>v:y鹂Reqi"  6 ׷eFshYyΖy {wo vUÔXKկH;B=Sx]ylSO< a2xu* 6$c_n:OR5W{yYcܸeIF zߪ?g2&>Ih`bg0AJmq>%P!8Xn͡RQu4?aBEsN= n7 OnJGj2M{`d {{ ?il,0WޏSsc}m`bb0&YSXwݲG<t.hՔJ,c"a2/Vhr&e0ruK׶;%{`vM0tIDe0(T$襔EDRG~|q1Ζ?qF2u_K{3G3-q]cl=kͿ yѿlw._K1RYg0E&YVqr jVrNc04O1aL$X/Ckӓdb9Bl=u ≙-,Ύx:/hyߤ.etVK #[^njc޵j$/w{dX<+P_SLs#9B-y;i<7λST_q_1{gϧ{:Zk`p 1.#&A7m::˺F.wXsЕb013#77kG8㚏2!YR<?{%ÎE C#xL((_ª!Q7w`Ώ; WjG¼'buI[ ܳ@*Huވ:})8:p+]&7:-QdPA:)c^(d^/*r8 w:MDGRAc>! 0%j!Z_A4KZv?DƳU-c{JWR2UGf1viD1,N0 ՞4;迖d˛* Ĥ]1mD?AO9YUTRQrteߚ FS-`>KdzA,pȈCzߪ)ԚMⰚL3N2sxWr = .aنLFluSDXYRH=jUK#WyZX49o,Pw(cc0Y _AO+^7;G]} aXF { "m̈ BOKSh<4:+ mÓ'lz6מ:3yM ؁դa0[h7WL]M11F!F- 敂K|ckc4GtBn(NmPȚMO M1a<1OuЋ m/"J+ʩ7蝭J%3jmII,&S Liw.}m69, |A[I` f x[E-NJS`0e@kic10x͍ARV ZRJZU5X&c LkFR3icFlIP`z&/N 'Qrg`0$b0PKcȃEdCs8Waq4.V@EA!T&֜[#^q}6Fow* ")nt)矚QAc%SִME~忪E21K^Y`Y 5g4LO| 4gX{>ʋ$)q{Dzf֋TjqSDJT[FPCHQˎ b0;u᭻..pc??g?~q>K';ck6OZm*lUZ-'\`0/XZmWB^Հ!R#f5RU?:[`os! x0]Bv~/m>w0rBV<<͌~od{@\ ܞpQ1R+w< r 57;e 8B.r'/x^__G[ԪCT/wpHa0%$}O6˔ưsZY_\|O:~:`63|hl Xض HU`=)8hQ9k'e59:/ 7]AKFQ  5O4cF; Ǹ٣︘ҶcÖ]تRy`A 1`CiW*H6թ91%{ Vuŏs9 NK62Jۈ'_B͡e8[N<'t߽Q&PڍVYbSbq/Ub ) QuMiƸ!)Fc_#,U~yT$.(xs&krj0#캢'u_u8] NpQ/D0#3 r?O|E3= a\Lxz$yMųX5pʔ^17(4ْF+`|=qD3*%QW#Geĸ}*OH# & e2tqOa7OKSb`0s\^$ńɴLK-ooyhuW<7\>a Ͷ\4y3OrJ%>б1#:!]7'i(TPdͦI@ '\ Pz.&$m"lOI,uK` p9΅&t/}NL3[NW0=`0NS=? r -Iq1Xݔ Mia6S[mF8 j242>,MB"P 4O?6A?qw9.дgF]Ȋg`(;s^`;DIX[\!1kovpVM]`'iAfqh~q=hj4Iso^!#deJq湟< j]gńɬhlYmۛ/^U{W \_)OcA 8MT;Nqqz0=r2Oʺkrw)R+YSEvC b0_ &sh'7{Lb0][U Ub0H1`A f0pqdv_C^ SI~ b%_WxN>9Gcz$TYas!x-~ZVc|^=~B'?^eh%&0%R+il^W۔&cT7 {?!=+,U~ygOc W\PP[LfPyb?c*su_ d)D{~@4`(m#ʄdImj ;JP1Պd| D-v<<0x4W`oVt9b _i"kxϏ; WOuOz3Ԓl[t~ [ꄚIxKR^鍈%ٗe2pykQD1JYkeZE U 9_/*``=i,qyw-Kɖ7;UnWYlFD;/Ȫ"c0):'d,yNq~4u,i=F< (`.S1is4 R$wl 26ǐ(q@ f8&L>10/RY~Z\%tcɫoO:޽y!G`-Dj33tix=G#XmuSD>YH YM}NãǾ@S<ܣ)cËy *'OBqAm=WuQ8W1x*mwT5K|%ԑ;^} 4?3Z!EE~2Lb>ېaRFwiٰA3, &D0˾17J1$na0\[9EpCq" l@% El# )} f#t* ){Yz@cɋ9-OeÁy(DEnYVz}FɈ *ai݃M &^B|`4?5ݹ䜲غ.;Y34Ue0lIPD$ Uki42&wiO1-AMf#iK/! |m dyҏk"\rSe9G|Ewc!x" fs*KZIikNrblv-/RkB+?=7J-P+.Iip%,L͏kb`0C+i N^9忪A{>ʹ#)qI,#I1I4MW2/0 |5 FfTq99 X<ى &{^px"En:am9a0u.π;e26¼2;BN'<<ҶOzôw }s\1qQ1R+3}یvS1Sc}tڷh<·KXL2Hs(5i3\Emu}{^j~f̹d;yO 2C+vIGSO2}OVmR)pn8:MP`s-Br.40Q ?lmk0A3 ACU:Z_b> |MW\th74o~AȶP<)ѩ8nن[G ۾ b0_4زAji2;njvqGqڠÒVԡ {ЗA 1`A 15CiW*H6ujy1pLI$9^{1|]Ep9s' D@@@@@@@ f mfo!ˌв-x {wo vUÔXKկH;BNx]ylSMuwυM\p% NkU%~EJ-ق2a*COe' >Vݧ`?#Fe KyFdM=`vrL ~ohVS(\ZA8o=g0ruKϝ9p2Uv>.Of]u_J m>1PFXS)Rja0#w <j@+;!'EN)[]v Kkvd֗Ξk QF0w+<:-JοpcߣOt=1Ûkf0GnnR8x |\ ɒ%5~J%(@OGjQ2MQUC;~So<ד` F BAxd,yN ]aI]uh1viDӰ͊2C w:jܣ.d˯ -@Eh?^H ȏ0{XUd]K|YUP uIȻk L{{))Q3,SE/TH+.]ٗe2ppQψq%3jPBsj]˺ })p% $̫{қ)$Q$vkZ2IKt~ [jH-1vbC_EX{ksp` '4]brμ2 ՞4;迖d˛j-o5C*)?eg&R$wl 26ǐ(q@ f8&L>1pH%[UK#WIE“'lz6מWJPi R[FO ߤUd 8G]} ^16[iM&>eĸ}!S rܝ*C긧|߰*2 fì 5v~K9fRM}%=~z~ՆE3Rtj+|ciEeÆӗk Z!1u0i2K0214wӾ2r2dM [xj<;U27J$na0x "8^MCy"k6MKJz|OT _9΅&մ6`p4ʥPx͍ARV Zk8C.c:^e%_-]_`E'P{M`I@0 EF#[.11{&AG4Nے3a0I義C RDiE96+cÞZL7br ƚsZ[ˆ󔴵eV4cKQ2b mc?i}yL:mt9wڌM`@Z' ؍F,%';XyUaq4.wO@EA!T&֜[#^q}V}7N>V$mޕ<%7[`,pVH"I7EZMUiS&U|j8isE`s0bn`D2;ck9ѴMI_K\_ذZU*'V+) ken~\C@%E:|@Mh+ 4w:/V=җ矚kڢf|K:< +; $:Da.d/.:,E8\` w0ńC_ψ614wÿCﴴ^$L`RҶQxwc2f0: ׅ7;~d} 4Ov" $ޅl8HۼyJت:~'o[N%_ѹ`+_h5:$K5i3\(OY7YpLAVBOyakɖU޶yhkZwpJUoy 6jcV `\i~JVL|8k 6vg6igk%87V2;BI]'4L{?Ǎ$؈ƸɜsL65!̫H˝~oK D';u.π'i˾i ,:gyNɕWL@_K^]v0uXI&þ-5a͡`g|]gW;;yV2 Q ћ1hwU7 #3񤬻&G]2 b$ZkG0`&#H9MfN1n;.Bln ?#b0_A@@@@@@@ 1o,q^ɍ3J~_WVֶ\pT GE~u"+>B]Ε!'b0pqd+WǔD﵇X?^wf#1=WpxX,ΰ9Man`u&RC@ȤΉV<Ub0PFkz5$RgƚVr%o!{F,Yim|&Y2b0;e0AJmq>%P!:Xn͡RQu4?aBEsM^$mLrh7jSOv'ߥ:~'V?RCGP4vٚ_֔))V'M0jMw:,+xBQԝh]q%duo0hc70l,b0;c0&YSXwݲG<'hՔJ,c"a2/Vhr&ێtkb<9v)/ߝ;}HE%>o3prznMX!{`5%_NC+{`b'LXtۿvޝg0Lڈde\cw>11JKr*_WRJzT" FsU'La_6^|uEg1W:QrL3Ke@$x~z -m7賵i{ҹ` XCyz o r75ɲZenUH|eօ`W]Cgt{OCc)A۽bnC0Qh%/1M~8ygyewh(WGͣ5*'C3nOg%k*Rnnt gtZAGx7!!#sWoImE7?1<1QMkKfލibbj'R=t L޵Qά yv`ܼ?8x |\ ɒ#(v,?2cG4EV ZxNh\h;-+Y j:O;5<듙D3J:_-/ %-ED^$,| wX!M:< 5>!_DCNR^4Kz\l3hc0t \q[tpZ2`Ϝ~X(S|P"+ܮ:u=. |I_{? vOh^ wC7:z1th0 &&hh#jA^UE6 Ih@er-2b60ODff=Fv1Nm+{XU@RAcVS M^~>2JMy_ڣ6gjCS&xNyl> 6_> bCF%P~VHld'wrZ>rE[Ԕ+0@Eq3|'3~]7wKտxZM&>O+^='5bd܇ ͝$aZjy{CCߨӽ⡤q}ny7Wws2nãZv"osu=]e41?ƾ]{ c4c$M}io(M <@ 捒C4-OrJ%!1#:!]7'@W`4*i(f$ KJ W}`/GӻSnmOd&m F;"ȓ f,2P>-c=747f\"nH.1ҋ=SKM9 D`==dr;smg2hHwK@F,IiK1 Q+ y:V~ahm&+ܙWħ5EV\u%o4̅C5|~Eǜǣ<X0O$|zhljXBb !hj#"g3@s&Z|,jzMK29evdR`9ך|'Dv167| MK^Õ3tgNxs@XҞ1mp|]xnxK*ܸs@s' +y[FǝxT  b0 c0pqd>_C^ SI~ b%_WxN>9Gcz$TYas!x-~ZVc|^=~B'?^eh%&0%R+i-^W۔&cT7 {?!ٹϥ8}j;Zk_Ms|)%:MU:`F)y<" @W4b:5"K5F> O5;"IGg$ۏ̿e3h?WLB e0!|S 6$k뮶[gRלLj%10Q+4^9H~M KcD̎Ji1 1oJ-1JKr*_WRJzT" Fsy#*T+5b-%~d䗺fr bixh5W:[bC'+:qcuh TaPwgtZAGy'xDͶkǼkaI +frFi=`B}M\>]W>\NF̪$ɰ9hLLM.=pr,"i3'8cu pSb(351$:xo14wͰ0Z;7L(]+F9r&[b 4&m}a*dk%Cn1`0Gnn#8x |\ ɒ#(v,?2cG4EV ZxxXLh\O޵3qYUpWT|?Psnԡ`.|ؐ&T`mA|7كL9X{ЍL9Θ 2ͲצWY)ɱ-2z3%h1mļ`OiBMKс[2:i(঴M)w IK &w|10/R Z~Z\%0C XBEcbĥWmjlH&d<4:+RNS"U-&W]/2&AIpV=EcU)IyuJ\E_37)m &Ffrϼ h:A ^(.h͵üB_X -C%(9+͓{Rp j "8MCy"k6M@>KJkW ܬJPۋCӄ Cs`"Թ#+ҔhaiQO1-Ōj+5ju:Q%ń󪃚ļ/Eݜ$mAg<^cMb^"hg614z 7 #hP@]gPp4i F 'ݾBV7n  dyҏk"\rSe9GiNs2q[$8$LR~NabQ+)mINN>Eb'S\ &T`mE|3r5/Do 0;~]o ]L4ZqyMO.J/-&$w R̤R{Z_5-y8Dn?j ZLh1:IiAM%dQ*:f3И&gnA;f<;xn{;?AuM ]`,h 'ݾBV7.ֆaG@ !t` o ovqIP @,iDH p8]2 b>zaA a_iC"ž-"  b0  b0PCiW*H6mթ91%{ VuŏU'sL$*3lN1=d0O/3CpxϫOk{L^~@R1w?mecdl*CV}w'x>Y‹Mj/hLԄ/W?^?g(UdvMN 1_>IAk>IHscW[vPF)y<" @W4b:5"K5F> O5MJGj2kVw~gԩuʝ]4]В kJg d %X`&mU`^ b0{`Hm#Lje9x&?qK4)XDd._Dx M73/ @NbɂiFL+[b\8 fN b0{`(m#,QȩH~ _K)5S0͑; kSֈq 3iC_Zƛ90մ&mϏsH1Ȼ+WGͣ5*8T*GB^;b/۝RL]ABfgAM;=Y3|KvϢ{Xw#Hs坲x%6p`z35ɲZenUHZc1ZX5vHm1uEg1n(QNc04O1h_tu!ؕaPxOm36^{]vnCC^-Ҫ2unR5g\qU&$K'SG~xdQtxV%KX5$ja1ƣq=?v|(mO=Q);;m?^H-t OF6=tfR_ۺ$\U%dw۽ tEwϘ% RDy b6V GD/GndZ .WKK3Ȓ9]3I˺ %:'d,y%D7<9/9:Q&;nuѺ~ aٙO[ c0 {c0 S-`>ϻKdzA,pȈCzߪ)ԚMⰚL3^kSo,{ F7+C>hFEE~2Lb>ې\K[3h3c mDW-SqOggUJ%KX49o,Pw(7fDJ>-M'DAJLΣsW-\%WLO+ҥ ..,MhthѼHLμBbh :4K! | 捒C g<ɱ[+hwPHCۦ ܼaN9gø1$"MCZ 6Iic p=e0lIPFJ2l$`0z`hw f@`jNsk9eu5]ӈr ƚsZ[ˆ4&Zgm.ZWӲC{Po14C/ 4O?6A?qEb,SE(=JIO8ir||]o ]LG;4#m28UL._ąm.U,!룖%e#.z/}L^$U"r'V+)E\en~\C_![D+.P"xm u{`PsF0Gs">û cdh^Ǽ'-B{b0_0сS.u7%n's@s' +y hgK8#:/余y|owy,l BfgAM;5x)uoYt}Α*#F0}-f 08fúF\H]Wt}ze we7ik0eߣOt=V7tX/C̖GgGENܤ9{OCiCArUGcЀ%83䞜w{dX<+P_Sxdn͋c+YqvW4ݛ>g :c%rJi3'8cu edXO| ڽaM E3#77_{Qj~k>ʄdIƏ@ɰeS8J)ʗjHbhGzp$dw۽tI:) RQEyTTamiJ\U%wՎyuOz3Ťe]E(]N#'24#I-՞4;迖d˛QoGe.$P)k L J5)5]%6U /1H1=Q+Ay)ִOKxf+i"Jfo1KZz)g;D'S&(o bgj'&@r f0 S-`>KdzA,pȈCzߪ)ԚMⰚL3iS3g@}wq~Q .aنLK^}{9<Ϋ 9j+2/姕N/U@3 KIy 37dž#H?v'pN?pi]:x'Cϩz h˒lMdp\f \ZS`uC!*hv̷d*b`0f5 q~b IΜ@+yaz&P+.׻6{ }9I*IxZT\\>"WǔD﵇X?^#1=WpxX,ΰ9M`PF?~2nx{Iq4}PT5 +mJI9y6^}a)##Cw2ez T/W7 A˫=%(e١[Gd.(xs&krj<^JƖ,R4 |] 6"Hɳ-ԧ*2 x@ѭ9Y6'L4zՋo 'x7'XvvDZh0EXRKhZ黠%[P5LU3թuJUl'\1z.Cja5uW-y3) k܂vYMyB>&&s"j+ii5떮m7vJ -a*+# |] 6Jq<׾R0C.`(ޯyOZ#.R'9#xV ._+F?r&[ v y|owy,l ϿpcߣOt=Vb]Fp؛*BCW`R=(5^?q5WeBx15~J%(@OGjQ2MQUC;So<׃cd0I+a)a^ݓ^ⓚuI}-sVWFƼJxTiQ^%dyԾ.RZ@P0l nP9e[Du9>bu<@5؃2-EBvK)J%{6f:GƳU-c{JWR2UGf1viD1,0 ՞4;迖d˛* ĤO؃A)?eoS-`>OKdzA,pȈCzߪ)ԚMⰚL3NNS [^}{9<Ϋ 9j N}q0qlCf TїG{ ?R*v2j u*O & erl +ҰKZ\%hq79 Mð@)Eژ Vur_<-M5^Z7txH9b<|¦ ms*:;Ăiko?m5 1oQrY'9v y.i`d4*i(f$ .HS(=~G FX=)O S3bBvHVSqo;["K"&BCUd"0mR,[tQN~jNsk9eu5mw+yBk:Njݲ.lqRJ,,0( Zu kn Lm:^XpRYUai4], fs',5i06fĖ He0n C-͓ G~O\#ᒓ,k<]Ž Uu NI7ӇSyXzJJ[s#gnxZh{NϏݩԂͻҙjBD͎L[6*&ąm.Um^$C>95=_Vͺ=0m9azf cl9RQ^$Iوދ:ҋx$ *֋TjqSDJTeg2*:|gg0<\Tmq g6igk\e:q NЪ 3-m{+zA `Bs1cw\L li1a.w{lU)22#  b0  b0PFŕ#kA~ujy1pLI$9^{1|]E>v:y鹂Reqi"  6 ׷eFshYyΖy {wo vUÔXKկH;B9Tx]ylSMReЪ/ϧ;Kx;<)X&j϶ Q1i$u,~=fBޣߚ{~OGYc0AJmq>%P!8Xn͡RQu4?aBEsNH<>La&Cq c0$V\ ݂NkU RT'U{WK O 6$k뮶[gR@@|L$LE Wı~~ XbwJ_ +[A@@ f m% 9xɯ}+z)FQ=`*9r"V~|q1Ζ?qF2u_K]z3Gc4PeEJdܓ2A펊Rj uOSK41=%exco0W .} "8F%MCy"k6MgKJkIC였i '3!EVSqo;Kwѓ fI &:wd1h3VjxaAñ6nzv j242>,"hbn.*p󆃂[74' aޓ29΅&t/ ZD @Z' ؍F,%';Xy {9v 8- n)?0$'Ff'R}"v+=a0lMdpPąm.U :Bd`矚^$QAcjn PlfIJ^$ICa'gY'ErkK!Wηy@R{Z5-y' <<\34]2T1kq~^Fh Yj􋣋9KG1IO'V+)men~\mMA4ɳ{>")q{d 7挆}g51=,u᭻..pϟꟳ8Y{%͓aɱw5'-R6rۖsTՏNlEw0\u"=I-QcpxLkGW5wCfG?|)[Z5uEvM2L{?Ǎl59s.lYmۛ/^U{WIɰܾ:DBOy;jC30g0Ъ ;j/_z^#3xrm!ϬÕ}OmR)šm]k8Hե< rښ{2W/m>w0rBV>jiI1=MT8.=Xq%(/۷\v3.ZoG6MIYwMNUb01[a.w{ltwn|eg Aji2;njvqGq1 q>`#b0  —`(mJ5N!/)$Gk?+~.&?9Gcz$TYas!x-~ZV?~2nx{Iq4}PT6 +mJI ]Z޽ztg -Kդ_^"G/:"d_"=CmAtoޖɻ[9 6"Hɳ-ԧ*2 x@ѭ9Y6'L4zwmjV?RCU=Va`7]}4Iba0韟]-!`0(T$襔ED:Z5TV@k8[J4!|/u'j9Bl=u"~d:|a$:[4،{X׈ :4:9v]Y׎vglc {29}zmt'taRrFi=`B}M\>,Gߛ?])`/[|TL%g=;ǡKZ)A۽bns9Qh%/It=1hs@jV<՗ftZAGvwϣ3D'axgܽD6%H:'f<8;*r|Z4<o)8:b0`|A>qD3*%œ#G|} fEW!/@&IJp%a$̫{қ)ўFv^UluIHIFfS&InsAH5?d,yNVYQWRxC *H ^z h}BgI]udMrs{̳]Qlk0[{Hg`ѡûͮ`=($8?t#S 3Ftoh-і6%h`TZ=h,*b{awד^JIT:$GG@@ fGO`,;ٲ x*r|)x6QcHB[u\ ZIVi&km];p)AsxWrԊm|.{jgbdpѧ 6Ш0BmwTbrj uPe<4:+5͵ h3m}n1N.f\{j^jxx1‹$s4e?L>Ϡ{%FDnq79 M^d=PDGG@@ fF!I- 敂K|akc4GtBn(NwmPȚM&,s3`0o6>Թ#+z`z~8(Ϡ{C%D8^e%pef'3XXu 92nTX;ͱ`_޺ 709LBOyvs!Ĥj>Jkn4ûͮj}kr@?3\2v' mF[`ѡ3jhg`} qQ U[#1v=^(Xxfsv6[/ُHU`θ8hQ9'e59:½H{+tQJN 66Kk-neϰQ?@@@@@@f̛r5y|ݻچ<uJ2KP6 !m-$HO\ǩW{/\17s ^$PK퍱eV~0  pV?*B[a0Gc\y[?!Kwy<@snyWS3<$K\*Hp3O~6pr5㾼>NNs#akcٳK\/=`Tgy/{a9_>-v !tFN< C`Ljajʆts@ t.1E= &9ly!-%34 | %Χi4%yejM#A/* 70 @̿Nb2K ud /]vME!\X_1`VD>Ƃ0w,C{ҕjG4\JaZi^Qf(7oܫ[NmpΪ te۟N*6g[!o`0h4*#0~v})" |# t\8[C.\uQihcwVxXbR}2q3?}3[=Z~r2lVLcxT?y̎ kwGY+g m0v]%W. 1eei g35u eqziJ~ I,^QJ"G4 T /G_ H0b6>|e .sz W | FZeKl+X|x|u!;s}0 U^׭ mؐ1*y{yA>s%]U~{muo UhhWcvWB};1]);ʥƞؔowʲQ@@@@@@@ hS# 7*FV*k[Db0/4Wd%Q]Ε!'0lp{eiD+jKg0|fZA^m@.k넛I>{m F.FO//7At3?O^KXh\CPKd7Ɩ[ 7+(mP/D@@@@@8x i;=u7^#2A##O+ <,^[G06IMl {$jrMu?-;<פ=;$<5זiՅdDtΩ`@AW˫:FēnV:7kq:= tj:{}*-[z!e0ӳw'?LUrv8?eo=E1xX}3=wJ.Gzgzᝦ; #AsXLJl٢iU6뼐ʆ(ckKfލiP/D@@@@@8 akaO!oO+ Ys+iGUF ?rP R͙|KO*zgSdwi>/T|<%f28ҢMϦqsO[SXiO%Mpagn:i{Դo'aؼw,(q`0& 3=w%l{5GC=naV8WIڮϜpx4q%_p)ѭ0_aSsu- ):vVYwטbUƹ_'~8+}0wnU7$&}KQfe0lyeCGoW]=H`N /dm#_ٴK^Õd_9͓'wcG2TϠEI_GM;1a"dabƧ`$;Ѩj IH$#({7:r˕1*y{yA>s%]U~{muA` S4m5|rk Kx5z2i>Ѯb Nvx/b0M0gJv.TdW&#V {bSvet)ˊGՎV w"Ms/ n_g/FoJM_V7ЏqSs$.ͧ'#xuUʬ;T>E@=0tx=(K[Rj͙<ڭ9le' ϊ}}/K&J^7ĺl"*yu4`2z|\xᔿ% rb ߚ}†wGDe8A?&<8IYIAفd?Z0ن2 ;f<*o3 nTK5uָ}+& 2䴴Gof-D_g >23cC,ExzX˾4_UY:r˂[85=͋R4+moޖ 9ucI h%2>'%U+n9t8gz  hA@@@ _}s9#0Rɑ<ׇs߇?# X7_rb!uIkviD3*~PX믗F5ګC!#miHkӚ M[{C@ bZJ~<~.aeG.NLzV/g-Ni~! /53-Y n)5OS%092xruN 6<޲;^>Wgertps4$MḶ<:tFޅƚEӐIoqL fic4EΒ%r޺7xo ؤafejj29_Ƨ-ͷ W&nvd`zsI)1iyZa&A_mF@t g^KQK=Zk"̝GDW5Iz_ˋ|r F_2C3qn2`Xů?{5)_b|`)pF'^8c,LX1cG3aVZ4r KLyECbyJfL>9қuϳ22zS&>KI9 Y͵7nfן‘1 ?N 9=Oj ޔTH<ԪٵS`../++'؃2YXI͇i @.,:$bDy< 4f+RrOgqa\o$>:Z`"# &snN LP /c]}>[dGc088RI4:>W&,eotGM~O\Xa4|tCN1;*of"~FӴN-|;KRo:[^}'יn,jxh1*`|F5Zp 4y`RlW!p睭m9 {i5Mgj`|@sF(osz3)0-`P_yf9?3pzq ;4cz[` 4CnbJof=!чˮk{nUC!%S` #KV{u3Ӆ . T94rӉriCmln}xs{`O2a&A3h|dPK[Dv9"DPKzL2U~-Jqc³215qom4Sf3y|fxX1Nu%:/M2*d}XBy"/{<SOWϢsD×*' ];#CV|mE7`MG)$Vnm<b08O?QC@@@@@@ 3AjO% 7 k6Yp$'c0ÅE$O " EqiGd8|ŷ'w k>߿z?0y=''u*eyz g^d`fgj˦."n1>]y?iƊm`+>MxV6{Y y왒W;>*~ ٝ_\Mv" | g>^|Ԧᔿ% RR=poM>aû#"2x҄B8|C />&W]=[q>&R\t/'*,UK5wv?]'SPf4sޓz ;Ossg 5oexw&~Ie_~4ӄ .(I.n(*,H,rfƧC{/h.f3<__+sϹ 9{{gVuFE C }?rVOFv>?`8!O6Hҕ5%g7NLD'伷gm)`<ޑ s})~:%GUq>yayv{o%W |.9r9D!GaB؅vfusʞ3(p9B0lR]0.`8 eӶM,q=bfc2Ϟ['#&XfWI%:Sqo99[b~/ՠFWG %waX`^J3T]5;vI,2U,8yj&Mu~ga~p u'#3) ua|͑j/U\Qc3y&uio/Sۧ $w5iu#?^:r1#'(]H\)3Qdu?yD*V$6ڈ2fMZq^=x`'2d]\H+XV_L|z[M2}:Ppe'=U(~ڷ;zibM=S"v RN8;6VGO LY+jȓ|ʭ{l:OCQ}r0x\)sdywݾ@&cHш,?͙,(jݜ+ d-+S2YL|tZH!UT'}F3u76rD iUc'gė#Z;Dl3pyRy`)<ɟD0.G̣:{ smCC0%u?q?N0/GD0cyp@Zwc!+sʵGVS'\3Rh3x`1=z>zj`: <f]s`8"J +e`A^M ci,k,Ufk B?xn,-Mbc`2Q`\ٹ eHsAl],)9fmt"' C dϱw CXi&Z_3-bՑy?ɑ&fVfQ9z  4P9 M'-_,p@pN5:;of:N<E:.z1u76$3i#'Wct_.WЧ}wb/4r"[ 2Ukun:}55$`]Do#?KLdMr&`gN6ĖULy+r#]AG>ޑ G*+>ٓ% .G6?t V"<6̸QsJeA_}E ok\Ĝ7a" B0Nr&kaqxo2``@ @ ME/qań 5i `VWÞ+ |L^EϗVZB4_b(JRV3zV͚ &b]|2bcӼ?;jMY;QɎ$J @ ̷G0.V~FFu\RL{?ī{GTjs^f m!_?̱_`:{TRrS5,i2uW [X3Z &#:eU;kD9PRz@ eRYa1 LbǴwi]CY^r0gedl;K;lh:.8s5ro꿘`bSTy|Fb!Uo˕z~0b\ eO;5B&=cC &H[7)9>C'Λk{v`.z^Vwa! X= kvJ.d| ep58K%B-n3 uET6QlyLfy+sQ~7kv̿r瓦Q}̓.l lXbud+,3I+؂$9E Naj>S&ҙ;,vך/9UJǧ&ZbmZ|ËN{_Uhʊ5>yٙ< #Go~.O30O=Х;FM'B6 ` ٭\0bff&`Om"V|؛!7F⟍a,[{N|HrdN^ "fi &:<uuL3KAliVH C(8wNjY ,>Kt[&dOoa~w$f.zx҄Jg~݌M]Z̗ש,scdC %[AT+_ZG Ȥ8L9Pb~by!J٥3tuB06mX j KcUd9lM:w'L0 ]|D|<4oEZ_V7bc\#6)KL9إՋdɱB9gZUY2ͿҁES~* Z,Y>c0d~QbqS*k䛲L_,T8\oX%m"0%IRk8yȉpB'yþ3 \)sdyXtGD:5e0ق57*[EBdy5: DA`P@@0_ y SruC!hլ*z8M}eH=_e5X'M}i\zC;,6 C{ܛ:l M|QwS"%;D{s&_$~7ʢD7/e|$C#ZH!UT'i,Q~HAPIKAF.f<L <9/`)QD0Ҍ!u.O*xx`9g) k9 y A^b 5UJr-/A &WLū{8X@O0ju$㱏X"}qY)㤣Jmz^+2KcqXc,2\X`V/1f<7L&1WLG rp BkP_RL! {;̕ z[!4\3-`β#M̢̬"< 48Co7FӍ 3-]jÝ_.WиUkuxCgsJ+tkny&N?"tKvyz},!o @@0ߔiuW{@ #sZ2|@@0 LR c0U+W[ Jͱ+mrjfJIGf6֩$fjT]5;vUI4]0u,bmw#]d:>,14*&aDhwй<şv30 H)_)a\`U7!;Y+F`#lt7)r  q0A'(4k`iS3$a^{Ȳ+4ȏS`k^xҒ{zCsG4hIR$n{$8hӃI$`>ULm~0xZ#gSm'@ (6ok\Ĝ7a" @@0@0_$*,dTGg@@0@0 ``@ "OCHwKȸ0Vuqbך4r^aϕM&{Tvxˏl+b-U!j=Nwh 9Vb,'-Ƙ֖(=TBzڰ+Ѐ@ `\>Mm.블eLs1~Wr!̆;@B9ec3 +mmN7qǛ*YgTRrbnFk`D3 tVi)[ 8rV#L6ʸ@ зD0Je40jRE ֦:Ʀuey˥,m,hN+3Ƚ) /U3L`)}r|DT.C3XC.`s$vICw$57 )4}l#@ p)~:%GUqDBzyv{o%W |.9r9D!GaB؅vfu#6=}̡pFmqLI7ZWY|]>hLR IHG9cݵ ltUdjVxg)z&.ϴOoRy"K=ԣ̦Q +{[ޗ$[̓ǰ"aLDJqP̋D,*[5Zžd G,q&J)_koo l@};sנ#h]θDY+INs`έ(٭D0bff&`Om"V|؛!7F⟍a,[{N|HrdN^ "fi !(m_ bKGg_D+<uuLNPf51{&t22(ci֤,/ANjAQn5 RF4%pO4Aw `ecQ !V6)[T Al3]%%/7.L0|l釫JwHlE'hkwzˍHފ\@ 󊥱 *_cNT쾫})Ý  C|;(5i=͛z֗UEͻȺFR;CJL_Ly- sKɒcr&GM@P/TguY }4[v rDk_I'EP:y(KO!_RƊJ0k%Sm:IQԹJE&WNMXz,!kDC9b8hY ʯP y [sd`W*< K>ʒN1RՈ@@0A״mf}:})á=Mt&(\;۩q#h3E &:/(GʖkŇqK.GN0WcSr,PiNy,Mx p([^nwa"<`isUoUx e(H?A0y<R%i4FVJ/ 4−$rRdn{4M̧%56e0I'$TIȆ]:+SVG$*[VHm>c$ ˆ(*Ml49w v}Q70J$"F\j,]YC\8eFzs 7@ 3(R:V uJЉf/޼'Kí]rXrB5Vyoš݅ 6H#\5 ==G'fL%Ie|⴪Dac0,.>e&)|[Ĥux.lʒ֫g#LAO~Y6oSĝKr-;;U݁hd*%7ŋ Fm6{A[@ LVma890bff&`Om"V|؛!7F⟍a,[{N|HrdN^ "fi F fgn wVVvC* IO /-w찒Lj Q]VbzPtIG`Ӥ)&l5J39'ZbD;>yn)aJۗ:@ '2dd'zr:1Թ<şv3&&,=e GrMH"D0Iو.]3Z8PFVbd@ 蛏佦m3cM}$qo,=xd(6G gwN;o0UchJ\Ht!.K2H-|9 &Z;<hcg9Q]-%x·P3$bۈbX4H] X+SZE &:H E"_R\K@L`^)4WWp<}`?IYǻv|5u IOfY؋O2bYm>>`J?-͙GBA'IK̬ -Ɯ]9yFdI,ԥFhF(F쓩`-e@+%g<7L&i-@ ?`>8(q|AO-8Ѽ;A &vȆ}&`8I4nxER,){6`X!gs;t-3vcd:WmHhó3Jz#zP 8ڔd'`!DN0Xd;wy`55jG6 @W``>` rS@ F0 ``@ @ )t~ cU.&lH+.\ndw/JeX϶""=]G]]4u`17BLEp 8ё{b: y?KէхQ{2i^7^ڜ?pH[W61,slXXikwvvMU/r?k#ܮh NGĊ1 @@0_^Je40jRE ֦:Ʀuey˥,m,hN+3ճySqArVOL^?|0L9㩓j0W  @@0_xpE鷚oSrT%}N$'7{o~Y>\rwn*C{{.]8h@jV7pM0䤒l T7wvxqiMYlQly ]>oe::veӶM&Yh+r,.LIe&)|[%{0i…A{6\ZlDW<>ؚ f.x>inE&ž~Kmuyngaz ltUSOZP#Kv m wra `d'n 3&,:y?ݶ`[mao {k6V/Al9Q#ɥ9y?;D8ٟB0B41q`e<V})-j!~q@nn+F139A5<pKK3D}L:ƬGtC" X`2a%Z7FgD ,5<8г Y!by!(P7Ovi1_&B:6Yh#X5iy}K`Xː ~Li%})Ý  C|;(5i=͛z֗UEͻȺFR;Ygs(P~J˒r\^ ,X=v`>W/% LRY%_eBufZTD?!pu R YHN57*[E,%IR+[j5ĩ;o:Zʕz|'&> Hk{ZkE9$" GfUao+Cw8V6.G8ToKS*爃9`.BIkJZ|$koYvG]d W89LK`btCa!Nl#Fʕ"!ZpD?OO0Ǣ[Bխ(tD-"QS>/A4-c@J lm3cM}$qo,=xd(6G gwNFNNXk"eDWWQD i!Ciue ÈץWLCD:'w<`D U ["h`?Y@pNcypUwc`x^)W% &WLū{8X@O0ju$㱏X"'412 uH ŵIA,-Ufkب ezosXoːd9=>|g_&^ke%Zۇwi`P3~"Z/JA CXi&`oݶ <#!.M0Lqi^g2W23@0 I0 Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . magit-todos-1.7/README.org0000644000175000017500000003570614472442451015132 0ustar dogslegdogsleg#+TITLE: magit-todos # NOTE: To avoid having this in the info manual, we use HTML rather than Org syntax; it still appears with the GitHub renderer. #+HTML: This package displays keyword entries from source code comments and Org files in the Magit status buffer. Activating an item jumps to it in its file. By default, it uses keywords from [[https://github.com/tarsius/hl-todo][hl-todo]], minus a few (like =NOTE=). * Contents :PROPERTIES: :TOC: :include siblings :ignore this :depth 0 :END: :CONTENTS: - [[#installation][Installation]] - [[#usage][Usage]] - [[#changelog][Changelog]] - [[#credits][Credits]] :END: * Screenshots :PROPERTIES: :TOC: :ignore (this) :END: [[screenshots/matrix.png]] Items from Org files can be displayed, and can be fontified like in Org buffers: [[screenshots/fancy-org.png]] Items can also be automatically grouped in a customizable way, which can be helpful in large repos: [[screenshots/emacs-grouped.png]] This shows grouping items by the first path component, then keyword, then filename, and with optional keyword header fontification: [[screenshots/emacs-grouped-by-path.png]] Items in =KEYWORD(username):= format are also read: [[screenshots/thiderman.png]] Items specific to the current branch (or =git diff=) can be displayed in a separate list: [[screenshots/branch-list.png]] * Installation :PROPERTIES: :TOC: :ignore descendants :END: ** External scanner One of the following external scanners is required: + [[https://github.com/BurntSushi/ripgrep][ripgrep]] + =git grep= (built with PCRE support) + GNU =grep= (built with PCRE support) Most Linux systems should have the latter two by default, but some non-standard systems may not. For example, on MacOS you may use [[https://brew.sh/][Homebrew]] to install =ripgrep=, or =git= with PCRE support, like: ~brew reinstall --with-pcre2 git~. ** Emacs package If you installed from MELPA, you're done! *** Manually Install these required packages: - =async= - =dash= - =f= - =hl-todo= - =magit= - =pcre2el= - =s= Then put this file in your =load-path=, and put this in your init file: #+BEGIN_SRC elisp (require 'magit-todos) #+END_SRC * Usage :PROPERTIES: :TOC: :include descendants :depth 1 :local (depth) :END: :CONTENTS: - [[#key-bindings][Key bindings]] - [[#commands][Commands]] - [[#tips][Tips]] :END: Activate =magit-todos-mode=. Then open a Magit status buffer, or run ~magit-todos-list~ to show a dedicated to-do list buffer. ** Key bindings *In Magit status buffer:* + @@html:@@j T@@html:@@ :: Jump to the to-do list. If the section is empty (e.g. when using manual updates), it will scan for items. *With point in to-do list:* + @@html:@@b@@html:@@ :: Show branch (=git diff=) to-do list. + @@html:@@B@@html:@@ :: Set commit reference used in branch to-do list. + @@html:@@j T@@html:@@ :: When configured for manual updates, manually update the to-do list. + @@html:@@j l@@html:@@ :: Open dedicated to-do list buffer. + @@html:@@RET@@html:@@ :: Show item at point, or open dedicated buffer if point is on top heading. + @@html:@@SPC@@html:@@ :: Peek at the item at point. ** Commands + =magit-todos-mode= :: Activate =magit-todos-mode=, which automatically inserts the to-do list in Magit status buffers. + =magit-todos-list= :: Display the to-do list in a separate buffer. This also works outside of git repos. Helm and Ivy are also supported. Note that the =helm= and =ivy= packages are not required, nor does this package depend on them; they are only used if present. Note as well that these commands can be used directly from source buffers, independently of Magit. + =helm-magit-todos= :: Display the project to-do list with Helm. + =ivy-magit-todos= :: Display the project to-do list with Ivy. ** Tips + Customize settings in the =magit-todos= group. + Use dir-local variables to set per-repository settings. For example, to exclude files and directories from being scanned for to-dos in a repo: 1. From a buffer in the repo's directory (like a ~magit-status~ buffer), run the command ~add-dir-local-variable~. 2. Choose the mode ~magit-status-mode~. 3. Choose the variable ~magit-todos-exclude-globs~. 4. Input the glob value, like ~("*.html")~ to exclude HTML files. (Note that the input is read as a lisp value, and this variable must be a list of strings.) 5. Now Emacs will remember that setting in that repository. (You may also want to commit the =.dir-locals.el= file to the repo.) + The ~magit-todos-list~ command also works outside of git repos. *** TRAMP :PROPERTIES: :CUSTOM_ID: TRAMP :END: =magit-todos= attempts to work in remote repositories accessed via TRAMP. Note that if TRAMP can't find the scanner configured in =magit-todos-scanner=, you may need to use directory-local variables to either add the correct path to =tramp-remote-path= or choose a different scanner. * Changelog :PROPERTIES: :TOC: :ignore descendants :END: ** 1.7 *Changed* + Improve behavior when scanner backend exits with an error. (Now an error is signaled and the command's output is shown.) + Option ~magit-todos-branch-list-merge-base-ref~ defaults to nil, which automatically detects the default branch name using function ~magit-main-branch~. ([[https://github.com/alphapapa/magit-todos/issues/151][#151]]. Thanks to [[https://github.com/bcc32][Aaron Zeng]] for reporting.) *Fixed* + Updated ~find|grep~ scanner for newer versions of GNU ~find~ that interpret some arguments differently. (Tested on v4.8.0.) + Prevent leading ~./~ in filenames when used with ~rg~ scanner. ([[https://github.com/alphapapa/magit-todos/pull/148][#148]]. Thanks to [[https://github.com/wentasah][Michal Sojka]] for reporting.) ** 1.6 + Emacs 26.1 or later is now required. *Added* + Option =magit-todos-submodule-list= controls whether to-dos in submodules are displayed (default: off). (Thanks to [[https://github.com/matsievskiysv][Matsievskiy S.V.]]) + Option ~magit-todos-insert-after~, which replaces ~magit-todos-insert-at~. (The new option is more flexible, and it is automatically set from the old one's value.) + Option ~magit-todos-filename-filter~, which can be used to shorten filenames. (Thanks to [[https://github.com/matsievskiysv][Matsievskiy S.V.]]) *Changed* + Option =magit-todos-exclude-globs= now excludes the `.git/` directory by default. (Thanks to [[https://github.com/Amorymeltzer][Amorymeltzer]].) + Library ~org~ is no longer loaded automatically, but only when needed. (This can reduce load time, especially if the user's Org configuration is complex.) ([[https://github.com/alphapapa/magit-todos/issues/120][#120]]. Thanks to [[https://github.com/meedstrom][Martin Edström]] and [[https://github.com/jsigman][Johnny Sigman]] for suggesting.) *Fixed* + Regexp overflow error for very long lines. ([[https://github.com/alphapapa/magit-todos/pull/131][#131]]. Thanks to [[https://github.com/LaurenceWarne][Laurence Warne]].) + Option ~magit-todos-group-by~ respects buffer- and directory-local settings. + Insertion of blank lines between expanded sections. + Section insertion position at top of buffer and when chosen section doesn't exist. ([[https://github.com/alphapapa/magit-todos/issues/139][#139]]. Thanks to [[https://github.com/sluedecke][Sascha Lüdecke]] for reporting.) *Removed* + Option ~magit-todos-insert-at~, replaced by ~magit-todos-insert-after~. (The old option will be removed in v1.8; customizations of it should be removed.) *Internal* + Define jumper keys using a Transient suffix. + Use new git-testing function in Magit for remote directories. ([[https://github.com/alphapapa/magit-todos/pull/126][#126]]. Thanks to [[https://github.com/maxhollmann][Max Hollmann]].) ** 1.5.3 *Fixes* + Remove face from indentation. (Thanks to [[https://github.com/Alexander-Miller][Alexander Miller]].) ** 1.5.2 *Fixes* + Use =magit-todos-exclude-globs= in branch todo list. ** 1.5.1 *Fixes* + Add insertion function to end of =magit-status-sections-hook=. ** 1.5 *Added* + Support for remote repositories accessed via TRAMP. See [[#TRAMP][usage notes]]. + Ivy history support. (Thanks to [[https://github.com/leungbk][Brian Leung]].) + Option =magit-todos-branch-list-merge-base-ref=. + Command =magit-todos-branch-list-set-commit=, bound to =B= with point in a to-do section. *Changed* + Branch todo list now uses =git merge-base= to determine the ancestor commit to compare to =HEAD=. + Enable list-wide key bindings on both headings and to-do items. *Removed* + Option =magit-todos-branch-list-commit-ref=, replaced by option =magit-todos-branch-list-merge-base-ref=. ** 1.4.3 *Fixed* + Don't use =--help= option when testing =git grep= command, because it can launch a Web browser on some configurations or platforms (see [[https://github.com/alphapapa/magit-todos/issues/43][#43]]). + Caching when branch diff list is displayed. + Commands =magit-section-forward= / =backward= sometimes skipped sections (see [[https://github.com/alphapapa/magit-todos/issues/66][#66]]). ** 1.4.2 *Fixed* + Refreshing =magit-todos-list= buffer. ([[https://github.com/alphapapa/magit-todos/issues/92][#92]]. Thanks to [[https://github.com/filalex77][Oleksii Filonenko]] and [[https://github.com/hlissner][Henrik Lissner]] for reporting.) ** 1.4.1 *Fixed* + Compiler warning. ** 1.4 *Added* + Commands =helm-magit-todos= and =ivy-magit-todos=, which display items with Helm and Ivy. (Note that Helm and Ivy are not required, nor does this package depend on them; they are only used if present.) *Fixed* + Warn about files containing lines too long for Emacs's regexp matcher to handle, rather than aborting the scan ([[https://github.com/alphapapa/magit-todos/issues/63][#63]]). *Updated* + Use =magit-setup-buffer= instead of =magit-mode-setup=. *Internal* + Add synchronous mode to scanner functions, which return results directly usable by other code. ** 1.3 *Added* + Branch diff task list. See new options =magit-todos-branch-list= and =magit-todos-branch-list-commit-ref=, and command =magit-todos-branch-list-toggle=, bound to =b= with point on to-do list heading. ([[https://github.com/alphapapa/magit-todos/issues/30][#30]], [[https://github.com/alphapapa/magit-todos/issues/77][#77]], [[https://github.com/alphapapa/magit-todos/pull/82][#82]]. Thanks to [[https://github.com/itamarst][Itamar Turner-Trauring]] and [[https://github.com/arronmabrey][Arron Mabrey]] for the suggestion, and to [[https://github.com/smaret][Sébastien Maret]] for implementing the commit-ref option.) *Internal* + Put newline in section headings. ([[https://github.com/alphapapa/magit-todos/pull/68][#68]]. Thanks to [[https://github.com/vermiculus][Sean Allred]].) ** 1.2 *Added* + Allow ~magit-todos-list~ to work outside git repos. + Option ~magit-todos-keyword-suffix~ replaces ~magit-todos-require-colon~, allowing for common and custom suffixes after item keywords (e.g. to match items like =TODO(user):=). (Fixes [[https://github.com/alphapapa/magit-todos/issues/56][#56]]. Thanks to [[https://github.com/thiderman][Lowe Thiderman]] for suggesting.) + Optionally group and sort by item suffixes (e.g. handy when suffixes contain usernames). + Bind @@html:@@RET@@html:@@ on top-level =TODOs= section heading to ~magit-todos-list~ command. *Fixed* + Don't fontify section item counts. (Thanks to [[https://github.com/m-cat][Marcin Swieczkowski]].) *Worked Around* + Issue in =async= regarding deleted buffers/processes. This is not an ideal solution, but it solves the problem for now. *Removed* + Option ~magit-todos-require-colon~, replaced by ~magit-todos-keyword-suffix~. ** 1.1.8 *Fixed* + Properly unbind key when mode is disabled. ([[https://github.com/alphapapa/magit-todos/pull/74][#74]]. Thanks to [[https://github.com/akirak][Akira Komamura]].) + Don't show message when key is already bound correctly. ([[https://github.com/alphapapa/magit-todos/pull/75][#75]]. Thanks to [[https://github.com/akirak][Akira Komamura]].) ** 1.1.7 *Fixed* + Disable undo in hidden Org fontification buffer. + Expand top-level to-do list in ~magit-todos-list~ buffer. ** 1.1.6 *Fixed* + Insert root section in ~magit-todos-list~ command. (Really fixes [[https://github.com/alphapapa/magit-todos/issues/55][#55]]. Thanks to [[https://github.com/tarsius][Jonas Bernoulli]].) ** 1.1.5 *Fixed* + Hide process buffers. (Thanks to [[https://github.com/purcell][Steve Purcell]].) ** 1.1.4 *Fixes* + ~magit-todos-depth~ number-to-string conversion. ** 1.1.3 *Fixes* + Update ~magit-todos-list~ for Magit [[https://github.com/magit/magit/commit/40616d7ba57b7c491513e4130d82371460f9e94d][change]]. (Fixes [[https://github.com/alphapapa/magit-todos/issues/55][#55]]. Thanks to [[https://github.com/Oghma][Matteo Lisotto]].) ** 1.1.2 *Fixes* + Convert ~magit-todos-depth~ setting appropriately for =rg= scanner. ** 1.1.1 *Fixes* + Ensure mode is activated in ~magit-todos-update~ command. (Fixes #54. Thanks to [[https://github.com/smaret][Sebastien Maret]].) ** 1.1 *Additions* + Dedicated to-do list buffer. + Option ~magit-todos-exclude-globs~, a list of glob patterns to ignore when searching for to-do items. + Kill running scans when Magit status buffer is closed. *Changes* + Remove dependency on ~a~. + Remove dependency on =anaphora=. *Fixes* + Add missing ~cl-~ prefix. Thanks to [[https://github.com/jellelicht][Jelle Licht]]. ** 1.0.4 *Fixes* + Fix =find|grep= scanner ([[https://github.com/alphapapa/magit-todos/issues/46][issue 46]]). Thanks to [[https://github.com/Ambrevar][Pierre Neidhardt]]. ** 1.0.3 *Fixes* + Define variables earlier to avoid compiler warnings. + Remove unused var ~magit-todos-ignore-file-suffixes~. ** 1.0.2 *Fixes* + ~regexp-quote~ item keywords when jumping to an item. (Fixes #36. Thanks to [[https://github.com/dfeich][Derek Feichtinger]].) + Ensure =grep= supports =--perl-regexp=. + Warn when unable to find a suitable scanner (i.e. =rg=, or a PCRE-compatible version of =git= or =grep=). ** 1.0.1 *Fixes* + Test whether =git grep= supports =--perl-regexp= by checking its =--help= output, rather than doing a search and checking for an error. + ~message~ instead of ~error~ for weird behavior. (This message exists to help track down an inconsequential bug.) + Remove unused ~magit-todos-ignore-directories~ option. (To be replaced in a future release.) ** 1.0.0 Initial release. * Credits + This package was inspired by [[https://github.com/danielma/magit-org-todos.el][magit-org-todos]]. + The =ag= support was made much simpler by the great [[https://github.com/joddie/pcre2el][pcre2el]] package by Jon Oddie. + Thanks to [[https://github.com/zhaojiangbin][Jiangbin Zhao]] for his extensive testing and feedback. * License :PROPERTIES: :TOC: :ignore this :END: GPLv3 # Local Variables: # before-save-hook: org-make-toc # End: magit-todos-1.7/notes.org0000644000175000017500000001025114472442451015311 0ustar dogslegdogsleg#+PROPERTY: LOGGING nil * Ideas ** TODO [#B] Don't indent items when no groups When there are no groups, items should not be indented. That way they'll match the appearance of other sections. ** MAYBE Convert glob symbols to strings It's a bit awkward and confusing for users who use ~add-dir-local-variable~ to have to remember to type quotation marks for the glob value when setting ~magit-todos-exclude-globs~. We could convert symbols to strings when building commands, so users wouldn't have to remember this. ** TODO Avoid refreshing section too often [1/2] On large repos, updating the section from scratch takes some time. It would be good to avoid doing this too often in large repos. *** DONE Option for when to refresh it There should be an option for how often to refresh the to-dos section: + =always= + =manually= + a number of seconds (not automatically, but whenever the status buffer is refreshed and this many seconds have elapsed) =memoize= can be used to implement this, probably with a proxy function to handle always/manually. **** Implementation + [X] ~defvar magit-todos-updating~ :: Whether the items are being updated now. + [X] =defcustom magit-todos-update-automatically= :: Whether or how often to update the items automatically. + [X] ~defvar-local magit-todos-last-update-time~ :: When the items were last updated. A time value as returned by ~(current-time)~. + [X] ~defun magit-todos-update~ :: Called to do a new scan, update the cache, and insert the section. If the section already exists, it must be removed first. + [X] ~defun magit-todos--delete-section IDENT~ :: Called to delete the specified section from the status buffer. + [X] =defvar-local magit-todos-item-cache= :: Stores the items found by the scan function. + [X] =defun magit-todos--insert-items= :: Modify to call ~magit-todos--insert-items-callback~ directly with cached items when automatic updates are disabled. + [X] ~defun magit-todos--insert-items-callback~ :: Modify to: - [X] Cache items when necessary - [X] Show that section requires manual updating when no items are cached. *** TODO Set option automatically in large repos The parsing/insertion should be timed, and if it takes too long, the previous option should be automatically set to timeout or manual. ** TODO UI like magit-popup [2/5] *** DONE Define scanners with a macro This will make the changes much simpler. See =defscanner-macro= branch. *** DONE Build regexps on scan invocation *** TODO Choose between ~magit-popup~ and [[https://github.com/magit/transient][transient]] *** TODO Implement UI *** TODO Optionally set dir-local variables with it ** MAYBE Restore timeout feature Now that we're using external scanners, I'm not sure this is important. And if we implement a feature to avoid scanning too often in big repos, it probably won't be. ** MAYBE Option to limit depth of Org items e.g. I don't necessarily need to see each subtask under "Ignore files/directories in scanners". ** TODO Ignore files/directories in scanners *** TODO Add default globs e.g. these from this old var: #+BEGIN_SRC elisp (defcustom magit-todos-ignore-file-suffixes '(".org_archive" "#") "Ignore files with these suffixes." :type '(repeat string)) #+END_SRC *** TODO rg Should probably use =--glob=: #+BEGIN_EXAMPLE -g, --glob ... Include or exclude files and directories for searching that match the given glob. This always overrides any other ignore logic. Multiple glob flags may be used. Globbing rules match .gitignore globs. Precede a glob with a ! to exclude it. --iglob ... Include or exclude files and directories for searching that match the given glob. This always overrides any other ignore logic. Multiple glob flags may be used. Globbing rules match .gitignore globs. Precede a glob with a ! to exclude it. Globs are matched case insensitively. #+END_EXAMPLE *** TODO ag *** TODO git-grep *** TODO find-grep ** TODO [#B] Search extra directories [2020-11-09 Mon 01:59] e.g. when I store a notes file in a worktree directory, it doesn't get scanned. magit-todos-1.7/makem.sh0000755000175000017500000011547414472442451015116 0ustar dogslegdogsleg#!/usr/bin/env bash # * makem.sh --- Script to aid building and testing Emacs Lisp packages # URL: https://github.com/alphapapa/makem.sh # Version: 0.6-pre # * Commentary: # makem.sh is a script that helps to build, lint, and test Emacs Lisp # packages. It aims to make linting and testing as simple as possible # without requiring per-package configuration. # It works similarly to a Makefile in that "rules" are called to # perform actions such as byte-compiling, linting, testing, etc. # Source and test files are discovered automatically from the # project's Git repo, and package dependencies within them are parsed # automatically. # Output is simple: by default, there is no output unless errors # occur. With increasing verbosity levels, more detail gives positive # feedback. Output is colored by default to make reading easy. # The script can run Emacs with the developer's local Emacs # configuration, or with a clean, "sandbox" configuration that can be # optionally removed afterward. This is especially helpful when # upstream dependencies may have released new versions that differ # from those installed in the developer's personal configuration. # * License: # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # * Functions function usage { cat <$file <$file <$file <"$file" <$file <"$file" <$file <&1) # Set output file. output_file=$(mktemp) || die "Unable to make output file." paths_temp+=("$output_file") # Run Emacs. debug "run_emacs: ${emacs_command[@]} $@ &>\"$output_file\"" "${emacs_command[@]}" "$@" &>"$output_file" # Check exit code and output. exit=$? [[ $exit != 0 ]] \ && debug "Emacs exited non-zero: $exit" [[ $verbose -gt 1 || $exit != 0 ]] \ && cat $output_file return $exit } # ** Compilation function batch-byte-compile { debug "batch-byte-compile: ERROR-ON-WARN:$compile_error_on_warn" [[ $compile_error_on_warn ]] && local error_on_warn=(--eval "(setq byte-compile-error-on-warn t)") run_emacs \ --load "$(elisp-byte-compile-file)" \ "${error_on_warn[@]}" \ --eval "(unless (makem-batch-byte-compile) (kill-emacs 1))" \ "$@" } function byte-compile-file { debug "byte-compile: ERROR-ON-WARN:$compile_error_on_warn" local file="$1" [[ $compile_error_on_warn ]] && local error_on_warn=(--eval "(setq byte-compile-error-on-warn t)") # FIXME: Why is the line starting with "&& verbose 3" not indented properly? Emacs insists on indenting it back a level. run_emacs \ --load "$(elisp-byte-compile-file)" \ "${error_on_warn[@]}" \ --eval "(pcase-let ((\`(,num-errors ,num-warnings) (makem-byte-compile-file \"$file\"))) (when (or (and byte-compile-error-on-warn (not (zerop num-warnings))) (not (zerop num-errors))) (kill-emacs 1)))" \ && verbose 3 "Compiling $file finished without errors." \ || { verbose 3 "Compiling file failed: $file"; return 1; } } # ** Files function dirs-project { # Echo list of directories to be used in load path. files-project-feature | dirnames files-project-test | dirnames } function files-project-elisp { # Echo list of Elisp files in project. git ls-files 2>/dev/null \ | egrep "\.el$" \ | filter-files-exclude-default \ | filter-files-exclude-args } function files-project-feature { # Echo list of Elisp files that are not tests and provide a feature. files-project-elisp \ | egrep -v "$test_files_regexp" \ | filter-files-feature } function files-project-test { # Echo list of Elisp test files. files-project-elisp | egrep "$test_files_regexp" } function dirnames { # Echo directory names for files on STDIN. while read file do dirname "$file" done } function filter-files-exclude-default { # Filter out paths (STDIN) which should be excluded by default. egrep -v "(/\.cask/|-autoloads.el|.dir-locals)" } function filter-files-exclude-args { # Filter out paths (STDIN) which are excluded with --exclude. if [[ ${files_exclude[@]} ]] then ( # We use a subshell to set IFS temporarily so we can send # the list of files to grep -F. This is ugly but more # correct than replacing spaces with line breaks. Note # that, for some reason, using IFS="\n" or IFS='\n' doesn't # work, and a literal line break seems to be required. IFS=" " grep -Fv "${files_exclude[*]}" ) else cat fi } function filter-files-feature { # Read paths on STDIN and echo ones that (provide 'a-feature). while read path do egrep "^\\(provide '" "$path" &>/dev/null \ && echo "$path" done } function args-load-files { # For file in $@, echo "--load $file". for file in "$@" do sans_extension=${file%%.el} printf -- '--load %q ' "$sans_extension" done } function args-load-path { # Echo load-path arguments. for path in $(dirs-project | sort -u) do printf -- '-L %q ' "$path" done } function test-files-p { # Return 0 if $files_project_test is non-empty. [[ "${files_project_test[@]}" ]] } function buttercup-tests-p { # Return 0 if Buttercup tests are found. test-files-p || die "No tests found." debug "Checking for Buttercup tests..." grep "(require 'buttercup)" "${files_project_test[@]}" &>/dev/null } function ert-tests-p { # Return 0 if ERT tests are found. test-files-p || die "No tests found." debug "Checking for ERT tests..." # We check for this rather than "(require 'ert)", because ERT may # already be loaded in Emacs and might not be loaded with # "require" in a test file. grep "(ert-deftest" "${files_project_test[@]}" &>/dev/null } function package-main-file { # Echo the package's main file. file_pkg=$(git ls-files ./*-pkg.el 2>/dev/null) if [[ $file_pkg ]] then # Use *-pkg.el file if it exists. echo "$file_pkg" else # Use shortest filename (a sloppy heuristic that will do for now). for file in "${files_project_feature[@]}" do echo ${#file} "$file" done \ | sort -h \ | head -n1 \ | sed -r 's/^[[:digit:]]+ //' fi } function dependencies { # Echo list of package dependencies. # Search package headers. Use -a so grep won't think that an Elisp file containing # control characters (rare, but sometimes necessary) is binary and refuse to search it. egrep -a -i '^;; Package-Requires: ' $(files-project-feature) $(files-project-test) \ | egrep -o '\([^([:space:]][^)]*\)' \ | egrep -o '^[^[:space:])]+' \ | sed -r 's/\(//g' \ | egrep -v '^emacs$' # Ignore Emacs version requirement. # Search Cask file. if [[ -r Cask ]] then egrep '\(depends-on "[^"]+"' Cask \ | sed -r -e 's/\(depends-on "([^"]+)".*/\1/g' fi # Search -pkg.el file. if [[ $(git ls-files ./*-pkg.el 2>/dev/null) ]] then sed -nr 's/.*\(([-[:alnum:]]+)[[:blank:]]+"[.[:digit:]]+"\).*/\1/p' $(git ls-files ./*-pkg.el 2>/dev/null) fi } # ** Sandbox function sandbox { verbose 2 "Initializing sandbox..." # *** Sandbox arguments # MAYBE: Optionally use branch-specific sandbox? # Check or make user-emacs-directory. if [[ $sandbox_dir ]] then # Directory given as argument: ensure it exists. if ! [[ -d $sandbox_dir ]] then debug "Making sandbox directory: $sandbox_dir" mkdir -p "$sandbox_dir" || die "Unable to make sandbox dir." fi # Add Emacs version-specific subdirectory, creating if necessary. sandbox_dir="$sandbox_dir/$(emacs-version)" if ! [[ -d $sandbox_dir ]] then mkdir "$sandbox_dir" || die "Unable to make sandbox subdir: $sandbox_dir" fi else # Not given: make temp directory, and delete it on exit. local sandbox_dir=$(mktemp -d) || die "Unable to make sandbox dir." paths_temp+=("$sandbox_dir") fi # Make argument to load init file if it exists. init_file="$sandbox_dir/init.el" # Set sandbox args. This is a global variable used by the run_emacs function. args_sandbox=( --title "makem.sh: $(basename $(pwd)) (sandbox: $sandbox_dir)" --eval "(setq user-emacs-directory (file-truename \"$sandbox_dir\"))" --load package --eval "(setq package-user-dir (expand-file-name \"elpa\" user-emacs-directory))" --eval "(setq user-init-file (file-truename \"$init_file\"))" ) # Add package-install arguments for dependencies. if [[ $install_deps ]] then local deps=($(dependencies)) debug "Installing dependencies: ${deps[@]}" for package in "${deps[@]}" do args_sandbox_package_install+=(--eval "(package-install '$package)") done fi # Add package-install arguments for linters. if [[ $install_linters ]] then debug "Installing linters: package-lint relint" args_sandbox_package_install+=( --eval "(package-install 'elsa)" --eval "(package-install 'package-lint)" --eval "(package-install 'relint)") fi # *** Install packages into sandbox if [[ ${args_sandbox_package_install[@]} ]] then # Initialize the sandbox (installs packages once rather than for every rule). verbose 1 "Installing packages into sandbox..." run_emacs \ --eval "(package-refresh-contents)" \ "${args_sandbox_package_install[@]}" \ && success "Packages installed." \ || die "Unable to initialize sandbox." fi verbose 2 "Sandbox initialized." } # ** Utility function cleanup { # Remove temporary paths (${paths_temp[@]}). for path in "${paths_temp[@]}" do if [[ $debug ]] then debug "Debugging enabled: not deleting temporary path: $path" elif [[ -r $path ]] then rm -rf "$path" else debug "Temporary path doesn't exist, not deleting: $path" fi done } function echo-unset-p { # Echo 0 if $1 is set, otherwise 1. IOW, this returns the exit # code of [[ $1 ]] as STDOUT. [[ $1 ]] echo $? } function ensure-package-available { # If package $1 is available, return 0. Otherwise, return 1, and # if $2 is set, give error otherwise verbose. Outputting messages # here avoids repetition in callers. local package=$1 local direct_p=$2 if ! run_emacs --load $package &>/dev/null then if [[ $direct_p ]] then error "$package not available." else verbose 2 "$package not available." fi return 1 fi } function ensure-tests-available { # If tests of type $1 (like "ERT") are available, return 0. Otherwise, if # $2 is set, give an error and return 1; otherwise give verbose message. $1 # should have a corresponding predicate command, like ert-tests-p for ERT. local test_name=$1 local test_command="${test_name,,}-tests-p" # Converts name to lowercase. local direct_p=$2 if ! $test_command then if [[ $direct_p ]] then error "$test_name tests not found." else verbose 2 "$test_name tests not found." fi return 1 fi } function echo_color { # This allows bold, italic, etc. without needing a function for # each variation. local color_code="COLOR_$1" shift if [[ $color ]] then echo -e "${!color_code}${@}${COLOR_off}" else echo "$@" fi } function debug { if [[ $debug ]] then function debug { echo_color yellow "DEBUG ($(ts)): $@" >&2 } debug "$@" else function debug { true } fi } function error { echo_color red "ERROR ($(ts)): $@" >&2 ((errors++)) return 1 } function die { [[ $@ ]] && error "$@" exit $errors } function log { echo "LOG ($(ts)): $@" >&2 } function log_color { local color_name=$1 shift echo_color $color_name "LOG ($(ts)): $@" >&2 } function success { if [[ $verbose -ge 2 ]] then log_color green "$@" >&2 fi } function verbose { # $1 is the verbosity level, rest are echoed when appropriate. if [[ $verbose -ge $1 ]] then [[ $1 -eq 1 ]] && local color_name=blue [[ $1 -eq 2 ]] && local color_name=cyan [[ $1 -ge 3 ]] && local color_name=white shift log_color $color_name "$@" >&2 fi } function ts { date "+%Y-%m-%d %H:%M:%S" } function emacs-version { # Echo Emacs version number. # Don't use run_emacs function, which does more than we need. "${emacs_command[@]}" -Q --batch --eval "(princ emacs-version)" \ || die "Unable to get Emacs version." } function rule-p { # Return 0 if $1 is a rule. [[ $1 =~ ^(lint-?|tests?)$ ]] \ || [[ $1 =~ ^(batch|interactive)$ ]] \ || [[ $(type -t "$2" 2>/dev/null) =~ function ]] } # * Rules # These functions are intended to be called as rules, like a Makefile. # Some rules test $1 to determine whether the rule is being called # directly or from a meta-rule; if directly, an error is given if the # rule can't be run, otherwise it's skipped. function all { verbose 1 "Running all rules..." lint tests } function compile-batch { [[ $compile ]] || return 0 unset compile # Only compile once. verbose 1 "Compiling..." verbose 2 "Batch-compiling files..." debug "Byte-compile files: ${files_project_byte_compile[@]}" batch-byte-compile "${files_project_byte_compile[@]}" } function compile-each { [[ $compile ]] || return 0 unset compile # Only compile once. verbose 1 "Compiling..." debug "Byte-compile files: ${files_project_byte_compile[@]}" local compile_errors for file in "${files_project_byte_compile[@]}" do verbose 2 "Compiling file: $file..." byte-compile-file "$file" \ || compile_errors=t done [[ ! $compile_errors ]] } function compile { if [[ $compile = batch ]] then compile-batch "$@" else compile-each "$@" fi local status=$? if [[ $compile_error_on_warn ]] then # Linting: just return status code, because lint rule will print messages. [[ $status = 0 ]] else # Not linting: print messages here. [[ $status = 0 ]] \ && success "Compiling finished without errors." \ || error "Compiling failed." fi } function batch { # Run Emacs in batch mode with ${args_batch_interactive[@]} and # with project source and test files loaded. verbose 1 "Executing Emacs with arguments: ${args_batch_interactive[@]}" run_emacs \ $(args-load-files "${files_project_feature[@]}" "${files_project_test[@]}") \ "${args_batch_interactive[@]}" } function interactive { # Run Emacs interactively. Most useful with --sandbox and --install-deps. local load_file_args=$(args-load-files "${files_project_feature[@]}" "${files_project_test[@]}") verbose 1 "Running Emacs interactively..." verbose 2 "Loading files: ${load_file_args//--load /}" [[ $compile ]] && compile unset arg_batch run_emacs \ $load_file_args \ --eval "(load user-init-file)" \ "${args_batch_interactive[@]}" arg_batch="--batch" } function lint { verbose 1 "Linting..." lint-checkdoc lint-compile lint-declare # NOTE: Elint doesn't seem very useful at the moment. See comment # in lint-elint function. # lint-elint lint-indent lint-package lint-regexps } function lint-checkdoc { verbose 1 "Linting checkdoc..." local checkdoc_file="$(elisp-checkdoc-file)" paths_temp+=("$checkdoc_file") run_emacs \ --load="$checkdoc_file" \ "${files_project_feature[@]}" \ && success "Linting checkdoc finished without errors." \ || error "Linting checkdoc failed." } function lint-compile { verbose 1 "Linting compilation..." compile_error_on_warn=true compile "${files_project_byte_compile[@]}" \ && success "Linting compilation finished without errors." \ || error "Linting compilation failed." unset compile_error_on_warn } function lint-declare { verbose 1 "Linting declarations..." local check_declare_file="$(elisp-check-declare-file)" paths_temp+=("$check_declare_file") run_emacs \ --load "$check_declare_file" \ -f makem-check-declare-files-and-exit \ "${files_project_feature[@]}" \ && success "Linting declarations finished without errors." \ || error "Linting declarations failed." } function lint-elsa { verbose 1 "Linting with Elsa..." # MAYBE: Install Elsa here rather than in sandbox init, to avoid installing # it when not needed. However, we should be careful to be clear about when # packages are installed, because installing them does execute code. run_emacs \ --load elsa \ -f elsa-run-files-and-exit \ "${files_project_feature[@]}" \ && success "Linting with Elsa finished without errors." \ || error "Linting with Elsa failed." } function lint-elint { # NOTE: Elint gives a lot of spurious warnings, apparently because it doesn't load files # that are `require'd, so its output isn't very useful. But in case it's improved in # the future, and since this wrapper code already works, we might as well leave it in. verbose 1 "Linting with Elint..." local errors=0 for file in "${files_project_feature[@]}" do verbose 2 "Linting with Elint: $file..." run_emacs \ --load "$(elisp-elint-file)" \ --eval "(makem-elint-file \"$file\")" \ && verbose 3 "Linting with Elint found no errors." \ || { error "Linting with Elint failed: $file"; ((errors++)) ; } done [[ $errors = 0 ]] \ && success "Linting with Elint finished without errors." \ || error "Linting with Elint failed." } function lint-indent { verbose 1 "Linting indentation..." # We load project source files as well, because they may contain # macros with (declare (indent)) rules which must be loaded to set # indentation. run_emacs \ --load "$(elisp-lint-indent-file)" \ $(args-load-files "${files_project_feature[@]}" "${files_project_test[@]}") \ --funcall makem-lint-indent-batch-and-exit \ "${files_project_feature[@]}" "${files_project_test[@]}" \ && success "Linting indentation finished without errors." \ || error "Linting indentation failed." } function lint-package { ensure-package-available package-lint $1 || return $(echo-unset-p $1) verbose 1 "Linting package..." run_emacs \ --load package-lint \ --eval "(setq package-lint-main-file \"$(package-main-file)\")" \ --funcall package-lint-batch-and-exit \ "${files_project_feature[@]}" \ && success "Linting package finished without errors." \ || error "Linting package failed." } function lint-regexps { ensure-package-available relint $1 || return $(echo-unset-p $1) verbose 1 "Linting regexps..." run_emacs \ --load relint \ --funcall relint-batch \ "${files_project_source[@]}" \ && success "Linting regexps finished without errors." \ || error "Linting regexps failed." } function tests { verbose 1 "Running all tests..." test-ert test-buttercup } function test-ert-interactive { verbose 1 "Running ERT tests interactively..." unset arg_batch run_emacs \ $(args-load-files "${files_project_test[@]}") \ --eval "(ert-run-tests-interactively t)" arg_batch="--batch" } function test-buttercup { ensure-tests-available Buttercup $1 || return $(echo-unset-p $1) compile || die verbose 1 "Running Buttercup tests..." local buttercup_file="$(elisp-buttercup-file)" paths_temp+=("$buttercup_file") run_emacs \ $(args-load-files "${files_project_test[@]}") \ --load "$buttercup_file" \ --eval "(progn (setq backtrace-on-error-noninteractive nil) (buttercup-run))" \ && success "Buttercup tests finished without errors." \ || error "Buttercup tests failed." } function test-ert { ensure-tests-available ERT $1 || return $(echo-unset-p $1) compile || die verbose 1 "Running ERT tests..." debug "Test files: ${files_project_test[@]}" run_emacs \ $(args-load-files "${files_project_test[@]}") \ -f ert-run-tests-batch-and-exit \ && success "ERT tests finished without errors." \ || error "ERT tests failed." } # * Defaults test_files_regexp='^((tests?|t)/)|-tests?.el$|^test-' emacs_command=("emacs") errors=0 verbose=0 compile=true arg_batch="--batch" compile=each # MAYBE: Disable color if not outputting to a terminal. (OTOH, the # colorized output is helpful in CI logs, and I don't know if, # e.g. GitHub Actions logging pretends to be a terminal.) color=true # TODO: Using the current directory (i.e. a package's repo root directory) in # load-path can cause weird errors in case of--you guessed it--stale .ELC files, # the zombie problem that just won't die. It's incredible how many different ways # this problem presents itself. In this latest example, an old .ELC file, for a # .EL file that had since been renamed, was present on my local system, which meant # that an example .EL file that hadn't been updated was able to "require" that .ELC # file's feature without error. But on another system (in this case, trying to # setup CI using GitHub Actions), the old .ELC was not present, so the example .EL # file was not able to load the feature, which caused a byte-compilation error. # In this case, I will prevent such example files from being compiled. But in # general, this can cause weird problems that are tedious to debug. I guess # the best way to fix it would be to actually install the repo's code as a # package into the sandbox, but doing that would require additional tooling, # pulling in something like Quelpa or package-build--and if the default recipe # weren't being used, the actual recipe would have to be fetched off MELPA or # something, which seems like getting too smart for our own good. # TODO: Emit a warning if .ELC files that don't match any .EL files are detected. # ** Colors COLOR_off='\e[0m' COLOR_black='\e[0;30m' COLOR_red='\e[0;31m' COLOR_green='\e[0;32m' COLOR_yellow='\e[0;33m' COLOR_blue='\e[0;34m' COLOR_purple='\e[0;35m' COLOR_cyan='\e[0;36m' COLOR_white='\e[0;37m' # ** Package system args args_package_archives=( --eval "(add-to-list 'package-archives '(\"gnu\" . \"https://elpa.gnu.org/packages/\") t)" --eval "(add-to-list 'package-archives '(\"melpa\" . \"https://melpa.org/packages/\") t)" ) args_org_package_archives=( --eval "(add-to-list 'package-archives '(\"org\" . \"https://orgmode.org/elpa/\") t)" ) args_package_init=( --eval "(package-initialize)" ) elisp_org_package_archive="(add-to-list 'package-archives '(\"org\" . \"https://orgmode.org/elpa/\") t)" # * Args args=$(getopt -n "$0" \ -o dhce:E:i:s::vf:CO \ -l compile-batch,exclude:,emacs:,install-deps,install-linters,debug,debug-load-path,help,install:,verbose,file:,no-color,no-compile,no-org-repo,sandbox:: \ -- "$@") \ || { usage; exit 1; } eval set -- "$args" while true do case "$1" in --install-deps) install_deps=true ;; --install-linters) install_linters=true ;; -d|--debug) debug=true verbose=2 args_debug=(--eval "(setq init-file-debug t)" --eval "(setq debug-on-error t)") ;; --debug-load-path) debug_load_path=true ;; -h|--help) usage exit ;; -c|--compile-batch) debug "Compiling files in batch mode" compile=batch ;; -E|--emacs) shift emacs_command=($1) ;; -i|--install) shift args_sandbox_package_install+=(--eval "(package-install '$1)") ;; -s|--sandbox) sandbox=true shift sandbox_dir="$1" if ! [[ $sandbox_dir ]] then debug "No sandbox dir: installing dependencies." install_deps=true else debug "Sandbox dir: $1" fi ;; -v|--verbose) ((verbose++)) ;; -e|--exclude) shift debug "Excluding file: $1" files_exclude+=("$1") ;; -f|--file) shift args_files+=("$1") ;; -O|--no-org-repo) unset elisp_org_package_archive ;; --no-color) unset color ;; -C|--no-compile) unset compile ;; --) # Remaining args (required; do not remove) shift rest=("$@") break ;; esac shift done debug "ARGS: $args" debug "Remaining args: ${rest[@]}" # Set package elisp (which depends on --no-org-repo arg). package_initialize_file="$(elisp-package-initialize-file)" paths_temp+=("$package_initialize_file") # * Main trap cleanup EXIT INT TERM # Discover project files. files_project_feature=($(files-project-feature)) files_project_test=($(files-project-test)) files_project_byte_compile=("${files_project_feature[@]}" "${files_project_test[@]}") if [[ ${args_files[@]} ]] then # Add specified files. files_project_feature+=("${args_files[@]}") files_project_byte_compile+=("${args_files[@]}") fi debug "EXCLUDING FILES: ${files_exclude[@]}" debug "FEATURE FILES: ${files_project_feature[@]}" debug "TEST FILES: ${files_project_test[@]}" debug "BYTE-COMPILE FILES: ${files_project_byte_compile[@]}" debug "PACKAGE-MAIN-FILE: $(package-main-file)" if ! [[ ${files_project_feature[@]} ]] then error "No files specified and not in a git repo." exit 1 fi # Set load path. args_load_paths=($(args-load-path)) debug "LOAD PATH ARGS: ${args_load_paths[@]}" # If rules include linters and sandbox-dir is unspecified, install # linters automatically. if [[ $sandbox && ! $sandbox_dir ]] && [[ "${rest[@]}" =~ lint ]] then debug "Installing linters automatically." install_linters=true fi # Initialize sandbox. [[ $sandbox ]] && sandbox # Run rules. for rule in "${rest[@]}" do if [[ $batch || $interactive ]] then debug "Adding batch/interactive argument: $rule" args_batch_interactive+=("$rule") elif [[ $rule = batch ]] then # Remaining arguments are passed to Emacs. batch=true elif [[ $rule = interactive ]] then # Remaining arguments are passed to Emacs. interactive=true elif type -t "$rule" 2>/dev/null | grep function &>/dev/null then # Pass called-directly as $1 to indicate that the rule is # being called directly rather than from a meta-rule. $rule called-directly elif [[ $rule = test ]] then # Allow the "tests" rule to be called as "test". Since "test" # is a shell builtin, this workaround is required. tests else error "Invalid rule: $rule" fi done # Batch/interactive rules. [[ $batch ]] && batch [[ $interactive ]] && interactive if [[ $errors -gt 0 ]] then log_color red "Finished with $errors errors." else success "Finished without errors." fi exit $errors