pax_global_header00006660000000000000000000000064142204161730014512gustar00rootroot0000000000000052 comment=54452cfada7a690edb7e0fd4b6fabcef7ba1d567 gauge-4.0.4/000077500000000000000000000000001422041617300126075ustar00rootroot00000000000000gauge-4.0.4/.commitlintrc.js000066400000000000000000000005531422041617300157320ustar00rootroot00000000000000/* This file is automatically added by @npmcli/template-oss. Do not edit. */ module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'type-enum': [2, 'always', ['feat', 'fix', 'docs', 'deps', 'chore']], 'header-max-length': [2, 'always', 80], 'subject-case': [0, 'always', ['lower-case', 'sentence-case', 'start-case']], }, } gauge-4.0.4/.eslintrc.js000066400000000000000000000005111422041617300150430ustar00rootroot00000000000000/* This file is automatically added by @npmcli/template-oss. Do not edit. */ const { readdirSync: readdir } = require('fs') const localConfigs = readdir(__dirname) .filter((file) => file.startsWith('.eslintrc.local.')) .map((file) => `./${file}`) module.exports = { extends: [ '@npmcli', ...localConfigs, ], } gauge-4.0.4/.github/000077500000000000000000000000001422041617300141475ustar00rootroot00000000000000gauge-4.0.4/.github/CODEOWNERS000066400000000000000000000001321422041617300155360ustar00rootroot00000000000000# This file is automatically added by @npmcli/template-oss. Do not edit. * @npm/cli-team gauge-4.0.4/.github/ISSUE_TEMPLATE/000077500000000000000000000000001422041617300163325ustar00rootroot00000000000000gauge-4.0.4/.github/ISSUE_TEMPLATE/bug.yml000066400000000000000000000026551422041617300176420ustar00rootroot00000000000000# This file is automatically added by @npmcli/template-oss. Do not edit. name: Bug description: File a bug/issue title: "[BUG] " labels: [ Bug, Needs Triage ] body: - type: checkboxes attributes: label: Is there an existing issue for this? description: Please [search here](./issues) to see if an issue already exists for your problem. options: - label: I have searched the existing issues required: true - type: textarea attributes: label: Current Behavior description: A clear & concise description of what you're experiencing. validations: required: false - type: textarea attributes: label: Expected Behavior description: A clear & concise description of what you expected to happen. validations: required: false - type: textarea attributes: label: Steps To Reproduce description: Steps to reproduce the behavior. value: | 1. In this environment... 2. With this config... 3. Run '...' 4. See error... validations: required: false - type: textarea attributes: label: Environment description: | examples: - **npm**: 7.6.3 - **Node**: 13.14.0 - **OS**: Ubuntu 20.04 - **platform**: Macbook Pro value: | - npm: - Node: - OS: - platform: validations: required: false �����������������������������������������������������������������������������������gauge-4.0.4/.github/ISSUE_TEMPLATE/config.yml�������������������������������������������������������0000664�0000000�0000000�00000000145�14220416173�0020322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. blank_issues_enabled: true ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/dependabot.yml������������������������������������������������������������������0000664�0000000�0000000�00000000565�14220416173�0017005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: daily allow: - dependency-type: direct versioning-strategy: increase-if-necessary commit-message: prefix: deps prefix-development: chore labels: - "Dependencies" �������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/settings.yml��������������������������������������������������������������������0000664�0000000�0000000�00000000055�14220416173�0016532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- _extends: '.github:npm-cli/settings.yml' �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/workflows/����������������������������������������������������������������������0000775�0000000�0000000�00000000000�14220416173�0016204�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/workflows/audit.yml�������������������������������������������������������������0000664�0000000�0000000�00000001344�14220416173�0020037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. name: Audit on: workflow_dispatch: schedule: # "At 01:00 on Monday" https://crontab.guru/#0_1_*_*_1 - cron: "0 1 * * 1" jobs: audit: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup git user run: | git config --global user.email "ops+npm-cli@npmjs.com" git config --global user.name "npm cli ops bot" - uses: actions/setup-node@v3 with: node-version: 16.x - name: Update npm to latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - run: npm -v - run: npm i --ignore-scripts --package-lock - run: npm audit ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/workflows/ci.yml����������������������������������������������������������������0000664�0000000�0000000�00000005044�14220416173�0017325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. name: CI on: workflow_dispatch: pull_request: branches: - '*' push: branches: - main - latest schedule: # "At 02:00 on Monday" https://crontab.guru/#0_2_*_*_1 - cron: "0 2 * * 1" jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup git user run: | git config --global user.email "ops+npm-cli@npmjs.com" git config --global user.name "npm cli ops bot" - uses: actions/setup-node@v3 with: node-version: 16.x - name: Update npm to latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - run: npm -v - run: npm i --ignore-scripts - run: npm run lint test: strategy: fail-fast: false matrix: node-version: - 12.13.0 - 12.x - 14.15.0 - 14.x - 16.0.0 - 16.x platform: - os: ubuntu-latest shell: bash - os: macos-latest shell: bash - os: windows-latest shell: cmd runs-on: ${{ matrix.platform.os }} defaults: run: shell: ${{ matrix.platform.shell }} steps: - uses: actions/checkout@v3 - name: Setup git user run: | git config --global user.email "ops+npm-cli@npmjs.com" git config --global user.name "npm cli ops bot" - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Update to workable npm (windows) # node 12 and 14 ship with npm@6, which is known to fail when updating itself in windows if: matrix.platform.os == 'windows-latest' && (startsWith(matrix.node-version, '12.') || startsWith(matrix.node-version, '14.')) run: | curl -sO https://registry.npmjs.org/npm/-/npm-7.5.4.tgz tar xf npm-7.5.4.tgz cd package node lib/npm.js install --no-fund --no-audit -g ..\npm-7.5.4.tgz cd .. rmdir /s /q package - name: Update npm to 7 # If we do test on npm 10 it needs npm7 if: startsWith(matrix.node-version, '10.') run: npm i --prefer-online --no-fund --no-audit -g npm@7 - name: Update npm to latest if: ${{ !startsWith(matrix.node-version, '10.') }} run: npm i --prefer-online --no-fund --no-audit -g npm@latest - run: npm -v - run: npm i --ignore-scripts - run: npm test --ignore-scripts ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/workflows/codeql-analysis.yml���������������������������������������������������0000664�0000000�0000000�00000002002�14220416173�0022011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. name: "CodeQL" on: push: branches: - main - latest pull_request: # The branches below must be a subset of the branches above branches: - main - latest schedule: # "At 03:00 on Monday" https://crontab.guru/#0_3_*_*_1 - cron: "0 3 * * 1" jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ javascript ] steps: - uses: actions/checkout@v3 - name: Setup git user run: | git config --global user.email "ops+npm-cli@npmjs.com" git config --global user.name "npm cli ops bot" - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/workflows/post-dependabot.yml���������������������������������������������������0000664�0000000�0000000�00000002550�14220416173�0022021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. name: Post Dependabot Actions on: pull_request # https://docs.github.com/en/rest/overview/permissions-required-for-github-apps permissions: actions: write contents: write jobs: Install: runs-on: ubuntu-latest if: github.actor == 'dependabot[bot]' steps: - uses: actions/checkout@v3 - name: Setup git user run: | git config --global user.email "ops+npm-cli@npmjs.com" git config --global user.name "npm cli ops bot" - uses: actions/setup-node@v3 with: node-version: 16.x - name: Update npm to latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - run: npm -v - name: Dependabot metadata id: metadata uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: npm install and commit if: contains(steps.metadata.outputs.dependency-names, '@npmcli/template-oss') env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh pr checkout ${{ github.event.pull_request.number }} npm install --ignore-scripts npm run template-oss-apply git add . git commit -am "chore: postinstall for dependabot template-oss PR" git push ��������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/workflows/pull-request.yml������������������������������������������������������0000664�0000000�0000000�00000002144�14220416173�0021372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. name: Pull Request Linting on: pull_request: types: - opened - reopened - edited - synchronize jobs: check: name: Check PR Title or Commits runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Setup git user run: | git config --global user.email "ops+npm-cli@npmjs.com" git config --global user.name "npm cli ops bot" - uses: actions/setup-node@v3 with: node-version: 16.x - name: Update npm to latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - run: npm -v - name: Install deps run: npm i -D @commitlint/cli @commitlint/config-conventional - name: Check commits OR PR title env: PR_TITLE: ${{ github.event.pull_request.title }} run: | npx --offline commitlint -V --from origin/main --to ${{ github.event.pull_request.head.sha }} \ || echo $PR_TITLE | npx --offline commitlint -V ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.github/workflows/release-please.yml����������������������������������������������������0000664�0000000�0000000�00000001314�14220416173�0021615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. name: Release Please on: push: branches: - main - latest jobs: release-please: runs-on: ubuntu-latest steps: - uses: google-github-actions/release-please-action@v3 id: release with: release-type: node changelog-types: > [ {"type":"feat","section":"Features","hidden":false}, {"type":"fix","section":"Bug Fixes","hidden":false}, {"type":"docs","section":"Documentation","hidden":false}, {"type":"deps","section":"Dependencies","hidden":false}, {"type":"chore","hidden":true} ] ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.gitignore������������������������������������������������������������������������������0000664�0000000�0000000�00000000543�14220416173�0014601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# This file is automatically added by @npmcli/template-oss. Do not edit. # ignore everything in the root /* # keep these !/.eslintrc.local.* !**/.gitignore !/docs/ !/tap-snapshots/ !/test/ !/map.js !/scripts/ !/README* !/LICENSE* !/CHANGELOG* !/.commitlintrc.js !/.eslintrc.js !/.github/ !/.gitignore !/.npmrc !/SECURITY.md !/bin/ !/lib/ !/package.json �������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/.npmrc����������������������������������������������������������������������������������0000664�0000000�0000000�00000000135�14220416173�0013726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������; This file is automatically added by @npmcli/template-oss. Do not edit. package-lock=false �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/CHANGELOG.md����������������������������������������������������������������������������0000664�0000000�0000000�00000020543�14220416173�0014424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Changelog ### [4.0.4](https://github.com/npm/gauge/compare/v4.0.3...v4.0.4) (2022-03-28) ### Bug Fixes * fix always true condition ([#160](https://github.com/npm/gauge/issues/160)) ([bebaf0b](https://github.com/npm/gauge/commit/bebaf0b0655f0bdc58a6548b04230cd420245e5e)) ### v4.0.0 * BREAKING CHANGE: Drops support for Node v10 and non-LTS versions of v12 and v14 * feat: install template-oss * fix: repository metadata * fix: Typo in package.json * fix: Remove remaining uses of object-assign * fix: remove object-assign ### [4.0.3](https://www.github.com/npm/gauge/compare/v4.0.2...v4.0.3) (2022-03-10) ### Bug Fixes * move demo.js to the docs folder ([#155](https://www.github.com/npm/gauge/issues/155)) ([1faf8cf](https://www.github.com/npm/gauge/commit/1faf8cf25c0bffb345f6657e20743d83c54d6695)) ### Dependencies * remove the unused direct ansi-regex dependency ([#156](https://www.github.com/npm/gauge/issues/156)) ([65be798](https://www.github.com/npm/gauge/commit/65be79895801433e02aef58cafb6f31a87287e59)) ### [4.0.2](https://www.github.com/npm/gauge/compare/v4.0.1...v4.0.2) (2022-02-16) ### Dependencies * update color-support requirement from ^1.1.2 to ^1.1.3 ([5921a0f](https://www.github.com/npm/gauge/commit/5921a0f89e6c4c10ea047a219230809fd4118409)) * update console-control-strings requirement from ^1.0.0 to ^1.1.0 ([a5ac787](https://www.github.com/npm/gauge/commit/a5ac787a3771e8882f9837fab08ca2985cad609f)) * update signal-exit requirement from ^3.0.0 to ^3.0.7 ([3e0d399](https://www.github.com/npm/gauge/commit/3e0d39917b10e0f94efd4a4c74a46fa8e21e768a)) * update wide-align requirement from ^1.1.2 to ^1.1.5 ([ddc9048](https://www.github.com/npm/gauge/commit/ddc90480a6c1caa8c176e0b65a9d8207be846f94)) ### [4.0.1](https://www.github.com/npm/gauge/compare/v4.0.0...v4.0.1) (2022-02-15) ### Bug Fixes * use more commonly available character for pre/post progressbar ([#141](https://www.github.com/npm/gauge/issues/141)) ([13d3046](https://www.github.com/npm/gauge/commit/13d30466b56015cb75df366371cf85234a8a517f)) ### v3.0.1 * deps: object-assign@4.1.1 ### v3.0.0 * BREAKING CHANGE: Drops support for Node v4, v6, v7 and v8 ### v2.7.4 * Reset colors prior to ending a line, to eliminate flicker when a line is trucated between start and end color sequences. ### v2.7.3 * Only create our onExit handler when we're enabled and remove it when we're disabled. This stops us from creating multiple onExit handlers when multiple gauge objects are being used. * Fix bug where if a theme name were given instead of a theme object, it would crash. * Remove supports-color because it's not actually used. Uhm. Yes, I just updated it. >.> ### v2.7.2 * Use supports-color instead of has-color (as the module has been renamed) ### v2.7.1 * Bug fix: Calls to show/pulse while the progress bar is disabled should still update our internal representation of what would be shown should it be enabled. ### v2.7.0 * New feature: Add new `isEnabled` method to allow introspection of the gauge's "enabledness" as controlled by `.enable()` and `.disable()`. ### v2.6.0 * Bug fix: Don't run the code associated with `enable`/`disable` if the gauge is already enabled or disabled respectively. This prevents leaking event listeners, amongst other weirdness. * New feature: Template items can have default values that will be used if no value was otherwise passed in. ### v2.5.3 * Default to `enabled` only if we have a tty. Users can always override this by passing in the `enabled` option explicitly or by calling calling `gauge.enable()`. ### v2.5.2 * Externalized `./console-strings.js` into `console-control-strings`. ### v2.5.1 * Update to `signal-exit@3.0.0`, which fixes a compatibility bug with the node profiler. * [#39](https://github.com/iarna/gauge/pull/39) Fix tests on 0.10 and add a missing devDependency. ([@helloyou2012](https://github.com/helloyou2012)) ### v2.5.0 * Add way to programmatically fetch a list of theme names in a themeset (`Themeset.getThemeNames`). ### v2.4.0 * Add support for setting themesets on existing gauge objects. * Add post-IO callback to `gauge.hide()` as it is somtetimes necessary when your terminal is interleaving output from multiple filehandles (ie, stdout & stderr). ### v2.3.1 * Fix a refactor bug in setTheme where it wasn't accepting the various types of args it should. ### v2.3.0 #### FEATURES * Add setTemplate & setTheme back in. * Add support for named themes, you can now ask for things like 'colorASCII' and 'brailleSpinner'. Of course, you can still pass in theme objects. Additionally you can now pass in an object with `hasUnicode`, `hasColor` and `platform` keys in order to override our guesses as to those values when selecting a default theme from the themeset. * Make the output stream optional (it defaults to `process.stderr` now). * Add `setWriteTo(stream[, tty])` to change the output stream and, optionally, tty. #### BUG FIXES & REFACTORING * Abort the display phase early if we're supposed to be hidden and we are. * Stop printing a bunch of spaces at the end of lines, since we're already using an erase-to-end-of-line code anyway. * The unicode themes were missing the subsection separator. ### v2.2.1 * Fix image in readme ### v2.2.0 * All new themes API– reference themes by name and pass in custom themes and themesets (themesets get platform support autodetection done on them to select the best theme). Theme mixins let you add features to all existing themes. * Much, much improved test coverage. ### v2.1.0 * Got rid of ░ in the default platform, noUnicode, hasColor theme. Thanks to @yongtw123 for pointing out this had snuck in. * Fiddled with the demo output to make it easier to see the spinner spin. Also added prints before each platforms test output. * I forgot to include `signal-exit` in our deps. <.< Thank you @KenanY for finding this. Then I was lazy and made a new commit instead of using his PR. Again, thank you for your patience @KenenY. * Drastically speed up travis testing. * Add a small javascript demo (demo.js) for showing off the various themes (and testing them on diff platforms). * Change: The subsection separator from ⁄ and / (different chars) to >. * Fix crasher: A show or pulse without a label would cause the template renderer to complain about a missing value. * New feature: Add the ability to disable the clean-up-on-exit behavior. Not something I expect to be widely desirable, but important if you have multiple distinct gauge instances in your app. * Use our own color support detection. The `has-color` module proved too magic for my needs, making assumptions as to which stream we write to and reading command line arguments. ### v2.0.0 This is a major rewrite of the internals. Externally there are fewer changes: * On node>0.8 gauge object now prints updates at a fixed rate. This means that when you call `show` it may wate up to `updateInterval` ms before it actually prints an update. You override this behavior with the `fixedFramerate` option. * The gauge object now keeps the cursor hidden as long as it's enabled and shown. * The constructor's arguments have changed, now it takes a mandatory output stream and an optional options object. The stream no longer needs to be an `ansi`ified stream, although it can be if you want (but we won't make use of its special features). * Previously the gauge was disabled by default if `process.stdout` wasn't a tty. Now it always defaults to enabled. If you want the previous behavior set the `enabled` option to `process.stdout.isTTY`. * The constructor's options have changed– see the docs for details. * Themes are entirely different. If you were using a custom theme, or referring to one directly (eg via `Gauge.unicode` or `Gauge.ascii`) then you'll need to change your code. You can get the equivalent of the latter with: ``` var themes = require('gauge/themes') var unicodeTheme = themes(true, true) // returns the color unicode theme for your platform ``` The default themes no longer use any ambiguous width characters, so even if you choose to display those as wide your progress bar should still display correctly. * Templates are entirely different and if you were using a custom one, you should consult the documentation to learn how to recreate it. If you were using the default, be aware that it has changed and the result looks quite a bit different. �������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/LICENSE.md������������������������������������������������������������������������������0000664�0000000�0000000�00000001436�14220416173�0014217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!-- This file is automatically added by @npmcli/template-oss. Do not edit. --> ISC License Copyright npm, Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND NPM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NPM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/README.md�������������������������������������������������������������������������������0000664�0000000�0000000�00000036077�14220416173�0014103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge ===== A nearly stateless terminal based horizontal gauge / progress bar. ```javascript var Gauge = require("gauge") var gauge = new Gauge() gauge.show("working…", 0) setTimeout(() => { gauge.pulse(); gauge.show("working…", 0.25) }, 500) setTimeout(() => { gauge.pulse(); gauge.show("working…", 0.50) }, 1000) setTimeout(() => { gauge.pulse(); gauge.show("working…", 0.75) }, 1500) setTimeout(() => { gauge.pulse(); gauge.show("working…", 0.99) }, 2000) setTimeout(() => gauge.hide(), 2300) ``` See also the [demos](docs/demo.js): ![](./docs/gauge-demo.gif) ### CHANGES FROM 1.x Gauge 2.x is breaking release, please see the [changelog] for details on what's changed if you were previously a user of this module. [changelog]: CHANGELOG.md ### THE GAUGE CLASS This is the typical interface to the module– it provides a pretty fire-and-forget interface to displaying your status information. ``` var Gauge = require("gauge") var gauge = new Gauge([stream], [options]) ``` * **stream** – *(optional, default STDERR)* A stream that progress bar updates are to be written to. Gauge honors backpressure and will pause most writing if it is indicated. * **options** – *(optional)* An option object. Constructs a new gauge. Gauges are drawn on a single line, and are not drawn if **stream** isn't a tty and a tty isn't explicitly provided. If **stream** is a terminal or if you pass in **tty** to **options** then we will detect terminal resizes and redraw to fit. We do this by watching for `resize` events on the tty. (To work around a bug in versions of Node prior to 2.5.0, we watch for them on stdout if the tty is stderr.) Resizes to larger window sizes will be clean, but shrinking the window will always result in some cruft. **IMPORTANT:** If you previously were passing in a non-tty stream but you still want output (for example, a stream wrapped by the `ansi` module) then you need to pass in the **tty** option below, as `gauge` needs access to the underlying tty in order to do things like terminal resizes and terminal width detection. The **options** object can have the following properties, all of which are optional: * **updateInterval**: How often gauge updates should be drawn, in milliseconds. * **fixedFramerate**: Defaults to false on node 0.8, true on everything else. When this is true a timer is created to trigger once every `updateInterval` ms, when false, updates are printed as soon as they come in but updates more often than `updateInterval` are ignored. The reason 0.8 doesn't have this set to true is that it can't `unref` its timer and so it would stop your program from exiting– if you want to use this feature with 0.8 just make sure you call `gauge.disable()` before you expect your program to exit. * **themes**: A themeset to use when selecting the theme to use. Defaults to `gauge/themes`, see the [themes] documentation for details. * **theme**: Select a theme for use, it can be a: * Theme object, in which case the **themes** is not used. * The name of a theme, which will be looked up in the current *themes* object. * A configuration object with any of `hasUnicode`, `hasColor` or `platform` keys, which if will be used to override our guesses when making a default theme selection. If no theme is selected then a default is picked using a combination of our best guesses at your OS, color support and unicode support. * **template**: Describes what you want your gauge to look like. The default is what npm uses. Detailed [documentation] is later in this document. * **hideCursor**: Defaults to true. If true, then the cursor will be hidden while the gauge is displayed. * **tty**: The tty that you're ultimately writing to. Defaults to the same as **stream**. This is used for detecting the width of the terminal and resizes. The width used is `tty.columns - 1`. If no tty is available then a width of `79` is assumed. * **enabled**: Defaults to true if `tty` is a TTY, false otherwise. If true the gauge starts enabled. If disabled then all update commands are ignored and no gauge will be printed until you call `.enable()`. * **Plumbing**: The class to use to actually generate the gauge for printing. This defaults to `require('gauge/plumbing')` and ordinarily you shouldn't need to override this. * **cleanupOnExit**: Defaults to true. Ordinarily we register an exit handler to make sure your cursor is turned back on and the progress bar erased when your process exits, even if you Ctrl-C out or otherwise exit unexpectedly. You can disable this and it won't register the exit handler. [has-unicode]: https://www.npmjs.com/package/has-unicode [themes]: #themes [documentation]: #templates #### `gauge.show(section | status, [completed])` The first argument is either the section, the name of the current thing contributing to progress, or an object with keys like **section**, **subsection** & **completed** (or any others you have types for in a custom template). If you don't want to update or set any of these you can pass `null` and it will be ignored. The second argument is the percent completed as a value between 0 and 1. Without it, completion is just not updated. You'll also note that completion can be passed in as part of a status object as the first argument. If both it and the completed argument are passed in, the completed argument wins. #### `gauge.hide([cb])` Removes the gauge from the terminal. Optionally, callback `cb` after IO has had an opportunity to happen (currently this just means after `setImmediate` has called back.) It turns out this is important when you're pausing the progress bar on one filehandle and printing to another– otherwise (with a big enough print) node can end up printing the "end progress bar" bits to the progress bar filehandle while other stuff is printing to another filehandle. These getting interleaved can cause corruption in some terminals. #### `gauge.pulse([subsection])` * **subsection** – *(optional)* The specific thing that triggered this pulse Spins the spinner in the gauge to show output. If **subsection** is included then it will be combined with the last name passed to `gauge.show`. #### `gauge.disable()` Hides the gauge and ignores further calls to `show` or `pulse`. #### `gauge.enable()` Shows the gauge and resumes updating when `show` or `pulse` is called. #### `gauge.isEnabled()` Returns true if the gauge is enabled. #### `gauge.setThemeset(themes)` Change the themeset to select a theme from. The same as the `themes` option used in the constructor. The theme will be reselected from this themeset. #### `gauge.setTheme(theme)` Change the active theme, will be displayed with the next show or pulse. This can be: * Theme object, in which case the **themes** is not used. * The name of a theme, which will be looked up in the current *themes* object. * A configuration object with any of `hasUnicode`, `hasColor` or `platform` keys, which if will be used to override our guesses when making a default theme selection. If no theme is selected then a default is picked using a combination of our best guesses at your OS, color support and unicode support. #### `gauge.setTemplate(template)` Change the active template, will be displayed with the next show or pulse ### Tracking Completion If you have more than one thing going on that you want to track completion of, you may find the related [are-we-there-yet] helpful. It's `change` event can be wired up to the `show` method to get a more traditional progress bar interface. [are-we-there-yet]: https://www.npmjs.com/package/are-we-there-yet ### THEMES ``` var themes = require('gauge/themes') // fetch the default color unicode theme for this platform var ourTheme = themes({hasUnicode: true, hasColor: true}) // fetch the default non-color unicode theme for osx var ourTheme = themes({hasUnicode: true, hasColor: false, platform: 'darwin'}) // create a new theme based on the color ascii theme for this platform // that brackets the progress bar with arrows var ourTheme = themes.newTheme(themes({hasUnicode: false, hasColor: true}), { preProgressbar: '→', postProgressbar: '←' }) ``` The object returned by `gauge/themes` is an instance of the `ThemeSet` class. ``` var ThemeSet = require('gauge/theme-set') var themes = new ThemeSet() // or var themes = require('gauge/themes') var mythemes = themes.newThemeSet() // creates a new themeset based on the default themes ``` #### themes(opts) #### themes.getDefault(opts) Theme objects are a function that fetches the default theme based on platform, unicode and color support. Options is an object with the following properties: * **hasUnicode** - If true, fetch a unicode theme, if no unicode theme is available then a non-unicode theme will be used. * **hasColor** - If true, fetch a color theme, if no color theme is available a non-color theme will be used. * **platform** (optional) - Defaults to `process.platform`. If no platform match is available then `fallback` is used instead. If no compatible theme can be found then an error will be thrown with a `code` of `EMISSINGTHEME`. #### themes.addTheme(themeName, themeObj) #### themes.addTheme(themeName, [parentTheme], newTheme) Adds a named theme to the themeset. You can pass in either a theme object, as returned by `themes.newTheme` or the arguments you'd pass to `themes.newTheme`. #### themes.getThemeNames() Return a list of all of the names of the themes in this themeset. Suitable for use in `themes.getTheme(…)`. #### themes.getTheme(name) Returns the theme object from this theme set named `name`. If `name` does not exist in this themeset an error will be thrown with a `code` of `EMISSINGTHEME`. #### themes.setDefault([opts], themeName) `opts` is an object with the following properties. * **platform** - Defaults to `'fallback'`. If your theme is platform specific, specify that here with the platform from `process.platform`, eg, `win32`, `darwin`, etc. * **hasUnicode** - Defaults to `false`. If your theme uses unicode you should set this to true. * **hasColor** - Defaults to `false`. If your theme uses color you should set this to true. `themeName` is the name of the theme (as given to `addTheme`) to use for this set of `opts`. #### themes.newTheme([parentTheme,] newTheme) Create a new theme object based on `parentTheme`. If no `parentTheme` is provided then a minimal parentTheme that defines functions for rendering the activity indicator (spinner) and progress bar will be defined. (This fallback parent is defined in `gauge/base-theme`.) newTheme should be a bare object– we'll start by discussing the properties defined by the default themes: * **preProgressbar** - displayed prior to the progress bar, if the progress bar is displayed. * **postProgressbar** - displayed after the progress bar, if the progress bar is displayed. * **progressBarTheme** - The subtheme passed through to the progress bar renderer, it's an object with `complete` and `remaining` properties that are the strings you want repeated for those sections of the progress bar. * **activityIndicatorTheme** - The theme for the activity indicator (spinner), this can either be a string, in which each character is a different step, or an array of strings. * **preSubsection** - Displayed as a separator between the `section` and `subsection` when the latter is printed. More generally, themes can have any value that would be a valid value when rendering templates. The properties in the theme are used when their name matches a type in the template. Their values can be: * **strings & numbers** - They'll be included as is * **function (values, theme, width)** - Should return what you want in your output. *values* is an object with values provided via `gauge.show`, *theme* is the theme specific to this item (see below) or this theme object, and *width* is the number of characters wide your result should be. There are a couple of special prefixes: * **pre** - Is shown prior to the property, if its displayed. * **post** - Is shown after the property, if its displayed. And one special suffix: * **Theme** - Its value is passed to a function-type item as the theme. #### themes.addToAllThemes(theme) This *mixes-in* `theme` into all themes currently defined. It also adds it to the default parent theme for this themeset, so future themes added to this themeset will get the values from `theme` by default. #### themes.newThemeSet() Copy the current themeset into a new one. This allows you to easily inherit one themeset from another. ### TEMPLATES A template is an array of objects and strings that, after being evaluated, will be turned into the gauge line. The default template is: ```javascript [ {type: 'progressbar', length: 20}, {type: 'activityIndicator', kerning: 1, length: 1}, {type: 'section', kerning: 1, default: ''}, {type: 'subsection', kerning: 1, default: ''} ] ``` The various template elements can either be **plain strings**, in which case they will be be included verbatum in the output, or objects with the following properties: * *type* can be any of the following plus any keys you pass into `gauge.show` plus any keys you have on a custom theme. * `section` – What big thing you're working on now. * `subsection` – What component of that thing is currently working. * `activityIndicator` – Shows a spinner using the `activityIndicatorTheme` from your active theme. * `progressbar` – A progress bar representing your current `completed` using the `progressbarTheme` from your active theme. * *kerning* – Number of spaces that must be between this item and other items, if this item is displayed at all. * *maxLength* – The maximum length for this element. If its value is longer it will be truncated. * *minLength* – The minimum length for this element. If its value is shorter it will be padded according to the *align* value. * *align* – (Default: left) Possible values "left", "right" and "center". Works as you'd expect from word processors. * *length* – Provides a single value for both *minLength* and *maxLength*. If both *length* and *minLength or *maxLength* are specified then the latter take precedence. * *value* – A literal value to use for this template item. * *default* – A default value to use for this template item if a value wasn't otherwise passed in. ### PLUMBING This is the super simple, assume nothing, do no magic internals used by gauge to implement its ordinary interface. ``` var Plumbing = require('gauge/plumbing') var gauge = new Plumbing(theme, template, width) ``` * **theme**: The theme to use. * **template**: The template to use. * **width**: How wide your gauge should be #### `gauge.setTheme(theme)` Change the active theme. #### `gauge.setTemplate(template)` Change the active template. #### `gauge.setWidth(width)` Change the width to render at. #### `gauge.hide()` Return the string necessary to hide the progress bar #### `gauge.hideCursor()` Return a string to hide the cursor. #### `gauge.showCursor()` Return a string to show the cursor. #### `gauge.show(status)` Using `status` for values, render the provided template with the theme and return a string that is suitable for printing to update the gauge. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/SECURITY.md�����������������������������������������������������������������������������0000664�0000000�0000000�00000000246�14220416173�0014402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!-- This file is automatically added by @npmcli/template-oss. Do not edit. --> Please send vulnerability reports through [hackerone](https://hackerone.com/github). ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/docs/�����������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�14220416173�0013537�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/docs/demo.js����������������������������������������������������������������������������0000664�0000000�0000000�00000001631�14220416173�0015022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������var Gauge = require('..') var gaugeDefault = require('../lib/themes.js') var onExit = require('signal-exit') var activeGauge onExit(function () { activeGauge.disable() }) var themes = gaugeDefault.getThemeNames() nextBar() function nextBar () { var themeName = themes.shift() console.log('Demoing output for ' + themeName) var gt = new Gauge(process.stderr, { updateInterval: 50, theme: themeName, cleanupOnExit: false, }) activeGauge = gt var progress = 0 var cnt = 0 var pulse = setInterval(function () { gt.pulse('this is a thing that happened ' + (++cnt)) }, 110) var prog = setInterval(function () { progress += 0.04 gt.show(themeName + ':' + Math.round(progress * 1000), progress) if (progress >= 1) { clearInterval(prog) clearInterval(pulse) gt.disable() if (themes.length) { nextBar() } } }, 100) gt.show() } �������������������������������������������������������������������������������������������������������gauge-4.0.4/docs/gauge-demo.gif���������������������������������������������������������������������0000664�0000000�0000000�00000671517�14220416173�0016261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������GIF87a������):60:C@:3 ;U*;SB;-N;"4<;?<?'=h[=4M>16A]6Af[A'5BU9CK-EC+F^AFCDGLLGCSG93H~aI.9JYMMMOM/ZM=aM3hMMCNYLNdROMdPB:QgOQT[QLNRkOS\AT}BTkeT4hT<=UshUKUN8V<ZOLZIPZ?R[dq[DQ\q`\Tq\Ky\FD]P]|u]RE^l?`{c`\Jao\aHnaHaYMb{ZbhZbtmc\Td}}dPe`hfdIgKhdhnsh9sjchk~kkkkUUl\lLmZYm|m_coMo[o]YqaqUpqrzq?}qkr]dtYu[uubnvtvHvecwTydyuizpz||N}||kfesxjn_tvrf|Ufjk}x{P|x{Ńv^暘yݝyu^ϖߣr^䚫Ͽ噭ܤ孯w,ĩjųFzɠ˻{ʱnĻ%9˽?NλͿ/úļĵňŲNjȈzʾˈ̻̼)B͇���! NETSCAPE2.0���!��,�������Kǯ*\ȰÇ#JHŋ3jȱǏ CIɓ()KnJ|bʜI͛8sɳϟ@ JѣH*]ʴӧPJ:_KTjʵׯ`ÊKY-]]˶۷pʝKW>u˷߿ܦ30dim/^ì ' 4ik̹ϠRÙo Ө˹oXװO۸XDڈ;ܳgjznkFwSwɆbݸd](s4^mӨ/.5r_͇&28(PU OO&&"Ls5qO 6wBuFN@Ta B1Q8M#d}Df#M$;>'U<jY4];b9<^L3m"z`La!S[&]pȏZ.yf@)̞4<򃧉29,]Or�Nr{橗Y$'J")ȧL{^X|?MZ~6mѺ>5I6S4Op0Bq&F;rPV{nH>HX $!'qLػO.rBu,̆pk S.9#DOOj!Q*6"ӈHl0GxL$ҔC*1! /|)[+r0*TCp/M 4[eJ7>LR7B08Q3X  nD<ް&RTs>Cp7ԍBS> 0 [<H^:'gǬ qL[>p '8xOƌ|>$C6 7O#>=HƵs[?^MA BP*{Fm`R Vk`# ,hA-`Ӧ6v@C(L W0 ghA{ A *XmlFRG=܃I6p"=aZ h݃t*L6J7a-z`F]1SbbAV@H0BQ/h;LX`D%2q�>PL@Z5 -e 簆$HFTGzLmAsL&)$nS{>:Q @4 0Ib\!Q\lP(a&̦6((a) @Pv=d(k"V#0pp,Z<9DE800:, cc+SLa7nq@a=x,VGO{`zC+qEws dEƙ nAZ{FVr\ JfD𺜖VfJ<%0ծz`2Eأ R"C5R#pkXPt $,-X fꌄi y$]2Adjc^VdPrD y{a t>ZD"vbVG%"F䚈Hj8p!'M^4ope'Uڧz7U0 @r-(X_J򚷼HaiF?+fKΐZ81fҬ0汉 p";8F`+2ȑI›{aȶ Z,F@5d7ֽ@ P2vNB~R8V`d#  .Ar'`D!ZUkQn j9p"@\08AM"ӾN_ r l +|! y,ӉV%{q|-ulU#]a`а\WؙZS/r8o ^`k`X'`έQU( Vf<\vjF`Cm Ku49%ijR=ԩ O8-T]kZqB΀en? ꒛<эVa>(qP,Gc fw:ncG/z3etֺA`)/z luw]I7r͙KǢ D`4LL}w{9XR*0NO;񐏼'O[0J ]oz ;Å,`@Is<!VQzϽw>OOH#([7~{O?yϿ?8Xx ؀8Xx؁ "8 p(*,؂.0284X6x8:<؃>@B8DXFxH=hJ؄NPR8TXVxXZ(L P-[b8dXfwjl]Ȃx F`mxxz?|xo@ApxJ(� b 28�&P&0WH~؉84 - Nx)(-8'(�O�: 0ȨP8�vu W P;IH -쨂J p� � ' P4 � ,(8Z�@ ;Ȍ3PX ``0V =H䨃'O�׎.H0pJ(�Y�k04Qٌ1JP2h)!9%9)]9b 1lP .�^@��li'@ p'8uy x((x˰ P ~` ЂDI |yP {y(H)HP ' p)X0 *89 (Ss@'('xyTVI. -�ɰ( g p qY ` (8 9$ p ϐ(p x0耎2'ء�鹞'H �P(xa98ʇ1$2`  `Q MQ ' B|`*8hN* k0 +(�ht:F�Z@ZFI{y�vi(8 3` RI0@ (' Ќ P ps L*ʔ`<P 0�.PvP `� L0Pc�>`x�$ J ڀ'/x@ap@H`Ю `☮J-h &:� l:7&{; *?J 0EڂG� )ȧ8��:\FC˧ zoK+yʳ),Х ɐ)@U{P2 (X � ૮h'8'Hp*Py�% �͊v0-@ ୊ +ՠ� (J@p  -xz6ڰ x-+{[߈˻1!*X'g�xAjI`+�8}Diq@�˾+h)(�S;Mh o IL˙Fɨ\^K\�l.x gpp`(h*j ی*|p '܌`J:J+̔'I"[{@u)(xpf@@ �'HVY-WvPGOP'x2H'�O'{b M 0'h01vbR<ɚ|GL {zʜy� ̵#�NЌ;pK�; pɱ؜GpȌ 01!lJͿԼלی`�.8'h@7'xԀzYŐR^,,sIŔ xk,p,XǛmN`�+]T<}2 .)WAv,xGKx CZĦps,PGʗRM yOݵz8P.�(XֻJ ͹ I phی)Ȝr܊ L{,{~T 9WY(0;(Xjl ϱ0Xp ' -]۷Ϩm%"(0)(63S%&(Bt@Ap܏^'ݶ-�BM վȧ,v:RLS:M Y|j&0`M 9: l-k ½J ͈�j  �\ y0̹ )! #^�%Pn Hzٙ�P pR�{+� p\0!�__РMй@й7p [~]l\~$&e~hN'qPνN -8םԝݗNȗ2@�ދHߵ(0� H@ +hQ݋}؋[+^܋n� .ϜЛ< ',1:N\+X,0�~Lɩ 0DNF  r� 0' + @ ݂a F@?|�'/-!{~۰)x,>GX,hD 4@)H�QI@M�Q4WZ49).�7 l=('h,(!pfp p{wz?] `2X4(ςd�</@m`'ȩZv _>!_ }y+X9:~ͯ>xPWXn ,AWƿ/_>�X];$XA .dC%NXE5nG!E$iUI)UdK1eΤYI9uOA 9QI.eiâONZUSfWa*:Yiծ]Y[qM]yi_aĉ5cȑJ\e0oH͟E&]:ahөUkر]mq{n qWWsO^bcٵ+Ǿw'Z|y=W}dw}_~,�4@ DpARA#LB +DA 3p ;P& ?qDB$D21E[(c!fQoQw 4ҿ"T$tҽ&(һ*Բ,ҹ.04ӷ2T4t6ߔ38S:s<>A FC-PE݋QG# RI+}RK3MSN1ôSP4TRTT:5UVZUXz5VZVpwu_WaEXc YeYhb6ZjcZlY6[nKڶ[pA6\r7\tMJwݗe]y ]{|HgfOV!18 �!��,������!��,������!��,������!��,������!��,������!��,������!��,��&���@*\ȰÇ#JHŋ3jȱǏ C* tL\ɲ˗0cʜI& ۹_:<6r@Q"0Ĉ6} Ў^ͼc]>ɚ}pv*+P\;43S,ztC v=[|j϶cɌ0)lV[!VffhK`vhP݅sR)~%Y*rh!f%J4>&Ĝ'+͕'ba+@vsPh[mNra�b4}9 P.!9t"YwU%?4 nP]@9!PXmmaZe-@j8,J!G;˴F(|C0X@%$J+$ J!2bZ18PMTaK-H! 1(g"`bЖi a(2@s))Лq sAAI(3-8 *wF2@&*ۘ2I39C`-d1\3IBxlgQ +P餕^*>T'$@:jC`?=cӐ 7qM`N3Bc�bK`L;o|jeżH [`1N;($@g\{ՇiA{vxG;bm܎4 >-Hć-b($1H�d" |@,-P )7̑ LPR,]_-;t�D2,8 T*.G .DM� O3D�e F&58&HH p&Ьc9a!䃐s8'Opc[Mx@꫷Sࢋn"T2n;kxWYCc�~B܌8"j@z,+8O,mrC/._� Lm A@j,�EOp<b @2(,HM`(4PdSr汸wE'r)9 QC5 P JX>� 1Ȋ@ 9G΁x` C�R!`O"ChFˠQ Pa8/QY@(<Cz@'!P�)Ksd{ ")Ē@2?5oEMʏH�B@ 0_CN\A S�3&$r /\k2f K.i6-`fp$(CC'9@@<("FCjHāģx9̰8w4t 9D{lBP| v0':1yd)χ�0KAb+<$�MkLħaW䧌G[$A&T"Hp N[S pBp@|.@_d0ېkH\pu hk4WLͭd˫[׹u �:r Xsx95+ʞ@<bq!(OFC3ceZv!mBk;ZJ6�@Bk[O[lC}*Ň® ^ )M)[݄�л`gP+`b .xe}oC0``Rr&"Er! 8/&Ad| 0U8 ޥf|! o}0Yu`k>7", K$9{E>$)<(PhQA<,9K,YW"@_l Ѹ}̍CCwjց�Y p*\,�!y|3`^l8I|f TC=*] ZB6 � +0Ŗ K|�5`g ic X(`\Fװu.hmO�p<X�Q@ �:*�,\C8<C� HXPj�M�UHQKcch<|!c Z2ȻW�[ F@>͐{ vЌD90]L)%[H$:�-K\ }`�H }Kl^P'/UIV\Dj (S-G!13Z {-R ۗM�} $mcǸmVw!p|!�h؆<Fj< !V9#tlj;PG<CTzs<ï,ҟ^BAG~1.m|%#43A0nD_!A7Z!4/~OdA?Aΐ! A0H$d}TAVz!8(G@dx ҂. As4!4h4a>xuB>pZ0y`<GL؄0 flf'(uPXP[脔Nn`XfXg؆LXr8tXvh8w|؇~ȇy88Xh؈=8Xw0艢Xx0A؊8x(؋H8xtXȸ؄،XXxڸ hX �!��,������!��,�,��&���H*\ȰÇ#JHŋ3jȱဎ AZA I%9P'cNܶr@*ZmyC�:*"8TsA׉2ZfqCfA;Nb`wY2P3`d 'wa{7s\R"�^+&nOCX̑3 ,j)IxA-$6@D^aígYEiT o2q�>G̵!yހ)dϮ#,6 jys? A:=&HM�vB 'ɀ ShX~F8�707 X~Cϋ0:݄a<2z9-cBc'B(H @ r�A }W LN l i@̔#N,tYЛqι_ZF5vdX0V*Ȋ@̈a;1P `dmYg`rO)xzvWm>@ǩPg�P'BA*P#tU:[ht }GP1;%a& ;@>@^Xb*NiR;PzV\%!~~".̨ĄR읲8LPH:J0J±@#,:/t�:žQ4.*= 3:6ϵb2-P;-R*m  *d#lA@* 6b1QA ]F9p0UЄ<rS אW6&q� _^PRB[зgK(̄ۿ{b: $<ۤ |}Dd;x�EuO:(@<< d>ٞ\H1!S T�:cUE:JV "@\B<h"jAbƒ"$��8F aiHč 'KIX&:q"H*ZM.rD/80⃌hLB̨61�l|9u=} A2$<"5E:"|$!IZr!& Mz`(QZd@��!��,�?�����H*\ȰÇ#JHŋ3j 0G#:~ɓ(%I18-mS͛&B&Ο@2ӧУH=3ӧ(l ՊR Rʵ¬z[5Ig(ۤM\Pѷx6ߣ{KgGuDIx2sCfˠCMtɀ�!��, �A�����H*\ȰÇ0AĈ3j‎;<rɓ(S:$*cʜͳ)T*bHPKmA:Cy@'S>ЁcD3!(k¯aD̸ٍ,,(*T`Sx˷I:jkq>˸ˢDœ`$G�#S8 E f͜j7Pf9;i%ZA4(m`Fy 셽0?ix-p^X̑A&(m# >*& }|mէq tC '!NP*8T6X',wWqLA.sCz>6 $AD}-d!P$\Ag$1q(yd *`PCA#Z8%7<)TZ@pV%p1矁*ۘ2P$`9СD&*ȵP2)L  /@.ă@(:@67JP8҆э ϲ.w!䄑<=16 &BbKж~*.,R@zE .r/A;oQpgk@<xt%,/@:z 7I,2&,п|&L JCv <zDa*P@&@mXB9s:MPېռ|("2v�lɚVog{v}R@oDkv8C}'t_͚s|:-E>zP8\�.,{W< kBIInzPT8NڴB`}eG99uvs=BăXӿfدqu}Etaُ@9.s], $Z(3` CyFW4v ၇`La @h%" x-kupG$H��\BD"60BVw$* 1*7*zKC%TAEf3p)dK<Fdш �MA O„"C A0PwWrg%);$$ t7*)T�R~)<|i)?,QA<ZKPPe1!E. S  45 Bc1wmdi 091ڰ@ tg; OzsH= |`'@)Ђ3LɁ̢FR!?t jZFj RaA$ Q:d`@P g;nf4�1LY�`SJU�6ӥRnp 5+)ӟ%P-YJU>��U[M�Bp i[ԦS (0I %H`q`~-,`+Xְ=c J]aPȄ gQD|ImɐGbk�Rr!vTɸF2Ȃai<p&Am ->\B ]>A�_DR!%q(]O7EnKv-P]^ W `D n7H_ X FzK iA4\@D� '0WwaF,`P@SFH|X%H."d"3 2J,U(y!L>ȓ1e  Ȇp |̑H( 6 ɃIrx3g@ π 2guF;ю�!=��!��,�B� � ��e�X,1lHCr X�E5P[�SC.$M�@*iPƣR%@! *[')X9`X& �F�!��,�B�` ���M@BZmqxC�:2fDpQFW$Kw1mɲK熴<�4o S&˜<)T'ѢH`e N[$s>˸ˢDœ`$G�#S8 E Zl_nHCrո{aa3 )gKŋ6&xͣ3drU ,jey�,֖VmM0AN*hl#I\q]>_, F P[kgs`wx c^mZJ=[d!P$\Bg$1qD*M'0ǝ�  xIm8D TL/vxЌp !rY>)$D6H)$B(NS75i:H}B<pP<IFA!dvBԦ&AmtK>#d9a!OOL i FR$)d�:0:iN5("(Bj .r㪩S9Z觡:D:S�݄a<>:&H2߫j˭Z,EpQuSv8aP @\ۚJ x RsZ'"{dq�K'ŕWL@DP*!M)�O7ũ6t?$:JT3˾([.3K˥MIЦ wnK�"z69O+jl4mM ;!L.uACNf޴qvX}Py[97 V憑#y+VM:F9̒κWnS R*L1$!@<¡#/z pKT"ИTTN$/wlȐòK8gPOD6].G.zkދo\/0� "L< h@}-A;;fiȡeA^agKцj\KAٙג"Nc )ǒ̃#h>D&*}H<b 9Tq?Q>qT9+ 21QЈ|51�O ^ε E~�& KԐ�$K@$<eK$d0I�@E2x9̀2�4)-<,\u-&98 aR oZJvr&:x4{/sf�r &�!8A'Wk $ .{9=TؚKA�`aK I21Az]WZJyܪi^~;d\# B�C4HGp 3AP 6A>YT (G_҅x_ЈNT qw BZ*mү'MJӦq}@EJt̃&u*A yD$uzլ99r*>"F�KL�!Ei:R*0u'^Xd6),K[ $; @d[NꤲqlP�!��,�A�����H*\ȰÇhbċ3jဎ;<rɓ(S:$*cʜ)ͳ5aHPKmA:Cy@'S>DkpJbj6 pns8ٴcݦv#3. r%l*u C'Cc1, LD( Fr020_r zt4 \Kq,g'$H]7A(6PBM5lE`᝻b :Fh0 Smr`x]щX ]wHsÅ' x*4CpC 'ᇂ}w M# 4K0iA#AysP}5N�>39ȂX<@$r L6ġPO$%V *`C $NB$f.90xdn Ǘa Aw9О`y !rfE6  xF:i :x1c�!0)L  : !Ɛ/@.ă@3@uUE1jH$F7y*>f9Fڄ*cH` [.AnB O@f~n�KV�7ˍ/&@;ڶo�ṂZ'a$1\@ ; A',] H9f T7!7[ ÍGč lA!CmCjTS\;@4/@qC7Y[mP-~^ . )~x�/Hr7? \Ӓ6@;y�46AstB*a;5v !3MKf/c)4�:+C|ǘ 9|s?^�@"?ͩMo_E tJ B,#- ٝ@0gFK!G%$$ᣂ< AG`5U/l^�H@o �2Ѹ A,$wS"jH?<`4 v8PB'ka22R2x1 cĂ b D@�:2#,`0zCq;gGцyKKc"xPB Ry` dEZΒ X@T/ΥQYpd�La|~?s \f3BJ1@C֓ 4H>{ӟ'>�BPąAЄ5<C!u42YPV@ 0< "U!+H>m9!R0@xtT"�Xәi PmJcLiz 0JZS 5K29*pHu rHzbՙ I6 x *Hb`jb%XBV },e#kbֳh INRŽc$C؛5* amTܖdmqdC,xl#j䰵JMې%D]XUHgTHsAށo4Y/tJ�Mo�ےE/yE m"y<$*| ϷpRW '&Hb8�/Adl۸8~C RьX2 &!)J8 XOf.dL B|-cnAB:.7!8@6%C_s$v:9:@@Za VCNق NJ[ҘtB*fM/ �!��,�B� ���$*\ȰÇ#JHb62nSgI -B-ݶI <!�D0a"pSff*ܱcdsCeTҦP"U4*ũVb"3.$3ITalt]˶Q+N+q> ˸ˢDœ`$G�#S8 E bŌ#IOBm0Xh@f9ck%Ԥ 4ڭҧn )ꉵ#nuC<8&˩m+w  K(a1G 69PtGo/_?CT|I]�7 9pRN5DQjM#$4K0 i]C.ByycB>̓9ۜE7<@$r B 6Q?.$$FJ *`i#>#V R9z)OF)ZyeBlB)%p1+' E6$ i:h :`I4i!0)L v)A!HB<P<%4`W 'Z�.րH#mPݨ 4eBNycSh@z!al@ um*L<N1lJK}V+7;,K/;U2ăG7aX2ese |$�,0 %!H F 0C瘑P @ܵC&CC(N"L!< PB!DjT#UGm@+M/ Qo(mr ŷߝ-Q0y|wbux~TuT�:a~'zӬ* !@@uQqib+>+R]eO ̀$vDi=T 47CN޽oPC[<j/v;�?5pb�-:` "(>ЕL} fPicy4�%yF M2VDR)LA.Zt( DσCPGRpG$H�@x1 J"¸�`Qim7FB$PQb\c8rEA ڰ%[_5q"8(@g.Z M@&aLCFI<Èܑm!9Q.dHB )<t|KV.x˯DQA<FhdP$1d`s)fRPdeLWDzs3!ό4"9hC' hOT?|z @ τ. (C(ɐQA*whj5R.ĜɃr+ *fIY C}WzE !D�p>Ħ8 NS4}5fLR>J!;=Rx@qk�ʭrP('�+.`W>Y*7`l'qTj!UHdX[1lf)NֱgCk q$aH1! i�g00H* "Hk$c\hIFcHU,#j؆< /D|u\FLށo4 ov�Mlo:Qc n.p:<#40эH Bd c8<DW YFCL�)A %Qe\(Xn˗ 0Gd 1Q,%-xs!)Y l ���!��,�B�h ���H $ bn$tNTĘ`4ܱc䱥˗ iyL5oYP&M<)&ѢH2rA¤X]&  G#9]/ǖ= Oxjۄ�jܽ0YRVHb#xpKË 6JXd#kyI Kh`1GNrk69;P,nx \|9; 42a8+Am&`i D1(Aqn="0RK/tF2K( .|K ~@`p! -lsY=G䢄\@Ӟ<8Plc 8dG$"*0 �P8.rWEBzq@h5 RafjH(F7,>9FH)PUH`/-(AJJK OC@ 蠅h�:S .r{駡QmzD( ăG7aX2O\B+m\ xfmZqěIų9f T7!R6^GN"L!< /A!çNjTS9*@ t/ $A_lƮqL[|C|S$LXFs)6ۍɥstpT�(1;=P2l3A&|I<#3k;e۞kp0> 4H0i#0E<1y@�:M#K3U.7x,uyg09O~@2;z>7INxҥa;1l T99p țpK3\)Nŭz:R|"$2\y?G1cgz*>3QrfI` QdL+�%>wt�(|2 9ȬnOx%s@aCD8La)^2@%z#%HQ;b9|}@ *G?EqUD]3 3Qլ6])cgΑǁxbHxdDt#jxX$ 2gM˸=*!H8 ;0f2�,]J� KL�%2Q\V<e*Wy^2#4gAkS�QPLN@Δ!YgL1]BQ~Cmɐ2k�#J5U\P⃖!4+2t�#H2y v"OmCj$wc_-W*4/B< …/!IQ>ѴL; p B=)RSԸŪG:te an`Xk[ߪT:՞~eR,` x@Rة0A1I_�#@ dw88=YK. zEY[UN8ځ6(�!��,%�B�� ���$*\ȰÇ#JHagH1 X6I!<eK+]|X P#a!RHѣHؘ4|,qE( 9QH�FprcB\Kq,g ִ߿FP@^:@ 9b8ա s,':1FHq*WgӦ.1Զ䅷9氉�>%<ML8bB УUחx@mCN;S #|[6ѬSKrsf$T7!P96@%CC@PN�@ Pa DI0I4 Ή~%C >!yiSV!3?҉ؐ HpD3pN3ⶠCH;""T {(I @䛨:b;-4Aed[24 Q@�R@�D L B :i&T) )ʩʐ: ;C! GV P!e�RBz-,%BZmfJj" oڤsL2x95E�c{/>q93o�\<yJtBC 3B+qB Tq�gsn~C&�R7�!��,�B�h ���Հ @@:Zm qxC�:2fDpQFkp⠃P# ˗00m̚7{ -s(΢F*ee8j+s>˸ˢDœ`$G�#S8 Zlar%x+ )i%O 4|v1cTadHq^gL_r摣 l= K`1Grm/AtbVGf?+y\&/'nsCLaG<`k`&| myl⮠ r7|-s, %LE%/tF2L 2 .|Lx` 6XP$`AxB'&VQ"Ava�Ta� -ǘEH*@lcʉ)XR"*4]wÓ/A.ăs{AVv%:č6&1Amts#L>d9a!OOLi FS)d�:0:o袊6zΣN�:  .rA*+pjQ,/ͺ˪j�Mhvۨa$ 䚋nA;A&'+;& <zDUIМ�7*IPP 0F5>mȠ8cvB#L#LʹcL[P͘|NSȌbDsf4J;m7DȵKP(!=o]P>SI^vm;T1,g.A\Pbi51}2,8�:f˹^.VKC),yAc9\N<\[ |V�zMc<�{Cy3Wٶ2 S;� sL CNIROD1A@3(ǿ1`b`,w;A S,XxDV YD#a =�rfBx^`\A!aoKa6<7A&D!HFY!ELF,$%G|$PNT׈;QA<b2%c,#bƜ<b$+˃1dI;6ycȓ%>Py0<_D!@! QPVV IzPD"OV��mLrн#nf�YcmX\K_�(d2y‚I5̦8?4y*cBlAL N:�a& 2~DEB}c$C5ѥQs/W+H2y v"Omk wc(KBBEHg= MmSwndށo4M6Q XթP>1t+A!vd �_ حvMaM0(0Bb ()L & #` hyrxv9m#LNԂFq][䦶N8ۂ&Af�!��,�B�h ���M@BZmqxC�:2fDpQFkpP# ˗08ɳL.wzp&QF*]ґ;v`iX,.Q sL.jٺ* !6Ϡw/,rE4Ҡ0>|2Bɉ##ƙԲNcjۄ[Vsb@r}iEa> +)pжщXϘ v\1 \S:L=~I8`k` vY6<T]6qg}�׹ͻK DY7<@$r 6S 6`9 *`f A*ȠA`0 -H:X iȡXW$c\@VG&d�)(xAQNK<x1~B<pP<]A!oEqqթ#mhP4:BNySh@\!alĄui0*L<NU9hVziJ}*7*+>#鮐ʪC0:,5kk�ʶj�Miv a$L'-䚋A/@ jNfT7!Y6Au"K,&`o�mB9=.P$ʓtn'"¤r�,K'&+r眬_S\rQ>5 sN=�!bۍrstrSpJ4^NBrU$9%&4.#&wSA@j6ag"(DS9朿VU$ *|OcM^u<:u1u)xN:.1Z^o tA3gNpLH,P*3OD_8I 9@Ncg}5N&ɌSL1NA8#:%QP  nm"k] M B$s qD&08| 2 9mzSN14<�8@!×DPuV; P Ex^L,%%G|،NT,h9-�*GhA.qexQ y@ x@%9pꨓEč$>P@fᝇ ":5Δ a XЪW!DbOV��5z!3'3x 1 xd"�<җ�f նmf7_Ӂ4ɧkGS4? =9U}\)d�3nPQD@mɐv `x)&x' +W @2y!vOm#l ^dwcw:1U.B< ‡1MqA5;p R)VT:kβ6G:,uu an`zk:�rի ,taL�GJ(SR@L #ڞ\(mid.qQ`k$�!ml }�!��,-�B�� ���$*\ȰÇ#JHͳMbH PKmB:#y@'KX-HHeѣH*}CDc, LDI( Fr020_5(,X'pC ,[xNඥ tcG#VZqpr &�>nD.ru^͚aᧇ#[Yj{B sĝ"(-L8bB س~D_|E<\ڛrB \!ӊY9 v{LQfcFB%pQ0d�_B84 &@ qw%& ;`X1C*@<q*13KD3܇΃=aCȀ_%GE ġ�P։:;-4Cfec.4, 3/TiB8PjvjjzBx6ݪh=NQCHCjd QM'WP�{Q`B |M+-E bz n܆{kZ#C0iS25E�㯿/>K9o ;$NtBC3TB+qB q�LB*e1d�qC@0@�!��,������!��,5�B� ���$*\ȰÇ#JȰͳQX[$bn$tHN/d%7%IecӹhsCetҦP"U4ƩV&u"3.L'alt]v8 eeQ`"JBapT0#)܅"pPB,\` @5^X嬭hN24 +OvlX'ގ6W*jnͼyķ\X@^:@ 9bס @ U;~8oEDqC 'mAG:AT6`,0v x qCP<Gm3CLE%)tF2D>АE =d\cBxB'[}8@PJI~gjBmN%p1ݙ}*ۘP$]Р.&*%'0A $@@)WJ!ȋB<P<�G@"&TO %PG&@mt&D>g9a!OOL兄 FQ*->d�:0: F{δ^�JK .rӯBk/�n0 o�Mma$)ܲ?aD%,? @7*D. yP SV�ݬQ� r :ΐ7O TP(;8U6r(">$w�tSK'Gnw}2 瀵wߟ-Q0y|wsvxvT�:a'z7s)'A>%Qpir5>.T+V?< $vDh]%n $CNJS]?_|O8ţw9sahUݜҿQ.:H3@@x9?%ghB I1jB(5Tc SxJ Ֆw"cz;"1ED ܷ?ȏ!g>N S|ȋp73+hXpGA7GA0dInwG<zatH fAA|F2w D ~C4C7`Čb DyH,A'rbLc RBČ2H ~`>Y1_x> z)`n t4Kkr,`@ΟC=h9Lf:"[/ _4 >O3?*0@H.dT3@fq :5PͣU SCHinFh%EV�W{[rNS>�QԦuo7͜ZӛJSHU*STjI]jL$NpkQ4(]b`UtBFN*V AaT(VMld�<ֱle/k&ġ q$QbEH1!1T腏h1?{An>T2y`r!vp%Em#uSURwc-+^7B<+_h"u.ty[|?x>�\&$*pK^Y;jrQ8/8�s5BXp�;6~H2⅔X 9qBT,0N� zV:�MPQ ↤U*00"0aBdrC- < XFJ rQ�!��,�B�h ���H $ bn$tNTĘ1n*()c鱥˗熴<�4oY0̚<)&ѢH2rEc Nb`wY2P3`d 'wa,{6K<8&kM, %h%ZO4Lv1㝅T`䡈u^ygK]nHCrH Kh`1Grmj[UQY`!Ɯfqo>-X�e56p`M0w<(=Zn,A۠Ŵ-d!P$\BAg$1q :M'x`  !8I-(Pvt X#A8r%p1i$E69 eA,S-bex/]�.ăS@@S@OX P_ Ա{8҆э/ϣj!䄑<>16\ t&KrJЧ)>*9Zi�v:iJ�7ʍj믺JʪAkk<jăG7aX2ނ+ ,@lA9Q1P @P5ۜIr :ΐ$A乀 ̢:QMO)v)M0 Nt2K*˾2N[J5PCT;QM?q2Ӎ~iu���:JtaDHKP@ ./%q&3 g<1O' M d2|p\S4ʹ砷T@<Ua]yOyЭ %]Psqz5<Ls<:uw] S.߼@ d&\R*L1$@<á#zp­D6I 9EsɇG@Qpz?2 3AA0j<2QAC]Ca a>QdL [ #Ө@Ժ;z(ihf~|a(z$ G3])B^�v)<4&CVp24 .%a qɱwtT#݈+:@-a_#'GxAAfQ @#:50ѕ`rи1y*}*_|a'3v"#3́@%!qS ɤ˦s87 /f3�f�ND^N<?3�T9Z* HAqrtWxH1! `�Ɩ\,I1tG4F`P,tb ɸF2ADa<i<)3s&AmÁ.9)>TB ]>#DD58k9~7PƁ MVJup#j5_KAȃݰQ XUlc :wȭ20<b )$ Z H 6k�p`0cb*ɱqZ[#-oN8܁ &@@@�!��,������!��,=�B� ���$*\ȰÇ#Jm 5QaH PKmB:#y@'KX)Ȅcۤ0Ύ@Ǡ "]phѣL:ڔ(ի@q(ݶ@ SMeٳQ}dEiX$,.Q sL. m^B5^XL dɔ-UF\ "gI>pD].,URpSZ'TQ6#tZYpzA D'F`|Tp-lx>@?l_p7|DBN S}RE\D<Q4r@Ð65dB*1 @ {bbBH7<@$r B 6Q;.#BF.|i6c7@$8b@ -`a,NeBK6fdB4ԖU \@Xwg�) E% :B^V Af)�H-9∉B<P<UG]B&[ qm#mD+m*F7qB>6{F<@*]H`]Bz C Op: ZN[@.7*l<{N>1pp,̮ăG7aX_wa$ޠ7$r>tl%LĠ,Du <zDA\ʞ᠐&*PǹPf׵.0NF5I} HܥvRFl{p{l@*$d7CkV荞UK4Dw<ݰg:]ᾌ^:Mo3C[�)T;VDIInK�O!e3T8kFĵuuDg eR CNJDCD\Z/8SWW9Ʀ�u_<t1P|+&x40c ׺  R 8'V(55sH*1)HD y@<ƒiy.LH*yHݢQ$*o�2a3cu[CVD@\RƳq#c h9,rA!J<9>f 5J\?@lDD|AAJ, `pʊ!{C)DheB` XI2Mʘņq@~?`1 @r D3˴Yo"S X P4u Fjxy&DiM_EL *2Ġ%BP ԡaC �Ht8dJ %jy;BDjjEvnK;. @p Y< Jn>w!j�r54�>SטYUwnP*UZr5S O<)E%5�uV9Dє^W�b05 2�ZHd2Y[lf/+YRֳ,dAY^2(CD`?H1! Di�ƣGg1ek$c+qE;#6Q:Y &AmËĮ@B 3 RB$ӭ"v7 L z^qk`f OOX tA�C*0~_mPWG/ qBd,8nH0a)0b )6nH % T"\�)P.͕ ,Gd RL$`!E;s)99 !dH ���!��,E�B� ���$*\ȰÇ#JLm&61@H PKmB:#y@'KX)ȅ6FnSǟ qxРF*%:aѥGB(u՟̸D,(f=ճh%ȨiX$,.Q sL. m ո{aaMXV?cya煢GVx:ꈭG Ox"O|m]q3JXCU(m^�UQIZ`lp 3M?[TNDBN S}D\[M#$4K09t UP,97p! wl#CLE%)tF2D6Ў= 2@9ֈA3*.|Re|N !$9Ԙ d� -�t@lcJB\eB|ЖcDp"g*'0A $@$iD rfC8r".(OS iHՂB(Aު[8Ƨ ϱv!䄑<=16@&DRеn谺,B@.쳹 .rSBk.CCƛ@<xt%F@:z 7o�<rBoCj20n3C Bz <zDA\ࠐ&@T[]P ̰Qi_(m )sCl vGt™ 6gk6{[ʊݐެ}Vu-)θ O7-wyTwxW P\@δ 5o N.VBfx{BE#%|viSPMvWx 99u*ރ/C#Wس}�q~csF?z3x u;`4W <8ph@/u/cH2"`a#yF;T;!H*1)HBDy@<ƃ]UH*uy G -"@9aC>L RbC&UY:_ ٗt&+k_93j-lJިx1(#*ш8(�%4aˆ;ޗiAp!&0�Hܑm,!9Df\H.3`cH &oijeǽefei )f1k2l1-/mb<9c\s!Д&5%ҨUr96AF;g@Ot!A ttT|J Hj1|A9M NshBP e8eB$Yvd`@ P g8;f˛^Q<m:*�,\c~L@S\Χ5=np %53ZԣjOYVjT#I$YV4 LkU reTZMU(Jj!5,>"ֱel�IVVdD+EN X`6qd#i15(07xeBґ(H<8;в#6:;ȱ yh!E.֖2 3OB$- ʚF|v� b|݉#@ ` Dn7H�_ X >ozny됹2 BD @>K2�MKAOR@p`*Uܑ ǣ12]!(!MVʓ܂��$'Ly)<NH@��!��,������!��,M�B� ���$*\ȰÇ#6l6u1 X6I!<eK+]ccp 5r2 uxnQPCC)ĢG:*ѪX2D".Le4h6q贂c, LDI( Fr020_68y 7R9jܽ0˙ZV-H?G =jӪVHZ숵c Ox>Z6ȝFVJXCU]m &�>ЉXϷNN?a�ϟ]D9śCl�qx`pH$I9uhZIlM#$4 y ic]C-By ^�EsZ098אM7<@$r B 6QK.$RF.|DBi$J2$b(PQi ǥiU m嗗 -@PlcJBY0BlW!!0)L rirD8#z.|Ꚋk�r7JP0c�9<#mPP dmpBNyShé@v!al@D n*L<ή amz {.~ 7 0*;2TcăG7aX2Op&rp pD0L00 yг+Ǫ^jD. Q<žcFB%pQ0Wv iJ�*d+>AF.\B!SmFjT3e;@H-/Bu=7~[ c�38mcfo^|F͜әz�0^Ay SP*W4 }\�N'mqQmi"B6>2l.T990qp/hS=7Ҟ@{�:ԑD/?DC菶>匣xhI�*!عx !HٗRRKANDB;A$π7!DIE00IK {15u͆ IiTB B  ."@9"!V>J7Ad\˱�$}{#1%5)m 7QcY2H*!  yHO]<6=(@qP�hXC q"�*F%dr@V(=$23?w$DyH,A,s; $BؑFdH &p&IiPk BH)\f3͌( 3K @mqgփGa 6)S 6Axf!eHBzP,ԡ -hDPb("ʈl)" 0 :5ʤ hfčEv"Q~ BY<xMEw˘A PbԇX ST@Q\aTݩ@ŧ S5X{G6#*lBpp z_կvshGTb/CU*$X cXHlf'[Y`m �eD;-dk5)I,8̸-hRH[�qdÔ /xl#*KMېG[|T.C|8�H%DBށo4 a/t �׼Uo�k<Moy n�!v-TX,8"}eHb8!/H0_!!dU,`T1@RUf 0A)1r8 +NLrD-;˽kAV(fp`9B��!��,�B�p ���H $ bn$tNTĘ.iIbc䱥˗ iyL5oYP&M<)&ѢH2ȁ$M&2(0e0g8*N|hڗqԸ* TYΒzLF.xN†[&vl:-Lǥ/a`ݻyb bmiE]e0SvY ItbVGųfG=+y<& _f.}3[䀴'Y j=7#ew|xn՜LLE%/tF2K 2 .|KQ .@`0" -H[uȉh m4G$\@CVG&d�)(x@QNYLtR8.sWQ^�&':ɩ#mHP4hiBNySSh@X!alui.*L<1hJJiLVZZ�*7$묵Nk�>Rl݄a<m9&H rj.z&AWo11P @TE{q"<SIA @PN 0F5=mܦ 0; 4r9&Ǵ A79LL^$ut3רm7ȹ PDLG@^=JP%Rib]svL<ɶ@i50}2o�)�:MSnKY%K>΢3 g^wt,{xKg[V;Ц~ӽ > Лp\L1$@<šo{ u΄ cpD40I 9?8ft5<r~ӑ_dA SV7u>@)j$g=4 =y :qdM( 6G MK"` rDM3`<Rdh"<Ryh$�MGЄI]> CuqbW+f0VPRFQ[2�¤Ǔ#8  22qyjۡ`|C? 1Et#jX& 2 aϡ IEzPyD0NV��kо'3\.�SK�r t :&k %e�pA1 AD2}sӚ`טă ;ON1!6pO3f7t'RAQɉmɐ�v `x rGiQi F:!sdKɸF2Â;i<D5l Q;ȱ y8Nyӗt!p|1×ȔDYPh�tTGMR~m R-|c,RWB" uVŪVш"&'�J�<BJbL&)hu8 `169.)-LFrmA :�n[�!��,������!��,U�B� ���$*\ȰÇ!yFq:j@EdB,mNcIĒ%-]>3Kґ;p 5r6 xns6DТG:u ujĪVNe%b = 0T6]+EZ4E2(0%0g8*N|hbżm q,glZB# Ԣqti WZ鈵ž[ WӐ)ɲ-p[FTMiy�%,!^V* 1/D'F`|TXx}ѤmマǟU9& y7 9pRN']D<2T4R@Ð6-(h' O :)< z IEmp3YI" lsL YBH*dD'@>)$F AA -`~5rcUye�x^&$'\@ PlcJB桉.VUD 24i!0)L waD #3B rB7^uJ\B0 4րH&BmtgtTk-qBNyCShs@x!al@ {n*L< `dm߆;nr@R/7˸o p�k>LQ\q݄a<č\9&H }r3# o)cOX  "0ܩPu <z [x* SI�>3S2mTB9>0 F5M߸ ȳv&F|w|l@*8}ؕ/My�/O75jzKNAg/yB7s�܂3$$\�9+4QoiB�Ȑ(6F~ MAqGtwZ~N|ESǬL;T@<v]J�p]W⑖ 6/i)U޹q])@©+"a @,i <�<Æ,Rl@$A< AL=%;O�)#A\D$ rX![rD |$";Cؐ灋%`/i7 W(1uxt$(Ĕrd(F6T8(h:ܡ2 =@*QLC᭚%KjܑmH!9q\HZ<` dH q&_1�@>bQA<+h f5Is)5)DMd f8£|.ڸIB0TS UCхVT E2ʆ!iS,6< D!\ !@�q܈O*D2!X0x0@ D{$(3z3�&<H*F*WTt:Z*w5 8*Gja) Hauִ!↚ҍ Yt֕@>;rִE:5D8 �xt#Ț@v `XʀnC'` ,t"!ɸF2ʅ؁Ci<KZ;ȱ yQxk^t!/` r׭.>Σh3bttׅ/K8@cM|a t̃,"Ç1�A(R;t8�۫=~F7R. qBt,ن8�?17„X2] @'5q$7JF-N2o_9"dnșfD- yC8�ʍy!m `��!��,������!��,]�B� ���$*\ȰÇyFq}D(0 X6I!<eK+]()c P#IN:<7d(( E"QM>(իLqX"̅>*LU4 hQciX$,.Q sL. m q,g'W6 24�+?/4jC[;"׸B. qk9X@^:@ 9bHס c$!:1{k }Bػ�_uжgGaM  DBN S~%~M#$4K0MאvaP8%`69,:$S -d!P$\Bg$1q@ģ 9d *`�Q7c?A:&.|g#] $RWPgZКQp !r wgB) E% JB_V ``Lpb @Ir∋B<P<e'"l�W Q \ Q8F4 Dݤ 4oBNySh@t!al@ um*L<N 1lJKm|V[�.7"7/No�oRp݄a<mǿ9&Hz|r+ 7$J, 31X Ń9f$T7k\ B8N"L!< Ч_=5C!,GjTZm۟@/$d_fnw|r{l@* 7CmV|mU>y�WT< sTyi⾜NA'kJ�:'T\�1PliR;>(2t6ⓡ@6y}}?SyyS፾;T@<ryj07˾U<g)B?̯~fZNc:"ѕDZ| f0i�F$UrH*s)LA*JAt$CRB(GRpG$W*( A=F"`Ddvg" Zԟf"NlvPF4Nnƌѽqt U"#I` �MAxUbH(;iaq #J&sGBXҕ %)jdBB1� CJ04/F͑ Q3ift&4a3͇ 3?/Mc|9Msf�ͅL*\ 3BB& 5hDʅ̐!>S5<D!Z ATp(�e0KÅH` �d@wʘB �Qbԇ54�?cP(s D Q*ȊUsjR_<95�uV9J,^|5|Q�ȭ2YTXd3KYZֳȩ(r  F: y8M K0Ŭfg` I51 \zFcHV,#j؆<Q v!҅x)!\J5"P|xLH{ Xݔ]o�[< UyD m"y@$/*| ׾M# !eHb8!/H0cN6Q>�MQ1X!FvR`A�S)"Tl-H?d#f^ȗ�!��,e�B�� ���$*\ȰÇ <MĄ>]LB,mNcIĒ%-]^ܱ<.L5$@* ƌBc, LDI( Fr020_r M,Ums KwaQ7Pb:uhŨ5r8h[7E"S:u3{42aK8+Cm"^Za ie܍>B0d )H@4 șgAx(Sᄭ*m!4HMwV.LCD1sfOO]ထ;83 |&p^�m%7eh QFir\�nPvh LcV3;¦!|=C3<P�:Y" Q_U)t< ġ�?fd|#60 M#O0NE`=X”6/)43 -( 9)RКi; Ͳ=POҐkGgwJi*yjw mW筻j!^)XBXpM:$#w 0p�3^vٺ,L:,4aP'4.C.ԮB&@6jfC&�p6D�!��,�B�p ���X@BZmqxC�:2fDpQF %#w P# ˗08ɳL.wzp&QF*]%qţTӔ2(0e0g8*N|\6a0yո{aa3 DHĎTed)S3ΤCtOxrqj`Y8 Kh`1G .qo` @tbVGEgEKxturΙILjյa{ F Rn}Sr : @ `NDe7<@$r 6Sfa9 *`C@(!b8P$8@xB'2V@Fx@&b�բb� -�U*ۘ2cL e :Ot@&#B rA|7P~vW-D`5 R{pġ#mP tijBNyȓSh@`!alj0*L<qiJ̺NƖZͲ ;l::jrăG7aX2Ojnj ,ڋJKKk 9lrB.�S<cA]&@>3S2hJ�F|.d L<QL2Cx)biN@ tOt$\T:9P  <TK uNT{�O7@ֶvgtVeCw/rVd=0HSɠZo ; 4H0E#姍V/d3+}Ns]SǞD/ 촿T@<^L7%uQ is{E:tM?v<:$v] KS~'7BbӗS*L1$@<͡31~4L(7UAVQwDB8GÉAE`Dyg]b \PuqR>Kx3J6$MOI꣡ 還gOC 5CzcTL TX4`U `gw6XP\j֭鋉G乤JHwvdbH@@X!+#<@ $ -)AYX@)s$1%B)HJr ;R wph6L 0ԸŖL~eB$ 8d`@:69CQ(=3�9s8,\cu16M#ԉnpi3&iwNN �w3(p � Y D �?r�aD]6(BA M6qdb)7 45EaP`�F:j9g H<;ı'6A7&S;ȱ y&B-@JVƤ 3 .$[*Ӛ|FxrUO\j�6q8LbZt#h@Y Dj7Hφ6 _;XIBLJmR@KP �HJYBBܾ$R =�Q;v3&ʼnu]ݣlw-H�p'Ewb7��!��,�B� � ��e�X,1lHCr X�E5P[�SC.$M�@*iPƣR%@! *[')X9`X& �F�!��,m�B� ���$*\ȰÅmIܦEI -B-ݶI t<!�D(Q"0R?- P P#O8<CF& :ҧB(uU̸\,hBISJh*WQQiX$,.Q sL.  cTɢXKq,gnZB# ҢsB W躴Pޞ[`VӠP& '<'p[olyPbuhOgYX NtbVGuo>�I/P]Clp i"B7 9pRNZle`6  CdGw(Pc5Ƈ 5Z,͂ IT}Amp3YI" lsLBDE'X:#BA=&.|%}BQNYe�5a &\@X{g�) E% zBcV!(: )�QC#>@.ă  m&Y+\8-T9 EN{#mPi!>6K9FP*]H`]Bz C O3Z:k_V+- .rB>@;D+g2̮ăG7aX2qs1q x$ YJA5 RGj͂0Pg <3@A\B84MA qtP L?Qk_G)bElQtEf}[ Pޥ}Vu�T)θersyTT�r{PnxN"L!<4'B7DtCIH$.nә~'ui CZ6q}d[i9ƷBCNwPyrUrZkZ\x ^BC}R@�Bi bqH : (wcBLB\" -h:6"L"%B4#4E$ r} Vwj$pYH*!]y>=MbN5*ۄ(cl,U̡1s KRQ8}b3|XG=8(�(\҂`<K4 py?BA8E!KIV:GK!Ic�n?+M$Koj�c)fK6VQX�\3c2,%N#=b9L89VB.JBQS!dH@;Bu ł& jZ 4C6Zp[^\VJ� $6 {G � CQ�`tISq6e}vk"CUS{Q-6ӟ 0c"�n< 2USk=S τDF{FOj3X6�ARbEH1!"*T"xI, |(k$c\`iFcQ}ìCj؆< 䶹ݭE|8�E\ ["Tށo4@ anlzL v&z>1u@!v}VLXѳt�#Z4X!NH2Xb LX))s8p -&6 Bbެ> iEV-HḄC'qBn<M, �!��,�B�p ���Հ @@:Zm qxC�:2fDpQFxL'@ N[C&0c pnsgĩσ5oI`Т:"]ʔ%q$(cIm*NǢ`wYRP3`d 'wal6UJ-(,XGPf9c J_Ji-> r2f!szfϨ:']< @T#_aZQ8YiUQI]I?6::ֻϫa5LS=Y[gCwc P~5N�>c6$AQմ-dAP$\Ag$1qġ HN'Tfa 5jXIm֣A-c�D#>R"\@VWfe�):eAayL!tA# B@ rAWjVYTBEtjHF7Q>v 9FڼIWH`2A kL O#(Av駡Zj�JS�7ʍ+,6@:k�M[ a$X7ޛ/AJK-Hq*hAys4QP SR�p%b\ qBLm.ä =Q P&[jz)RL4`p'05L!A92dF/=WӦE=u4O7Fu2:mfvK41”qT;PϗlL'#Ϥ22VztLmSǟ:̹ô\WVT!rkncCAsh9\37t9ǃz@3-v)x4ÿg.;,;:LP _L38xLS  TN$K<Ȑ vj#"8Xrv׺խv &N\ ]Pl,إPe=d :w ӐCW8DiDDI,Akk R]H7&W"&E :b 1�\ #A+Ic�.gaq:JJ阽M&Cq xAeD cEe⃠2!XE}x0 Xc>tHQ� a%kD&e�G5 1-d\ :Ysa�IMkN'q�} 2� 8Yǃ0x2@%baAH1!Ap܄0uCT+h)H<~x;X'6ґ6y2SQ;ȱ y @PzTt!p|!Dt=InF0XxjTZ�cZJUt#x AWDi7H��VjXФt b#�$&�’2PƤ �ST>@QF S&kA[v-HCs '=m?�!��,u�B�� ���$*\Ȱ6"nSPP& t&)�tT�JL't-L5$@* MbFm-&E2(0%0g8*N|،PE,@m0XmJ:,T#PZ1p�$@TMHil  /0ΆjZ@UL8bB ЏE%ԗ# tzfR|I`¼�5i4 OνbVC%=g&a nT^Sמ7N"L!<q@GRHQ2`o y'i Q XGxB)2:J0SL!y =]2TQaU3&q(@�C,U0kBSbCTVM6-)43 ( )ʐU; R=PjhB)P$͛R@g�L_ 'xF 5aA6<5E�#E;->Պ+0 ː 뛮1Fǐ @`0Ǟ@�!��,�B�p ���M@BZmqxC�:2fDpQFxLǠtC&0cDxnHsf sϟ4m F}"Mʴi�f\tHd18H4|, qE(9QH�Fprs\/dhۄ�jܽ0˙SV\ Hǖ4ff9SNʠSÄ:Ox nHCr\%, / ӊ:NjJ@,jQ;O܋yMUjX�]wY!p0HyWLs0I`w5mp3YI"lsL3}% 3a8zE.|£xAR3 yJ4^@XjiPlcJ?nd�`АN T;Mn> rAg%wW-T9Qa q8҆y͙3Ϩv!䄑<=16o 4&LzЬ*:򄪪kʦjlp˰@�+,C-C}۬@<xt%@:z ɝ2/\OdSBl 9fT7�`#L(1;83 |І.(L!OjTCnź@P/LfA=<О4O[ OiPG]}NTL;-اMvO7v@ldYmPZstL >/Si21>O> 4H0j:sc@C#�:1N.n64޵AH|T0<GUC)ˍ=r$ރqÉ{q3SH!Bc:XI )|f:ꐂ;"A!D GdbnDGDt2�! F<]a@*@Ec3BA~ C z æQ �w :w Ӑ:g$[ #L"` rH'V Uă}3qa�h<Σ*MӜ$Gj > k/,T8@@ JI$*)@Zػ@)sH3t4%BG. ]t39'GtbASᘃ!y7#?Y$XxH�)<!3'3.�hToS&h"!<Tl9ȓ s5Mz3�l;)։#!H!*e3*e@*Z�33@�n F#�zFmd%X�6v `))(cQ H0q$ɘb7F:Iꀚx9!ʄWHVՙtp /8J'h ֩^4�gGZר< `xt#q‡c!�AC _+{td6�vū^!0nb;(\2F�LL�D5Ţ> &j6=S*0'0pld:i.L b @vcl.S[�!��,}�B� ���$*\PagkH1@ o& t&)�tT�JW$KwBFnSƟ@B"]thѣL %*ӪX2D ha*ldmci3N"awYP3`d 'wa,|8q z(Tny ո{aa D[xkOF*4UӨW+l4PV_޽pk?iH8KՅTKY@^:@ 9bxWlL`|چY :1ࣲTY; }IhQ&; 07 9pRNA:UT6`C\ymw P(T;@.sC{t ICmp3YI" lsL-BPJIO'dDF"$N*AI&.|�NŦB]~f�Em '\@3X&h�) E& E:BoW?9�!0)L &�# rB(14W B$7JPО8FuhF>Ýc9a!pOL ݅ FQ*.Vd�:0:ކ;n@/K .rðBl Cd nRC@<xt%1;&Hrg3:'4q7$&> +Lļy 79f$T7!ty'+cB@('@mBe20F5U& ?HI w9~7E�� =^[p8 0}t v:TSB] c9FC$ + TueWFI nK�`?uS`+@iSP?ݝ؞C@�:+PF}*BmNr1om6S H:>!KV(:hvJba\ M5j Ek G1(j@OR)LAQAtdmEkBQ 11<H� q?�2q95+Nlt#[ذY5/c6xt`*' daȕAˆF<IiHHzz̈  b D@XDAA0Pw0!Ӑ֢(%XTb{L!h;%ȱ%1niH\? )<| 3YQA<`8lvӁҤ5Ir!&QDex l|s3! 8o 56,dUD"E (>@f1 h :5ͤ 4Dl"U)+JN >Q g_�ށf4�AMQ+*bHNwzm==np D!kToa-Pf0#� 2U zmVJ΄!�Re(@KX⣨@5 "4Vi&ɐk�Spj x^d\#xBPL4HJ?oS 6!NJMrː. /dw|.0{w pfB+\rź.w1vWtcl y$p@ |%' T\C ^tc Ab#!&�ža� #H Nd#X r9=jF~ 7R1@와G.eP8 (Y*)`�!��,������!��,�B� ���$*\(ͳ1HbH PKmB:y@'IHDY`t$\2f1mjɳsC(ТHJ4ӟA\*Tf\*͜; FUNE2(0%0g8*N|P`ċ TY.m!UF (gQA.=]OMͺBWE`ɕ/gNxN6hm( /1KJ+ &�>w�UQ-; |[7Z=W桧 DBN SYٕV6`,-tYǐ qBE#ZT)0qBN<@$r B 6R?.$$F.|~A<$\cBxB'[vXe�7@OF9e� 5 )e� -|@lcJBtfBPUOM0)�r8"x.(OpF+ClyP*AL᪫L jHg&F7k>6F<L*\H`-]Bz nE O29N[m�j >�7ˍ @; n�Mlwa$)k%?1pO^7W+Ur  <zDA[ B8,*>a 4uXmXcO30F59� H-E ~-]6qh{hn@*2 6Cv9YMw�OuxsO7=7yTyMߚ'NA'4D$\u\�/,BI<.-%&gK ӳ/@<q@'5O_Mg BCNv߇OnW紏[<fiksqNGxt;,W <8D~�I=ayFG$&@KR)LA/ZtC4*a5`=B'@93}} tSbE0815P�ӵ�ǐ'rAX-7GA….)x2T"3؃4`TA0PAw/!Ӑ,U`\(d)h9%$M%CEQEdH 摒�4^0 K@T[rsv_Fe>q#5bM9 �Bs54BfVdK)r̹EL }NhA)2 EM xGAAVe?լ E2p"X+x{ rVaJR2<5$H4),3OR0fЩG)Pz$ʱ�D-Yb֢I*@ 1t 8Z-į fϨZJ0I<ik�CR> (hZ2y\r!vheQmsN5PwĐcbf+6-B< B-aka{;Q!}-Zq#\nAjG:Q᮷j<\ lwR}K]:MhK{Z!'mc#!&�›� 0ÇV"⢨0) VΉaSqS`,%`!6ړ/RpB�!��,������!��,�B� ���$&l6u #PJEI EB-ݶI t<!�D(Q"0REm -Fn˟@#r\Š/"]TТGJ t*ЪVNeM K$Z0T6S[NHX]&$ G#9]/>s )* TYδJM(QFN-)iYZ!֠"ח/gN']< BnC lL K(a1G^V!w>%1r# >*s;ݻҶ۷(~z9 tC 'ԡVw/Re`tD`}Q$~'GDMG^Bl#EHPLE%)tF2OF"ђM>  �8_CydEb�& -ɟZr@)$ѹe� -@lcJBgB:UP5F`�!0)L "ER8B.(πwDqeE|*jHp. ? ϴ"w!䄑<=16 T&Oނи*-XnTy2/7�+t/f;p�K WF<oăG7aXR^<a$81r(rBEgy!$ jQ Uf$T7!rm:No3Et�m@B9^0"F5BT H?ܬv#mT 9E�(6]|}#E8HwX]<;U/QSNNzB#x�[;+\�-3'En[;�M{Xs D5{BiSP@vB 99uoEEK?zU<i-~wp֟Wܝ&/.sϑ4~c`)dz: <ˋuTc S<$xI;hRh_T'�Ƞ]�H(o@�2q8o7�%vSKn$<`"WƳ6T@(rAX?7ǎA0, V~;d ExO`{P&�j)K TXK4f zGyM1@<>p =6~xXV>u-'̃,M4]P H�Ã)*fK` 3sc5L|J94^Y@ AS<\A "4iSVu(d;@Q*{^D;*@ ą!V˥� # {[^ � Q$+�,\ÂhH0R7ϥ$np D"AS<MOZӛgPⰪUqC5:RS $b=P MVԢZ)(�*< &E F: yni�`|1_<ExᨱJ51LF\J#్tΧ5rlCVjZױ']>A�_'-iɌَ+?x>�3*$=n�r6�-H]cH<|"݊0GiA@M{6E\cU*L*�v&\`))(08 @4^ʃBal6/0P6lOmA<pHyqDP<��!��,�B�p ���M@BZmqxC�:2fDpQFtC&0cDxnHsf sϟ4m F}"Mʴi�f\dDU9  eeQ`"AapT0#)܅"mܹ3g*6a@7w/,rG4Ҡ1@y3B͑3CֹԳPer%xW~u2XȰ1s<|w}@,iK.z3j^S,AlY[#lg7LāJ1{rN[Z͓6$Qմ-d!P$\Bg$1qġ HN'gOC\~hP$بAxB':7(P/@y7՘AL%p1 b%E6I&BANT;5Br/(@.ă#g B]g~րH#mhP(i>9F0)PXH`3AJL O3VSk* .r,3*Cښǭ+l�M,Ǯ@:z 7ܽkд^ SXw )LdA%pQUpt(B8$ +%APΓ#0F54, 2?Iv"s9>E�D=}TD4Q0x6Mv 9 <}/u+w7#D8B͔Dq;1S s 2.  N7,#M mS;۫պԾU<6{v;A9TM@] ܟ39}oL^:SH Bc:W3Fƻ:HDi:�2q5TH23Dp`e8HٰEkk ;8B灤4Pa!q챫qgO; d FId`hATrX0`Ϝ/(y6B0&E0L0(8&%G|4PlT<jPA<@rkycbGFIx$o(-Z9!":ddY<'dy;BD &H#By7WOBHOV��t]rA63Mp257jZ3�a)s,װV;ylFT';~^�M:�(0B }Q� @(*d9PV@<$5,cWb9H1!UxSftO* _d�F:ad\#"BF4H=PP 6a9zU `+Yg҅xEfrլn5;kF|xt<H]Ѷ5s `vPre>1ĭ@!v �g= Z"VTΡڃ)0`b G8)=H p 5H f�p)Acqy`]8Ne[�ŦO8 ^h3�!��,������!��,�A�"���H \ȰÇZA ŋ3jȱǏ CI?1(07FFn[)ɅcHPKmA:Cy@'SLիXjzԔ?:4`@+8̨Yzn2(0e0g8*N|hⷐ#KLd\⵨qFi|Ycy� , ^V͹۸0uDg-$"KknDJtH6z ]>Y_KTcZ ~ viRg| 0F2̷<SzWn=_(P4@c6&[Af(hnv@:z 7Q -K$4B&pBc�OL\pBNy3Z� i@ )h3;hMCx c. a>#G2 .@pFةeV|#>@.ă3l#T**n,KN  i@XyMp1,ZYЬ%\F5vӥjǶ0OY+Ɋ@̈CfJ붷ep-Yf T7Y]8�UaK> JE@@˦ Ўl{ G;1@0KLqH 3Ĉ7NYO ,To[*\OmR<Pw\&%a@h%g6w#C.$7AhYj ~ѻ)NwZJ0\K@s1:)U. {vc#Է k/ɎNM2z d .p b G *sqA@*zN/QA _F9؆pj]�!�4A}XhǶ6רB<K_IFx0@ [�$ `]0�`?,y-9d@Edx& <a!`D xǹЁCzO(s$ 䱍tt�F$ C >G7�7qgHg(h<x#@?MlbhF4vz :ґ|0g$a;Q C3mɐǍk�=QcF˝ f8†H`�rL(!V pg$i&G,́h!Ĉ�� :N &Cv'IA>$ԧ@JЂ4BІ:D'JъZͨF7&GAL(͊-}6Қ÷RC@5NӠ)*OiԦ:UJ5HQJժ64U|b ZjAg(MhWִ &[* tͫ^S2u mJkV:'vp&;L `c7ُ` @:t I@��!��, �R���� (0*\ȰÇ#JHŋ3jHƏ CII\ɲ&bᲦM)ɓbg@Ia I %B-ݶI4=!�DX"U+DJFn:{]еf2(00g8*N|1hTYe˹Alf, /)[%& :1ࣲٳGX]P4n`LgYjS0vBK܍>j8MVk g a'4'AgH #A` r�B kw]- čf&}x~ّ`Bp6{A=b3OqP AEUxiJ�-Ԇw.k4H8.P@3|(ACBII4 EekrP䀋CiD�gŹL&\pi%qAv0 肮"kSH§ACE�H外&JJN$Ȍ9jFfSΣA"%x{P*0ΰ M#G�xwy2@mj��r@(D't # KAK c +-FӉAMd2*-#"+?+4Hf i!}50PO;SKW[}[km_{�cMf-sH>N:lS|*@ Cq*pAXM:$#ϕQy 0LG8Ab|*<Êz}$$MFLl @ аP_I{xA/6�!��,�T����H*\ȰÇ#* Ŋ^ȱǏ r |(pL jM"H1$ڹAN=:h9p 5rJ<79*})ԩ*Պ$3 K$)P[b2(0e0g8*N| TYBZVkA# 8bZpr7tC -sUt4 T Z4#pZQgpA D'F`|T@zusƮ]8eݭCl0& zg0Ē̬з?p�c$ _M# 4K0iAuF\AyS ܠe,IwClp3YI"PlsL 1| h"*@`0d -gKģ@bT'2)Е?p !r cy@)H*%nIADC g a'G2*H ڀ#B r�A&aqYqE#m|gPx(lBNy#SdJ\B*;>J@;lͥOpካna-CkKn�nm�M#[ 7,a$[qP CvdL i@i˼�3!|9f T7!InA@A�Q A!kCjTSYԩE@/H^gvvb;9[ mP_ìn 8xw6uM ̼9y�\ݝw]77[-3Di3+ Ą4>*BE R/ q]u�:1*Ch_OٽM9Ӈ0G;s!>ZiT__x<:H_طȕYvx0=ܷ  :o @:HRIE00IN Gt3 /!<HMm �2ȑ 4(oXb¡3bwA|G_?p+cd¼96" ,d!N@8]ԢB, Pw%¹ $IPXt�|G2 9-dCy0� B"` rh!V)ʂA b�^9,MJ5 I> CtI%wK4�<s1@<'m,gV994|3�D@(!$��a, 8gvj({:3'< ?Yhi0|Ͽ 4�jx "c D) "U!+BO:Q;Lf *ei#+k/!!i�J:͓}h !2":hN/HݒRTS|U2#3 ?U*Q)m"d6CБtࣈˆ 903*vH1!�n.0ćLƺ$c,NFcI j؆<x 䵱B|8�BLZؠI|xqSKVַn�ץ .y$5/A!v%{ _:̡J&0(FgF�AL� Ud I`TC. U⃌8"%nk 0#l b8αul0;"HNTt8CJ~Ȑ*[XVrb.K$ �!��,U� � ��e�X,1lHCr X�E5P[�SC.$M�@*iPƣR%@! *[')X9`X& �F�!��,�R�(��� (0*\ȰÇ#JHŋ3jȱǏ CI"A%S\ɲ˗0cʜIɁ5s`: M9`cѡ"] fAP-yFu>}0$bn$tNoaDr श1mRyns4"Ypb†C6jW{p>B*e8X]& G#9]/wOxr%xո{aaV"HYfO=axGay.o|~HZiȓ B1d~-Q*8B:bT>TxԞAЇX&*{ED4.V+>5ϔAX$sY@C&3P6`s,(́ 98"qB*Ԅ;0Al# CTLE%/$tF2Cz'B.|cCsyg{yP$HAxB'HvnjТ>JaNzp !rLzA)fZ*Pc$CgwSth96 .@pF B&pMy & .Lhs/ A.ă"B^ f�PEN^jHF7:Mɝc9a!OrOL.Bku1kLrC Oxq`cqrp,n=\/<'P?42݄a<m9&H2>l6j$4ECdp3F 5kkA nPiJej9fT7aWuo@rk@VPN�'0GF5i/  3#4{9E�Y] <oat&埯cD? C/}�3čyM#BaMQDng@.K>@SB MT E�%uj ]ECC^;CSr_ mCTs%*^uw<3b|'CQ\!X'@QӚ-V})W"(j-cc�0@I be zDHTc SxtCȐ"trG$H�x/�g>dert\d 2&1N/RPMexD`r`w. D"-Yb3]ڒ!D92 IEJ0yd~39͹>B*@<aăLCг$4 ~GDC=bzEXc *ф3/MiP\A!W>`ăz /jF&X�* MsD.1iBFZғ6 6 qjTVJªAէzu_jXM 3�$A@�cx5IAIru'YYIty;*D BBqDzd+`C LVP� 0H[eXL{Ԫ856�-%LKs ר[Cl+ڐlaH\6ȕ-mAOJe�hkE9";Yg 5`B;_&/B_׿zp�8(pH>D)}lȊ* L�(Фt# e/j/&vTq8ey3!vPDm}@wc`el&?9B< ![Q9;!b>2e.{3V:wZG:1lyЅ6 an`Ίft:�56I.�4 Hj�QoFRj#@Er- Tuxl{!Ůȱ ݂ @[#",$tTBnGkb0$ Mlz9Xx3AFYh;ʻMk2;+�!��,�U� ���X&!& t&s�t�HHTR` N[ Cܦ8s <79P:# J(O@*s)ΣN:edo*DjsUNb`wY2P3`d 'wa{7/?i* TYμ" !ԄFx,9(eM1k|9M? M5BPBjn+ts,D+"ϙj ēN*VԵi8DO3g0ĒalI�W=3W�e`6LBrwP(]BM t6%$R-d!P$\Bg$1qD8cN'E/8c7 M8IǙg"0Z)PG&B.yHp !r̂o9@)RR@y`Dx)& .@pF B&pbZ$0MU8B".{aX%B:a#m(zP݈ 5`BNy3SzYFJjk;~: A+-nN[`pS:ʫo;/@@<xt% @:z ɦ+2&od8CA.:  i-"3],9f <zPYZqSu�m@B9ؚP$XNa'"dw�xK'_D/m@*)[ܧ!߁0xNHӍyz�$�:]en |* q3D)2!ݾ>Pib�C *ǵ8*-MWeĶ)�:Ixj9`KC~&T_rAAB'x aPQ# ryF [p ^@Zxk :5E{u '@9;5A8.�ZbDHt#/Ɗ$+rAkcx1Hp l?zh磓T`@ZG<Dr UB Tx˕"fD"jc%ѣ@rPzq4ZB ْ&#isH ! Z)ә#@+\s=f�y1~`:9ִ2>iV2aTPH f�8AOQ &Aod@6$;CFZP e!B$ Ze`@n&Ⱥ{Ǯx3tD�p�F2 �M혾T<5bvԘDPjT^PxD31k�Њr&'*lV*UWAD.Q|tTF5KcC5E "F: y(ܸ0 忂aNS/^UO2JءDi<1ui Y&AmȣaFpE\"!]>lQDm">7ƃ`r}HtK伍cKQJ7_@m7p8�xKjGB@X+AP$X@P $5*)q{0 t/b)qJn+>kAx%dpf:92B0�!��,�R� ��� (0*\ȰÇ#JHŋ3jDHƏ CII\2�0MhIƔmiͳQ,#\4& t&!�tiՊ�VK$PR:r dz-OB'NS"\Ҍ8X]& G#9]/7~Oxjۄ�k݊ wY#f, /)J\!�AMMdi@CY) $&jҩ܀)d()&{aIзAt^irD g a'EtA :ApI #>A.ă3DmAyP_fP0O�5 RrVߏ :dGcA!])ɤb3bD)9fT7aQ{עA/BN"L!<#xV$dCsAL{qAgЄ"Th�n*D\DR#>wf�i:&>QL8i*1BI eJg�3 P�:]P wԫTwj-C*\Dꥈʓߎhn0 M#.) 9ЪMm�B<pB#|0B 3v0W/-BJD,! @@�tbP| a|r&(zi,y,ȪnƦ8æQA_ L(ĴM'Q#4UtY]bCq E>N:l2T%@ C{*{\tj1#A_^ :I1QfDc�1JGV0K:3 h^+:hrYABQY`D�t QLzJ@_I _mxxN_|wV@�!��,%�R���� (0*\ȰÇ#JHŋ3jȱǏ CI A(S\ɲ˗0cʜ@830Ĉ@PF*iҧ<M]L hL)!jMBH1$ZAZmd1mBWsCqL 1ԃ̴>t5@S|3ad8X]& G#9]/g׾pU ,3 7\G+:Vh,KgL:HCP<3xYf4}X@^:@9RXGQ؅UEw5DAta�Z(ay7BleMU| A3``\3Vx#hA`<[�e`6B췐 AP0Ԅ;p"ȢAtɐm<A$r 6Po9g *vhɦp yI}"'n(i:jЦp !r̐A)2*Ҋ3bB.sÉ! &C� x#BN[AI H#ZB` r�BxxPhv%: B#mD/FՍ`BNyȃSPiCKL;_ܐ /w ;l7>ͯ'* $a 3?\r�M̃pOGa$֦|t�XkA4|C(A)56`O%> Lu <zhOk7.pp9 Qtcz)C$Dtzސ:[,;{x@:D42 ų=XJp|N'ϐ&6{m} %1T8Č –%.,`$tFs;!)tc�mosӡ!fb^7uXDj!x7C Rbdrn!D\!@{V\J.CJJ<Eq )9 �~JBzb ?I b9 zDH$9c S� x0 dd.A*dr{A jBGA@ |b+&"heVI>NdjKOAQ\  v$HL=&5=#&$6G9f$+<e d#Gt�|%p�} 6yQ0ȐXvzgK!,�E8cCTyM!tK�~ " qR| *E'e0!)c&kr#-)3 b 5�E5Xs,qxi�b:Ӄ<&&\*BUj5h-kZjV 1'FI �F*r(kNJȄ`,w uU 9Y 9C6[€e8g چH` �էl� �^-mrۆ5Ȑն6�Efls8[CZAnܢ).Qn0/i){ ^=7UuVOb0A!`!F`/@!, +D:ґ|Ra!G$x"AbI8F2qI] "јA4ЋL1  CD'xl#僭GMې+7JeXZvHgtHeNxށo4 Y3᫕1iG|hf>1̌vA!'w|tq�̹wί{r�"Dj�APyoDR@k^d=ؑ"ȱ;d; qvE$ !vp Ԧ8M|ܑ@5n Ƀ3fKwY.vǵm{' |@y87{ �!��,�U� ���Հ @!&t t&s�t�Hkpآj6|3͛ Qxn N> ũУ"tS*r2QIm-F<'4|, qE(9QH�Fpr sF\Kq,g Fՠh4@+?Gޙ2fǐ JϨ Fɒ*iy�,XV! >@J˛.7紎}xBC<]jt#LH(jJa %5kL3oP6F, Mo wqBM$,z(B%NLE%/tF2GD.(#6.|2D'-cA`p$ -, w=iЏA)OF%A\ %p1&E60餘qYAR~9?! &C� xA>)A># .Lh#/pA.ăÝcMتA_eeP8'&ͭbiP݌ c9a!OLAc=jE;XX-D OjA{l6l�֦,"�7> "&p LăG7aX2Sl1 H.vqK&'+7!r6IO!>4rt <z,pDA8$M! _}A!,NjTY9uuAj/Qop'E�H.Z\ߎ3Coq7I9KP(,䇏^P+n4SAX aAAtX" ͻt7胆nK� 8\ V ^} Br�:ԁMx Dz.�r~~ @CRKK#fA 2Mc>�O!POA<;# Qq$A< A"tC%\[;"UaMB$ r3PFoW�ƨ0$a\wF)!MJxs$tÏ!$!=52FE{XcTQbILJn B:RwBVM&pABm�:SaB"` r@|n""4&bɒ 8c } �ATU{]3 MX"hF^8; O!;=�pӛ"B  @�ѷgʣ"AJ· Nj䈲Fh8hn19CVZ"xeK SH` �(hYPg Qz;,\ciOSu9Gnp AD>ԧTMX xhsk�JrT&�!P`W5Y[7PFRESБt9L|'ۘ,YbACH1!$:ԅ,f69%$c-n!b_F:L5D=x9!0"Ir. /V V5.>h�1 5ŮvRVaVov1|c2!u`B 'xEzZcaM,H`?S,`"@Rb ..OR??Qf38"< Y-HAd"+'xrA Ԁ�!��,U� � ��A� �8hƒ.xC 7%Z IU!'ЁTRW\!̓�!��,-�R���� (0*\ȰÇ#JHŋ3jȱǏ Cɑ A(S\ɲ˗0cʜ@8#0Ĉ@PF*iRmIݦ.h) 1 X6 !<m[kݾmXW$Kw1mRyns4"Ypb†C6~Wґ;)>K}TxUcq, LD9( Fr020_ (,XgpC ,3 }dFh ϒ{ Ƀ4=rDSP& {T QA8k Y1BRT@<xAA�aPP|_C$`"J) x} i"KB<S a5eyZG&0F2@4A\6 .aBc"g 5AE#^<͍ IPQClp3YI"lsL Z衉.  (X JE.|gQj))jzi� -X*ۘꨯ :K&cN<>TD g a'qֹ$kh„6ȜB<P<Ae^ EB5&AmtC>ؤF"䚺F-27d�:0:#I#S)@FpcT{}C`= 5^ t�M3ro=a$5z}>WtրHi-M݂Bv; igyȬČlu <zkblP7/>Ɩ.LG;B!qDjTst%FALD//tB/ϹL3g�+Խw )9s~M�x /Aw]p18q2\Cf AA%&!֔$F>r;p�`` Cp#+Y�" !;CZ19oI@9 0P/S"C&;mBjw1r%@.p~CyFM E׿RᏧSG@mdHȶdA)<d$`2�)LA"D!"t.v9B;U B <Y!@9ȗV%R>4=ALȜڳFc"ӉV@0ZӉӄc˄ӎf6HҔj}wz`TV!u@2.B8ؐT�� T$: Cˎ>d;8!Lj %XA~p5RDvjlB �4_DLxM2 ZAT A~FD\O6B]5WMGlbeu>�:UE(UC4 (wkBW"A�;X6ǰOB,a;PY* Y%! 2�@<تWSݬ(Yvy;҈ɪoj S'=T072z TVR�~ e@ Z|æ\D A-p2:]QkV#{7^7 �w*!̍|EO  Rr'�!8Y'XEU[ >nPA[5`B2a '0B@<b'6APb/vh{dt# 0BI �6z</)"XX6 yRu�G4*gMa9L•H]�y`4!vhDm@wcB1gyvHgu dށo4YAЉ}LDzЈf>11b n2uo=J_E:Ct)�@ڈX O""X (8"@`lwӽ\"Ȼqx;d wEm % !f,'HAl cN'�a8H&Οt*Ja??#.O1(F6|8Ϲw~ G9ЇN �!��,������!��,5�R���� (0*\ȰÇ#JHŋ3jȱǏ CI A(S\ɲ˗0cʜi@80Ĉ@PF*iҘmIݦb o) 1 X6 !<m[kݾm8&MkpBj<79P$lJ!!?=Ȍ+?rio2MU'NSe8X]& G#9]/w)2* TY>ZPrB# 4g{AGVn }Tɢq<D5˕vEȓ B1dEh=H O_aPP{ǟܱwy%$"x|͒~#D<S a5e7`�ByP3P6`s,(͂ Q!q CxP<*nBTb�mp3YI"lsL矁  Yy`Ex".|)&rZA: 霆 a*B>%p1Qj+E6d)s$CjdIc.&@ .@pF B&pz & .Lhc/ A.ăsbB^ԯAuOX  EjHf"F7:Mi9a!OOL.Bk<2krC O/B9wq�*3g�7>Ͳb1?<sCL sRls�M̓qca$j]t�l AHӼ4D%cгв$C. i2njÊAhv_qP AZ%k r :ΐ7І. QMwx)CDt O< ]<[ʛ+d={ۛ@O7<D!O7*"8;�:b>͎4�\T2"A("Kƛ`%)!I&"w"�ZBTǻa::ZvWmv")e2r�:Q|A0C,C,d::Q/B;I` (N2LL/r!(c5b~;G'3-sM \ JfEBH>h;|Y$B&y/S$6xCVhI3 @�=!@9(:5Q$/�eCd"ڒ[,f_B<@$Y[rAiG3MA"TdoDBJ@ r$TH"s^ pσ蓐�}1ŃLC޳(UJoo2D2$ ܳ>1& )}i@j1!K�'iGcE| *wS'1ayVt**،f - M攙sLti�r!Y�B:V&g5+BкV.ɭa[JW!Ԓ' a L[<J'QAl%Ab93!9tU|T% n9PV `8 BY<`x5=n{tTI׸bCdK�֚m$\co˝mm}C"WݮQ{\,$Ci,� e(Bwuwȯ6%/LPH  1p ;xN0rWzo">@G:ҁZ c,@`o#B""4i#H<fk�CYTYfP|vF7B'XfHɘGAbNF:] $x9!^.Be)S�3ww p&B<9h&g+dN3BϜylh yH.-Lw3- 5Hb8 p?b} 1 u"L5DRk#E- TqmH{!ծȵ r$ �""l$>uHBvG"ꎷi0 ޞѦBw#>|K:w;_XN[{ =�!��,������!��,�U� ���H)[ÂI B-ݶIT<!�D A"R1,n*()cP#͛ AxN= ϡHMjs)ӧI5t"1PN}: eeQ`"@apT0#)܅"mܹPB6a@7w/,rh4 +?Gy2f J)Ϩ Ju!]ʥ5iy� ,`XV >x�M # >*K+==:iȢ[w}ҁjx56)jJa%5kLL[M# 4KziAƁ&\Ayt ءC@>6$R-d!P$\BAg$1q<Ģ0HM'9T'b/ E8Iu7]cD$N %\@Ch9PlcLfs%*GPTV7L! &C� ]m>@># .Lh3/t^�.ă3@Ԫ@]@OX Pa Qq8҆Mвh!䄑<>1l<d-`m*L<Ϊ(lF;mvR+7> k..ăG7aX2c HJp LB`, 1i< ʲ"3U,9f T7!B_A8P* 3S2m$l0F5ɦV 6?҉w 4w?m9m@*!m1~NCn87c9OWq7JQDN;@?9OM$3)`N[OaĄ;+cWMyӀ 4H0iz67xĞ�:ԁMCGrR�h~țW쬁 .Ka*x~LW <i9Kx¦=~q@<Ⰲs 84$Cw.722H*1)Hyy@<Ym8�TARpG$8H�pw ~8 Nګ\PHG).ĠA"D.d"i:H4a-yIF%R*$*<Fi쒨`0%aC!9hBA"` rԈ43$!X"!5fU$�MGMqTxU$`)pr8$=)Ί5�$Х%<AuT"EBd�F Ċh=;ڮ�_&#h䲨,19@܀<0Y@�E™?Y<l+M8Y RHUQbDR*sBթ 3,U Md `WS׊ɉ_22NjX*6'je;)>@G:ҁ5 "xwҝn#"B j#H<&]}JໜŌ$V#0э4H!bdCA|PmuN=Bzwc#Bzz-H⁏[u+Wל;d nY  h3(M<x Dn7] klYK8P '.��AbN b&mL@@RP)x1Tȩqw8P@p!N\-AH@��!��,=�R����� (0*\ȰÇ#JHŋ3jȱǏ Cɐ A(S\ɲ˗0cʜ@2ibΟ@_84h¢FҴYP6ϢnSP (rјRB,mNcIĖ-mBtj6!W! ](xS)Bf[ B-AAա$E8 eeQ`"AapT0#)܅bv; ,~<G+6Nh,K;H?Pc g�5PУ-b(CVtP p#AUCE�B(Gd| e$yB-;0q}DxPL)E2א^~A`<S[�e`}BH!P$970Al#˙ɐ8<A$r 6P{g *atYA`@ -\J hJA2h )h� -<Y뭹*ۘ .đZ@<r(#I4>DD g a' kg„6∋B<P<'&\Thq z#mD0ä&F7:M|h9a!OOL/Bk<2jrC O/B9wq�*3g�7> b1?<sCLѭ\t�Rls�Md@:z IOm]pKHe�;""UP@dp6{_<8�3 9fT7aPVmпတ&!lPPN�'0GF5ͮh)HIU/4l@*Bx�C@VkX<ݠ:J|ܟ?cZD&o<C0CK wEp˻Ҋhynx.'.`CaBp�8 aTF` �v]" xs�:Q}%/?B$}fB9|x9녇\�y(E,rcB@0l:p܇7ƱsZ�Pd6H(@,!<C$EDsG"D|Ca*1)Hy@<&Ι_*DH*l2:#[^4X2!@9lQ 95!$|/�$fCt^FU|cH' 3h1R<L<9?r dZEtԄC|B#Lύ `2Hg~T:Hp"`г �m�bk$C"` rj<3_4"сtiϷ R̕ xv<jkjr I5Q�zӜhhin.sҌ9::ը (oukB:W"w+j5*J%CZQ  @�c2A&g ,P#r8,PB9 qA6i20P%B$ Jd`ANIK|G3w AG%t 26 �o۰ϻ5VQ.s JBs'2 {[[ '�VP_CQ_=iՀ 9p7qp!| Wp1..dcБt 9&*XqXEH1!�Ʋ.3"_-@. 1d̃M~rCp҉4HGz=4R 6QLz `3҅xDr,o]G#w &Beo@h ψtC/q1mA# iPSq ]2LgH+H|]gFAL�G]$IM\c~vr8#VCl/v[hVlD8!)`)늄 ~�a8HkF!8± ѕ(| ]v\) ?W򖻼"�!��,������!��,E�R����� (0*\ȰÇ#JHŋ3jȱǏ Cɐ A(S\ɲ˗0cʜ@*ibΟ@_84h¢F* `RmIݦ.h) 1 X6 !<m[kݾkºP#I! ρ(xy)Bf\H^sGUWEq>˸ˢDœ`$G�#S8 nݼ#jpA5^X+4@#uJOxd#~1dp<9l: K`1G Ɛ!DDlCB .�:bT>Tx4AЅdhC!&uClzA(!i}<S a5eEGZ?0F2@4AS qLB.s9A>8x60$AE -daP$\BBg$1q8| (D'<nh_syg{ yI"j''袍rبt*\@㤬zPlck")* yК(F4>D g a'`۬:„6HB<P<mYA\dZ qdAZjH6F7:Mc9a!{OL/Bk<rjrC O/BCj̱OpA9><sC4=P 3{Rls�M^c͞a$jMt�l AGӬ4D6p4NQGkA,nPÊAD6qP AZ niJ� : 1 pB!CqDjT]vA$//<{sBA̟C|[J/PmD>ys>ͳO�$}-'0ve'!r3t IV*^/h%C!I&lwvpBv;%0C.@һ9D �tx$2�0]gG1�!:J;[Ue-cL_<ts+عlr(ć*9 <!\^AHK! 2:<w!<:#sC$ rt"vjH/gܥ.H@`y+|Tx cL1Ly"`5,,&7pQ3Uᕱ\S 9SIJ0z4?@BqE{S*&�O#E2$ Gb岏\HLTr ge*̤bЦ| *GSkObJsrP*؊fxYUNslti�:ԃ0K6�խmM[Wծu=]Wi>?Bd�0UyC4bKlEXwHUT7Z 9 BTI*D*IS� {ۃ!D�ps4T!m�tSr< D7br ~w x\{2: «LW.wj3e< R&(vpB <a #A0a 3h ,&t#0B=K Y6Z(|=6qdct5,,N>Z6�?J<[ɑNF:[ dx9!b._lft!p|P`Y\F;oys\�YLg#K/iBZ OzJ\אrIO!8 $"ΈW�~3b{=\"ȵl;d vE]$fu'iAh]k ~7�a8Hnk69ax1t8C4x.K 9g*nO& OW?$ �!��,M�R���� (0*\ȰÇ#JHŋ3jȱǏ CIȓ(S\ɲ˗0cʜXrLL41ϟ2l T!ѢH"YP6ϢnSG7rјRB,mNcIĖ-mBtd188M* ax36xpHN2D-cf/FT'NSe8X]& G#9]/wQۼP`A5^X죕h !+4@#w׳;dx!dӀ0|=g=Q,eT<�rP1(CVP qAA�aPPzC$`"J) v{ d#߉':95ϔAX$s YƤP&3P6`s,&M AqLB.sNwe\lBTLE%/$tF2C2(B.|dCzh6zP$AxB'(qA)FiK^@ӥ{Plcʩl"**HP# &@ .@pF B&prA.$0 e8.t;ޚA7JP@g�9{#mP5w!䄑<=1ſl8$3ͬss *L<\, s�;Kr/MOpAJ4O MCt=P M4}b}t�MC_sMa$]u�| AW5D-SV$C.;nAAlnP̊AxqP AYføniJ�#d0>І.8pB!SrDjTs%FAd//ЋtBOAܟC[`g�+T>zIc[_` iG! M*4 I¥"@Ap1EIE!!BLX:w($ фwxB�&0脣8`h=6Hs4y(9D:I G+fq)@<l=HTѓ}[;cv12J툿x�}#X <u*# yH׽Cz Bdr Q  !$ .<DV�!,R)LA3!"tv; BRQL1H{�2>PIq<׫*5DԴfB3:p 'UP݄#7ǙGhg2I@z teZ޹x3(8ryr&Bb%RFt\(:#ĄKMt4!P@dH,AI= G^3uiB"&Ûʩ<!ԥ1+0 ԤD5Qӈ3تA`xH,Gee svj�ZI*$%A&|+B�W5UBB.̒� UrU- RYbVti�fCd;5nQH F +Sb Y<} wH]At� טCK\Bz=9wk,!5wi�`WHoqrWD2� e(GyBp23.xPzjPNȅ5al>ȇEb2Бtࣙ 9HC/,ۘpׅK21;dA >lP, 1&6H#్t,'5rlC\3l6B< Bs<9Ó;!6!g>4ӆJpG:=:< Lz^u:Z�E3U%AN끰 mb"MHzegF0AL�O]H#H-nr? Gj!^Ȼ+o  1+=وp7Glb8qp ɃSЂz ! Y{ GX <AH�78Ϲ+�!��,�"� ��� H`I tLCq49w}a/8^:{Ksfn@ }ah>A"F, b_#)/UPi&qho{tho4 &b!,jR 9մm[jAC\[=y*OIhq02{W-$qХXm޲ƕ<0N35$j5ri5qug̥N/_gWw[}ӫ_Ͼ}z\p �!��,U�� ��~�tID �58QKwE�LtpU ,{ Ï cȐMq$lӉQyx d*d�5r|8,��d�TZᡶtґc`Y\Zi�!��,U�R���� (0*\ȰÇ#JHŋ3jȱǏ CHȓ(S\ɲ˗0c\XrLL41ϟ2l T!ѢH"YP6ϢnS@.@JZmzC�:ҦEpVچ]&bkPR:rFnsCqL ӄ̰:,1` Nd[`DTK8 eeQ`"AapT0#)܅bvS9sKW& xPY>ZбB# 4bg9:AvGh=Gv']< WE`L=G}hȓ B1dEh-Q*&, #AUCG~u(HAtbR1&P<S a5a_�By0F2@4A6.`B_"G^AX0AlCBTdLE%/$tF2Cz'B.|dCsyg{yP$HAxB'蝦-" Fd\@#zPlcʥk")* 5~5萎! &C� xc$B~AI H#jB` r�B|&yPi 9lrAY"ud&Bmt5w!䄑<=1El8$2ɨsr *L<{ r�+q�7><LC\ =]t�R|s�M_c a$Ll AH׼4D":(-CrdGp6{_<x�:b39fT7聰i k _ >PN"L!<q :B!cqDjTS]֢AL4//sBAП[ʛ@P}_�[o詏UO7lx+�:J P|3߲7A$#DaF5DZJ=<-Y IBh4� 9D ȁήdAAᅨuDD(J!4:MX%z = bB &kb<t=r+ȹlzcȸD1h|I"1d'&@#t$ v bIdrLE00I dž9/MІ9GB*C ě <(Rud6DM^YjV2B1M9jS$HIJXgdiM-�H"mȄ8R#ha !/p{hA }%񰆯CX9"J!46(Xzzn3�E dC^)dti>/^BU>`ÌS1+;�<lF3@jn.s--9::H=HA>.��B:W&w+BW.ɯi(FRI �F*QSМ]2� wD=0AD ze =nlH))"UT"+ ةr8W!nC;,\#nq6_Qnp5Du*mo\ƃ|{ؖ#<!8op_WwYs>0A!a O!-HG:La|d@&fm]SD[,mɐG"?w `$|W2A}.l:CdHɘDbNF: $Bx9!e . /*,k2>"hKb-nBX~s 6|c~1ț/iBZ ]�|:ԣ3Tr( OmO""]_F�AL�G]`@ <& )Gr "֖$)Bl{ECqWܚnARu�nzp!#!Z�Gp<D!soi`{C'N#Hr?5 ȓRy< ?W!�!��,�U� ���Հ @!&t t&s�t�HLTtCܦ8s<7Dṁ:} JT'OE<'ӦP2{˙0$ETTNǢ`wYRP3`d 'wa{7oTNԶ Ը{aaD;_/C*rτ7l2NN?^pj?i(dT5J K`1G*!󜩊Ԥ :1ࣲNվß\䗚]+LɁ zDg`@\Qi@mI�c$\M#4K0i~EAyTPtCaA>̳6!$AR-dAP$\Ag$1qDģ@ IdN'BT7c? UH.|r}ץAM>e{>Q e� -PXy*ۘ%o $: &tBINP g a' hJH P#-B@ rAGP~XX^G05 RfiHeF7pFCC39FtFѸBd�:0:pmK.p~.Aܬ7o;ľSF݄a<\ɳ9&HK22 ^OX $3jCAp,͕�3؉9fT7Y` _ >N"L!<ћ +B!CNjTCY;%AD4/Q?] #a^<DS皯,U\<T/C{A>z* ubApx3Ρ DD;Њ":pm6S9! �t   e)`tM6]Q>æ�\<t۱P+f5e!! Av +H恙~ at IH( m :"%q`)#ՑN$ rnD |(" G<ˣ(A 2DcL$"}xH֕!OJ%g3% $ŏd$Hq)d,,TDA=RR TB^(cRQKLH,A"u"RB$)˖489@f* nC+sl'AI)p'<?I+rֲ6Hcg�TOA7DH h¨\� +H@[zŃ ЍwH %-ԀA< @(#q;Y$Hx AY<@rs0=C`3c-+D7,\*W{*_=Gnpu]"٪P=`jX铎ՉcQ2!0W-Y?$C b,B|twF4$=mOe6EHAF: yܸ͗0u5~͆>*mdE:C@ɘG2bo*HG 6Q$ /}#҅xchXfDЫ^W|x4ӱ^%@ 2ښ2ylEd( yXco_ =;Lf@`PIrbTuA�b#$!&�BRڂXU.HPĂ12T*1'HYfGd!isB9 HRL*�!��,]�R����� (0*\ȰÇ#JHŋ ȱǏ CLqȑL41˗0,cg8sK tL)!jMBH1$:ATUJJG1m8fH;jkP8X]& G#9]/>P& PY g$ڇ*}{ts.C+i†IBtb VG%??Lh"jJa0%ٵu=L${8@lDL6 g'T0׃1m|QCr! &C� xi*Ƞ% .Lh/A.ă3kAq�ՀH & DvPX i}ƃAJVϐ0[�u <z\hЊ0;83 |Іh.c:pE@bC̠wPHyIgZ; %&$;|yC`0iD�sX֞2Lj%AvT(i"kSHR(B:\ Ek�U#;"*,5]Ak.ʽ4rJy BLF4sk��R@�PK[k P4�ӉAM}2.b=Γ蔬 qӛQh50PW[[k_{ B%C>N:l!sRj@ }*-sjt1A^^ :B1U.">0rṣJrCb3d IRDsddatB!0Q#B)xy fNx$G7ߙG/No/�!��,e�R���� (0*\ȰÇ#JHŋ3jȱǏ C\Hȓ(S\ɲ˗0c,9Pf&raO6p(ѣHIGͳE#\4& t&!�tU�Z%#w,P#I! ρ(y8BfYH.ޥL s1N`wYrP3`d 'wa};Cm0XЍPۼjܽ0G+U6Vh,';HGバIOB1;<5:H K`1G Ɛ!D D g:bT>TxDA7}҅dya�1&ʧYy<S a5bIZ?0F2@4A QA8  IPmp3YI"lsLݙ}  #rri'z yI:眚Шt\@㤬zPlck")* ɐif|KGcC6> .@pF B&p⍐y m& .Lh/ A.ăcA\;m�`ՀHč&AmtSj4w!䄑<=1l8$2ɦsr *L<ξf"Cn OpA>,tLC4]RѫLt�R|s�M^ca$<l AG׬4D*pXDvĝ iA)@ӬL` | <z Lڀ{L3S2hJ� Ɣ. QvcZ)2CDt8 /]!4l@*l4BxVOoP=wv7KbD?g| h8Hkpa49Jƣa%C!I&wvӖJ4mJD0@8An!puDgD$*!GiרQ|,VQ)[~nJ:n.Diȹ.oE XvƌaFi\�HN_ :8%>* @A ̣ K0RCg_ZD%5o: ֈ%fM)cDlq' M,< M/:YpBCB$*<ef g�XOH;xi{0TxwTCpP�mr!9�+XoXeBa"S>+|Pa'bJwJ!^vPA<4 35HMcm5X*؊fxYUslUt@*QdZ4 qk\ VC@I �F R {Ir4�P>ȡ Qÿ4A8 y7Za DV1R� 0`i9 O|g[D AG%k!m�f{T $W=Ţpk\!^w Av{xΖl2o�k2#a!8Av^7nu߹[n5`B<`'60B|W>HG:Kac@cm`8]RDAmɐG�ʍk�#Y(Z !d�F:GɘCbNF:G/R 6!L0C O򔫜. /$+͵uh�5b%7+^:gxUs 6|c}1ȗhBJ hHCp3LxroWL6"@B$:#0]b 0"MH` Q5F*a!?:diB]i+ H F 6Gٓ|ܑ(v�a�7X:�xHt8Cnr +m[ϸ7$ �!��,�U� ���X&!& t&s�t�HJJGBFnSʛ8}:tgϟDѦP2{Dp Q: eeQ`"@apT0#)܅"n޽7m`Amq,g`ZiB# b tre3s>eԔ00Xj@lXQ´K mK,UQaz))^ ^ovJ|Smr0DCY) a56V0F2@4@6)Ԝd!K#!B.su>P6%$AR-d!P$\Bg$1qģ@ I$N'�FT7c? U8IɝT5dD%^ &\@#x9Plc\g&*Q}rB2�a=09HAi :„6THB<pP< !i!TV QX ԡ7Jk8҆M)жv!䄑<=1ld.hn*L<Nhm+.{K[�ܸ7/ p�oBL[@<xt%І,@:z !_<s7pi�&'HjJv,=P<6 @S+1sĞcAGf%@$A�q 6B!smNjTSY:@P{D/ǯ@/^u3DHyB&okι8C{O7 w{T�|%;z^WqBCS_M@AXc"NBI@K7>' i{@S99@]s|M;\Jj r@9+ P LIqHZ(`�G !P�1LaJ@VB.uu'îxȡz“Pc o2}&%$o v8oDD_#Z00IhO v16eqp ǤR ;"D . g> H3> C>fH`0\X'9aRDy2HpkaSz`~LIMS$'%V Q+{e/{U%@2ߡLCDIL &&$ G-Mnq @Xtj %V <g,SA-�*G:}O~N "4� = bAa# x>2R9 #!2�@<ٛ2  )"b7o;.j 3<R/D'PV�ĥtM�X)aXPֳgzX#U�<XڛAkWjP}r-`] P6�q`<GL6�j9D HgVh �ˆ�wC:ґ|Q!GtҐvU#ȎO8F2q`rhEfPיHm�f`j�y4!v'PmCxyZCwc $DFMIgL { X>|;T ~oa_38nÒ'G:ax- n`Tqo,a [xא^rx58 �(Nڄ�QjJDŽ$C$UR'G@@R56%%lN-H�B*g:4'@ `�!��,U� � ��e�X,1lHCr X�E5P[�SC.$M�@*iPƣR%@! *[')X9`X& �F�!��,�U� ���H)[ÂI B-ݶIT<!�D A"R�ґ;6pEt Cܦ8q}:tgϟD 4$ӦP2kDSZ*iX ,.Q sL.r=m wlHCrո{aa3D+\/C*2σ7LIN?^mp?i o`yUZ@^:@92Hu$`` �UQYzjOO.=|M?yȮ@@P{V @,\Qi�mI�c$ \M# 4 ti3AE\Ay4:T;M�>̓6$AR-d!P$\BAg$1q<ģ@ I$N'9T7c? U8Iơ]5dD%^ &\@x9Plc\g&*x}2�a=09HɊi :„6THB<@P< hV Qb ԁ@92u#mIP elBNy3SJYC;;ʢ q-n~lp8j*P0k/C`/¹{p�ߛo�M3['<a$N12<6@J6 "4ز"3ב 9f T7lX:Ю0$@sS�mTbd0F5!W '@Iz&xiKL8E�xӎC.yNdPޑMzRTuJH涏{(hͶ$3)So8thćH;+Tɉ} 4tűB(MuwI{vSArV8Q @ bi 0=tM<Q&\x`%6"4]<tرpj+f5d2a6<Rb"A=8S$$< AG8 Qb�iTn`;"#ƝD &Hǀ3riy<:RTDŽ7f*4]Kr!b7ABZS4xJTz@|F6&%*<b NkHXt�|G2 9p}鋦SԨઅl@ƃD(i&I Ʋ E!!NDXi>"W?rBp[%� >ԕ=ICx D% :xΓd3@<)^j490~39ɇ|�  (4,R_,  :P2x@P9nl.�:~2t XE8x$�+gh34zY::o5~5kF]s>s]W?@s`5${c"#Fe(DZBpv0l_2`Ζ #ar.= Ama[SO3Pdk5Ѩm̹د2t�#Hn @ɘk(Ρ4HG:(Q 6H0ý|. /wym/-ِh�% b`z֜  ߶~pL2|c�A# bp@S/.T,�(8��QjJgƄc U.H l"CJrODx5eVA29*nDy+ <87%Y@@��!��,m�R���� (0*\ȰÇ#JHŋ3jȱǏ C$HPɓ(S\ɲ˗0[r&Fɳd(tѣgtm%@.@JZmzC�:ҦEpVچ&'-FnsCq0O D1̰҅:,n(GT<'4|,qE(9QH�Fprܻ{;\8dr%xո{aaV#tHYfOaxa#;.č#sC؜DZFȓ B1d=X,i$T@<y#AUCG|'B& P*8`CgDxPL)E2ׄ]iF"d�`<s[�e`HB,"IP0Ɨ 5N�>s98<A$r 6Pzh *ِ|  yIj7}z٤Cy !r̕A)*"$C7*f�:#DH .@pF B&p͒y& .Lh#/ A.ăbBf"TAP &:#m̊Pݸ3w!䄑<=1l8d2ʪr *L<qL Lr�/3q#�7>ʹLHm3:!@J/t]ăG7aX2}f} {bIutOCT g Ӷ Dv iǜLAÉ0aycA%p]Xژ | qBܠF. LQ yX)bCDtToW}9[5omsnU |D�"O7s"8+ٽ/5 oÖR#0OL 6a/Lޗ|$3ށJ#TMv[a�1=ws>! G�QDdȅVw"ba|8')r!ȅ%E^W6~f J6D\,8:,Pp]3 b !<RC $dC"DpRa*1)H"y@<>ѱ`,TH 0id0�UpG$H�ޥ"/�g>4Hr zHZR=Jni0ZP_\׌ M2e[ QJ1Wf7=,>䀣DH]LJG IF/�rG=Iy& )�\($C"` r(!V 2hNdG/'yX p4Ď6\ x0B,(O2EܩAP*?�C4QCaM5LijS<"dv jXv>a $! 2�@ @1Sy p*]3D`vAˡcRT8H"C&[L e %B$ Jd`A I|ŒӞ!M:*�,\#h@Zc֩=np5Dmg[mHik[cu]̖; 2| =p{Ӏ|\Aj׾M}߲!C|tWȑ@ DU E&E4oF: yİt�:3O ax/dOD )hBpщ4H|>R 6KXAr҅xEArإG&|~|xDHue4Qr�`Pry N "y$(3@^s{SA7߆X N"XdE `7#)5H0 lկ~*̚Cn]WxnAaڭ�l3%!#1iY؎p<TslmCv_I3vnqp.w~c8OU�!��,u�R����� (0*\ȰÇ#JH"E-jȱǏ1p&F\ɲ%G]h6uՀrIa I %B-ݶI=!�DP"pUj?U9()caⓙNZ=4|,qE(9QH�Fpr ;\1d jۄ�b"4Pm5beh,g I̚ r~D<Ԟ`KkHz<y Io2}68+BmN8a xAs~HN"2\@L`9$&pr_`$0M[8<B<P<CAZ P_�@ @�Vħ| Dv$ iAߍ0#Au <[ x qn$A2E#Z$6LxA@ȉP PgiBnAZ6*]Sn-2Či%Av zgh"TSH2'BC{Pi 0P:R)Ӛ[CjN AӲ:8έ M#G�tڮ.mF4ķ [/ ٫P4�ӉAMd0 k٨ƥAC$:++43 }PͭB.rB1nC ɐ褓>[8l9_) ][ڤsL2T�O`A^OI{,�!a])$$J͑F8 @ ċmDV_4͘F.DƒQw.Q垇.z䠏n$�!��,������!��,�U� ���M*!& t&s�t�HHct0̔8s <79P:# J(O@*s)ΣN:e0eD% l ABF2(0Š0g8*N|hޔP`@5^XpōR ԄF,9(er<8?DMA)`~uS2XQBK<g` �UQ~=@Unʻ|NLGDz)ݫ bMh|}W)A3` \ea<CW�e`6BPsxPT;M�>s68,I{<mp3YI"lsL) YI.6@ IEA.|fr�cQi%ye� -\矁*ۘx th : *@+:! &C� lA@H T#1R rAWr&DV BD&ͳ_7pCCS9F֩FҹFd�:0:mC߆;n[[�7 p�B\[@<xt%Ԇ,@:z ɦ!_<s7԰t@2@&dcAqoNC-Lw { <zĐY#;@`rp}7 :Q ho$Q}%/OE�x[9A.y�6z鑧O7 zTuJ7N_.ǻ7BČ!A|؞X=$�;Ѕ 6ss߀#x0x�@9/, D _%jw >j˒e,@BN `%Fv&ԚJ~=< ]6 /bا ( A=43rD/$< AVLHx.qd4c~h n(#Q R^p<&FsQCA 32=cL !E)~2';D1%Cb)@%jw$ $̇`A!ٯIN"@h&ԄXLJM&)E671΃2+M'MH1 C> B;-ys $MѧN@�P11 yk!\� 5ARԉsf�f# xZu@5ϧ DdEwPE,5"X6xte}JpYjW ՈX9^VzA[CVj^0R;  FŃ\ʡ�pd+{lXfT"M'>@G:ҁ8 #ibn#B"<wi%ɐGnɍk�RXrcMxd̃սnDM4HGQ 6GqW U/{S9�(fJbV|x<śهͯA,[.1n< 4X "& l`3Z +]T'�B$0X*0b `)EPY`y|t X*VBel)rJ1+Zr؂59�f,�!��,}�R���� (0*\ȰÇ#JHŋ3jȱǏ CF$HPɓ(S\ɲ˗05q&Fɳd(tѣgm(Ƒ@.@JZmzC�:ҦEpVZ+; P#I! ρ(y)CfXH tT)x.2iX,.Q sL.yv!]%6w/,rJiq;Kk<?D!dpp ) 3jRi O:T# Ɛ!DmcP@p 4g:bT>TxA'щ.>xD1:Cl|A>̣A}6:95ϔAX$sMXT&3P6`S1Є P T;ܕAA.sAt6.$AE0-daP$\BBg$1q8ĨJJ)D'O6T衉.E.|᱊Pb`"ڪA%p1ak,E6>-B 3P@<r鑑irD g a'wh%ۣ:„6HB<P<AnZ Be7JP!8F ͯ0}BNyCSkC8뼚;=ܐD$,361\3}p#p -Nu�H+PBYSM_K7@<xt%B};&Hrgg Nytyk=㈹ 6dGcA᧕nˬLwc| <zdjkN@e&lPf �VrtA t//tBjX-9쟳E�� oAQ?&S%&� 4?_<0-n_b89{j:H<=4O, |$Fs;p�I!ЃBv$-�E A0hc4{uA:8{Z2.޵|x++bw7BcG.рwӁ(H-xHZǻ!R#$װA*@1!jpC $GCdS"D$1)H"y@<JS4*]b&;"(=D DEGlog>lj Siukq6jQcDxn\`>Z,c?u  :Y*IIJ09E-Kߡ;h19ЏrLC 6H<CBe�QJDC>tS!Ecfn!LF 4O Dujx֘T,u1<9 ƼV=[uY}k@P`X8!ꒈ. a �(_Ya *e;N`^.qTt06SAI6< 4*r*c .3|1�(k܃$! &QG 5p*s׀\C| {1nu@^6DUoQUhAP$ `�uZ" LP%a .HD|tW1? $\"E/?\!e�ƶ5bPn�JE`x1&:H#్tHPH)5rlC\3|.9B< r|,㣔;!rrߣf6tBwG:5O<  :2洧g?i]*#G)qH4 p !IDr  1Bu�'LuCR�#5 Tvmh{!ݮȷCׂ$Dc#udIЊ ąU~(Aw w)D&'d|%u ߸GNrT%OAB0D�!��,������!��,�R���� (0*\ȰÇ#JHŋ3jȱǏ C&$HPɓ(S\ɲ˗0%Hq&Fɳd(tѣgmbREcH PKmB:[y@'YȞEpEtt W1mRyns4o`~CFʐYU58mq^Jac8X]& G#9]/g׾pC ,3pjܽ0G+.Vh,KOL:HCP<cr%xȕ3wys>[, /8Pi YqABF0,#AUCGdyu(HbAt"cAT@<Y]YHxPL)E2x~A`<[�e`6`BP qP T;֕Acyt60$AE&-daP$\BBg$1q8ħ J(D'=6TyEz.|)qPF*_v٩AB%p1Oj+E6d,B 5N�l g2�a=09Hənmę$0c8&. w]hFA9vPrq#mPݼ3i0!䄑<?1Żl8$2ɤsr *L<aLp1_q�ܴ7̪E-363AG/DO]ăG7aX2bm v%]3EΆC YۑkAQ;1+1saؔcA%pM5ږ�A8$d/>{zmPp#0GF5 g-҉8'{W>#np;|x#ǻW~ӍUĈ[K̟ 7hQp IS 0CK B+3DH$3 ^�NI ]xa33H _ic~{rm({@!:Q|AxbэyAgsU₸%Zq\hbL'¿\1bD_t0r+樹1rƇ�AQ� 82'&$t v HDZKE00IL!džб9ҥt F% b ;"==D $EPYg>@` I_ohΜJץ^Qj$cDl>1ll_8 Nrr,b9i! fY)>IK0z/z?IH;09(JDư/z6ɐXzƷ_2|,IS~%�MDlb6uT>`ģi4]j&ft&Qa*Sp�0rj�5j�_Q@Pk@PZbH� T]Q) Rעⵠ9{d�f":5α sfW͏͟®TO*D�DV�5Sk�`�c` ajY{65ҚAUw|mi rZgV(oH Oqxl+C9�%y&Wkz|+`MV :ґ|R\!$!x V!V,<KpI<ٹk�cYY0|C;Zbru�R2Є!i<ra&Am A\#; 3 :D<sF7@̈́`MLe+ ֚s<* g@q7H�ZЄ s12q~i#�kHtMgFHBL�H]ļ sU )H2 pַ~")BzECvaWQlp`yvB}X  KP Gnq# Xwf 2g$,R׺ oGIc'N7$ �!��,�R���� (0*\ȰÇ#JHŋ3jȱǏ =$ɓ(S\ɲ˗Gd8M#`ဍ?{6 *ш2 .l6uՀ*Ia I %B-ݶIt=!�Dh"0VCA:XP#I! M(S(CfWֽDCmxMq>˸ˢDœ`$G�#S8 nݼRu!7UWE`<jܽ0G+6Nh,k<H?DPc*gt4sC؜4ZFȓ B1d=<!T@<x#AUCG{'B*F цxTDxPL)E2׀iJ2d�`<c[�e`HB,#IPFvm(GBMTxAl# CTLE%/$tF2C"(B.|dC:h&zP$xJAxB':' zAfi e*Bj%p1[+,E6Z.,B ՙP8! #2�a=09H7O"nԙ$0Md8r!. ό `>f:##mP#w!䄑<=1ž֮l82̩3s *L<L(r�7Cyr+gMOp2! >-FaIG@A@<xt%q;&He/m7z4uVCtg߷ Dvm iPCAK0xcA%pUڙ 1|Yn7F. LQv›H)1D DtkT˧;9[ʞUc@>D&O7x"K :$N!Z<3HEy`D!$3ށ�TeKRd6HEb&h{!.tCA:zPZbȐ nEDKqDU X-v V1W<L<t@1}+hqmzƇp[%ƒ=AIBbW DH%%Tc Sx](_@;"=D G8yjg>Ԑs S\52r^QKdtQf[4 P,O<iNHә %C"dr!RCR1`A O A0PwasJ#&{.�w M2�ڀ$C"` r<j=݃fRBjih84Y\XJL$Ǘ\Fx4B;biS)t#S rSexVW4]m>Zԣn!A6�t"jH) a �^� (+UТ}4� wlt]�AXg!@9PV 4H ¤Y<`y 3=HmJ� h#CT� kW\p !nkZ6q\ �. @N@]Y/s\抳Vh$X&բ ܊tWA@< U &EpF: y2u�ƵBW2am*9 aR2Єi<.7}&Amȃ A\#; 399D<1rH.7@M`Le+ r<* G_ < A4G&Ѓ.4Lfc$WIHX!A{VĿ�"Dڪ�aSa/BR H$.ɦ1ROq5Ef]!v -H~MF>ȱ9R}ڑ�0n�a8Hmpޮ:x7Lt8>-ou�I*m >; �!��,������!��,�U� ���M*!& t&s�t�HB-BI38M)sxnsvF*hў?]'ӜHJ}!:UASZ:  eeQ`"AapT0#)܅"n޽)g*6a7w/,r&4 ,B/#Ԍ3胢3;ݙӰV* };W̱˴t s0-D+BÝA4$+!:1uC?zs}: zP?�`5ϔ@X$sF@ &3uP6`c,$ s MgYt1@j�ut6)$R-d!P$\Bg$1qDH*ɤN'F?9dG ] iI%f TYӛ^4'\@ jPlcdyh&*8Q!o;! &C� xA@H X#A rA'xPYY@8BA5 RGg&jHF7qCC9Fh֩FҺFd�:0:nC{nK梫]�72;p #oCp� p�Md,@:z ‰5lPRSwFmBv a#q@-6Rˊ@̀VaP @ U{sR]"L!< 6B!NjT3Z<@,D./0gƸp/9[JPPO�s9?ytccrR1*!<:Ÿn qs6B#`J̐hP5H_=!VP(j�C3( >ؐ (.Kj0i#9)Rң=r@9+ P L~ ]f22bm`';In4#,w.JM8 m(-?{A'!IȔ@�$a"g`La AClk{R|$'<ꐂ;"#D GtRg>D=<ꑏ j,d>HAr ,Dwd2;H\COz@2hU*dzI{J0] x-m)z;fi(s2bx|@8gtL4DmDS!9$!)q&% @9y=|#g@�; Ht dN;C({X3G8^lQS  PgB"!2�@S<)0 \/�̢;pa5ttuTTA#Gy7ȓ A*)1(�x Œ~ b:*k`0%Vj�jGuu !5Z�u,[V83�pc#+23 HbV+_x=TiQ)�H>( Cx6jpj !(t#"ٮJd�@eT\C:,t J<;p(6!r!g;ȱ y�|kߔt!p|wFo\�XTL`#@�b DXo7H83#<a!ۊbDuB�b#�A!&�Bك HHY1T*19'Y6cfDd)IB9 @~<g~6A�!��,�R�@&���H*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗04t3ϟ@ 'Q:8:5cn䶕Oƥ)%V|]bn$X]˶sA׉-D!bk\XqE( LePA7̈',ȳװc/D=uDg-$"KkDJtH6z ]>9OhKB(Z 0^�Rg{ Il=ª'~_�'(vm&,t^z-sMWr!R7n D~0v{9&HM�vB 'Ɏ Sh9F .L<̈́yd9CWVŃG7aX2OY[i3tZ%J$X:li2!訒%:C,$ T8( r�AZUy*Vacej4 SN @<6 1TC\*4;k q)O7­�C%̃@*ˬČڋ/uEn�Jh@@%p;>k)q@;&q D�$\{S ,cLWO7"V-a@8+0y{C-|I34ABT85A=Ti2.;5s-&.8[Ro<LoJ8QLvZiAILk<\4P;4@Zkί0eGhvډ/AA3uoOۍ⌃LGj|920j@ku \.% @Mj~�_Է[_;3#HӿYROB!Ё+Xr=$Pz Jα H@{>^�&t4X\cK !n�m@, �t�2U#&1]Klb�p D#E)RqD�p5K �Iޑ2N ̐g: ą"9sl% 䱍tt0 B5k+ށo4x'=مx H^#Qɏ&Wr`|n'UnApˁ(p|QA{1[ژ9IVEL1!5 YΛ$A"Iz\\F` .!4?x A JVQhGI :(H(jώz3@𼏈9)JWR!,"HT҇д8i*O@ PJԢN_1RT!u+MTzԧRX*Pz`5 WJֲ"c=Zւp+X*׺5t^Լ]_K*rMbM:i,d'KHVzvHhG˒ՈiSB$ �!��,�e�����H*\ȰÇ#JHŋ3j,B�Hɓt )MT͛&t P,J/ %�) Ϩի(5 _�%Vpl�_{]kqL %!P߿S<G`A^̘\ o!>5 K87`̜S7VDSiUm<I0�o _{F rӞ:*t5 `γm ZN~l ˟Oɀ�!��, �g�8���CA�5*\ȰÇ#JHŋ %$4C>)dG 1$4h˗0#F,4<J!|@OD,m4gL -Cܦ( @ׯ`- I /D˅• , LD6lEmq,g6 ,xЯǎ) O&uk׸ AK,2A'D'&a|TJ %@ӸsT-=Idހ)dn ']znB #fJ` /!@<a #apYO(BA']097jMmP UhaE%̃ظ݄a<:$0P O3D�OLbw8*@:z 7 .h)a#T c9a!NNB)N;cB&\l7JPHuQ�!(M ِuҹ{) 着 hjhP<-NDjBQ<4 H�>JB̴K'Mw o=6Y�%pY aBuN9Mֶk*d~@X-*h.fBu$4Y$E% m- y. [. . .n;C,Ѽţ0BBB瘱X�' Wl6B50s:DEgbdm`X�e @sC`Ip p ]@2Sx43" 7u; &R QDS;ЩHo�Zlk@r7&>_/E4 8gZ{97Be_jMjqu&d*H /X\sHpOs9,pB�Y;6\ ~Wk\ /C ֐ ́I u9>s J־<ndK8F2A~.�(ܞC?,H<>֜�Fb cLP%IEJtE!0G~Ň9ER0� @%q @ fHŘ 3_E] G|м3P1"dk瘳��!��,�g����H HȰC#JHŠ/bQ#Ǐ C1@ %-tZm$$cۄ;9&(RL :e:5*If3H` iԬϡEX]&8,kuyո{aaVZ.Gu| ⑋ ,Xg!2nl�M"j:,sA D'F`|TFN{u'c@xBH{ƨaM<"X !n!p�c=..T0 ՃFXY ^B}@ Lh W@ށ'yqLA.sl>V6Vo_{tF2C�8Њ-ؐyw܈ Q"1  -xqFH AM.yQyZjG%dYyuiŃG7aX2I># .Lhz'Z x# @n)I!䄑<'é袍 Tyf5 iqYg#A>S~)h FPźsl ' ԫ�۩0+Y Opf['IgzR.TI2ۖp@ טP<ݤH�"3 o5wU�(!P whSNZ[wsp9<Pq�A�M�.l+CjT3e%r�]G1 U}uZZ׌99"T[-/ݣ@fDwM\>Ϧ8|2n|nA@X:|T@<,MGP<a9f;Od}Nn:cCE#N8"o�:1׈B/=Cw~;}Z̿ #dٓ=Ts ;~z{o?祐_iiq[YCŹւ:S<P#7֪`tͣ=(0m95p5<H\<K0;TרD:%"b@A z0_T7�i^GiFḤ+h>^H2J6 (0 G^0"~�mnIr\W1i$bF4ZB"H  8)m24@.iʇxPi\#%Yڱ8}TKX2�,%xRx J� R7jJƚ(C9$hy;g� md٨Mnzs_ 4"?DAV��]:g4w1! zP4>π6{ ӟ� Mi~I#c&u.}[;Md94QaG:AUQ ]>A�_qc-99Z£cD6 2H<^/ ̈*'w�du]Q*. ɸF2!Q4[=\[ϼېGZXM65HRԧ&䯁i {h�$ t{eSRZnlYZ٠u oWV6�hKYB_ M" HXF�Z\:!|H +p#x#2e1wR^r.{Fľr[b�G afx � a {  R �!��,�h� ���HP`< *Lx@ "ryąPKmƁ ?9rEt C& , S!͚8EiaΟ; *PfX >4:HIAf]X]&Jt=X*'Pf9i%ZA [vdݻ<^K/A~ LqAWE`�A=]8΁NX̑X��G ޝ@ļbŃ<@LjqX0ut!@D^`]O0ªmZ]OO0 <~8@7Pvu]�yCP\U70Hb`� ztF2G8Љ)(Rx㕇p;x`(@xB'.*:D#y 7*)]=`|&{\):%Ԅ;$ŃG7aX2B># .Lh3vA ` r�Aj&B !䄑<P衉 u&5fBd:iHCEu馔UWH`U:;z\Fka�7t>MV{-AgLݦ2E;"؆:#Em%\3Bt Բ"3In17]YlJT71Pw9lEh16S1A8(>/65GjTsW͢L"q�Tä15VR̩xxqm9}mO^v�nĿQrt3 we7*`�-R1>Is,p3hQ i)xt~.9~1gf[~y{z09O+ڔ|~SǣVgE/DFVݺ/Y<6]sMV=S>>3zǎu{ !^SggH+A:L`e%< Tp"\ iTB B eF`R3P ]CzI!2u(n݉&*$~8A - lEz+27/HG x Ry @ M 6#ӐC�9$s$�mn!VP<B~id�=H㴚H<2e*xmw.F5r$de&]ٙ:bcLK 6]U3�2X.T0 @1 �Aޑx$saF6mvT R@aO6C% *N5v\HA_tЄ4O t!6vk #EQ.K*l 2Nxsi�nzzmCZ4#( ҅x/C&":V"yl# A!Q y$ΩHU*U:v_ R *;xxRqdui<Z2z9!FЄbX4Qj`®qm]ށo4@,aq:BUlɞ$5lf6_GMrVU\G[Z$Hjp@�,׹7 &<L )nM8` *Is{g!z_7_-sKoM�!��,�g�8���7A�5*\ȰÇ#JHňȱC>)ɓ ITe�.cʜ9 ɳ'T2@))M=Zm&&9D" kpz1mxní"ruRue+TbɚUf]�L<BD'\x˸ˢD3sUQ.X/w/,r&J4{9onoysr%W]/DزiH B'$<C3A#Smr�axf#FBUCED%4~!%=9CY7- IB[l7$o�B$ep1#nI�c$̈ *I"А|*ۘ,4t 2ҘАE. LWr% -٤B6#yP 5N�>6DA$]~y%F.tF2GDXР*@"FoIfZBxB': AdB瘥xU<d䭜}ɩv P40j`R<xt%:„6O*L<[OL"a$$B<PR{T~f9a!QntbmL^Cp:ZdAiC>D F)ry . YOplB;GM Q?#,5;m]GQ D ]|`e@ Bz77Cwރ'8~+G{-1gWlFq7B'>$̀ts&B�:P7HP<+螝Sg!|�+0B1T17 k�"S=~s9! agO`rk~_r ss񄧠/!ǓB%CB b `A 1a Q qa a�֐6! o7:Q�&9\N!ax,$aE;@L<ص(NF,*h<CP4y G%;qI':3 &4HȐ`�Ru$HCgM2Àf2JQU"6(�e�KE˘ģv: |>0pT)s `q]v{{N4b3RQ 4i!g>G`s$ s\`6IO|Aɡ$rϺ8ke5Lrԧ=ͅ IajQGXD��@\&u)gi&E)+)M>:iE3袨҇ω.lCʆ4!.CTL@BTFU[ҳRdk*NpR?=OԄueHQB$ I╊L$d|X%<e!�!! V8LhaYQޱxL ahi26!MiCAzp+TD (Ɯ>Du1YΎ!mat7ܔ\禕w^Zlg]�承MmMnFzzAB [$*:vC|ckaP'ag7]Sz 䱍ttH1!u!^ ͸7-C$T,t0Tqdi<j\2cȐy9!vF؝&Lf3; %>q!e.{`6ށo4 s:S8(VcR71I+6 t1= s� H�ΩAq%IE ;(F!0FYAHRp@$AI]Z[&C=gO[$yiz"^-2-�5X�eE'nA!y+V1$ĥ}3|[7Qd\%p  |{㉭A~��!��,�h� ���H`< *Lx@ "ryąPKmƁ ?ID"kpx1m"p4S9:sȢFevQdgҁF0l 2(0ed֫h*pU ,  ҄gF;_&h}"^L Sxp(HM \.d[֑^]0& UQd8q +ȤS϶ ' "%_Vm35pV`.P={`-dџ(P| wɄ7P(@M󀴍g!Ӏ^{6(".DyqC �"X@xB'1*$b ty!wCW'^ى�@`T$*x ;݄a<$0D OcSc\9&H@.ăj(HF tN:*x4%tfthHmCEJ*XH`iz;.QܪF$cÚ�7y>fmQ ѨܚꮵX*'¹/B6hr %@(fa7 !>mt@!zh��:JT71P<\SH[$3q=<w`!Bq#s�m` ;srM"~54<2FXkmΎm}Nϩx4ݶifHWG=QDs֜B D<2qLw[ @KU: g}2q\S cAn@tͦntMMQ/%{�:AHSoGK.c =ݟ-N뷯wk뽗:FyXML߆pk;Y< 1 Ny@<vCfkL'2A ^p= 2wDDdc=5H #8}onI Ӧ}a8?%ϊ18,IDO^7/XG  Ry$�M t:6Ŵ4ƈ_ρG) 2iwJF"oB8^8<b D||@ *`Pg')I.p#ѨF19$0 S 4gSJ� :dAQ�`Mt PLN� 8_< M0c�)NrJ3!Ћx=TH*3Obd`@$Emzx·D5; T`<*s`AWNG[jKb'gK/�դ@JBNx$>1 ]j|GEȎŠBHG70t#xTjUfYӺ֫VLE:F֊\$H<:F#-kѾ*MېF\]6UHVծbıj:h t{DV-@j۲.jZՙ{U+ܾAn`' U F�BZ]zw$MMJ ě(# |ifQ{GR߄(y 2`W$ݝ ML�!��,�g�)���7A�5*\ȰÇ#JHńȱC>)$G8bHhФ˗0EF4<J!|@OD,m4gL%!`()c H`e�OÊf�Mz,^ӥ ;bwY2-YҵUm _ $hǐENS@^ Z@,VnC9 3&5d8R-Mۡh|Ȅ )dφ է]znB #fJ` /!�.<a #apYۿO ŏ'WkC(AB)Ԧ0j`R<xt%:„6B*L<<1յa$$B<b,*t!䄑<: Y:(#raL:@<ԀHY�XBmP ɐk 9gt`gyg>O AC_7B3b։(Nj]� Y/=%e rOZ ujW9BvB>餕*CN"L!<AB�u$DYbQICR;-Cb{BrB݂mB;n�{n:\Nd�-l3 P齛vz]]瘱�3uC^j^,>&4H0V,VTy0lI: WL!0@<,1;c|LEo`?I\:RDBEwc8SfY0 98U�M uzNM#G�|+dYr*mhWdW.V52D+Hj/δX\c z\PF9-pV = .~wN{B 8vBy�7K ua/9ӌO:lx u>ߓ%1@&d "6t68F2䁪| aS,!+/D0t�#pV�JɀTKE(5$ P Y8�X_SȠb8Vv :2K*LEт(12yDxH HPC,%^lJe1hLg�!��,%�g�(���7A�5*\ȰÇ#JH"D MXȱဎ #~ Iɇ#I<Rʖ0cʜ ɳT3@))M=Zm&&'Z(Cܦd͂<7Vo:dV)W2%ljD*p3@�*V<4&=/D4z΅*<, LDhy1UQ.X/w/,rlDcaia1\boN6/@Bs�*'!eyk~XwE'&a|Tз?n\B4`�Bt[(t Mu X�[pnQi- !&3*.|S$\BCa^lcB%bB8P$lp3Y0U& m0*15N�>P6'%LBg$1qD gXa֜Yt*.|CBژЂsi%4z*b[iZ骤4C.smP  R 6,ŃG7aX2Q># .Lhxk8&HMB.ă )ˬG}fFuN[鮋45:YNB8F4Sl UToj&FD*G6#2f" �7>ͭ 5* 2D,5 oj,G6d'DGGčP@bBmP 8xmx�x/|A9Q \P<l3fA裸 b~P7@6y~>f申Y Ǣ@B1čm !=CF5N_?~Eo>#a*Ys{ yNkC爗!Hb @?o!PE� N<J4'4!CPB./tB`8C&7a�pCprCpD @owSOJ* q;p1#Nw]~x1QkT")$cN(Gd)|2�tȈ4c->)#HF£[yIj͋\<@ QW$qTFr)9� ] @ˍ#j*yBy0P2')8s `⑟a<^f>3Ѳ2lgwDBo㫂9ѩɅd <5J1=yGwSDsw xЄĴ(hn@ɐT  M8� Bb�s!e�FquOD!9#"sQ f- %jUUUs=� )+#�UiBxj3XKmd\򁄨 H{#\+W6=RI ]:Ph0A J7$+"1'@t Xbƶ(C9vF!x$Z.mjSu[߲! PV !0Rn)݄!Y<4ux d�ޑԇ 7 a/D\ؚ1-/?5WM/lek`2h ֊7 zcnBz_hnp�LpAB+$":G{I|cgIZTW\cgE]SFV 䱍ttÃH1!9.OiCT$l*ɸF2a4i<*oˎy9!zϚ3.Aaṩ?x>р*d騳O s`'iO8V/;ك^fIW: 9wX v.>:ɑ$  ani")B#( +Yx;&MPC-r$֚"iBmnA9�e4& b1>9 k#nÃI7 CN#*pƁ>s('0 ]8x@s�!��,�h� ���HP`< *Lx@ "ryąPKmƁ ?)Z C&,]d8daș o)\͜y )t$ѢH2KO<t Ժ, LDyjUQ.XOw/,r\D+x4a٤͎_ &w^K.c*gPIIu2c΁NX̑ SN*h:v #ޝpqn } l,R8FV^ σ!n!p�c=..T0ҋ FXY^B}@ F°ֳ,@awqBM󀴍,Z(m}GlsL'@$Hށ'F!*' -n q#A1'q69 )9_}M)eߡ3@=G7aX2B># .Lh3rA x# r�A'HF tNf@*Po4TPf:iHѼDCEi)IWH` K"v@򊏯)Zmp܌Y-vwyn)(j"tJۯ$ZF0 P P<݀ܮČktƠg�5sQl@ WH[6p5<:(ck7,60p t�bF5|S1H"eLUosVSs*ٌ=QEEQrq.\ߡ9@<L3&SI�Q<:|ƂYVAbP;6H}NTVx>!3=ڠ|4#Mc3>@CNuWb1gݼB5uCuNZMkn/m:ꪏD㟽AL&+]UtY< 1 Ny@<d@f1Le; Zm 2wDm[ a1OXtM<B2Խ|!DR@#lDlr(^L\`f b�x cV`i>p821h(5 Hdmj @,r ā|?\% 7q|x6|@ *ǘ4ϓO%)14tiJTr&0î>xRh[ acMt3�e(bB0 03�D`$9NM3!pP~VLS2<#+B�yg;mH5;$thh<5O:c7FP:t" 5Q6q1)Mm9_ Nq a' @JW >1ʐB< bC"<n �H1!mVX9nmBPdz"ɸF2恻. i<؊n;ȱ y#f9ُh^+F$KYށo4 t am:*Kv-n6ߦ^Sj˒�oZ+[R$�' : -kww3ޙ8$)@/A$# ~gQ}G_'QoAVބ$?b7��!��,=h� � ��A� �8hƒ.xC 7%Z IU!'ЁTRW\!̓�!��,-�g� ���7A�5*\ȰÇ#JHb� MXȱဎ #~ Iɇ#I<Rʖ0cʜ ɳT3@))M=Zm&&'Z(\,1 P# !۸Jޕ.IfS!JJGX�n3ФѓFv.<X!eeQ`"̐r%x 7Rjܽ0˙D+edquxe)>8<Em`K� "N4%Y>J9*o@<m%,B�tb$T>TD4]BWҁ$>`\)(viBBA d/{dT#0F2ψIN$r |) ͢C B`-dXjPG*4ژa5NBEcP<mAweQBg$1qD$ :h#cx*R% - CL;&4]v9j6h#Hn)F֚i:6*d @0j`"݄a<G$0S OSlB@:z I.,R�zf9a!Q.bm`#CS`B9hYNB8F UT,Qv&FD-/r3CV'2+[ngp�d7&C|;5%mu�XN{n"2k/PBtրH%FPw^xB78C/ԸKNK}A PO7"'>$LtYtyBz <mN:mx XBgrb q{BκpQp {�LW᏿Yg r OgOy?/�l\FWA[^Bנ)vԟB#Θ  AOLJ4/t!C`8C.7BpC&?a�8D!nnsltd}X�?=*x3, ؜Ei;c҈xh^E#+V� YuDgHD*!Sb63 ђc&5Z24U'2HP*pODeF<tѓVt]xhҊ1 0` @Ėt:eVi-$QL:HLS�C-3zfҗ6ZlfEqLCB ٤rj#+U? gѧ8-sAOQʒ7avf9RMlfdSXu bI�GXDx"4}S(+h>yEy&@NUH՟U"1h@f"҅}[oِ&D>czЇ.TxL@BT)d]TSk\,^RlC=GW٪YC a!! qLMk8b>QDLFEc Vؐ:B,\lp IN<msfw[Er[ 7C[puzR2$"+ZYP|UrDw AGoFw٪sװ|>EC$pB\a aþئ!^MnBkoAh<nPA&ABZ"E�pH⁏tc{DmH bkJZQ$<nPfI<zGd##9v�-sIvHĮz<;k$c~H#e(8zR;ȱ y�4"HdG;dh%2Bjfށo4 t: TLkP5.jEW;ye>Br}f7wل 5G]S6�H0q�'F fc 9tjI`҄M�]DK 0A3*wE8@ $-Bx;B Dwc;7C;"f#w'd�9\�jPmd!@xO)򒛼"DBՓ|sEGRޓ<mn<GU>QNz�bPԧ~ 5 �!��,������!��,5�g����7A�5*\ȰÇ#JHѡ&*jq�Ǐ=IdH"Mlr˗0cF4#!eܙ0µ�UdA9P )[%R|M'bnۤGyJ&58Q=Bj~<7aVom0.O25,?֣ @�7Xe�L<@J#9p2(0e" PB�\` ^B5^XLh 6<MfKc_PiG,@Vq�$jRWN9?,戼J+WUCED%D}jp N]G,i IB[ 6p�B- !&p *I"|*ۘ,4t +Ў=. LORi%=idB(#y *Ԅ;0OgۼPlUy<lsLAB| D6؜i:8\ *w*.|2Ct>BPsA ꍢ.٤HE*4]ƺХ#Cj$A$B2T<JMSH 4e�:0:m=1E? d� x BB>mQۙ!䄑<Eï�.Y0 >e)d8B3 ~ iH*SO<hH`廲;-Ѷ~;$/er( f'�7>ͮ :M{u-5TU/ۮZBH{D%P]@ !g{'wC3B x7'xB&DjRY7&>$tҙrYB :P7H9j9gY@ y|a r :ΐ7 sLy5n_Hu}Ek9"g"Mo ]SF;i.<怷Ab`�'?!hꐐDyXDCB8B2'4BPB*/taB`8C"CCԜ&|;]|R0Bˉ ]p7$[(!~$ 1mGz K=uW8cG<!FD"hifM C2 �HH:AdD<DA$Ŷ$FDPwʀ�XߤlZ ١ /x.� S<c@,'43&1q)�;"AS4垨!g 9HrAd&鸠]p!];/)IhK2q@{0$3ņa39Bn1 ~4<HH"bKGaBVBy*tOD!Ǥ .st!gѷQZIG<CZʆ`T~^R>é3ҖdkVZғֵ,>'#󺐱B s\,!JRQ(]#;CAV 5A p/ZКmgD[r$'0BER6�3DSB6!n9PV !Uh  +D{=#힬]cC ]H 9DwkύB{&ѝ #YϾ6erۄ[j7In. 6D09;x#P J[5Rz 䱍ttyH1!y"V1>lWpθ7qC;ݸ(d\#C;ХB&AmcaƊ;Ff3!%ljS .{afjS~|x\eFy tC�bp% [h�.d>hUB�Gpu95<$ HauF(ZkZ:"U l@�I*00"ֈa29dvCm OkԚ!�n�@BF |o$H ^ߋyr'$~'dT%(#nS$p޺)NQ؀��!��,�h� ���HP`< *Lx@ "ryąPKmƁ ?)rL2 JJG1ȥ$Yܐ!i*̩H8 tϛFevqና<t Ժ, LDyjU<8&kM,| &҄e6;߅ 4L(IGK^t=X*7\ Ϩ1ZQ'PSۂGޭ迼 ֽHV^& <ֱ7` `vt!@D^d]O0ªmr^OO0 <~8@7v%@y ơ@>6-4� ztF2G8Љ)(Rx㕧q h _ .|bo8榣HbIbd9Y}}u&T"ޗ : T;XTxt% :„6*L<MOL'{@:z ɛ.Os@d9a!B|,ݙMMO %�րHX֚#mDaEjqWH`9KR A> 2ZZ.pܤ䞊:/,zr҉"ko2<Q*ATu ˊ@K'9\5iP@%pqn .gm!Т @2Lr :ΐ;83 |6r&,FjTSѣ"~r�ltrdM}B }V̭$]vw(,G  s~4*; t7Z-[Z cAnAܳh~Py@` 4H0j3׷EyN+�:QHރ/G~5qwlvt;{ @vhwc~[3 kN4J< 1Ny@<lCo}sLeFhj(猪)#[<H>x$b$CVA>B)+rkCFi1g MBNl 2JDRH Zݩ %|xQl>2 9 3|UaX7fڠOvߩ!C@$ETH4 PH) 甿bDHbpFYҐ$I1y̛챏H$/9Fϝ/+r!?ƎXTv1 @ʁ�@3�PiIKγ2| ѸaTЧ  1]Yd<Ib!iI1t3 hGs9IFњ(5,Q ģli�ҹ�R KπDAPғ<GNw*Ln4.II<yΜXs G,"<GD$W|HF:a5mɐFVpE%M�ꕯ 㬐F`P(,tb ɸF2S4zG�h؆<֪6ZVb䴩]lZkh t@;3@wh+a*r ݫ>^f wn$ x] F�Zԗ&  H (# i2ߞ83FB., oX)6 &$A@B, X �!��,������!��,=�g����7A�5*\ȰÇ#J8QBB3j8`nj?IrcH'Ktr˗0cf4#!eZ*`Ӱ()T)>PKmD;7:p 5r~ ܐXI,ڣl97JfP B-PBjФg⁄"]i$sybX]&L8y ո{aaYh%ú Imy}8Eq,URpS@ Ak8MI�y5 _ wna1GUچ:!:1 ~!'q g[q rNԜC>h0WlQ@m�B$Ądp1 nI�c$  *I"z*ۘ,4t .˜ЏA. LSb% B2h#yÐ Pm# roYn9%B.tF2GDTП*<f fVzBxB':.h )_#OF b/(]&b#:`A$BP<KMdH 0e�:0:g=1ECJd� x BN[-Q梫!䄑<D.^0y qY1b iұ S<0f&FD2GmBxJ| ͶOpkB&-4D,.QLZHW gKb +N?,8aBmP  ^8|#x�/O AXPO7r->$ ~tqB՟wrOc m޹B/Xf\:ޙz�/$Xa.1KCjTs 敻"$K~zDo{�{C_fWT 90�³w<xӘ ؈$@d hEBЄ%\ UBЅ-L eC| NCyB  ':uQra �} "$.@Hȑdl<N4Bnn 99�ý$bG<1"B$boCG]RAt*R0Cx QS]{I)zL"DP61CJ |\�uʀ�!YȊ 룒 ׃/H_2< %3<JHnXG2LlQ$@<H |U(9ǐO 95a>J9HU3wuKR~ /$:.$4l#Zm*E9wJ 2>� As[3Ɛe2�MGC:'"Vzdzj9]O͍<>\�*A "Ҟj*bӄg VY54)H 1R\(+NujWdTghB*�KݪRWҕ"2�`"SF( J| I$q�2ԅ#X%E۴2 @ʑ 0 y; �q̈mR:޶ k⼄IsRa:d`@B Ti(*D]" @jWjEpwzq{VWoeO7m&Ķun[�7FP$$ O*Lt$H<BSt /%:PS.J!9rAcFc$CCY\c|Ps; ,7db&NHsk$cZF 2lwcgDŸrvȋKhohty{3hMrPSb|qSr*ъk* pq0�3 �~d`SJ�PV'0B,`I3r[ yF8@ $ȯ3BPADqܓK]naOd !7DR_&{ @ ld'./N�aPHXjp_?iCRg<-.s 2g7u8o�d(gNW`5ox@��!��,������!��,E�g����7A�5*\ȰÇ#JPBB3j8`nj?IrcH'Ktr˗0c4#!eZ*`Ӱ()T)>PKmD;7:p1mynC$fXѵ ʔ W%3K$B5�  p3�# I /DH΅*<, LDh9qDmV I!]IK۶Y_pM{O: [@ Ak_8MI�y5 _ ura1GUږzЉIXU\|Fr"7 1P*8~7WlQ@&Fm�B$dp1 nI�c$  *I"z*ۘ,4t .˜ЏA. LSb% B2h#yÐ ܀_�lMP%XV[N 6*$(J#=|^IMZBPgQ%;d "b*a"i;ӞCѹٝAB)\ 6.ŃG7aX2Q># .LhÔ+8&HMB.ă d IKDfFuN@v4-čyqƧǘ#m4ȐN9e0f!alD/ sDK \2>' r�3cp:@+x4Q9[%uTs�V{-ӊMh76=tVx $pEPx.xC3TxB+N4P<-NDjBQ<l3fIX V~P78+l9 ɢ@B%*p<ҷ ׍y5 ^+"rofk =fsݏ\Lٟ̂| b<oXNS Px'B%"B!%D BP!-  AXC}[Hn]H\)sa!nx}ϡE1%KlH"#!Xi;- G%Q|t?9ڦԑA *,ҋ}HENxp0|D67F)_,o"IzCMtX/HLS�C^<SEc"S٢H*6dpgHiF 95a>J )9RSKRvzƗ*%z@kS&2O|GkU8q $De],$1�vR5+!M=C̸'"ӐB3Lnln �R2 @ jх!fBH0/)b fR>ă2kD Sƕ"s}iXҕ< Xo֚F2ib0Tg%`'.#5.Ɍ'ƴAm�PQ`+9#Tֺe d-ĸhjʐ 9PG3>nu6%\FvSPq\Cn)otMWlAh:Sۄ)p`�nrRH`7HH$[T%>1!]>A�_ttJ9"A6э j#H<lbzgXT H<FcA/3bwchgV3YI[.9a,hVe0#)rfRh<CD3F\|QM'Ђ6K<,k?ޙQ�#qX& Wh:ab#x4_-Ntؒ$HRe9d6C-mSNw=b/DABp 2ZГxےηb0($-w};[!]G Iz"NkTI3k7d Avw( O]\�!��,M�g����7A�5*\ȰÇ#J|(!3jcGC9$I$SBD˗0ađCB1sfp-@Y0ihyB r9҉X6ibQ@Z"Yc FnsC^%DjU7gݹ-=X"}Pf�]g�Mz&Hx!ЖFp.<neeQ`"̌%jpC ,K I]I_wZ_|SO cH B驧) O&ukN K,AX'l,a| U=o`� `=Vt fDCl{~8T�mp!Vj DBLXA3P0F2M$r }g) C %B`-dѥdPSA*1 @ P;M�>y6@Usc٥L.tF2GD^6УN*F"ЄC$f`BxB': qzdB:9k[kBI噸 ,C {mP +U<KM3H ,e�:0:i=1EM֫a$B<Le9a!P,/ k.{MB(AABez9ơ TSKPw&FD9/s?Cnb3S37<ogCMq�ܜ7ڴL#*Pd'@߆;eV=Pr= abBmP Aΐ;θa�?O AQ hl7t5+ 1C/܆9)_B%x <Nl xB'3a iJ�#//>fm ~F~~WӅb*k_CЧ>~ :.oT CuKH >n�T�BCBb ya a֐ aq 2:|  ,U X<wpIl]G5Mf$ۮ-2#E GBa 16lPI#�t! Ȉ<1f2p)%?QRU|> E#գ *AA6Ad<\ LnR"%@<Tk.B$bKJ@li$oggAb Мx c얢LL>3$FR5LBBORTrj*tR= aFS-m % 8 MfZiB%М@QitI۳Fd $deN,3%1 l% & Edrh�dʞy:=O"Ύ< OBT�mU V[FzjC%*-Y=*H$DK9+Fy�UDL.5!m}k\'0IJ?>tQ.05(-ƴAm�PQޡxh aj*Pֺe tӐ%�T9dd:՞!(*Dt(j! hI JW1ԭn\CpnBЫ׌/Dj^󶅲m�6[(&usr}w WT  ds c#>1є!]3.)W=GR'c|LF:Bm|%Ilxi�pc!q{gH`ɸF2F4:Oz콃ې>Zǜ9kvHKaN<fF<C:s]�CVV1:?kĖVwBnJΙMaxz�NPͥ$N8X&0#@``g$R"9,\!ɷ?7la?ABdqA_d *! rzi=X|!Ih f[-[<#ȘJ:!݋YM(OW> D0@@��!��,������!��,�h� ���HP`< *Lx@ "ryąPKmƁ ?)K'iP#$! CTsOpthТ#"]E%%�>d:HOA]X]&ʕk*g(XKq,g"D+4![ێLXᯊ 2&Xxऎ#k.t[ҵ7@|W,bX. `# >*'<xB+<_δT&&B:CL${V^]>a)ѥ j%G@GP$lp3Y  ğz1Q< m# t9!GlsL%(@4ڈH7Fb:.8 -PCIP \NURx%|Yh`{bIh$|茥B HR<xt% :„6*L<NOLAh~@:z 7.|" BNyȃ9j�Vz@:SӠ6P*� EpV#&]A>TTѪ*a FѨպsmlDО*m�Rp#i麊.,{yp #:ÔB<;v@ @Z7 ,+1Û/ 7uB/D <z ٖrX4t@ _ >MM�.]GjTC=s�,;qIJvkCS9Hbywkw''I=QsmM tG\ӂloA h&]<,=V<9f;zBNp}&t5sj,/99ut:O)cCF?Ůrx oj1 ~}kv?k`h"cDqےc;OAb ( x�g5( N$'L s @ՍHtj#"a�D}IbfDlPЮ�l'J$c`9D mЋ[vX/\0�M RyL PHH|dr`@.~p=tnnMpPEqt`B yDe.84|@ *贄K^ΎAPPL.P$)P9LD2Y_S (@xXtt ׀zGzRƞ(C9 `YM xNuĤ"O`3!�@0FzF+ T(( �wf!K]w�THK1e U9Zvkh #;5)J'bS"/= "tp @:PsܧW5�ZI F7э# 89. /"Y`Ac t#�]*ח55Td� XR!JMcK"I51a@,~:˲@ 6ŏ0ö-o?bWꕯm:fCht;r -X׽bW8sf߸{܃5>;oe7{.uo�K]3Bi%b$+Ib#Pg-o<`5pHRp`p)W2l�¬sbx8!%.ʉ`ҵ  �!��,U�g�����7A�5*\ȰÇ#JЄċ3.cGClhGB \2µ�UddO�@)'=Zm.9KO(ܱ  2�`3 I /Dyӈʅ• , LD6TΠ&@& $H B#NS@DM"8&{#РSjI&Án m5qLjq@ژIx?P}B)ѥ I3Ԯ0ªm V0 eQ>+ܐ|ysy\j \B>` `ۃ0j`T<xt%:„6?*L<<1ىB x BjȡM.¨9F؄LT9"F0 g&'$D<ԀHYWBmP ɐs C;p[ ͑+ 1#nb2rw$]:E <f%( 1C99i�(HV S$A$PGBE,2DmCZ[BrB݂B @Z:(  䖂Ǿ瘱bj)\T؋Sǣ/�oGj&4H0V0VTy@`^hSfP@B2Sx$Y>#36(9qsH ̕ȑɫ*_g'h IHX \pM*E=ˣ-總r9=V@Vjy5jIi9J/ 2):bq9 vz�eRa;6z239vӮp駇iyC8 1o&M4{CB]Y*M<(B]T iO=SnG lN7j1Sjg3׍`G6liz9JU t�#V�I Tλ>$)\d8X3U @f$L @ `0-@ɛʔ .(u!2 Y֝K4΢ !!!.. �!��,�h� ���H`< *Lx@ "ryąPKmƁ ?)K' ܱcDᐅ!k*̩s7w:I(ёF*="T #͂>\:HNA]X]&ʕk*g( Զ /ո{aa3VLRmG$X0Ɛ3lOPB,AZX#9rM`*@ 5.N*| s |�̇[iR Smr:LjqX0?P} RK/`a6SLB @yهA`-dJ(P zɴ7P/ t[B7n =ԃ&x_~64d#:|a0Z#8I $AC's8!Y!iYY83B 4t$ŃG7aX2B># .Lh37YX x# r�Az'BF !䄑<P饙 蠅:5j"&'DA5 RWV|&'A>TTQJ*a FQٺm!(*mDԦjm�NVmpC̩Š6-n�@} #4+B7ĖR<;RwF<a35 HEˊ@K' ݤP@%pųr9倴tM/06S$AB~F5E S7ȳ"wM3׌udvt*,ሿrAASMMFF@V3<[͸@܂3$d�-Z`sT@<,wO)x$.ţ;Ip #<>m L̶tmsCND{d䇷na68=Op\ @nan<<,:^?N$uH摲NWS։R$<cN7$)x pZÌ0AD0PG9G R*C n@({95ᑾId&.01[�/2od!ȷq&J,d}X/慃a@H "AJ04sr5LC {%Ws�f/(dt0SC4~'�hzUx�f\1MNzf 8LAQA<Z%iz'bol 8SiIL3�,y^3t!N-� @n4It h $9ġe(cB, H`<�*P0áLdD',dnN*2#+RD.F ;Xu CňAP.$; @OCiBf7pSnKm*. "Gw�t7#Ez`VY4K ney\% B<A2_f9"c:6эi#H<0v3D|v Q?YrD5�H0q$ɘ0xlg>^jrlCe3>7 Q,c XtrDF9nc�̬/wQHk9[;j8ozTe5C$@'Y9J6 a}9<v&H��5R*0и&։](d"qBL!/"B6c >1L�!��,]�g�����7A�5*\ȰÇ#*Єċ3.cGClhGB \1µ�UddO�@)'=Zm.RR:rFnBL@�ӯ cФGㅈ5oQжo!qE(ׂ m _q,g 4pӔ1>7ۋmެI&CtbVG%@H P<h| )dφ ']z3C #fJ` /!�.<a #apYۿO ŏ'W'Bt%< ,>` PX%̃0݄a<6$0O O3D�OL1buqa$$B<ЅnhS/h9a!Mh#~bLsYBX"ud: iHXWBmP ɐs IS AװP<H�>JB̤K'i/:%d <e% 19(i�2()$Ap@ IXTPJZjKbd�-h>PPic)x{ . 颗Z CQ&4H0cdZXǃ`.7iv0d._'B@2Sxf23�>41\3)KSU#;H4UDB6oLjEMf2a4/VM#GdY˞-48ѭPmk1 `uVW[3DvQ>Hi/X\Sp^z[PF9*pBV = s̴~߿z쳇 jBܴ x,7$E39{>cU u3r7=SOBȳM:(M:$#O Rվ.x-򇴇h{E:C($H<& 52�<DO3IYF(FZʹ0#cH`�@ �J5p$hKD4q/5I .ME QH2A�!��,�h� ���H`< *Lx@ "ryąPKmƁ ?IRR:rFn-I20L6oy&N; :r(ѣD]X" % ҁF0\ 2(0ed֫hm`@5^Xmܹu?ZVh³HϿZ,L/aE+\P?6`|-0jubH.IVBtbVG%�lٴB)yyV\c1T8h[LjqX0wt!@D^5ªm  ^|E<&@7Pxw^�y4: u,4n!GlsL @0HHF6 -Hn 1$A='Pr5I Y}݅gfBӹ@ ݄a<$0D OCS :_c\9&H@.ăݙ1(HF tNZេ4 DAg5 RVV#&M %A>TTj\ Fպsmzh Ԭ@kpXMOp":PM/x' 0BVz͋#MǍT5 H,+1/̕/@٦@%psq)X9 m");rl`;83 |6tp-v�bF5}1R Ȳ"2,Bk] }ҩ8l]Q8OOx4 rC9;> *LT)NAިh¥!9f;-ftOOo;I͂M]0jBAJ<ܑCNdQ7 � pr6nyK󞗲  w "L!ԉ$aFŬ:w5]< 1Ny@<jBA0yhhC$q^!wDpsHKM["FJ'k !243#8ɑr k x4F4f`<1@<BsD`O @+F!>lb ʄT(SC4rw;h-8)?;s d&7Yrqa  )De WzfMMrҔ f"Qn"$5͎q ".@^J� 6ơ(C9jy; ̀*U)QZD^q6ODS Y< @n=C3C-*FaP*T!:i�|ʖ 1D?MS*NU9dAɚ0J*kVծVŨiydV B< -B(<n �H1!%d}N@X\6�H0q$ɘ~\a\@ 6Eb:ҥGXBMr 7PL Wanc;wO[7lg?[U8�U/{Y:t!InBpЩLE &L )pAR # eRᛸ4^Bn,'Aq<l"8"pA��!��,e�g����7A�5*\ȰÇJHh"ŋȱcC9$I$SBD˗0ađCB1EF,4<J!|HEOE,mthNґ;c$ܐVIZõl:7KfN!H@aD#Pf�3&=/4sṼ /_,.Q.R^lQ& 06Ow/,rfJ4u&mnuW~r-&Mo?$'L,0_ "dq�" e7qwAZ'D'&a|T"&{|},mq ZǑs U�[q/{T30F2ϜM$r gy) LC @ xB`-dPJP?*A+P\) @ _۸f=e6lsL)iBxɧE0ʈ؛f6V$s*.|Cp.ZBΘЁoiiBT'ZX9% ФsCNؐA$0j`#"݄a<B$0R OsSL:@:z 7 .,2�ff9a!Pܛk.8 yMO QZ Q7J8: iH2SL믾BыgH`* Qf`B<o3p܊;824cm BEms�&P]+Ը+MpG'}Q� %DPnwB|78C/T8C;ppw3҉ 1 R|P7@P<EAY.W]קa3S2a [qf{yy"_=i9g}K Qek&> Q0g>9׭ rG�w �:) qV |T"�$@d d2Bp!%D 75a�H<t91n! �at G)@sa!nx.VG˽A$E(rmE<nh+!FȑGzwӞA:{c~gAr{8H?T9j97r=#R1W')Z$B Q>r2%:e ה1rS yp390ȏ-8ǙJ &1Y\F(O:HypVg>bs% Prx9|L%R[e\ۧ&ILcBk iOZ 7q b!9� !!t j2DX} @AP ~.34Єa z꒤9='\1>^!E e;R6 bg= x(2�e'*S~ʬI%(]�-jj*؅5!m}.t0Hb>$+ꁈ"? y@{t\ xc玈ZƵ(C9p@d<@+څ0DliK7Ҿ6_75bHCV�HVVlw�"Sw[Ӧ u85^ �jU�A~[6�upR*ey9;_rM#' !]CRs$G:A! )v|!e@JrD BHG72t#P]WNȏ<d:DaE:C0y I51:wjc|N 6Έ0ɎC46?x>�~.dXsM �ҥ ()=c.AT12e!gͥrhEBg+ra(�AE�ɩo*I�G"L6!0BWaCB=$HR!6Gb !䶈b !j � &z @ Dd`'(*�aRRq6H*p Ƹ].<&%J:ޓ$/MNA8Ϲw @oH@��!��,=h� � ��e�X,1lHCr X�E5P[�SC.$M�@*iPƣR%@! *[')X9`X& �F�!��,�h� ���H`< *Lx@ "ryąPKmƁ ?IRR:rHcDᐅ!k*̩s7w:I(ёF*="44`dׅeeQ`"HXjۄP`@5^XLh&Dpڑ0#t~m+ב^]Pm ,B�tbVG#dY O[8ȗj^jҮ qXI?P} RK/Na6Sg.x wA`-d*(P} Ax7P) yVexk)ԁ ^|60$#6zqC 2@xB'9*b z)Kg^q!~ 9Й5 :_)DچM̃H Ld�:0:7=1EE֕a$"B<@P<vg�2 !䄑<C� ħ:5 >-DA5 RGcBd:iHCCEUXH`YKrѠ F$mԂhWj�7q"D>/Fy":i+qk(#yk�O7 2">Lnt@9h� u <z tr4kq[,wrI!϶0$@CS�m`c]~F5-}S5H"=wM1όm % S;ߑ=QD6R,sCr˩@|MyǽgXk͵XTb4uAÂޅl\WA0.wd-N;IϚ- ] 6<\`S#~{B_ ?Q<6BT?MK;)fMrd|<=oҫ< �FY*L8mS < !hF0G gXC>" @5 Y UpG$PtEƇpM\BHt󕱃[! R4Y@H`qkux!ʰqTiFH1@<reD`R @Eݵ024䠰J2WhyP: HI�v6(ǩѐ)�ar0!&ϕ_ύq#D�pYr*L,3$c75RFr<:[iURW5)6CPu?9}M@Q% at44�e(GcBp�XM xG�πee'#:ъ ˅ƍpcr]*SbdxI�Mh> ;P(CHApЄ.:i zܝCf7nSHKmjUՠaGQ��E$E{`W @Vt $,^y B< ./!Q<n �hI24ְ3�hEBnE�"H!z>`ɸF2!؅4\k�h؆<X>7bXbɥ+ܚh� t(wmc^m /)[ymg?;UּU/6S.6ItrpLX8IE &�K @0qARap`)Vb\ ť1scؘK@&ayx!!&I"䣔1�!��,m�g�����7A�5*\ȰÇ %$4ŋ`ȑƎ C>4#!Ep-@Y*S9P )%N|=/bnۤ7kiS=jp"zE�J8Ґ/h5̯FR.<tm[eeQ`"ŴeEBUhVE`� D4%=mC9̹4 k1R-v=eguLL${:]>ҋob^a6S gkx _ Æ[ϲd^|νwcLgJ SXb5ĆG7aX2M># .Lhӓ S8܆ 9&HMB.ă 3`^[BNyCS3H P 64XP 4:TWBmP ay ihA`O763bK'6Yfr,gB:P7eʩyZ؄9*Z foƩV qBܐEB�u$YbQIC*CC0OEZ 1b*$ u6O)x4{ Nf0cm=-,Ϯ,FP T䱟eCe'P<La0@<M뫱B|οښU 'Q !cV�P h`/D QfhkP>ZB4fF\l=Bo BU\W&WĈl"#IC|XB謊5 -C}wBeړR'd`lSy6=1} CGW7$E9I>̳ 6+ om;fS "6t36<d 1r7_CD?n)ç'�j\Ti\'d"+4oQ!Iu,17}`3ρL2,� GH% �!��,u�g����7A�5*\ȰÆxHŋ `ȑƎ Cd&S>D˗0SđCB1F4<J!|HEOE,mth΍iժGt)C&<JUi}0nLtU2sJD" nMGA�l @g�M]-T awYrrފPF,ZBm0XPf9hufM~7C 4#sO[O Sn-A) Ϣ&u^ܐb_O$J !'_N� `^HQkE7`H=&`}AtGGE^3P0F2ϬM$r uf`g) LC B`-dѤTZD&A/ƨPb9Ƒ#cB>S6=SV٤<.tF2GENО}i6*&ouљO*eZ&.|"CsR7&ĠCiyX&䊪(cCJ[ƺХcC.tM&t%̃ش݄a<B$0R OS\ 9&HMB.ăd -B+n]FuN4P $D5 RAV#m0ʐL1/f!alTd/rEnۭ 2>#[r�/gFpS!P5s-"SG}s�: -z-kc[BFsE&qB 0Q�!(Fz P<-NEjBY7u4>$Č~tҨBf{ 2WP7D5:.fS 3ȑ0B1M>3S2m$#^qW(E[QSE#欋I}CC\U޸2h�|pSB~ OJ4 C08!"H<t9! ͹p!(fx3, PH(9յ03Y5\8 U(dJ <m'y999�,E0")\aE.Nun 1U{ˍ;ih-"pHa<(D*0!MTHw�<'tJ, j쉚\xAb x>^3K㔩\8RŇUPhi(D |P>:C3SZNYM.EcȜg58,KqL*yH\ߤcEzK YebB `q�B`�[BEg4$2LCLDLz h&ZfƇ J r |,CHh)`pQiN$DPj բ*FjyUfΡҥ!Gqj�*x=ҥ 1$a]E.qpN�2KX 0lxfƱ(C9pF!x.E)J%KY!gm<Iʇ� kU3$h6M,r.f mFa\minQ� V}nᄇl�{&ЍdkYݧq; 8 tR1s$G:q5 v|R!Ŧ@2F BHG7t#L`]8JAi�>K! /k0t�#PH2y,!G#cݽ1 6AM>YQr W"I^r|-ա7N9L(!a +͡#l38^ Bh,bʘ6F,T,wUxZ� 9q�ු$#s  jEMjX#!`fp$IrPs0 l$96T­حȨ &y @ NAN`Mr�aK͑YG* цܭ~ȐJ:W48Cl�8 'NqW xG�!��,�h� ���HP`< *Lx@ "ryąPKmƁ ?)O' ܱcDᐅ!k*̩s7w:I(ёF*="\,1$.hC .,.QFvݺuEm _q,g"%4ڥَ\pĊ2&䟕#k.tZnHCrYn&,6 9ZM44JN*|,q Ό|rcnT& <ֱ1zt!@D^|O0ªm 4w]@y t_~E<F8@8@y@>6aJ ~tF2G 8Ѝ9X|E@x@xB'>*7_}(2e"^杘abl%*VvEUdG7aX2B># .Lh3A  r�ALZ)HF tN@v*P&4P D5 RWV#&!]A>TTŠ` Fy 1(̡hmDغm5 Opcg[+B>)֪Sn�*(Bzzj@>x  9px݀H�ղ"3 HYwic`2T�(!P A-V9>4�7BN"L!<ͧ54&k"ӎd75q6Sv37ԩz]\PpdxX<9Ir<r]}ӑ|uu3>vƃMYP>SP7Ӗbz)x.>ҋ&L}<|=ik 4H0nk#FJ99u7X/ByW~ ^gaYB~祝$p 2s\@ep4B8Q̜EQFi ^)p (!\ЀL'0I TDUARpG$Z7v$b1-EXWθ� hdZ@nˁ?Gц9o60!ۙF%*a$4H%J%�MW{#ӐIaόB9>Bu;zVr�˂!yc�~Y@XR luSr@TYC<&&5)f~uL(Pqsv+i33\P@F(It, ̐Ơ(C9 �^QxSaB)H2ԡ+\ �Q{AjN*T&bdXK~0%Fl#7 #STg<ݥovk1L��TE*FTY4�lW* ]Yz:5)74DvBZ.(g\#":,>#yl# A�adhx+g ԉ2�}ld`E:C $H<FB8wcb0y W +>�+XG%ow @nRl�|ef^{G[fqxJ>`c#IN.t 0H5y(IB$ Rl5!pO6CG!$Qw1<GB�!��,6h�� ���H�P# a z(Tw/,rM0AN *(A26Y>"A+jr&�.k 6q/ t� MISlVUBJwd!TJ!*ϝCmsuBT_ P9`Hv-<0q0@ �!��,�h� ���HP`< *Lx@ "ryąPKmƁ ?9rEt C&,]d8daș o)\͜y )t$ѢH2D"h4Ҁ!S_qE(#jպ!] TYֽh&Tڑ0#lt~.Y.*@|-0z bX.& @'F`|Tv;8F -^@:�/ʣ'ռ0&}cB&X5u, I̽?P} RK/XX)b[A ^{ A`-dj(P|@T;]M�側,1>7u]aHlsLI@@ IHq=7I!;.|rBD%AM't6M!ɞ "hBq]1R<xt%$0D OSSL*`d_9&Hb�.ă!(q)HF tN*F:k�ӠFP*AJV#&MV%A>TTk_ FsnUzi mD*n�Fpij- 61Z+q<p"ؐOl" H+1ӛ/$7w~/A@%pL_#s[P75uU=:Gws�:CAR�m\¡6bF5]}S@ȶ"L<,7ݑٍwvW,P4wݭ.\d=Os5oN]Z ĵ e]7ʻ1}_c5W,w O)x.͞s9Gm=1<^+X62I8ACNwǿ9\>or+[Nw@$["ȌOx_㨇 y)H k ES *訂 1Ny@<PwhhCk&Ө@RE*#[4E }Y &3P۟FЁ8ʢ&D.@dȅ3M9bD!H\j G GjH*h>(Dm8<A9@IJ TXcKP>!b\/?KbR.xJ6" 3-2Il^RJ)NHJ:%: MiR3 d4cM #$:kh0g L@#3� 06<G=If<hBς /F"aIIQC% �3c~0%F,#4! @?TAx(ÈQTNuƙjL#fU~D`(jT f65�O*V~:aD1fH<‚t!p|aEđԉHΡ؁BHG7H@K$CLX^ê3dd;k$ckkF#GK*<�MېG? _;-' 7ńjrK؁|7\mxY d%KYw.w{,Ѕp�\e9@,` FGЂ� H \ I"' f́ qP`|1DEИ')`‰�!��,}�g����7A�5*\Ȱ!C M8HE.j81#Ǐ C8Rǒ(+Lɲ˗0 H!"e< ,ρRHQ.DCz t&] d1`�1mynD%VXе V %3kpzzBb*03@�Z I /Tͅ*|, LDh z(Ty ո{aa3V5tIߦ=ykDnnpw)r%x eӶ@ A_NS@EMw"ejXm%,A:b$T>TT\Bׂ4RY9(Rt_@^Ewn졒 11!rL`<b�'5E%/4fE6(4~ ]@7&d$ E<_9fBNBP;c,T;B.s>6=Y[r`I.tF2GE[&Т>jQC6Czf]iBxB':ĩ aJp6ש X?%䯤 |5N�}nh�mP 00j`R<xt%�:„6H*L<YOL.a$wB<@ނ Tnf9a!P,o{.^ӰP*AV qZc+C>(;|y FQ9sˮ.̰�YOplBK@]LQOS,6mmw6P/Tm%cE ir4 $Q�!(F =ސ}IJFt JBK')!.[C^�%pc uBG'{'졏@ g<U*PںWKO>E^c>^ ى@{CR3[Sy_�!A;`@gG~ W?m!=u �uHy"A,T!&D +7fQ$x:`N!bHW.$ak I:b&AN< Dd -xa @ȑ,= )w@9 0QtHw)Iт܌h@ܣ`ŖA*Ja$ض t/ٶB:"T�y @ %Y^ W.򓬓!1^N y@<Kf4$]^4V/*iG@OA~TujC*v$9[BeYRUᴠ;r!, 4=eٶm%0P_t2pg nz35BBixHX%,i1KVBqN)PE!&A&sTi(H+%C71Uվs"E')r?Du V*Ҥ1 MNN* QA<.(.Z]iKqƕs}NmTI.BΚֵRdO< H1UIRa@Ft bƴ(C9n(e2=ujYZ6dQ7P.!KH*TW:d YbJ:ԞDn(j ݄LץՍ'2ρ\otߊ�yR◘l&MjZ*@ (o.$.:wGtCz'mH 3Ra<n|PYI<pW32+Oѫc8XNK G`}e2yw"%1 6NYi^sUbØ"asc&27PU9d+" ir?H]M?Ђ&4[ol "P D$˒pk@bb#ht`-5\t2LLERp$J\;*PC}k3" lr{!Bf& @ ^DCH,~&Bd߹5"lX%>(н~#xƑt8d׷ �4U0x($ �!��,�g�����7A�5*\P&JHE.j81#Ǐ /đCB#\ PEVH4dxB rr΋X6b͙HHK> ��&�2&=$P1f҄FP.<sm[eeQ`"ŴgnHCr x`3) Ϣ&ukSf^lfXKX��I0R-T-=IȤ )dφ ']zm #fJ /!�.<a #apYۿO ŏ'W"T7 ( >` 0S 6ŃG7aX2L># .Lh SX݋ 9&HB`�.ăX Y2BBNy#SG&)4ژP4- 9p3U�[v lP�!(ԆK 9Q<-NEjQ< H�>JB̈a['Du`G[ؔ:P7z*[�vl [ Aʧ U & +j$PGBEP+4C0OE^Ü  j׽O)xd{ kQA9.rF %&Z![R;l^f,d l [ OCcn nðWl1_4M8j HE&XXT2C@<kJ4rkYД}|҉b} uQmpURIgȰ5C5j-M{w�eR'Xp "u>wC87gސP39U>3 u359y|]N BȳM:ԪMSc;>G2|7e%C0@q*C9_�Gf[)d6Q "c,P-0IP *)7(5z!HBŝLK8  U[HP�!��,�g�����7A�5*\(!#JH"3jqǏ H!A" dx\F<J!|8ĉOgF,ṃHa NA �%2&=$2&҄FN.<sm[eeQ`"JƴgRu!7U WE`� Dhq�,jR avۉmч;>UX ^nA<h|8@HB&eC:V{�c=.TJFJt #fJ`/!N< #apYۿOBȕ3sLmQ` Q 6ŃG7aXZ�># .Lh Sx[ 9&HMB.ăX IH1BBNySC0ʘPv4%dO#BCE� lP�!(FKDFt$ JB̈['@gt RSB<@ VBqΩ3oSYinhwBW! ʅ7@ =XTUT+:LJiBJ(oS ̞cBnf�'el+N2iQ s t}@�y<̯-+jlLa@@<_jvmkmSJm'L`̣$�DB cUQk`o^+'4OM#`/98S 9<F. h*TYZiČlɲ c+t;鳃QI!`Bc\{3l}tn-7 D y4^A�zCB]dn`2>̳ jKE<8C/C+$<ۤӍڤsL2<JzEDTj5;O==v\�zʠDȩFԣ%դ-V Y`9 ~棟  PR`2-H H8\:8ng_'R%ABB\ z M@��!��,�h� ���H`< *Lx@ "ryąPKmƁ ?9Rm JJG1m"p4S9:sȢFevQa N X"^xP@# 69vawY2WT]HM@m0X"Pf9i%ZA *Uvd@mL1AĎ LsAWE`u I] .\홬ؑMЇ>!$+!:12Hμ't.Xo'JA,ojMV" W !n!p�c=/.T`@$\m*ۘ2,$t ' Lr!-@R_ݑ'G�(Pp mSFx Ag$1q|yd"<vW?"9 I@tG|,`YgA`NY 5A݄ap$0D OcS\ec9&H@.ăKV-**HF tNz㤕4 p8B<ԀHaYkaeoU+Xg!al|d+Gnw7Ѹ+l�T7/"T//>$ÚBlB1Þ]r$l0#EsV<P LP<݀H"3sG"JT7kXi]JN�@:Ro+%AϺQa^kה(HNDc7]}Ypʎg'<}}}Tk3:']oM_^q#A2 d�-\PξD gtucS ПcAn@ʃ|!}TB2\cC*H@÷6Ma^*:�P!K^9{ / @trx t^�B>/zkȇNPrzG0xG8!-< ̱!4q"@"#C^!wDbGd(�r4bG #c4&ґ Y+31wB=ΐ# DJyB$3@yX*h><]9ƌVIt/#9Pٛ*DPAi{e"Hp 1 IP_&,눵;B$PA<pAiv3M73IVnr< rMhw%i8xRؑS�`*<44�e(dBp�M x�md##:ъT!B<IE Jȅ�  CipB@Ӂ#(A4�;mB*ˡ,ÈSuS%ՠVF~uIg@T *hêX9PV B!>1+!]>A�_g9"b;6 @8F2;ְE4'"nT\kBSE:C $H<FcMT˚wcPG\M8UHbH.)!57Grv؁7e%|;6VEm�\Y϶V�z^k"Зrl%:@,` ưGRQ &H`39R*0И&)ks(d"qA<!'ıB2k6�!��,�h� ���HP`< *Lx@ "ryąPKmƁ ?9Rm JJG1m"p4S9:sȢFevQa N4�>T:HMA]X]&ʕ,URpS5P& TYDZViBJ90_lL0cGK\)UQ.XO hѤwUVΕ8';a1Gsny5JN*| R }ΗczR# k-PT&Z5u, I̽?P} RK/% A)LB ^{ A`-dj(P|@.xr6atOftF2G8ЏA)~gv ERȡ -ЍRvH tMaby_~e6}ng"n8@t%*ԖP(IM�H Ld�:0:6=1EFa$B<@P&d9a!BZ**16hLÚ#@ #m@[E᪫nVYH`:;Ѥ^ݢF-ne�7>>ԋϽ"\/B70 *^jZls<H*P5 Hˊ@K' P.*!P @<]8uN9 m1Y=@]L["L!< TSlM"ڊ743Fx-R}թ{]e$M4͢;=[[ UzDH,]P@V:\3ow8ӥ9f;;Pşg$|TB2\cC*@c6F˭]aS#[%miovQLDg.Fp&D0\<mw7vOy#l^<v#:jYtdCUAb @ x(54l0CdQ|T ꐂ;"Q#=1a�@ |xDp!1"#FǀM_eq2pd\'X)'qqbXG*1$ �aAJ0 vX|d-d&&r"0nlL~tQC4�hz_\娐" 1& IO�203" A9 Nk'C)Q$*r,6M BrgA ARȨ J� 8 ΚWVơ(C9"ly; ̀+RԢM a({rRr!+B� g;ȣHD-APꔧ>HEy'HNwMʶ U4L=Gk��F&HE�̵jVu _ tc&JHg-YDy@؎ 䱍ttL1!1ְd KQ`&bփAf`I51aF*Y|@M 6qƏ0ct6=nrӱ\׆ #;ܑ UnTX$H ^Loj_Yς5p�^Re�!��,�g�P$���H \ȰÇZA ŋ3TcACIɓ(S$'Q:8Nfm+g |@h23 (>PKmä=jʵׯϙ]'F `%ǶY]{*FfAG3cZu]X]&8ǐ#k BCa< )$0:FXQװc˞Q,"fZ8HE d 0l, A<h}zx .!nq^@l>0Ϡw0{xPL)rv@{̐@  .|R s &"A6,z{Qgr1V7PY@B&n9&HM�vB 'ɒ ,Sh39F�707TY jCSŃG7aX2OfpNwA ڛXj:%C g�q6B*P =)*j3Ė]).'~太9f*K&h&iخ4[�:JQ@i06{ ̗<%X\*k@ O7Ư Q 󨅯k'+1*Bvh),0qŨ2C3ԛ*>`q�կ#Z+P '(V9 Z<g+T_m�aM>u HIPe t6ցZ|ukC7AsD6f}qP1Ӊ O$ӗ t\j5f;ȩwCknC;XG"S^_s*O@R$޲OVoP}p?s|>y(C=ޢ?U.@>6:\ xS^A/v_;&7H5Ѡcm爚@'C@;'SA<�P 8@LXfft�0} o;K?ŒZ<f>0=F h3dr@(Fь A:ڑ6CR l pXN@BU4Ya>΅q< $rϒp "� HE� Ced'P" Q@.YLұ! $@PZ."mĊFe*�,\vzͤjR'@LwTYŨ G3� 3xv32�J:r$Ac iB*PA 7sHg(>|cD+zQ ft?*Pv>HG:Q�<4 nRe (8]*Ҏ:�HcŀxNś=ώɐϰQV盠7|LZ!X6D#Šd�Z zՈ]=bdAlIzF�ǮM0<$ˬB+ҚAU*JR{-lgK[ѪVͭnw no MnM :ЍBZ.uzWxKMzesJ{K#~߂䷿�0|+X>3#L vΰ/ {0GLb(NlN1�!��,�x�����H*\ȰÇ#JHŋ3j,B�Hɓt )MT͛&t P,J/ %�) Ϩի(5 _�%Vpl�_{]kqL %!P߿S<G`A^̘\ o!>5 K87`̜S7VDSiUm<I0�o _{F rӞ:*t5 `γm ZN~l ˟Oɀ�!��, �x�`��� (0*\ȰÇ#JHŋ3jȱǏ CIɄ \ɲ˗0cʜI͛ST8aaO>gQG"4iӡ IsMTWb͸5k^úYPُ"+&\0I(@|+0A>B-ݶIt� j6]<7bzeR搟`&aD 'F4xJSdk t+i0wq ˸ˢDmjwPf9{h%Z g {4<wы&OxTU h  ` Bx4J C@q1AIh!r :T#%46Uw{-*A<c�A24eECl�~dA t[�UteSbi%_z%c%l&j&g)'Bjx Aw=5ϔAX$s bVmI�c$L@(Rjɠ$r ǥPlcA%p1z*B`-daP{6h1 @ 1#۴А+l�lsL-|;;~k qko;AG.-)<(jŷz�{A'0* 0j`2�a=09H7"s?:„6qh64ptKe�:0:=1Ӫ}a$@B<vP<xt%5;BNy9zw�dH+w�t7JP&jH&N޷_\FݢC ]I"yJy�pܘ,5DZs=;AYf|��rӝsMxg Ak<D(;p q ّ6Bp6xYZXafЈxF:5<FD$Y0� :*p1H<#K4(ǎ@$<Xф* 9Af.P!j|DžDLAdMH'ؐ"qGJD!T0p b{) =b|H A qz$҈FXB jBk|eX!/RPxk*B*Đ A$ByFđ$ ICV2\dC1kE�p3X \ALEK3:a'$#3LH*0ll|[)@s!nx.D pQ?No<f.!RrӐ6*9ӴA:!Kt�;]4>�집O.ؓ +NAx4s|hIL<Hh6?nR1V4R 'LRT biL]:S_iJsZS޴)34$!RtT(Uj&BHQ Ms x@b `xeV)~5c*DRyVٞfQ!g>%Jv / vN'|K9QLeY"UN ֱuzd(}e.5j$NtCUDՋ\jBNB5!.KM�~E(!C!5RcO{"". ̈}}V R6dhoG\07v z}YAh-0 �w'r˰:d u CDg݄�XFH$ @K)7RVBJpc`  1/+KRJ"Õa%ks47nOw2~!8A�phC@$7u2dmG!=4H*RY*d`�N[%{g=+C.g9{^/5%xk!cMd#K3f*Τmi"l(o8hGXULz!^׼=�OF|t, 0 CI 6]Y d+҅xEu (큷A!m$6qd#N<$#vC>t=4N<<1}67;؆<^k"'B}tOF{kԿd9[[˧NGכywHkS4=MpB{Ů7=l;iP ]8HD~ɕD4Y@_ @KDIA'wT C/JEJygUeUGeM [d -Zs{ βv/Reow4%?,M ä^_o9?~,ÿW՟ӏ篑 2A>��!��,]{� � ��e�X,1lHCr X�E5P[�SC.$M�@*iPƣR%@! *[')X9`X& �F�!��,�{� ���HA)raA:bⰢs&\Q!>`nۤC\ipEt C& ig>3PD:LJf DX )x js\/=X]&,t=X*'Pf9h%ϝ*U\b 7~J6<UQ.X/@|W= $8#θ &�>ЉXdž+^2s/Z}M=,*Ex=+A dNL{> I,G֯ /}'E%/lE6 4 o]@ L} >~W@yCPU70@l#KsHb�&HlsLYJ2iQPu: YFC .|AX@T(Pu< &Amg! tg 8@8ИAM2�a=09H <rui :„6 6H`�:0:;=1E*a$.݄a<+BNy9bm� K4 9p##m$gymF;-WmejKP& \Ѭz@Ͼ+\q[pc,2l+-O~,,;,'[ylk!Eq%\cVCvp iGSW}5p̐L:?O K'<Zz X(!P @tãk^gE[<Ʌ=P#5A8d,>76QO3v�ث襯v۝SQ~N腧R}":t4;ֿSE).;vYE-+-1sAA8"U1Ӊ O$c 50A\$: pd`<@o%GV@�pNvx Gp_.c6w%ә̆2} Ck@fC�xEq!+ n_�`/%AdtATe :Rƿx@b x x'/e603ṿiTB ƢB٢&rjC=[K'?8M>< 刻rtIe!M)D8 eK+˚1{T/WV!@PT�@g@ScQHQ"r4P15< x$nw 0BgwB$,R,Zd)9p`#�jcƳ @TM4P8&z"}(I)wn<=$Cq;! }$@@�mF/"UJզ׾' y x$45'_QXP@C@FOVyfEU 2 Jʐˆ�2 @Q鵰x<B#AVɪH6-gcYYSHsg*jv] jkj5\۲U g~ô9PV`%>@G:ҁ$b/a`W{Bq=J5�]>A�_k 9 DF:AU$Оz1ʉ1_W g Rw=ɘGgxnO|wc�C1by*6Hz:@[,h�B t3f{Rd޲IqA`a~X-;@r%ƅ��!��,�x�`��� (0*\ȰÇ#JHŋ3jȱǏ CIɄ \ɲ˗0cʜI͛ST8aaO>gQG"4i� IsMTgb͸5k^úYPً"+&\0I(@|+0A>B-ݶI, kqp 5r.P1^27wmRtHg0pL2ÙŗD4x9ᚂF(2(0brppU ,3 =-!3?==G~}ZCx@ ڴ5BQ1P AQhP=F0#QPs1AIs,:T#&lPPUwP9*ALd�Q24eg5 DVȸ`�@�BayPddAhfb¹&osf{g|מ/{HtCxPL)E2 pFz39b�Ic&A'F%/4'+B)B -t" Lz륙n*l�y 5N�>̳6m54f2;쫱"tF2CĶ{лP6jKn.|bB 0BjЕ ;1Z1JkCk - :-4H{_6iB%̃x .@pF B&pͤ$0M\. N]*L<gOL{4@:z . ݄a<ܥ6FpwN'qV 6M qK+:Hvi&pB>86k!m κ;ސd%Bt ;;�7U?MNe^ٽ]gЇ=y7-7݋8|;d83f7oPA| PC@7 (XjPcAA$f(W$";Ȗ64 Q�J xfXҧTÚscI[ $ m]!xazz!j{vH%0�DE|0P"X+H(NqIq"Đ1 c�C(2  3P($E<p dCT`!TH&It $&GIRrҔD%(!+"C#A\QĮx["DB <!0 $"Jj q;p?pfDrqB3Դ&6Y$6H$iAr!o[t[?f>b4ÙJ eA�-G\( c:pM*aT$)6:Έa V$4S 75HNr!?iPy!UG%*MӝѕHe`5*B5L�A*ч1{:$@ g5ZV@ HC3Ps نNgZr-Gd,B"RԢi:?{][5C? H"B9AYŃ$wzkBJ:Wgi><V^.i x=&m 3!LmbbW6Dq�hww B~Yx-0 Ȋ.̙c ݋]Kpv;- &>G{1BXoz%aiCJL:0yDJ<Ȑkd늰tJ� ./e(�Cp� xa Cz1y z2wsd*vY.d`ֻew4�8/CD!UryD//@xkį!Vt֛i,k9ՁJ-4[=ul2x@AjS7q÷h &D}BMi[[!mֈБt#aȡB( `;]nuA|㝠@{w<nLR8F2~cLNP+A.wTD'_ yp!Ihl<7 6\9yo�mś7�(=4n�\zG|\<8B>I2!ԩ~pD'?P~5O<P 8HDID9Y@[ @KIA'ByT C6/$LUJB{gA"腯Gv z85hAZ3wRb1@'U s"YI3T}7Rcd�8 A a  ؀'Q�41~Xx�!��,�x�Q��� (0*\ȰÇ#JHŋ3jȱ#B=Iɓ(Sr aIs̈́2qyaN5%4hF"MeAPFrH'Q@L2u0C t&AaDJJGA Vi5&=/<Ƕ"3\S#{H17fX]&@<Oxjۄ—N pvBqmw�k M6iJȓ_ /2d0śDwX69@}PՄ *@�߻7_= ?}_XF4Da=5ϔAX$s\m&390]u4b'hɅ$r PlcA%p12#B`-daPSVyB(_ g:2CzߵIR 6! &C� xac}A># .LhՊh#2h� O3D�OLqiBa$B<P<xt%ꨦBNyȓ9+l�*64ΕZ�@ qlmG;mpe 6̓6O̤̐L:݋O*NK'ٕ]cP�:P7 fP<$Lډl*D ;83 |,ԳB?'4BCTAG>7 B7>X 8ČwaAA^#&L'&< e3'T@<,$ =k)x}.pxwH[87qS$3>t4H0fRyo^z`Uwxuidc^|B͸ OABij*~ +<}<g}U#E`<D5 Yl4HطLyvA1Coj9&iawjs@Fę|D'soAf($*\{ȚƐsy| a;'hD"dkDVJ� p!."!e(Bp� xGqD #`* Mhqe"Bጘ0�y0Y�8N!KIH"_ȅ,2vD#')JFHŃǍ�H>H�a3@�hmR a@q9 ]>A�_|P_vV!bDF:AHɐtylBm4U� S̼qeT`H0qش@ yڳOi} ~"BV�ǎXD$P$؏�Y 'D0]0$ Gd`*$ME҆#AΰTZ7ejσ>]O*Ԣ*G5jB~Ӧ:u"/}TJ�!��,�{� ���H)[Át% s*dq!`nۤC\yD"%#wlj6$xn”;  J`ϟ<!ӦPW2$ )x%%js\ Y]&,t4Զ /ո{aa3V ynSu&^r<|Qs6`|->- $@`1GsLAށdD'F`|T$+άr rV#~8h[-X];I`7` 0&ٳZ'P>} .|r^$\Y&Plc@c%p1" A`-d!P#87_} GM&:wpM) tF2CHdOZ4`yuE`'H -y=u9Е $ODIa!a,NZSA.s,! &C� x@nک@># .LhӐ~hS\�jC OS9&Hi�.ăŃG7aX2^:9F腭%,ƒj*0 j5�ՀHfY[�8ƖGfmTU[C ?T뭹V  . _+pq, +h<^㪫k\q�B+^9G;m�{+=kqpYql6 rOm}2+1S3<c]/\v/c@%p͵9\E8v~ A6N"L!< xT"Z:+-l#x�AqSXސ N8΃7ww𡙌*B< n"E;1Ӊ O$)@<Xp;n(x3 @⡃.?KϡA L t �w9|N 鴱7='rԁY!a oPyZJ [ l " (Clb*X6PЂ\ أ!f1G4A@8|9k7;\g6I`@{UGjJU1ǀ[9 1BNy@<c\wskSDB|$r*C h&95FtM&~MĠBd6)LHA-YHDr<.hTl@@�T@ǺS\&xxd|L|DRI2 9]yL gc J#qA5DCrԆ<dE0іS AP!QSx/�$9ϐʩt MAj $>={Pn*eKC(SAI �F Ł*HZOl*!kp04`I\52j!8A�.'#kXՠ+^VPF @VǍ"~e@cAV�,\π�#ahK{ZXpkY�m.EsLsHm?kTo po{7o l� $RW H^+` oHG:𱸬{B#ƷX<Ȳ 3 m!j<|y`BHG7HЪt#�y$sOؿYWd/`�F:1$cEH#a6?!;ȱ y!G41" �0  3|x,c#FyȘk{ytaXOe/ ѬJ,H`+9n`u 0Ղ8+ѫJB $fIRD7+as<dQA`MYѣiz fI@��!��,%�x�I��� (0*\ȰÇ#JHŋ3j1#ACIɓ(S8Pᄅ/]œ)f˜7i洉gO PIt〢"Ȳҧ(#\ PE�rH'Q@L2u0C t&A{` No88MKXd�L0ۊpME# :awY3UQ.XϠw/,rfP Na8oNS@ | I5b g,o/:1v� / o??XGF4Da=5ϔAX$s\yǡ &39`vtb+hɆ$r PlcA%p16#B`-daPWfyF4,1 5N�>s9{ՉQ 6!! &C� xcA># .LhՋhRji� O3D�OLiB"$a$B<P<xt%hc9a!"J+V4):Ybti.E&D%\CvԺ i3CA+13<U0ztsjwbY�0@ AtuXΛ[tw)[|P7 '{ {,BC'T4BGAKBGM 3D@C̄Pn6Bc.BtbX1#޻瘁yb|N߀ >7E8mLnS)՛p0::;N;_Fv@X6vCBP awɬ}P<La$@<#l"đC_=!qzD"ѨGDX|ːH0 O8ˆy$ .;^Bzg50Oi>'Ef $=I'r+BjId;y֦ @\ˡBTx!PԜƐuy|M;3D kXJ� x\ޢ"2B!e(ǻBp� xD #.2=,kl2ڼIHRA2 SR2-%7)INj4H*&tnHG:�.ИbWn#.@qY ]>A�_0`Q\wh"fDF:ALɐDŽy�mt BhJTNfIx(h{4A gy~ ~2@��x3H$OI8 jANBQ1")h`Ò-IWj"||@3H8UKs4=HUQT:)TJժ& �!��,�{� ���HA)raA:bⰢs&\Q!>`nۤC\Y'Zt�j6$xnHÔ;  J`ϟ<!ӦPW2yKī)x%%js\/=X]&,U(,XWPۼjܽ0˙E+ф<Hi+ndU^Srv5Q*eH`uU ]k#Ը'Sm# >*cͼ拙|:a圭K_M[`DP{V @,ɮ0Y�]~ *I"pZ *ۘ2,t !r &HP$lp3Y$:G}qLCM3 ,)bt Ag$1qTddAI.٤EhC4ib#)e9ĖUY@fiޅn(t"@dNw|G2�a=09H7ti :„6 60j2d�:0:>=1 :a$B<@P<xt%ht!䄑<^+,jjLOoErqY[�8vGb-U[FEN ;4kj' - $07K;?}LJ{ z=7",9lr@%\cVCv i\Ń@Z+1C3<qtbmf@PsӍ9XEj_x-fA�.&@@m`clVF5B5Uu !+=z#xl{\`;tj/7np|3zJtx$O%@KEFP=^aO"`cAtbH ܮl JJ q;p!x�4w & t Ȓ m-tAYuPVjxVt:ʰ64yQBek1hၩaEz !Q>U $  8dATe�_{JVw7Ab  x '0OG7!8d"9* Cs>QwDmcdF$QaZXGQe.1!$ATD\Pg1L-6ӐT/Yhz�LPT@GHs$ s <MQB"r4`3]%Sρ"AQKS:ageC0ĂS t& E^@TFE4GR8TNEiM!)~<GAK$!* �K]Jt_V<H# ! �x^@p Y)W?Ibp "<ZrL-O@C@B!ׁw}ZZ2XKlڣT̯ ; �\uoEv5HiugcZ Tn7lH^+.[�m}@+Җ! uρ[2 aD-t#XVKBYK!{ݻXf(dX$Y ҅x?˦<A@!m$XU: yhο阇NX`Z`!߂]W>7$cmH#?;ȱ y9Ď{Cf\&;Xt LNxd� 4ֲS$ L?8m u3Le+3J%I9| p J 0W� NtH֔4z%VJݔM;ɴg@">ȩ > %mD@ (��!��,������!��,-�x�H��� (0*\ȰÇ#JHŋ3jȱǏ CIDM\ɲ˗0cʜI͆(*Ξ@ MhPC`͚lF}JsjFT bf΂]FrH'Q@L2u0 t&A;Z\,1P#! ˥+rf&= 3 %#w,W| Is)25:4PxeeQ`" D3WE`<P`A5^X졕h I'1/t>B;il_BL!P 1AhPh*x4J mI %HťbB8_CģXT�>Uw~/2$ADtd�ICMfCk]`i�y f[vYfgk٦c &qΉGxPL)E2v_nz0F2$v>A'F%/g*B)RcB -H" LꢙBjk�yPT;ÕM�>36V:߰:j6d.>駁6e;AxB'.tr)-"4/ñZAӺ/qPe60j`2�a=09HɵCs?:„6kh6<bL`�:0:=1E*ja$@. ݄a<5HBNyS9zw�dS/4(P�iP*AdVH#m<9xuߍZr=C# ;tu[yL>xC^w�(7+{n5Zsm<A/x<fo=wM7e ]5 Qm 1,$c6.686$#OXafxF:t(AGPn6G7D)AC&!@D 8X7Ph2h\9D HO SB(s`�( jQEiE)D|81*da�$ :4 ?4sG"1A+B$J&ĒA4iN(+ِx ![B%" !$:"^$Ҋ5AŒN .#|ǡR0BQia%Wsp?|&]Fdq@<Eo"q�:Qe5?Rcz>$ GV^LhA0,fF0&Eܣ3)M{"S$  "ĦV&tSԧ;POS@ NSxXniI9$*J!TBj�i!4kx@b hx�)уC)zRҀi]& "d ڨPwDJ\h|X:3PrHcٖ:IS r!-q=;ٰa+e=א֣{+Zj׵5j-KVALb,h!@A ԐT`e92j{M\MՃ i>< :ngm^Idb]j Xʐ"T+2C7H\ٴ| *h"|8ڂX5{Sl5f}-a 7-Sp $\+d":. &HA'w4Dt 0|2e(p y; K�e;4WF 3$=TДF!gW Y< 6g;=KӜN�f1GzeCsd`_C$Mi.wԥD:o3S(l+ fW�ֲ^Hj *X JPml+ζ=nn#${:G3t#a�rIyaojW 8Z. /@�O "yl# A�dO<hK?3N6nH(YK wPɘ7x\CfirlC5Q'=!Gsm8>(5hX?QORߘi!r|Q95r=�^E;t�#0PNDƻN[^NVvh$"чK"@,`  %� k>H \?c}z#^B'qbz+d"ܫ@< n2Z0?;g0$kݖ\{#A�'ha @i+v&(؁hx7&x(* �!��,5�x�@��� (0*\ȰÇ#JHŋ3jȱǏ CIBM\ɲ˗0cʜI�(*Ξ@ MhPB%4q�OҌTVjV"+&\0I(@<+0A>B-ݶI旅58=j[<7`reR搟dWt'Z&�@<0\ipMsE# ~{awYL<8V6(,XgPf9{h%Z gT {t=y@*T�L4) 1xA&hA(<iNmI %GÝbB8_CVP4Uw}/2A@4d�E CI^_DQ`�D�BUpAYniPXZczI\ga/{84A3``\X}*A`�a$A.L *I"@ܨE64K0 ]@h�P$lp3Yd**q C,yP<?nS+lsLAKCr'"9v{knkɹ InکAGZ6o{jı";lA'/*謘NdK%̃x .@pF B&p ٌ$0MZ# ]*L<NeOL@:z .݄a<DBNy9vw�_=vN44vOX⌙D1#m{9wq]q8C#D ;$5V(y~7rk]߷�7E?͊dq^e|q[6܀-6ټ#߽d@A&RADېDdGjp6uYZ<SZ8 0G 3q-Gď$q :4p1H<#HgwB"0٠Q@0 8H*ng !aZVn~8O @s(N!jHb}nQHŵ,*Gi"cp1\cHH$Adx.PhDvnppJXH"Ȅ4!<H$ 2�T$C1i9 3\ P `bJRZC3:a'$#3>AhĂ+8]D#BQ <f@Q`4&t9xK$QӋ4& Ka1HR9mhh=4΃8�Cws /UkVPL �Tr @_"T^΄fD hb3 ŦÉV!PAL!'=HJ!T/e\:ST&;yʍ$ !IХŠ"dMSO P"ē$#V=HLS@By"(DêXժ.� #9rG$CExR=51()G|mTZPswY*U,BٞB,Eլh+V !sIh,h!@AT+e`g[:U&o 2 H,UW2dr8/F5-eŮs ִ ZG,a€i=H<ڐ`4ʎװMD  }?K>Hv �VFԕA"|X \[V$IRAJ(bg%CJ\Iql<Kdǝp HJIo AG(p2A\r3'@ w/�2{(7h d b<A sp^d*TY.d`l@%a.C.@ :C.5=+^f9$xk!x3,�f]O{5[!#f@av<�T҃."ӄ:�BbzIEq�H>V�a$@dm` a@q 8�]>P =Ƕ3oBHG7~t#1Ɍu�} .<An[K1E3ȷ؆<^k*gBҽn! KH7ރ<#W.�=۔em݁\m o} z�.tʚ&3MngwϽeʻ;IvX$"$K"မ,`  %惘 H ?c|xx#YjBN'q}"x+d,a-/B3@תV4~Sz|@g\{+K7:iw[~!WH2ϿeR&8Xx�!��,������!��,�{� ���HA)raA:bⰢs&\Q!>`nۤC\YpL JJG1d9ܐ)y *A@3tæNdኗHZU(3\SSZH^T{, LD ivR<8&kM,| YmσuF[㆓)[&5f)Ht=X*7'۩&Q7:-9j4-N*Tnq?_t}�^hm ,J<Ԟ Kk'9uL\>Y�I#}%@'E%/&!A)"^A - LUx}'b�yt ̡s@>65tO/8tF2GE$69ГQNiQ БC$"& -Xs=y&A\2(u@ # ! '7ʈaf :P;gJ g a'F :„6 '6Ŗm9&HR r�AṂA�{!䄑<۞,ήUMO %�BրHg&&gA>xQ玻m]%lT1A@qE ,u%0> 0veOp , ?p9@f-j͖K[0\Q*AV!1@-d' i1C36I}'߄B:JT7v7=ןʬ]vcn+>kW@8-8C$Ak;F5CE)rpHzJv-;^Ux*En쵛tuM}<_w40wǃNFPBȆUEA  ;cmhaH<t7!O9a9@xDp<P0$uD0N;!z�t]Wz 6$ ޗv79':dH؞h$&FQ@mC iwB<P;QX)!GV+Ȋ I@� |prGă^BX9l$< ʉǶHE84P)M<"9J&(L⪠)#/Z:OE3R Rsp\H&&Z.NY]-SV('IIO:qTf' 2JZ$tH*vWyod];)>APq)N @™5dr& I/[zAWeۜCqjF�m(7c1R7:) 2!}h#̄|@ *ӈ4��} O̟Ua(RwuHLTMqS$!2�} C{MM/R|bgA!?Iq3'DҔ3wI^P '@w-7�2ԟF _V B1 @ܠ<DIņʰHkz]dw4y=Ck_ktȕ4 N+ tnp 9dl�l+ }@;&"6�u+ _{7R^,# #p=Q껍Rt 1*Yفt}EBIC@!mF: ynhH<`|籪1\`>5A�"H!d#i<,L{9!`6H ^CLd; \NGx,$=@L�Xs .s�Lf3G1~CbD#X ysp@_@$Ҙfb&z !`_NK@"T'ͭc\WPAO䐟v-r"@P@�!��,������!��,=�x�8��� (0*\ȰÇ#JHŋ3jȱǏ CI$A%S\ɲ˗0cʜI“NXS'ϟ>&9h� is@SO5:p*ի4qĺ2µ�UdŤ0 F:bd5܇X6 [ !Cܦ[<7߶oe2v9䐗"dvw tԊOʰ4x:Sdk t+i0vo ˸ˢDmjwPf93V%̜0yF*ooGciRu!7UH+L!!AT R%A(<iN�AG] %1!eP1 0g:bT>T0:AЍX^| A>̣~�IIAVViЕm_rX%eٜv�BCxPL)E2l{y0F2c"A'yF%/)B)B -L)E<AjA:h&zP$97$ȲlCzk�vlsLeނP=V[ -h;$AAbj 1f-Bꪭ0+JA'd/*�Gݴ#:T<G g a'6lH ژh�ڴ�Bm4EA  AM8Yh9a!A]tu?=tLc!B(AV|#mDӸAGΐ8}v wgl}P&RSm$B9|.7ݝOpҙ;߬O]uxz�i6ѳ`xc>?%O A,ِDdcAڸcg&欀OAgC, ZNP HښʠA(7ģ8|:srh A2aPX\x d h?3HV6<jlGAK~=dMH>#"Zb OT pQqEL]bGA!{ġAk  - /B0X (U`!TH"H4 4H$0J"!³JD%BHTdE%BL4m&xB2"TpĿR0BAO.q/)ZB07!m8hf�v(@3Kt�:Q=3d;r\.H8IOϙ2�7$hL‡C%?Bof�$װA*@AȤAATj05PJeRԦ$)5r$ôDSuiClh� >&d (/wHLS@BCyRħXͪS! ̣XՉ'Y3P~r W6B\r,`lBGĒN'Նvг*VЦhD|#!� !" p;& [frEA=!C!)ji+U* +OcAބa AO mUdAT0o~/"Q`nc>]n�a\ڎ$!g%CA?p-0yG<ȌkcB0pqOb`ӳd5 M�Bp� x!` ㋋jv e)S;BrhT *rA^*-||w#峟"In &=9==op )yvE762/{,A\ZUOʒ�-aVBr]]/7kM F|t( 0B H Ӛ6݄0C 8V. / NO "yl# qdȣN<Aw @orp� §d8D{12xjAm#&Hnr+V7qoX"/ށo4@y:>nQ{A]s8!p+ַ�?c*F+gSҤO=a;wP `8�HD~D1Y@_ @KIA"y#<5KRbzx>!xŷ^!H0a$.F+{aX}gϕ">-2g0/% WB_!ϾOT '?� �!��,E�x�8��� (0*\ȰÇ#JHŋ3jȱǏ CI$A%S\ɲ˗0cʜI“NXS'ϟ>&9&lTiSL&*�8 ^Z*bR#D1xOC,mMF8M a藭[?N9deX"†c͊#�@<`s)254PweeQ`" D6Sw/,rJ"ϸ]uva/@?ip]:տpBx"4&>-|E�bPZۅ{ rb�aPPPyG"C4dcI9#=cU1&wP/ƈ_kkHyVBYQr]YeBj\ Ak=5ϔAX$s _ŖmI�c$Li@$("jɝ$r uPlcA%p1f)B`-daPz:h1 @ +`,9ۄPjk�rlsLeނ9m:aj{^k Qn{A=2 |'jëJ�A'/*8[cO޸Q 6! &C� xg6sH ڔAڸDe�:0:=1Eў|a$?.݄a<YuFwNs�^lC4"č${xw#m8ٍ7m_Yp7CnoN7tS'Y.7nzOpqȕH|KM5z�g|ͫ]ݯͷ.lGSB8.3Bp6lYI9+aAgCZ`{\Nh=EҚɠA(7ģ5RT{6srh >2PX%1TApM"�3 q6&. "$$.Q" |X#$Ј@a*DbY.|1"%"Xy ԑZh  x>TVQ ,Đ AdBFđd�$IɆc"k*f!AH"L! YŒN xVyăR vIR0B1Oa!#]#d/)YF0PMmH`P ׅhF0@9P&n&lBl2<"><95'=sY0m#2x,4Q%L~c&E( "ĤAAT�@'iJej6L&+#GCHh�; D;EO@}D\.#fyT< 2D9#eGTZUt!<:#z"@M T!k$V~rc1^]>cAhhmXZŠuTMa;j*5# 2bK `IPѩmb֢I=>&ëO-edȐiȁy;jZ2oyM]ؒaxsmHS ^*d1bռX>`Ïocu `mX ,_DNRq]: o>}~8j-*!V*%a ௎y7'%&5@5Brʱ�AŃ@ۃ"wM~rSD!gN)˰݄� RavcEg�9�B&2C-͙9xk!3rfFzLtU,kك "ŽP^t�YahpĴ LqIg�H>P�aԑ@m@<Q1 3P =ǴͳnBHG7H�mɐGÝy&3Ww{6C3'KOɘ4xěAfFQrlC{U5\!7Mqo w X/B*~q G3.Axr#+g>o~!7u9cZ @K|'!t&1=Lb7׮P [8HDv D2Y@_ @KIA'BwT C.JCBBl"W?z>"Sv"hAW^O{*G ,خVf={D{ e*>_zI3 zGF%K>}L_H}Iʟ~O�!��,������!��,M�x�0��� (0*\ȰÇ#JHŋ3jȱǏ CI#A%S\ɲ˗0cʜIɁ ',ԙsϞ@jPA5ҚN3F}zp*իWoĊ1µ�UdŤ0 F:bd5܇X6 ۤ !\,1P#! }+qd)-! K$BP4�Zu6&=�hpMsE# ~{awYxRmnHCrո{aaV%yF*ÏGɃjIOBFP !1Xԁ4&>-|4E�bPzX܇} MtAA�aPP|bC@$dIEp$CIFf}1&hДUVD�BAa٥`z&d&gx�BCxPL)E2m*&39BzI$r ĕPlcA̘%p1E<AAh@$97@W7 9ۈE$}A!쯶J*Bg$1q8tnqi߮7.k.|BI>劣~jP )   t*k :)d%BV8$E%̃x .@pF B&pm $0Y.*L<dOLx'@:z .ălŃG7aX2am!<÷߀pvk'mwM!B(AB fE8 pSؠl8wzCZs~}^x�47)g;W{_N7C&7v}wC {ᇓP]#qkBDT51d,Aa'#&4 xF:@At(SAPn6G7$"1C%a%E5�!PE�&1hC\9D O Q�(t%A 6R$_8UT3EtHYC`(7*I{+4T BtsH3}ԋ ,đ dB$JĒd#ِx A[1�-Œ!$StT"D_B <!,Rx*R0B\Pla0#*,1XF0U8`kp6(a`rng=^O<REx5O/BL8m(@M챢ڣ1LZS%fP~\ʃR8EA/EHLY�T5MIe$jI.`pH)j5ogaS<G+jA퓟Z*TDg0HۨPwD[[T(0Y3P"e_X{'Y ŒzTEH{XNceHLѳĪVjЦMCLEބ~P11Jc4=V4Mbi!ӐCkTk,=sWH.!ME1>˵BP2#- \% 置j9B| *G_U.#bVuj$a%mnB `#Re(}-l#l”*!\%ady7ŏ)%!&q5<*)ABrѿ �?4!xWȠ`{.OB xqt W Y<g;:DJ< r�Lș_{ kȡTZApk!YN!e8)u�N�<:ҫt<?&*.]qzk]Z!SI!k�H>f�a#4@m@< 3 G =ǴnBHG7H 5$C( w: eM=ooqJPO`߄J<ِF#ހLwc(,CqMx"OMnsWȸjI7YX6]< )[NL|7B.ozۙǹy>^+\V5ɩo:d!X p A#0r$$ȓ#& ) D %BiI C6~/|MxegY"s CmgZ֮Fϖ� Ώ>Vt8θ/! AO_OREO�!��,]{�� ��~�tID �58QKwE�LtpU ,{ Ï cȐMq$lӉQyx d*d�5r|8,��d�TZᡶtґc`Y\Zi�!��,�{� ���HA)raA:bⰢs&\Q!>`nۤC\YKėDXcĒ! S,(tу?f<3)SNJ] b Yf SZ <5๱,.QB 4Yr%xո{aa3VzpS|+Fs>)m1jV. Wo2$0:Թņ,x;,&:1࣢YrثsnE!C]ꆩ69p}MP{V @,ɮ `<C�@X *I"\ *ۘ2,t !r fHP$lp3Y4z Hq AUԄ;0@l#vXc�-jHlsLUYZrix?Ii#VS .|Ah@dV(xA 'A}wb+ ta8@8М#AtJ g a'G*H 0`�@d� @  r�AMڲ^d9a!k眛D;mU6P*� EuV&aA>x;.cѥlTDn\C,y50>+q�1psl(Ю|l&;ZP/tm) JK;S$5)ASW5m5d06{09V<j ͬ t̐L:OOBK'LvZ(!P @täruN9Ln3y@m@ _ >͵\V" $<+ ^{oy�9󾻭8%|i3|_6@K;^}j6s;4A d�-1SAAX@Q $!`TftOHR|0˳6ȭR0A\$:H G ꬅ׋A(B E hTm8vPb '<uVHx$Vl<Q1iqޙBA{�RE*LZ ~! HC,kT0�vXX@ 2@sI%]Dž3 1JNy@<]i׋jAIKbVG9A#}CI ~'\!"(*>2s - 'btL3&MmfJYILsd2hBERYNx dtl |sZi>2 u EB9ZC@SAm;߃1RYd)i ΀T3!C7̈́|@ *GbT b(4�Ae)EdҼ#T bShAh� 5A7RV@$@.vX9VI-C9N xqS CD *X̮z@0F0zh+ T t �vwܦ!mmtU0<j[4nj(np|+ d- ׽&=!xVYV)o�{6w' hGKZ�H><G֒qLR„_�cA 10 ׁt!p|P)O4,Ac xc$Cp:^XA,$_FIAfa O2܆4 vlh؆<vf`P2 O9rc+7R96J&h%LၼH3PrXq;36t�Ьf6/'ۏ=…��!��,U�x���� (0*\ȰÇ#JHŋ3jHƏ CIɒ*ʖ0_LRA's3"Ϟ S:2µ�UdMHa t% $9P |jP+>PKmīKvAI3(_ZIh #ρ <^4@`ǃqE(EDnhۄBTpuBamv�ӔP�A"3@&9@qmΘ yBMJk�B/{џj�!>CY) a5f!\0F2qɁcB(A'�F%/@f"B)B -l("E<A:A)xFxPsTBlxMQ 6!! &C� xc`eA># .Lht SЁ@:z .~݄a<`BNyj꣑Nu5pN&'t5O�5 RGcVTiF;pMc A)Bp65:XG%+1'3<Nv|tr9 b[�%p_ͻMHj9n*|AySI$AUV |ï@CHP<ȋD4BG3D2,B»|Ԗ瘁T9q@<bmOTri A?8B81C~[B\Fn'wAvȗri@']33B2SxO,;r;S؎q^tNM\:R{,FYkP*%=<:o'v#ehMsjqCq7ݸV<xpSDas,>,5Bh;B ;pW� l AHhNh !1,\nmCtxB A0fZ0 Ѐv~^!pBpF\- �7&�$!gBH5.3H*s~HG:�,W?n#{z@q !]>A�_/\)si NDF:AѤɐ$yl}l8�R|dBneGm%. hQ:C&%)O�ȣe2=lO2 L M8HD$ xJeZ\T prJW@ 0Z(%;e�}!>yІ~dH*MP=]E7юz4HGJR�!��,�{� ���H)[Át% s*dq!`nۤC\YėJJG1mbI)y *A@3tæNdaD1IVrg RV <5๱߆,.QB 4Xjۄjܽ0˙E+ц<ie!KFx枓U~TIO@<8&`|-L5 $N `1GL廠щX̑A+ߎ}3w~w̩A+ VڳRbIv$739oD 8I~$r n7@)A -$@ LX8b�y4s3@>39@Px#/j!Ag$1q<ueQha~QiX)#p.|B{w%Aj^(@  - (CHbtV!:A2�a=09H7 j2$0MC tpk`�:0:?=1EbuHa$B<@P<xt%,qBNy9n�ZZ4I05 RG[ #m:ynXtj;sб.;/4qO�7>MFBk@3@亶[R=ҧ%@״~k@X-"31C3Hɓ:JT71P<<ٜcSΓ[Ty\;>9 @ _ >N"L!<' 5zU)"?<+C?7jNHA}CҋX(cy�9?yM@:ACm4E(.U @0  7[ aH<t))ar9p-`QԀ@wD0;=�t Ňpkp?>I [4F4~:E8~4ܛoC<p B5!`#H6j I@PD V|+#7*HsEr*< #o@%5H*[ʢ# \!wD:wzXJh:d$d2عZ*+j0-`=~Te+oxktH"{!U yhAb^rrsC%74):LC#'sSJz設csjF%ͽ}&B`HS <AjQfadROZB|@ *TrdPBajH2ұURUS҂8RP10䕄�& 5AOK?׬VT$$9 $ e(B 0 x[<*dHIA5I3Y5VVIxܸN*Xud`@fr)xI}J3 WAc#wkM^j3z^sp�fT"@Ƌ]%hPZ̷a@8�7�n�^D.W`qMWt#]�QrDI )a 1ZؖeH#=@!mF: yX~H<' �m_ձA�"H!Ÿḍi<l*;ȱ yHӼhV3.8+v_9&; {NG3jg@I;?'23=d,,,hBzHެ jtB� "v8`X\ ^&4R )Jf )^YBm*Cmq vA>I[%b& ; �!��,]�x� ��� (0*\ȰÇ#JHŋ3jȱǏ CI!A%S\ɲ˗0cʜI3Ɂ ',ԙsϞ@%4QhE4cӥB:fA#\ PEVL `(Q &ρ:VXm}Zm ))cP# ` a7Z?N9deeX" 3®4xᚂF(|2(0bn6aŠw/,rtDKx9Ujxaxvz̚IOBmF[U( h(<O v3:&C8bBx:bT>T@(fz}Q{Wa| %46@A@�BM>yPP$%VV餖W:/{HCxPL)E2lky0F2�cv⩧A'iF%/hVlcA%p1*(B`-daPzPNgwyPΠdȢA"y"tF2C&l>Ti6bŞhJ -жCt{еB܎ib))Jz :)TA.sCK@ 6! &C� x&B%A># .Lh#hSb�1\X OS9&Hr�.ăŃG7aX2}H+ !䄑<Ch4R,3b0̓pW"uf9F4/*Mi}6IoFPؒC =t>"Ix�xpC439nD=:A1f{�\{m]QOmA;DčP÷;pn 1u6M5nO?;+1S"3<_| `HLK`�|1t(b܀j n�B9-䈃5 moO;3rD8c 1pop 5T; \�E$."D4Dh@xDTCE0F٢{qxQ*x6PAI+$ ɞ&T&BB&ĐAAȆchfx!AU-d!ȗftOHcFăMҢR0B\PPw4"Y-qKVBdq3 Q8m(ռf4wt!Dt�:QA$,C\ 3jǼMOâ<y<c<5tOk\&rM|C ,"  u!ʁ@:R%=##$ 4!"d<a0 bx@(f aif SH<#Es)/Je*P!aVARpG$Dd*L9QeQnoָ*N:<Vw,K;#OVƟ͠a5OjRjIv#{̣b2rS iH*1d4Hk_fFiB0�4|QBLC]O!֡Ⳳ($ra!6�] s]?Q_h"H! y䷡Skxc):7`ATk~Ռ{} FĪory _# Aѓ/ *K%- q*!8$a oty7ƺ-%%AJڪ5?Brʁ �+4ѾxW� ].O1˰c<)J'ː$5Y<YY ;^$!{n:,d"3Dtޒ,^c׸^C]g:C.&#|^Pr)(j} No2OTёJ̖$!RBr}]Z!OIEAk�H><�a܅@m@{<# 3 O =ǴճnBHG7Ht#`1dy{;!w,t lJ<C7'؆<fx\ 9nq U NW7ރ<g]ng _><|M:B.ozU�usv '=�*M)Kg4^vKfǨՠXD$4I$� $ D0}IA"y#;5KiR^zx>!}x÷^!HК- va1@fUZgOKO#.pF?}bw;#BO׿ _>OWH@��!��,e�x� ��� (0*\ȰÇ#JHŋ3jDHƏ CII*ʖ0_`ɛ$s'Ȕ}Bp-@YBR#D1xĊOC,mjRґ;@}x4&=/<"3\SzH|eX]&@4<7M,|<.P4A/ 4BMOS@ ZL| I]b*gԄtm 57�͟ݠt֫;O&Z�_{$N}ڳR bIv,BٻS1ɞ`78ݗ~ *I"؃E64K0 ]@C " LXIHAAyu:&97$r1T<MH g a'޼RRiH 4_�ڈe_ S|@:z I. ݄a<Yg_BNyhV}y`z5Ml[uV"uf7JP@P<-ND%\Bv�j i^}A#+1c&3<Nq,fA,ox֗/k <xO7{pEoy/7lfA>3S2vd Q aql>$8Lp!r�`HA*#Բ&L'&< a'T@<,p-mh)x$}.pИDGMs 4=C Ld}Q[#$,"P ͌w OABsu<6+oBcݛMsysRW))SG"X$ΐHYC ~А/ΓAAz;А>Ch{74yθl>o>?t!@r;nU2CҏƐnƶy0,OL;@!dDͤtT"�X֦[',C9T``y;I� ٷ.`B !_J噔(' b"ŹQ!9#ǽ ]yʸ3I!<9  3 5K 3HBHG7H@t#hW1M yIwD.Ҏ0t�#PȀDdǕہuJRmRCAbf�0IҜp`0 ՂqaBB]1DCF n&t6`aLHN� L<oyγ̧7ǩ~ �!��,�{� ���HA)raA:bⰢs&\Q!>`nۤC\yPR:r :Dp 5rX<7aJzόDuMp)ӧ+tX"]"j ๩@ᚂҡFx{2(0%dڮLm`KAmq,gD ]VT̸adɔw6V٢SɠJ']< S9j5tۤ� L.׵!9r{&Y m ,UQXs ;_ }�7L: Smrp:x=+A dNd> I,Gس#~@'E%/[)A - E<@&@^x_~7P1 ΁@ @v�u<b�#FHlsL5YRRiQ wv)NxbK .|RAH!@\2(u>ɉ&Au! '<ƈs`hAk['P* .@pF B&p|y $0 C�qʪ *L<NOOL񪄤@:z ɨ.݄a<;@BNyȃZ߆ڱ.ꪭn4 ՀHj čY[�8Gz h \FE W+v7p W̭@Zk"c2+̨q�V{-jA[m�*, qr!I@*� pM6 ܂O2+1s3<o}/px/gD@tmcW[HNn0*3S2�@M[oCjT "[9+wEߞh`;vw ?@{F=CcSE_n~q;|:px$O%@KEFPC "6�� ; ŒN @HăǸR0A\$: 䒷 aH<<BNP%{@"C  du81'(0\r!Z!YbX bz_B4ȭ$ʐm1<Nh (dPB0nBxh4׶ŊX j$vn3D@]y BrW@Ab  x,jSFJ~2dHR*0G #/ &rjC>sK1Lf0:kez3zo\&5Qk4NQZs N`%>L%dIBƣ'<|s<2 9�Mg4щk%稔�XڨlL%|LfC` Ƃ䓡 KҖr!! ;1@+)Tj�zQdT^*v<JMzjQ AJI �Fߦ*bGRIOLhqkP4xIb2#_!w-�2r,;A F W7T < �Uq[wȋovmmpۇ֧ A5(׶] cqEr\\P}v {X@F2/zZD6io�{Rw'm�0F8">@G:ҁŵ$8a XeBqQ ]>A�_X4n Q9 DF:AYɐ t#' 1RY\6Y8DAX'$c=H#b9?:;ȱ y YĖedxC\eNE84|x,aȞ\941}cx-Lg;㹨ܴQ,w%@A$07x: kATp !`*XDI@"앤Z'ͱӐdWq6PYKKͮEV]j5u��!��,e{� � ��e�X,1lHCr X�E5P[�SC.$M�@*iPƣR%@! *[')X9`X& �F�!��,m�x���� (0*\ȰÇ#JHŋ3jȱǏ Cɑ A(S\ɲ˗0cʜ@ĩg� Mzp�QDnD4!ӦPYekȊIa t% $9P jP->PKmij3ݫ'@ Ns88M a,Z?N9de eX"ґ;*Zh y3EfA7 ϹbwYUJ-(,XgPf9{h9 g{B{4}Dct4 Զ /QP.D`B"4J L] %H~B82_DP Ug|A0"oEt#c9XCl@~iBtA d�MdJ2餕ќ/{|5ϔAX$s]&TmI�c$LQ@&riɘ$r 햡A)B -YE<A*A>qyP-Ƥ 5N�>C6G2tb"tF2C&tl>c6jh~ -pе4"^Abg�Bm:A⢂Ά i:dL%̃x .@pF B&pMy $0W *L<bOLyn@:z . ݄a<=􋆐FwN_I/.5 >%T9 EV\#m6M6Y o CZN73>& 54fMOp0i^~3bSW}~[H+؛޳)L5 RnTb6.6M/nO2w 8+1"3<N뷏/И$/AGPn5G7hd'lxM > 8X7n sA5T< \�E "4D;1 !(�W4T aHEY]A1 |AD3ؠ#$ QܑgLA*:*Ď #B!!XDD!AWQdxC"DB <!YhZ)@s!nx36p,$obD4 ,FP(В4t�:QhlCH+Z8 4@MO+7,mu%)`YS=F|T F "ĠE1HA?r$fI$`eHhQhC5I SH<ăE ,=Y'(U)KU6)̊;"q$=$A@ |!hdSБ &R?)U!gUqԮH"%kLc-4,Wpҕv5 q>XuT%$� �jH*n1&5HcfXe j(2drH<7ʕ<i63"d2$4E&Šp $fZ.!V�HUvQA<.ցmnhUkUk67}/B6ϫh$,d"Fj.ĥ0�$ +6A})B,$  'e(n y;J�e_N 3IFHSA2u!+ ;Z+[n:>bZBYT[s`^C<e(}>c�E�:c]ajc?1t�|l Xōv�g9;C A) UKF|t 0BF 36jMd`i ҅xEj'ߞ߁A!m$6qdȃ5N<3fO+U=샼Ibd i< F5ܪy9!6�ׄ np^vC;;!OGpd+ !yD['&cu_;q{0Ig`I,?`JWbҩt!�4H!yH8@u RkAHBv8#)@D w%B<F CDkO{4 V W-{1@^EXګ+ T7O? ȠK:Q٫X~K!ƿ|W O[؏~@��!��,�{� ���H)[Át% s*dq!`nۤC\YėzDXcĒ!S,(tу?f<3)SNJ]  t2QSZ <5๱߆,.QB tE * TY,ZO1}8e7wrϛSOx,X:eH`۩u{#JS@ gʹQ'Nt\x5&>0& %jJa%ٵmI�c$L8 .|_$\[ 'Plc@c%p1r!A`-d!P78&x` 1bAM䶍,y֣!Ag$1q<eA]~EfCtn8b)9ě[a@!g9(.(/V�' %V:^AP g a'8*H 4`�Hd�X  @M۳e9a!OlT{m˫UsSA%cPXgp8vGЎEF!,=B;q�$1p|)6{ñ T@2/[sHbdc@XfìČt̐L:TފO JK'٭6-:JT7$P<֛cSNn[wy\>&=7A8Mqxl{Q Qgk)pH J촯-Oy*y7b#o|A^=}\y.su5XT3D/i@>pRA <!K `s9p*[)@s nxGؼL#cY UDu6Ǻ*]A:|":t�}4zl9px1{gaD# Pn"ʭ7]P x'`/6)>}hQ~5$P vpH< 2sH(ƍƋ 1FNy@<5:0*dCHGBW,) MxHr g>� $t!'%~&%WO%d<G+* N65IL%A|!؝(!0 g(x�eV|2 9x/h+Ё!YA<8`@`"mt-(DgQ$Tx<O<-POzJ*X<C]ɥʔ68%X9$!2�@k<f )+! B?HBp%Ƭ>knZr%�!8A�J'lQQf蕡_ւ "2l(yPV@ XRyj63 Ecsk K{ԍhC\ck1-jV$r}=vMl�7rW e^ 0.r[:HG:𑹯B#. Z< 3 m!=~}2aBHG7H�t#p\1L?p oW{5+ᇁ?ɘnxd8q 0>&wcHQG##YA`ǿ})w iA S n@Ȝ_9vi6K .|ư99�]rNC� "ȹv8ՁX@([ 0JDOIAYhTO9J$ݓRqz(~ܦAk[{".H�!��,u�x����� (0*\ȰÇ#JHŋ3:$HPǏ CIBNXR%K 0I䀚o Ts!\0I(@<*0A>B-ݶIeY=%#w`O|8ЄVdk tR/i0oa ˸ˢD.\2d jۄ=ptB) &uxOd`" '#$gK4[ @<͟#WPMf_{2g0ĒXǗ?`�c=mp×O]|"^$\a"*ۘr,(t !rLP$lp3Yġ `|BjD�:q80j`2�a=09H7udK:„6I6bHIX`�:0:Ca&[z 0 rAṂlu!䄑<袃9g^VyVӂB%s<ԀHY#N;KDvP<6MvGȊAt 9ϤS\�ۥ/tN)-B6j <uO7-z8E�甛jA8, >3S2mXB+TpB+>DoAȈV#1&L'&<L`&T@<,8 m}Ӻ9k)x|Ϋp0GI3l3)O*6Acjh鄚q}|2|F@AvdVI@←wB 23179+$S> = AL4{'>D:"tU#ũ4r/�}P*j#nPw##5O M#׽鸎 ocrl[W�&%d*37̐d0Є<8AOsS,IȹC:"kgCO퇐20 P/<G$1cӓA /!puC_�tvm!6LEv�H>�axʕ@Zgm K a@q  ]>A�_,Xa2DF:A-ɐG]ylBdaB84W<HzX1d�F:L9̡t$HR@bf�(IҜp0fՂ`DB@#AF ^!Hp 2{e~Gɤ$B IgZ1nzS$�!��,�{� ���HA)raA:bⰢs&\Q!>`nۤC\YOėzJJG1mbIܐ)y *A@3tæNdaDH@ ek tJi`؋oqE(!ׂ] _Tɢ Զ /ո{aa3VyPS{+FJ ̛' mjV.P`n2$0:Թ5X g IAtbVGEdܝk/Hb0 zEujX�x=+A dל[&39[o 28I$r m@)2_A -4@ Lݘ$.(c�yt+s@>̃69$O?8 tF2GE4v9Зaigy e\ڈZ .|bAWʉ'Aln@ 1 (Gx@>*C'*G|[ex2�a=09H5kB$0 CMtk`�:0:?=1E…Ha$.G7aX2kb{!䄑< UMO @@HY"ueo9PzQbUlTn|CF;w`Bǫq�#qpܬ1ZRůuS<离n�Pk~2u,m!9pUHv: iGo=ˬLt̐L:U&OFK'إ&:JT7$P<ƛbcE[x;>7A8Mɺ3S2m` =\ 5 /+C O7= z*+dwq_ }'ՙ_`@{[Ge'-3!Hd*$"w0�`ĸl $aR9:; ]B⁄&T2|N Yg(3Trԡ\!YbX j|oB"$2$pbCE+>O<@)cm}ntB85#B=qX8p vΈpH$2Y#H ) Q7QAb  xTl#]㓡%WR" -:HTyYԤ*'3P1`Ld:$ZYQ3![&A8hbG Uy>T/%(GIMSbE6Jϔ!Ijy@L7KI0?)摕�4`'q,LCTK% vz-d>!l6 i+oJ\Ohm`|,H-Pm5#DU�\T = PTBFJ0e9Zԣ&5'KRJBd�0Py"%\jWH>08BgO,\zkOƖl @N [<*dhDN֯c Z<IŊ`ˆ�kk;%(Mc[:= ru9wk!nG\(W @\J @g 9m;+YN7�ս< F�u!:ґ|N%!.#2cB< zSH!X 6 +ɐ6y/5"sXphY8@�y,!NJ# R x9!d&/2l s vHj?x>�dhYy~ʞ7gGoŻu<:*/[ w0:$@A$08+ jATjPV%!`BdXDK@"앤'>ͱsdWv /'TrͮuEV]iH@��!��,^{�� ���H�P# a z(Tw/,rM0AN *(A26Y>"A+jr&�.k 6q/ t� MISlVUBJwd!TJ!*ϝCmsuBT_ P9`Hv-<0q0@ �!��,}�x����� (0*\ȰÇ#JHŋ3jȱǏ Cɐ A(S\ɲ˗0cʜ@iPA4 ТMtӧmZ*bR#D1xDOC,m,c$ctvɚi┍CF[%!@(ݶ@5&=�epMqE# zawY z(T.yո{aaV%xF*o?Gc^<eIOY.*h>PMD�<:O v3&C8CmcP@p @g:bT>T8A}x.hP PP*8PA>sh_�@�BQNyP /{84<S a5tl&39@4gwi $r 5Plc}"&t !r.P$lp3Yri'q BE[97$d#{4jt(Bg$1q8lB>Ck˚.|B>AjK.Byi+pt.*БhyPdG%̃x .@pF B&p+H# .Lh՞hb�>L*L<aOLv^@:z .ăjŃG7aXd�I/!䄑<ChtS<snM B9|čh8 `Skm_ؗl89B@CBm{/e;җζ}pC8̳誛yG+n 5^7|_-ʾۧ|~;D[18rqG KDvP<6M;^]*ΊA̴ 9Ϥ#٢/(A&GAǁPn5G7hT!9;08: " vf$j A4џ sAs5Tc;Ad=�'n9rTo !Y!<R + o;)Xh4|Cj6p'V< Bx W B%" !$*2"*5: ! <!IRB("i^)@s!nxV鉑G'KXc<&#b8`h(9 �1H|xZp@9ꀵ@St'=.f:37Knҍb�ջostG+'yIă)iFQR|_91&װA*@q1(�EHDDjgI$`bmH(0 {#ME'F2L< 1*(F+0)MSi 2�UB*l2:# 9=ޜhCZzլ6dHz u+k)BFs^>W[WϴѮ‹LkӼ hC _�b{@҅8� I3f>fC={f|5K 2 9u'@:˾c1g鉐b+eDu!EhCL&D)-b↵fuV>`.m? ]Қv^╫+$ Jo!w;Hr C2DsM aLI]l<Sѝ0hhHI A pfA1T\r&�!8A�Lh#}?=ضmca :F#³$2*ExmJ}Pwv["� 77le`e>,ly%ΩyA K!r_ cro|)CYHSRѥsP:#>@G:ҁ @r!w$bzme2cԴB< µp 6 L/ɐwyp¾nWe7AJ M`k蚒1Z6XOl|TP 6f4wk^w:-X=?x>�fsW __\᫮o?9~p䦶9lf;-v'^7. K5tLHe5}RЁ.%8`jqG,H`yH$X 0ׂqB?$[H1RgD()!tw񞑽w\B =#)`d*6E+["C{򌷈wwY/Wzd%)y?YO򗿔��!��,�x���� (0*\ȰÇ#JHŋ3jȱǏ CIȓ(S\ɲ˗0cʜXr q`̟ � tТEtӧkZ*bR#D1xDOC,mcp^P#! 5+pb) 5!3 kp{AJ5&=�fpMrE# zawY z(T r q,gDKH9UjxaxvϾn/7\KS]*><4J C@xn1AI(P1PT�>�$UwzGK2DcC96#TAT@<f�/{84<S a5ted&39 !8Ǧp.|f$\o"*ۘr,!&t !rL�*(B`-daPvzСy盔1Nnexc<3n8DV6ᐥd,>g`JkI xzA=&kMNjJr+A&.*hPpk$iQ 6! &C� :#fA># .Lh՜hâ*r� OS]o@:z .ăjŃG7aX2�-F`}N_m4J-5MB�te8F Pd֘l88BC9{^uИq^6p,xIwnv<:A/$_T[5U_}vKs:G/r駧QA}EDpCjGmAT#foP ÊA̰ 9Ϥkɢ/zPfB|t(�%<PcxtcF_蚣-l b@ofAB&l\Мq ��E�"4Dpd,P!jzd<I9�'n1 m X1U�`oBȐx aa B%"Œ!$:"9�!T <!"EPND$BQ <xf@Ĥz`$ͱR$@H8 qX r\rz(J4 @9�0lBd'x%�iM4Ϙ 16@v,5qJM]'?n2ܝT5 4!vF`v$LCQ)f E+$@)x !Q;r=|1Ғ4eۨ� MB]鐘fo@ |!G �Sڐ]؄[^ĭ`XZsFd]K߹Ք'iWhZRz A[DTFz`+AXȃ$ ĩeRiǍ:6bi>Z� j:l\7Z!u` !-R,UP-p1dv1mjQU nQA<FzT=nY f7�"LKZi*ћFw (y[@�v"IU* LF+(pf lQۓ,BбG,\ÞrBz4<# @N�_<+d̗^j?7!A1`�`*U@6d� V ?8-C`\,(K9!1$+Yی1gѿ\yGNܕ,o^^sw[ .n wEcx 3�3vz8d9�%B*:ґ|X0� 9#*k/*y7@g@r{S<n fzI<HtÄrc�ƎAv(0nh)xeCbriAm a5Ao{[!svՎ7>"h@TnwYִ5Rh}l&_p8%^D-N7G�'AIIOBvHF I"`#�a-HI.'LA.vI:F*]"P?⤫"d{B^IXBD9A" d*5<j'["A˗w<aO}C֫rI3z*w7Hv|ϏO|�!��,�x����� (0*\ȰÇ#JHŋ$Ǐ Cq@ J0h˗(sfHF, ) 䂑NDd<PD >!jMCA:Xc-g�Mz 0xa乪ᚂ]ӋF(;/2(0b` g*\` Z W$/mH2DHq7,G!ax-5H h|q8@AP{V A,ɮmm0Y�i3~}B{DP؀E64K0 ]@" L] zAyss'GBMC%̃؄ .@pF B&p y I$0 QM>*L<<1 fn  2AMWxc9a!OqjhqmgPJY4dEM[PI!Dp KDvȉP<6tkŪ+1%3<O tr9djX�j2/Ni <qO7Φln9.M k7XAC 1CXT3<)`#|뒊3D2g\<,,|6[<a9f ;U rn~{N3l2(G,Q s DA3PhxG2&q�v@ǰUm{k�r['1lL$@<S\L3CT<iݶ-24CibA5BpWW; xB26B5"`P}vb4/m׮ٽ~mN ,Ҡ9đۄ4@s@f5?zO$ꞮX\ssVQ`pB�;ӻȖ]cA8!�9PpCH*syHG:1�#+֚n#YR32cB< EHݘE 6 X)H<5tc׿o C," GS)ұ6…%�9HF 9.@ b#�aU-H�L(!$L#C d`'$%IihNvȌ8R *WVB$ �!��,�{� ���H)[Át% s*dq!`nۤC\iPmDXcĒ!S,(tу?f<3)SNJ] 5o,/L%ju(3\S[jH , LD v,Y.J(,X'Pf9h%Q>a9wJMw^=É.O_GDj>,戵s> 16n# >*-~N><QUMY|j]~3&"E<<S a5'%W&39 q`V( $r p)@)A -xXE<@>)@- R8P {QPQ79b^iF(tF2CdtfkZ:^�?Iecb .|Aw (As(НA l!:Z9 t)$~Nꩋ4(*(w72�a=09H7 tk :„6 ]60l6d�:0:@=1)v;a$B<5P<xt%-[BNys9o�KKo�(6gq8҆{GmeWFPlBM[51>ۖůOp3ӌl-lRHߦ4.Yn[l!EqO T5o!dGc@eYvƬ w̐L:^ OrK'[&_ [(67n7['lueN4Axy�m0B?F5DU!%JG.<>\Xz*[8tcoi}CѯJm9\ùk9}?7[`�Z<HAEh.VY`g0&xB2Ră*R0A\$:h6a O:K:*)A2q -�H𴡹}iK9\rA]b|vbGF(o" #Q/RHaCů Q1p|$U,Q@�D=a$A,DYN%3Ґ,#$@)x xHI!QqM<FYS(2*#{C Gd*!Z$2{ y1 WFp7;>mϜ,)TYٴAvD$+< 0Ap+gFnYE(W|TK2 +*q%c ˉNǒ,l=`ژ!wM)ht6AD mhbӚBF�==p*>ʧSЪYVVіv CQ7m($~�a *T865,$Ą"-DWvK-C9`vy;J�%ea9S*+A1#qCV[e 'BV�aπw!5So[t� Ahk�%& \mam;KC֏u.T]䎱lЫ^|V kR7�.RTVW%>@G:ҁӵ$ܖa XBqS ]>A�_XIp Q9 DF:Aeɐ4y!|AbIoRq ]PkɁ1"Pˌ@ 6LZZC2!P[ceFfJ4cd$3=<;+)ԳߘІ&HW.o7$ 3K,H`+sBu 0ւ+q,ARR$fIRP?+JvRG!~ ,;;fu kT{ ˞J@��!��,e{� � ��\�1m` BMJDCb�N�V|Kly `V(:)&Z�y!FtG�!��,�x�x��� (0*\ȰÇ#JHŋ3jȱǏ CIɐ \ɲ˗0cʜI͛2Sɳϟ@ JH*]ʴӧPDOիXju&ծ`ÊKlӯfӪ]˶[hʝK]q˷_y Lp+^X*Ɛ#K)˘3klyϠ??M鿣O^Zmְcvy۸ͻ�!��,������!��,������!��,������!��,��x�]���HP *\ȰÇ#JHŋ3jȱC| CtYtLx\ɲ˗0cʜiQHǓ'txh )УHb8S#.l4jC!>׳?|A;{uv4 hۍkl@q P HFO$ 968I1 4~MC#~k @�~ ծ !Z"IKCE-Ŭ\Zч嫘V+Ob W 栬i=q6]R;0Dr\D;[.o!f| O?h 4@+-xj,h8h4VĴ@RY˨%[!t2˴RH/2/ߴЉ)2y8a�ʆRh*cAdR(R,rAe2J-ȕO($%b."@mF�L1s (n d&}GPJL $@'61~E6 Rc$L9wfM@P" ؏O+?�2$C;g\ӌ90>R,Y[,)BxZ{Yhx!8IkN3 ޅ^�xyZ̋^YӭMO a A" I �|!, 'K` B sAW<x@-  or�.ă dG)p.x @ alV@:z Z# .LhE-_0ƚ*xk ƚ^u"=^6#N;޾ Q.NT, fێ%>XD<Ą T '%�I.22P# Ļ@-ż,3o5 @ h1@et29R+œBjTS/ Z3b*Vp‡>T n U`18sB4Hp.X^u`vn k\5r ;�8]Ab b-68qc@nB5k^̘2,Ot@ґYpO v3ătAA:fSH<J> ZsGCTbs Z 0pdtѐ]An r&   2J qS#2 i-Â:@ǣ�1 K7R!NV<@=  \ahC.(=&" Ĺ,`U\A2j5́_C =@h-9'5 HLS@6m. 0$@Dґ(^ߌE_)D4)TG 2:TR�pr-XP Ȯ6RZ)5ݽ@W Q@xlJ$ŗ@1Iȅ$BYS3,DlMVX-}y>Ձy @ #9??*AAL *bɂq'O#ɬ-Ya(i'�^qGkE mj ,:% _Zf΀H ұQUҳE23]@E`ԓaw+uݗBìa7vs~%(a -s �:*�,\T d`@Yr7_:B4,d G""JR΢[(.^�e.M k0�q Ęܕƥ;K\H'"q! q|$@`kHI p)rdf#e9nM3s(OlY�ތf@lo61c(!=0�t!p|!�h؆<:Fc 1n`mhA肌FX2B� &HC\BhH!4{ Kmn� -.D!ȴmXb .H Rs;j[!LXE!!Ð .6Xn_8!& {"X3}-5#>*c񔫜兴gN+mT@Ї�!��,������!��,������!��,������!��,������!��,������!��,������!��,�������Kǯ*\ȰÇ#JHŋ3jȱǏ CIɓ(SNo>I͛8sɳϟ@ JѣH*]ʴӧPJJ*Q|Zʵׯ`ÊKٳhW0۷pʝKݻu[˷߿  tO~/k>Ō'^L˘3klΗB; ZKҋMY`Cq %kʾj{ǓEss=}9M]e{ґm4Yn=xc3MW7yuy>u_Nz`Y1KfSvEhA؅ E^?hscW[s3l(ĹtLM%8S8ڤ"Pΐcd\n(I>d[\vՠMju5)&bex&]e="33 0%3mw't9Sږ3 ?FscMls͝ҷЗ1Ym瓉ޠ5JYL4)0<>Z4SХwfZ4́tzon9+53mcBLjujzLf-`kӫ1J0JyZyj5{c>XyK7 >d^7[Ͱj*?Ư3Jx_3U,lݜhh:SCxO nr?ۖV3<l%$oM+5QĖt5jݭSu 5;WM(ڱR:.{%7N}KlLQbyt죞gr8y?mνFyL{O8TC#Z!G=U}SYr-tݤ}$̘<<r^M 8= 7@~40f^Rhr%wS5Y]Oh'-JxN7yP(цt`MB81! ?(-P߀fxĩ&/Rr 9#YH lď]nrK4u8@F Jf ob3ol gk!>8YޒE؝-MXH4\NxpiQoDÒnj :j5Dۍ" 9g{![ <|<c707BHd1.0I=$P9{ ^@זKfR[M>ԮSY滄IHjIiJI;):kYu-Uj xI<LUR%F{`@  CIc(I%#,h2>| fOlƒ@$2:J<(@x>'hhVX9•\T-+tw5nOTo`j>A,0 R%R@I2LRfM\sU\)u:F sbQ+)*>l7ǀu Z#KZ,f7z,hGKLjWֺlgKͭnw pK3:ЍtKZͮvz xKMzW}|Kͯ~/u�N;毀g(+0A7{ A<aV� i F^4u``q cJ@r{K\j5+9^1;s GHwPn8-3W@�}3P |.\_7 8ҡgm6ԡ^fp~v/g!'tXKo(q�`n/QA@ =)f쪺%x*aZșB4>7v{b{nb~|BLvo,�OWPX+j.ھNXf{#P5}^awηAwۘnZ/99Ɓ.hpOː2sahE!z ?c�C(~vH!/Ds\/<�hE+&PbA.٭K[bR``Te(jQn,~ұEm()4wkgnGavzmw;7 Jp3Zdl*>38qhUl݀08Ս6pgdXH5&\<(zT|��/x_}u D$u6 MsTH4 7|c0G3(D UF; /L\/_AXk0 %�e�`ZmZ0fwd '~5 \` RI0@ ( *f P ps L\&\8(:Xn<P \jpI�=A8.w\vP `� L0P&`l�>pa�& j Phzu@a@v �ܐO HՉocXgp5Sp sXw0}E} H}PPj&feO&sr0�&ō q0ڶEЀ\7j6sۖ[�qv] l\ ͕@j R C\ \yRj�U(Puxa\v0z-@| \ kХ\� ͅJ�o Gou`x6\ڰ \A9eXgZ\Bْ/|RI֕̕=&�x xpҵ}(�d}0f@�I[&%�eqhio (׏68s\؍�u g\vj/ MfK¹ IufUؑQȑOȜYn5WI]~ǒ@&\7@uPiyf0]8]@_.\ h x %@f`ٖ��癞p١&s\&5!\ZV.z~цТ.j\7\~9s͠ q ˠ ͅe1Z8iK�veε " jG\[\ PɹOhSf:im\`耔ӵe&7PPuԀ\מ`hJ]\ɒ0h~8]ڪ�2)zI]l|Z:&.\!pQѵ}+\]֙65㩣B�Wp]ε}Hsj]6ߪӥ�XOtD W I \f`5vtdّ&yq* ;\ Wv(0Uj=\@I~V�y ̥g7{]C[G8k*"%QI\`WekXcX@]\چp0jiжet+�B㰷}p Z�ꩀ㠞4p~0P6j �&d\9K6`]E\=8 *"i \Q inq�j'\ �VZ ٰ`j {�%Pn /Fbx)�P אp�0\+� \YZP!pu ] 0hP@P7*ƾ�<\k(|v̥D\+]*U]o5gc)\&edۭ) e'X Yee� p�f Y;eYF2…YvHr%$8])ΕTך\ٚ˼[ ]fܚnj`ښR '8;h\n0g'ېp j,�]  r�W �I  $Щ5ų& ? �lʣ,]˳\h�\y#]ŕLe0ּ I]4@E�\۬l4P EZиϥ\l]]\,]p�"\]"̕5а 5Υ  VťchYz]]ͥՅUu@{& 8_Ҝ9\0h@]eJJΗV_;}< k̼kwu_dmg0䐾ZrݵPuu bP{E׀=؄]؆͵}؊،#؎ْ=ٔ5�g#ҕٞ`|uu@o \Xېt�t`|-fۉ@=ĭoY}0K^FPu% <^"حt `Q\ 8PFyF0a ]߇v܅F cԽ]Z^ 鐨U \t(]V . ,F5 {{Wx*| p /\Gz\G ӥu -zګ!p y1߰zªyy`U\Pе>TaΫ8Hfj(&S6XeȈb}{ȇ0x>CP| vnkn]T�] ߌQR]u`fc>�2[�S)6ٔ番�œ`z6~]> ݪDiO ]U�z\֭ھ zLN9 oşNHX�:]�Z]Ik�n@>^ ƪ:�bȞʱ:E!󾠿W>ѕ `�0%咗L]05m#_\`\>{@Z홪pdfh_]6�ZЅ\0ɩGM]ǽ@'Xi.�eӞ YD+ȐP5Wp�ﰵ@ѥRO]ǭX{˿ȩ.̫e �,\ì <CȄ 0|@_\  ]�m%` n׀>5X̨G!E$YI)UdK1eΤYM9ucɁ�J #b^xnɠ!@0^"l2M F4NaŎ%[YiծɓHaQ'6Ʒy_uYm1wcȑ%O\€+gСE&]2siԩUfuӯeϦ]mbo;�/gܹd]!$JTsjGFn[92VH,OHG1P@>}쳐1e?&#xˊhbbP%f{^*Ý,0! q !�#ĝ0([oFk @(J{Q+/_*@t�!GBp$+)Jʒp�fi2VƔP…gZp -"k$ D.yH0g]hNތK�(n9�%(ρ-yB2T 0 `d$<yF?ͱB7UTRM lY I/CrJ)4$K;t =Lě�(Np%j! 86's !'<\xXA\q!|ȣx& Kh�_B w\ԑ$sKB L8�$wYXEb` 倏9Ja?Y{fN٢*l6�_%ԇwZxl H=b]j3aRfY%ɾJGA�ek1HcܚF;o|�z<njǡ�b g; 脅n0R0q; E|]*(G boܱmfn5%ӏvwB`rvC'}>$dxx9Xa3}[T);aIAzZu3pA<H0jM_L  b)a>BP{eT#Aڡrk_|C̯B9BP"pAf-!jѠ Q4q OD͚䡭fx1@8/5˶$ @hQDcH T4�]}@dd#/3=T HdAySb�q�4A7sנI>Q"!Ix0&�?%ic.ux0DGb +Cˢғ̌3 =^ :y;iD /\## A!t_$ ĐC y �F8nCB<6h<yl hF7.DǑ�H>ɀ(!_KSuMIB9P#[jFOF5-3O",#G4*R!IX[՗X@kIںl%$]aTzWP5/q Lk0V^r,1elc;e3le-^V,e2YІVohM{Zޤ61mL-Mmm= P:l㝬/Aă XIzsV>߀ ʚ$hAtdH %}U uC'!tk,!GJ+$4N¤1LiZM]5: Ozⓟ(Aj$0%<@JRu_( ըJi RHku?J5~RSSLd ILD|ĆY΂e-li[!R-K]r@%Vd<˜`ȳS02dcB+0쥄ΘС yXohM f2Sgr ]knFҵR�^H}^,ǚ2Z 4iOkf[CC[V-'o`{vm5'-S}"tYn9mku#Nq8]Zpt;R7֩u˞AH"۫AO٧DGT̽�@%G濑 K)8[$Eҙn翍~~ßD 0sEPJ8Rƭ! /IˢsfM_|>ry}ryˁN胟܏V~W Oc-S&y�2ShF/kmv}Ϣ~6l }Y!7^Þ}hz0Z$+yɁdf3ާ2�HKa4@xK`mϥ7;ӯiPJ?6 mZ'8PN% {;T;K>>kвy"�|ڧ"(0S(r(X)J)rB )2ARA j) g �_8$-"t'P)":%dBt@.$-ª* C(+3d x*QÜ.þ ુłCCD ?| R ]BDG<DID̋ɚDLD/DNިDO EQ$ PES<EC ڢUTWDQ蚍D&\TœpmEY4E-.AkS+kfTJ\<@Z=s1r|FQL:ɽF(#,ӾdnƐ�0wȓ /2C5aX9(@[;${;1{L*Y!*HUi{�H$�+۱HÃ2^129K0'[ISI- U2Mlٖn)-!6 7Xk>OS4iK|x* d*tQKs 43[Gm`,p4H{I4UӴ�T3TkScA˪ʠt˼Y]l7qʹi͋cӗwS66ùlKdmNf gHZN~#q뻃4D`7itM{[z(餽+[Z8Ϟ88_ͮ˹ϑ ϼ爵��917eN0'H)P9DN9}ϽےLmϡ+|\џY:𴺹Q8:;�M-}ѩ=JGcV! J<!Z#:(u:(]ںJ"=Qۣٙ�0=. =5xRF+=5##S<B SsH;q==s#3- ۗ'սG1,H$J �m%RbTUb%XK?Y>bۥ`b*?["xH'j:k ;myÂ9KjPQݿ!sU?DK@R]@N͒,@N'@*"l( y-$DB,)<)"I`)<žReňy xK#\@|ZBhB4*>lWDEW«3CÏÜECôZ+7Y�4YPZ%Ϳ��İڨ=BETKڭîMK,[%][-R�XɈƒgȈt@[ |*ѫ x}e\~H<F�\Z\\(5\ѫgM]ȥ sxshv胏]}�mq e݁vPȀZ+XH U޳pr`[ ;Hgc؋6g؆ݏ_UMu5PhVv(Q0 q^^-HS `ޔ8(w@r0Z0 ;PG(R .� U]~0Hx_�s5__`p\mޓa. * %\a~(b)m h�bs4׭�bh/۝e݁6&;XehBWvXv�Poh:.a /PhV8BV0ۥc;UZ [QXȅT? Q6E'N2`Eh\v_\�eYޢb`[�I3Hm88RH1M]x&H~x~p}xu&h}o 0fP�0>~}Pvx!3fh�E/gqd0]0Xqhf nC� >a5;h-選y4 >8[HA�2A@> �X$]Z \F鏈j)j恫Zj�jaT`(3Ōp16@@M|p.gr^s uuN@BtXgzn`]C@c^f2�a^iiFVȀ&^�hjFQ`Oȅvpn^FkFonnLxf!t7 R{\lh>0�}l~@*z>m/m.�& e0.c47>^^qN@&fmq&Sȅ\88`�&ȅ6k~o6rNZ�P\NF0w%-o.vLX9 r�t :贎ԗ%:&q&؅]0|w~DIp߅iOh]v NF@Cnex2^WiVgq up6zr؁\Xr΅6ȅ6$$8`vX�kg4W4kW`Wnr�t@ )E3|Ҙؑ0Dwv�K߇@ILJz~m@a_ v`9϶�ig(z>cmD]_uoyP�,yhjUq'υ$InSapgzυX(֍r5�zqo�xz&�fFw}G-�(ܱ>5B Vos.0ˆ}`T(> Ph�hx|]�!q Nq4q}_i6um}ApjQ�zs[ (W먾��Pjh~WV�d�@\@`~rO�(7=S{o?3�U^ʔk @|;!ÇXq"ƌ7r#Ȑ"G,i$ʔ*W>|qJ:|2ėNGLg;Q¡OBW`ӧW.�qPSLYA? ڮMa\T: `�+Q!%`ZxuL\yr�;KdKtc7H� h[y<p@ Sh%>g| m&=lFbaÌ5^|X%׳o=|.3ЕmxP 7Q4PDZ0( >GdC m 9 EB!ġF'�*(ь&*JTGtFq GetAL$QJ9%Uv4YjJmXpY._%bd3_Y!E$-iuy'y}I(1RQǖ*(yt9)Z6jiJX礓z*Sd*2*+z{ + ;,z0,:,wV`,?�;���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/������������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�14220416173�0013355�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/base-theme.js�����������������������������������������������������������������������0000664�0000000�0000000�00000000650�14220416173�0015726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var spin = require('./spin.js') var progressBar = require('./progress-bar.js') module.exports = { activityIndicator: function (values, theme, width) { if (values.spun == null) { return } return spin(theme, values.spun) }, progressbar: function (values, theme, width) { if (values.completed == null) { return } return progressBar(theme, width, values.completed) }, } ����������������������������������������������������������������������������������������gauge-4.0.4/lib/error.js����������������������������������������������������������������������������0000664�0000000�0000000�00000001150�14220416173�0015041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var util = require('util') var User = exports.User = function User (msg) { var err = new Error(msg) Error.captureStackTrace(err, User) err.code = 'EGAUGE' return err } exports.MissingTemplateValue = function MissingTemplateValue (item, values) { var err = new User(util.format('Missing template value "%s"', item.type)) Error.captureStackTrace(err, MissingTemplateValue) err.template = item err.values = values return err } exports.Internal = function Internal (msg) { var err = new Error(msg) Error.captureStackTrace(err, Internal) err.code = 'EGAUGEINTERNAL' return err } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/has-color.js������������������������������������������������������������������������0000664�0000000�0000000�00000000143�14220416173�0015600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var colorSupport = require('color-support') module.exports = colorSupport().hasBasic �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/index.js����������������������������������������������������������������������������0000664�0000000�0000000�00000016170�14220416173�0015027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var Plumbing = require('./plumbing.js') var hasUnicode = require('has-unicode') var hasColor = require('./has-color.js') var onExit = require('signal-exit') var defaultThemes = require('./themes') var setInterval = require('./set-interval.js') var process = require('./process.js') var setImmediate = require('./set-immediate') module.exports = Gauge function callWith (obj, method) { return function () { return method.call(obj) } } function Gauge (arg1, arg2) { var options, writeTo if (arg1 && arg1.write) { writeTo = arg1 options = arg2 || {} } else if (arg2 && arg2.write) { writeTo = arg2 options = arg1 || {} } else { writeTo = process.stderr options = arg1 || arg2 || {} } this._status = { spun: 0, section: '', subsection: '', } this._paused = false // are we paused for back pressure? this._disabled = true // are all progress bar updates disabled? this._showing = false // do we WANT the progress bar on screen this._onScreen = false // IS the progress bar on screen this._needsRedraw = false // should we print something at next tick? this._hideCursor = options.hideCursor == null ? true : options.hideCursor this._fixedFramerate = options.fixedFramerate == null ? !(/^v0\.8\./.test(process.version)) : options.fixedFramerate this._lastUpdateAt = null this._updateInterval = options.updateInterval == null ? 50 : options.updateInterval this._themes = options.themes || defaultThemes this._theme = options.theme var theme = this._computeTheme(options.theme) var template = options.template || [ { type: 'progressbar', length: 20 }, { type: 'activityIndicator', kerning: 1, length: 1 }, { type: 'section', kerning: 1, default: '' }, { type: 'subsection', kerning: 1, default: '' }, ] this.setWriteTo(writeTo, options.tty) var PlumbingClass = options.Plumbing || Plumbing this._gauge = new PlumbingClass(theme, template, this.getWidth()) this._$$doRedraw = callWith(this, this._doRedraw) this._$$handleSizeChange = callWith(this, this._handleSizeChange) this._cleanupOnExit = options.cleanupOnExit == null || options.cleanupOnExit this._removeOnExit = null if (options.enabled || (options.enabled == null && this._tty && this._tty.isTTY)) { this.enable() } else { this.disable() } } Gauge.prototype = {} Gauge.prototype.isEnabled = function () { return !this._disabled } Gauge.prototype.setTemplate = function (template) { this._gauge.setTemplate(template) if (this._showing) { this._requestRedraw() } } Gauge.prototype._computeTheme = function (theme) { if (!theme) { theme = {} } if (typeof theme === 'string') { theme = this._themes.getTheme(theme) } else if ( Object.keys(theme).length === 0 || theme.hasUnicode != null || theme.hasColor != null ) { var useUnicode = theme.hasUnicode == null ? hasUnicode() : theme.hasUnicode var useColor = theme.hasColor == null ? hasColor : theme.hasColor theme = this._themes.getDefault({ hasUnicode: useUnicode, hasColor: useColor, platform: theme.platform, }) } return theme } Gauge.prototype.setThemeset = function (themes) { this._themes = themes this.setTheme(this._theme) } Gauge.prototype.setTheme = function (theme) { this._gauge.setTheme(this._computeTheme(theme)) if (this._showing) { this._requestRedraw() } this._theme = theme } Gauge.prototype._requestRedraw = function () { this._needsRedraw = true if (!this._fixedFramerate) { this._doRedraw() } } Gauge.prototype.getWidth = function () { return ((this._tty && this._tty.columns) || 80) - 1 } Gauge.prototype.setWriteTo = function (writeTo, tty) { var enabled = !this._disabled if (enabled) { this.disable() } this._writeTo = writeTo this._tty = tty || (writeTo === process.stderr && process.stdout.isTTY && process.stdout) || (writeTo.isTTY && writeTo) || this._tty if (this._gauge) { this._gauge.setWidth(this.getWidth()) } if (enabled) { this.enable() } } Gauge.prototype.enable = function () { if (!this._disabled) { return } this._disabled = false if (this._tty) { this._enableEvents() } if (this._showing) { this.show() } } Gauge.prototype.disable = function () { if (this._disabled) { return } if (this._showing) { this._lastUpdateAt = null this._showing = false this._doRedraw() this._showing = true } this._disabled = true if (this._tty) { this._disableEvents() } } Gauge.prototype._enableEvents = function () { if (this._cleanupOnExit) { this._removeOnExit = onExit(callWith(this, this.disable)) } this._tty.on('resize', this._$$handleSizeChange) if (this._fixedFramerate) { this.redrawTracker = setInterval(this._$$doRedraw, this._updateInterval) if (this.redrawTracker.unref) { this.redrawTracker.unref() } } } Gauge.prototype._disableEvents = function () { this._tty.removeListener('resize', this._$$handleSizeChange) if (this._fixedFramerate) { clearInterval(this.redrawTracker) } if (this._removeOnExit) { this._removeOnExit() } } Gauge.prototype.hide = function (cb) { if (this._disabled) { return cb && process.nextTick(cb) } if (!this._showing) { return cb && process.nextTick(cb) } this._showing = false this._doRedraw() cb && setImmediate(cb) } Gauge.prototype.show = function (section, completed) { this._showing = true if (typeof section === 'string') { this._status.section = section } else if (typeof section === 'object') { var sectionKeys = Object.keys(section) for (var ii = 0; ii < sectionKeys.length; ++ii) { var key = sectionKeys[ii] this._status[key] = section[key] } } if (completed != null) { this._status.completed = completed } if (this._disabled) { return } this._requestRedraw() } Gauge.prototype.pulse = function (subsection) { this._status.subsection = subsection || '' this._status.spun++ if (this._disabled) { return } if (!this._showing) { return } this._requestRedraw() } Gauge.prototype._handleSizeChange = function () { this._gauge.setWidth(this._tty.columns - 1) this._requestRedraw() } Gauge.prototype._doRedraw = function () { if (this._disabled || this._paused) { return } if (!this._fixedFramerate) { var now = Date.now() if (this._lastUpdateAt && now - this._lastUpdateAt < this._updateInterval) { return } this._lastUpdateAt = now } if (!this._showing && this._onScreen) { this._onScreen = false var result = this._gauge.hide() if (this._hideCursor) { result += this._gauge.showCursor() } return this._writeTo.write(result) } if (!this._showing && !this._onScreen) { return } if (this._showing && !this._onScreen) { this._onScreen = true this._needsRedraw = true if (this._hideCursor) { this._writeTo.write(this._gauge.hideCursor()) } } if (!this._needsRedraw) { return } if (!this._writeTo.write(this._gauge.show(this._status))) { this._paused = true this._writeTo.on('drain', callWith(this, function () { this._paused = false this._doRedraw() })) } } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/plumbing.js�������������������������������������������������������������������������0000664�0000000�0000000�00000002377�14220416173�0015541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var consoleControl = require('console-control-strings') var renderTemplate = require('./render-template.js') var validate = require('aproba') var Plumbing = module.exports = function (theme, template, width) { if (!width) { width = 80 } validate('OAN', [theme, template, width]) this.showing = false this.theme = theme this.width = width this.template = template } Plumbing.prototype = {} Plumbing.prototype.setTheme = function (theme) { validate('O', [theme]) this.theme = theme } Plumbing.prototype.setTemplate = function (template) { validate('A', [template]) this.template = template } Plumbing.prototype.setWidth = function (width) { validate('N', [width]) this.width = width } Plumbing.prototype.hide = function () { return consoleControl.gotoSOL() + consoleControl.eraseLine() } Plumbing.prototype.hideCursor = consoleControl.hideCursor Plumbing.prototype.showCursor = consoleControl.showCursor Plumbing.prototype.show = function (status) { var values = Object.create(this.theme) for (var key in status) { values[key] = status[key] } return renderTemplate(this.width, this.template, values).trim() + consoleControl.color('reset') + consoleControl.eraseLine() + consoleControl.gotoSOL() } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/process.js��������������������������������������������������������������������������0000664�0000000�0000000�00000000131�14220416173�0015364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' // this exists so we can replace it during testing module.exports = process ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/progress-bar.js���������������������������������������������������������������������0000664�0000000�0000000�00000002013�14220416173�0016315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var validate = require('aproba') var renderTemplate = require('./render-template.js') var wideTruncate = require('./wide-truncate') var stringWidth = require('string-width') module.exports = function (theme, width, completed) { validate('ONN', [theme, width, completed]) if (completed < 0) { completed = 0 } if (completed > 1) { completed = 1 } if (width <= 0) { return '' } var sofar = Math.round(width * completed) var rest = width - sofar var template = [ { type: 'complete', value: repeat(theme.complete, sofar), length: sofar }, { type: 'remaining', value: repeat(theme.remaining, rest), length: rest }, ] return renderTemplate(width, template, theme) } // lodash's way of repeating function repeat (string, width) { var result = '' var n = width do { if (n % 2) { result += string } n = Math.floor(n / 2) /* eslint no-self-assign: 0 */ string += string } while (n && stringWidth(result) < width) return wideTruncate(result, width) } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/render-template.js������������������������������������������������������������������0000664�0000000�0000000�00000013476�14220416173�0017016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var align = require('wide-align') var validate = require('aproba') var wideTruncate = require('./wide-truncate') var error = require('./error') var TemplateItem = require('./template-item') function renderValueWithValues (values) { return function (item) { return renderValue(item, values) } } var renderTemplate = module.exports = function (width, template, values) { var items = prepareItems(width, template, values) var rendered = items.map(renderValueWithValues(values)).join('') return align.left(wideTruncate(rendered, width), width) } function preType (item) { var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1) return 'pre' + cappedTypeName } function postType (item) { var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1) return 'post' + cappedTypeName } function hasPreOrPost (item, values) { if (!item.type) { return } return values[preType(item)] || values[postType(item)] } function generatePreAndPost (baseItem, parentValues) { var item = Object.assign({}, baseItem) var values = Object.create(parentValues) var template = [] var pre = preType(item) var post = postType(item) if (values[pre]) { template.push({ value: values[pre] }) values[pre] = null } item.minLength = null item.length = null item.maxLength = null template.push(item) values[item.type] = values[item.type] if (values[post]) { template.push({ value: values[post] }) values[post] = null } return function ($1, $2, length) { return renderTemplate(length, template, values) } } function prepareItems (width, template, values) { function cloneAndObjectify (item, index, arr) { var cloned = new TemplateItem(item, width) var type = cloned.type if (cloned.value == null) { if (!(type in values)) { if (cloned.default == null) { throw new error.MissingTemplateValue(cloned, values) } else { cloned.value = cloned.default } } else { cloned.value = values[type] } } if (cloned.value == null || cloned.value === '') { return null } cloned.index = index cloned.first = index === 0 cloned.last = index === arr.length - 1 if (hasPreOrPost(cloned, values)) { cloned.value = generatePreAndPost(cloned, values) } return cloned } var output = template.map(cloneAndObjectify).filter(function (item) { return item != null }) var remainingSpace = width var variableCount = output.length function consumeSpace (length) { if (length > remainingSpace) { length = remainingSpace } remainingSpace -= length } function finishSizing (item, length) { if (item.finished) { throw new error.Internal('Tried to finish template item that was already finished') } if (length === Infinity) { throw new error.Internal('Length of template item cannot be infinity') } if (length != null) { item.length = length } item.minLength = null item.maxLength = null --variableCount item.finished = true if (item.length == null) { item.length = item.getBaseLength() } if (item.length == null) { throw new error.Internal('Finished template items must have a length') } consumeSpace(item.getLength()) } output.forEach(function (item) { if (!item.kerning) { return } var prevPadRight = item.first ? 0 : output[item.index - 1].padRight if (!item.first && prevPadRight < item.kerning) { item.padLeft = item.kerning - prevPadRight } if (!item.last) { item.padRight = item.kerning } }) // Finish any that have a fixed (literal or intuited) length output.forEach(function (item) { if (item.getBaseLength() == null) { return } finishSizing(item) }) var resized = 0 var resizing var hunkSize do { resizing = false hunkSize = Math.round(remainingSpace / variableCount) output.forEach(function (item) { if (item.finished) { return } if (!item.maxLength) { return } if (item.getMaxLength() < hunkSize) { finishSizing(item, item.maxLength) resizing = true } }) } while (resizing && resized++ < output.length) if (resizing) { throw new error.Internal('Resize loop iterated too many times while determining maxLength') } resized = 0 do { resizing = false hunkSize = Math.round(remainingSpace / variableCount) output.forEach(function (item) { if (item.finished) { return } if (!item.minLength) { return } if (item.getMinLength() >= hunkSize) { finishSizing(item, item.minLength) resizing = true } }) } while (resizing && resized++ < output.length) if (resizing) { throw new error.Internal('Resize loop iterated too many times while determining minLength') } hunkSize = Math.round(remainingSpace / variableCount) output.forEach(function (item) { if (item.finished) { return } finishSizing(item, hunkSize) }) return output } function renderFunction (item, values, length) { validate('OON', arguments) if (item.type) { return item.value(values, values[item.type + 'Theme'] || {}, length) } else { return item.value(values, {}, length) } } function renderValue (item, values) { var length = item.getBaseLength() var value = typeof item.value === 'function' ? renderFunction(item, values, length) : item.value if (value == null || value === '') { return '' } var alignWith = align[item.align] || align.left var leftPadding = item.padLeft ? align.left('', item.padLeft) : '' var rightPadding = item.padRight ? align.right('', item.padRight) : '' var truncated = wideTruncate(String(value), length) var aligned = alignWith(truncated, length) return leftPadding + aligned + rightPadding } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/set-immediate.js��������������������������������������������������������������������0000664�0000000�0000000�00000000213�14220416173�0016436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var process = require('./process') try { module.exports = setImmediate } catch (ex) { module.exports = process.nextTick } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/set-interval.js���������������������������������������������������������������������0000664�0000000�0000000�00000000135�14220416173�0016327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' // this exists so we can replace it during testing module.exports = setInterval �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/spin.js�����������������������������������������������������������������������������0000664�0000000�0000000�00000000151�14220416173�0014661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' module.exports = function spin (spinstr, spun) { return spinstr[spun % spinstr.length] } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/template-item.js��������������������������������������������������������������������0000664�0000000�0000000�00000003671�14220416173�0016471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var stringWidth = require('string-width') module.exports = TemplateItem function isPercent (num) { if (typeof num !== 'string') { return false } return num.slice(-1) === '%' } function percent (num) { return Number(num.slice(0, -1)) / 100 } function TemplateItem (values, outputLength) { this.overallOutputLength = outputLength this.finished = false this.type = null this.value = null this.length = null this.maxLength = null this.minLength = null this.kerning = null this.align = 'left' this.padLeft = 0 this.padRight = 0 this.index = null this.first = null this.last = null if (typeof values === 'string') { this.value = values } else { for (var prop in values) { this[prop] = values[prop] } } // Realize percents if (isPercent(this.length)) { this.length = Math.round(this.overallOutputLength * percent(this.length)) } if (isPercent(this.minLength)) { this.minLength = Math.round(this.overallOutputLength * percent(this.minLength)) } if (isPercent(this.maxLength)) { this.maxLength = Math.round(this.overallOutputLength * percent(this.maxLength)) } return this } TemplateItem.prototype = {} TemplateItem.prototype.getBaseLength = function () { var length = this.length if ( length == null && typeof this.value === 'string' && this.maxLength == null && this.minLength == null ) { length = stringWidth(this.value) } return length } TemplateItem.prototype.getLength = function () { var length = this.getBaseLength() if (length == null) { return null } return length + this.padLeft + this.padRight } TemplateItem.prototype.getMaxLength = function () { if (this.maxLength == null) { return null } return this.maxLength + this.padLeft + this.padRight } TemplateItem.prototype.getMinLength = function () { if (this.minLength == null) { return null } return this.minLength + this.padLeft + this.padRight } �����������������������������������������������������������������������gauge-4.0.4/lib/theme-set.js������������������������������������������������������������������������0000664�0000000�0000000�00000007210�14220416173�0015606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' module.exports = function () { return ThemeSetProto.newThemeSet() } var ThemeSetProto = {} ThemeSetProto.baseTheme = require('./base-theme.js') ThemeSetProto.newTheme = function (parent, theme) { if (!theme) { theme = parent parent = this.baseTheme } return Object.assign({}, parent, theme) } ThemeSetProto.getThemeNames = function () { return Object.keys(this.themes) } ThemeSetProto.addTheme = function (name, parent, theme) { this.themes[name] = this.newTheme(parent, theme) } ThemeSetProto.addToAllThemes = function (theme) { var themes = this.themes Object.keys(themes).forEach(function (name) { Object.assign(themes[name], theme) }) Object.assign(this.baseTheme, theme) } ThemeSetProto.getTheme = function (name) { if (!this.themes[name]) { throw this.newMissingThemeError(name) } return this.themes[name] } ThemeSetProto.setDefault = function (opts, name) { if (name == null) { name = opts opts = {} } var platform = opts.platform == null ? 'fallback' : opts.platform var hasUnicode = !!opts.hasUnicode var hasColor = !!opts.hasColor if (!this.defaults[platform]) { this.defaults[platform] = { true: {}, false: {} } } this.defaults[platform][hasUnicode][hasColor] = name } ThemeSetProto.getDefault = function (opts) { if (!opts) { opts = {} } var platformName = opts.platform || process.platform var platform = this.defaults[platformName] || this.defaults.fallback var hasUnicode = !!opts.hasUnicode var hasColor = !!opts.hasColor if (!platform) { throw this.newMissingDefaultThemeError(platformName, hasUnicode, hasColor) } if (!platform[hasUnicode][hasColor]) { if (hasUnicode && hasColor && platform[!hasUnicode][hasColor]) { hasUnicode = false } else if (hasUnicode && hasColor && platform[hasUnicode][!hasColor]) { hasColor = false } else if (hasUnicode && hasColor && platform[!hasUnicode][!hasColor]) { hasUnicode = false hasColor = false } else if (hasUnicode && !hasColor && platform[!hasUnicode][hasColor]) { hasUnicode = false } else if (!hasUnicode && hasColor && platform[hasUnicode][!hasColor]) { hasColor = false } else if (platform === this.defaults.fallback) { throw this.newMissingDefaultThemeError(platformName, hasUnicode, hasColor) } } if (platform[hasUnicode][hasColor]) { return this.getTheme(platform[hasUnicode][hasColor]) } else { return this.getDefault(Object.assign({}, opts, { platform: 'fallback' })) } } ThemeSetProto.newMissingThemeError = function newMissingThemeError (name) { var err = new Error('Could not find a gauge theme named "' + name + '"') Error.captureStackTrace.call(err, newMissingThemeError) err.theme = name err.code = 'EMISSINGTHEME' return err } ThemeSetProto.newMissingDefaultThemeError = function newMissingDefaultThemeError (platformName, hasUnicode, hasColor) { var err = new Error( 'Could not find a gauge theme for your platform/unicode/color use combo:\n' + ' platform = ' + platformName + '\n' + ' hasUnicode = ' + hasUnicode + '\n' + ' hasColor = ' + hasColor) Error.captureStackTrace.call(err, newMissingDefaultThemeError) err.platform = platformName err.hasUnicode = hasUnicode err.hasColor = hasColor err.code = 'EMISSINGTHEME' return err } ThemeSetProto.newThemeSet = function () { var themeset = function (opts) { return themeset.getDefault(opts) } return Object.assign(themeset, ThemeSetProto, { themes: Object.assign({}, this.themes), baseTheme: Object.assign({}, this.baseTheme), defaults: JSON.parse(JSON.stringify(this.defaults || {})), }) } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/themes.js���������������������������������������������������������������������������0000664�0000000�0000000�00000003203�14220416173�0015176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var color = require('console-control-strings').color var ThemeSet = require('./theme-set.js') var themes = module.exports = new ThemeSet() themes.addTheme('ASCII', { preProgressbar: '[', postProgressbar: ']', progressbarTheme: { complete: '#', remaining: '.', }, activityIndicatorTheme: '-\\|/', preSubsection: '>', }) themes.addTheme('colorASCII', themes.getTheme('ASCII'), { progressbarTheme: { preComplete: color('bgBrightWhite', 'brightWhite'), complete: '#', postComplete: color('reset'), preRemaining: color('bgBrightBlack', 'brightBlack'), remaining: '.', postRemaining: color('reset'), }, }) themes.addTheme('brailleSpinner', { preProgressbar: '(', postProgressbar: ')', progressbarTheme: { complete: '#', remaining: '⠂', }, activityIndicatorTheme: '⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏', preSubsection: '>', }) themes.addTheme('colorBrailleSpinner', themes.getTheme('brailleSpinner'), { progressbarTheme: { preComplete: color('bgBrightWhite', 'brightWhite'), complete: '#', postComplete: color('reset'), preRemaining: color('bgBrightBlack', 'brightBlack'), remaining: '⠂', postRemaining: color('reset'), }, }) themes.setDefault({}, 'ASCII') themes.setDefault({ hasColor: true }, 'colorASCII') themes.setDefault({ platform: 'darwin', hasUnicode: true }, 'brailleSpinner') themes.setDefault({ platform: 'darwin', hasUnicode: true, hasColor: true }, 'colorBrailleSpinner') themes.setDefault({ platform: 'linux', hasUnicode: true }, 'brailleSpinner') themes.setDefault({ platform: 'linux', hasUnicode: true, hasColor: true }, 'colorBrailleSpinner') ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/lib/wide-truncate.js��������������������������������������������������������������������0000664�0000000�0000000�00000001532�14220416173�0016467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' var stringWidth = require('string-width') var stripAnsi = require('strip-ansi') module.exports = wideTruncate function wideTruncate (str, target) { if (stringWidth(str) === 0) { return str } if (target <= 0) { return '' } if (stringWidth(str) <= target) { return str } // We compute the number of bytes of ansi sequences here and add // that to our initial truncation to ensure that we don't slice one // that we want to keep in half. var noAnsi = stripAnsi(str) var ansiSize = str.length + noAnsi.length var truncated = str.slice(0, target + ansiSize) // we have to shrink the result to account for our ansi sequence buffer // (if an ansi sequence was truncated) and double width characters. while (stringWidth(truncated) > target) { truncated = truncated.slice(0, -1) } return truncated } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/package.json����������������������������������������������������������������������������0000664�0000000�0000000�00000003103�14220416173�0015072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "name": "gauge", "version": "4.0.4", "description": "A terminal based horizontal gauge", "main": "lib", "scripts": { "test": "tap", "lint": "eslint \"**/*.js\"", "postlint": "template-oss-check", "lintfix": "npm run lint -- --fix", "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", "snap": "tap", "posttest": "npm run lint", "template-oss-apply": "template-oss-apply --force" }, "repository": { "type": "git", "url": "https://github.com/npm/gauge.git" }, "keywords": [ "progressbar", "progress", "gauge" ], "author": "GitHub Inc.", "license": "ISC", "bugs": { "url": "https://github.com/npm/gauge/issues" }, "homepage": "https://github.com/npm/gauge", "dependencies": { "aproba": "^1.0.3 || ^2.0.0", "color-support": "^1.1.3", "console-control-strings": "^1.1.0", "has-unicode": "^2.0.1", "signal-exit": "^3.0.7", "string-width": "^4.2.3", "strip-ansi": "^6.0.1", "wide-align": "^1.1.5" }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", "@npmcli/template-oss": "3.2.0", "readable-stream": "^3.6.0", "tap": "^16.0.1" }, "files": [ "bin/", "lib/" ], "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, "tap": { "branches": 79, "statements": 89, "functions": 92, "lines": 90 }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "version": "3.2.0" } } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/�����������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�14220416173�0013566�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/base-theme.js����������������������������������������������������������������������0000664�0000000�0000000�00000001364�14220416173�0016142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const baseTheme = t.mock('../lib/base-theme.js', { '../lib/spin.js': function (theme, spun) { return [theme, spun] }, '../lib/progress-bar.js': function (theme, width, completed) { return [theme, width, completed] }, }) t.test('activityIndicator', async t => { t.equal(baseTheme.activityIndicator({}, {}, 80), undefined, 'no spun') t.strictSame( baseTheme.activityIndicator({ spun: 3 }, { me: true }, 9999), [{ me: true }, 3], 'spun' ) }) t.test('progressBar', async t => { t.equal(baseTheme.progressbar({}, {}, 80), undefined, 'no completion') t.strictSame( baseTheme.progressbar({ completed: 33 }, { me: true }, 100), [{ me: true }, 100, 33], 'completion!' ) }) ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/error.js���������������������������������������������������������������������������0000664�0000000�0000000�00000001733�14220416173�0015261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const error = require('../lib/error.js') t.test('User', async t => { var msg = 'example' var user = new error.User(msg) t.ok(user instanceof Error, 'isa Error') t.equal(user.code, 'EGAUGE', 'code') t.equal(user.message, msg, 'maintained message') }) t.test('MissingTemplateValue', async t => { var item = { type: 'abc' } var values = { abc: 'def', ghi: 'jkl' } var user = new error.MissingTemplateValue(item, values) t.ok(user instanceof Error, 'isa Error') t.equal(user.code, 'EGAUGE', 'code') t.match(user.message, new RegExp(item.type), 'contains type') t.strictSame(user.template, item, 'passed through template item') t.strictSame(user.values, values, 'passed through values') }) t.test('Internal', async t => { var msg = 'example' var user = new error.Internal(msg) t.ok(user instanceof Error, 'isa Error') t.equal(user.code, 'EGAUGEINTERNAL', 'code') t.equal(user.message, msg, 'maintained message') }) �������������������������������������gauge-4.0.4/test/index.js���������������������������������������������������������������������������0000664�0000000�0000000�00000015136�14220416173�0015241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const test = require('tap').test const Gauge = require('..') const stream = require('readable-stream') const util = require('util') const EventEmitter = require('events').EventEmitter function Sink () { stream.Writable.call(this, arguments) } util.inherits(Sink, stream.Writable) Sink.prototype._write = function (data, enc, cb) { cb() } const results = new EventEmitter() function MockPlumbing (theme, template, columns) { results.theme = theme results.template = template results.columns = columns results.emit('new', theme, template, columns) } MockPlumbing.prototype = {} function RecordCall (name) { return function () { const args = Array.prototype.slice.call(arguments) results.emit('called', [name, args]) results.emit('called:' + name, args) return '' } } ['setTheme', 'setTemplate', 'setWidth', 'hide', 'show', 'hideCursor', 'showCursor'].forEach( function (fn) { MockPlumbing.prototype[fn] = RecordCall(fn) } ) t.test('defaults', async t => { let gauge = new Gauge(process.stdout) t.equal(gauge._disabled, !process.stdout.isTTY, 'disabled') t.equal(gauge._updateInterval, 50, 'updateInterval') if (process.stdout.isTTY) { t.equal(gauge._tty, process.stdout, 'tty') gauge.disable() gauge = new Gauge(process.stderr) t.equal(gauge._tty, process.stdout, 'tty is stdout when writeTo is stderr') } gauge.disable() gauge = new Gauge(new Sink()) t.equal(gauge._tty, undefined, 'non-tty stream is not tty') gauge.disable() }) t.test('construct', async t => { const output = new Sink() output.isTTY = true output.columns = 16 const gauge = new Gauge(output, { Plumbing: MockPlumbing, theme: ['THEME'], template: ['TEMPLATE'], enabled: false, updateInterval: 0, fixedFramerate: false, }) t.ok(gauge) t.equal(results.columns, 15, 'width passed through') t.same(results.theme, ['THEME'], 'theme passed through') t.same(results.template, ['TEMPLATE'], 'template passed through') t.equal(gauge.isEnabled(), false, 'disabled') }) t.test('show & pulse: fixedframerate', t => { t.plan(3) // this helps us abort if something never emits an event // it also keeps things alive long enough to actually get output =D const testtimeout = setTimeout(function () { t.end() }, 1000) const output = new Sink() output.isTTY = true output.columns = 16 const gauge = new Gauge(output, { Plumbing: MockPlumbing, updateInterval: 10, fixedFramerate: true, }) gauge.show('NAME', 0.1) results.once('called:show', checkBasicShow) function checkBasicShow (args) { t.strictSame( args, [{ spun: 0, section: 'NAME', subsection: '', completed: 0.1 }], 'check basic show' ) gauge.show('S') gauge.pulse() results.once('called:show', checkPulse) } function checkPulse (args) { t.strictSame(args, [ { spun: 1, section: 'S', subsection: '', completed: 0.1 }, ], 'check pulse') gauge.pulse('P') results.once('called:show', checkPulseWithArg) } function checkPulseWithArg (args) { t.strictSame(args, [ { spun: 2, section: 'S', subsection: 'P', completed: 0.1 }, ], 'check pulse w/ arg') gauge.disable() clearTimeout(testtimeout) t.end() } }) t.test('window resizing', t => { const testtimeout = setTimeout(function () { t.end() }, 1000) const output = new Sink() output.isTTY = true output.columns = 32 const gauge = new Gauge(output, { Plumbing: MockPlumbing, updateInterval: 0, fixedFramerate: true, }) gauge.show('NAME', 0.1) results.once('called:show', function (args) { t.strictSame(args, [{ section: 'NAME', subsection: '', completed: 0.1, spun: 0, }]) results.once('called:setWidth', lookForResize) output.columns = 16 output.emit('resize') gauge.show('NAME', 0.5) }) function lookForResize (args) { t.strictSame(args, [15]) results.once('called:show', lookForShow) } function lookForShow (args) { t.strictSame(args, [{ section: 'NAME', subsection: '', completed: 0.5, spun: 0, }]) gauge.disable() clearTimeout(testtimeout) t.end() } }) function collectResults (time, cb) { const collected = [] function collect (called) { collected.push(called) } results.on('called', collect) setTimeout(function () { results.removeListener('called', collect) cb(collected) }, time) } t.test('hideCursor:true', t => { const output = new Sink() output.isTTY = true output.columns = 16 const gauge = new Gauge(output, { Plumbing: MockPlumbing, theme: ['THEME'], template: ['TEMPLATE'], enabled: true, updateInterval: 90, fixedFramerate: true, hideCursor: true, }) collectResults(100, andCursorHidden) gauge.show('NAME', 0.5) t.equal(gauge.isEnabled(), true, 'enabled') function andCursorHidden (got) { const expected = [ ['hideCursor', []], ['show', [{ spun: 0, section: 'NAME', subsection: '', completed: 0.5, }]], ] t.strictSame(got, expected, 'hideCursor') gauge.disable() t.end() } }) test('hideCursor:false', t => { const output = new Sink() output.isTTY = true output.columns = 16 const gauge = new Gauge(output, { Plumbing: MockPlumbing, theme: ['THEME'], template: ['TEMPLATE'], enabled: true, updateInterval: 90, fixedFramerate: true, hideCursor: false, }) collectResults(100, andCursorHidden) gauge.show('NAME', 0.5) function andCursorHidden (got) { const expected = [ ['show', [{ spun: 0, section: 'NAME', subsection: '', completed: 0.5, }]], ] t.strictSame(got, expected, 'do not hideCursor') gauge.disable() t.end() } }) // [> todo missing: // constructor // arg2 is writeTo, arg1 is opts // arg2 is writeTo, arg1 is null // no args, all defaults // setTemplate // setThemeset // setTheme // w/ theme selector // w/ theme name // w/ theme object // setWriteTo // while enabled/disabled // w/ tty // w/o tty & writeTo = process.stderr & process.stdout isTTY // w/o tty & writeTo = process.stderr & process.stdout !isTTY // enable // w/ _showing = true // hide // w/ disabled // w/ !disabled & !showing // w/ !disabled & showing // w/ these & cb // show // w/ disabled // w/ object arg1 // pulse // w/ disabled // w/ !showing // anything to do with _fixedFramerate // trigger _doRedraw // w/o showing & w/o _onScreen (eg, hide, show, hide, I think) // w/o _needsRedraw // Everything to do with back pressure from _writeTo // */ ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/plumbing.js������������������������������������������������������������������������0000664�0000000�0000000�00000004423�14220416173�0015744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const Plumbing = t.mock('../lib/plumbing.js', { '../lib/render-template.js': function (width, template, values) { if (values.x) { values.x = values.x } // pull in from parent object for stringify return 'w:' + width + ', t:' + JSON.stringify(template) + ', v:' + JSON.stringify(values) }, 'console-control-strings': { eraseLine: function () { return 'ERASE' }, gotoSOL: function () { return 'CR' }, color: function (to) { return 'COLOR:' + to }, hideCursor: function () { return 'HIDE' }, showCursor: function () { return 'SHOW' }, }, }) const template = [ { type: 'name' }, ] const theme = {} const plumbing = new Plumbing(theme, template, 10) // These three produce fixed strings and are entirely static, so as long as // they produce _something_ they're probably ok. Actually testing them will // require something that understands ansi codes. t.test('showCursor', function (t) { t.equal(plumbing.showCursor(), 'SHOW') t.end() }) t.test('hideCursor', function (t) { t.equal(plumbing.hideCursor(), 'HIDE') t.end() }) t.test('hide', function (t) { t.equal(plumbing.hide(), 'CRERASE') t.end() }) t.test('show', function (t) { t.equal( plumbing.show({ name: 'test' }), 'w:10, t:[{"type":"name"}], v:{"name":"test"}COLOR:resetERASECR' ) t.end() }) t.test('width', function (t) { const defaultWidth = new Plumbing(theme, template) t.equal( defaultWidth.show({ name: 'test' }), 'w:80, t:[{"type":"name"}], v:{"name":"test"}COLOR:resetERASECR' ) t.end() }) t.test('setTheme', function (t) { plumbing.setTheme({ x: 'abc' }) t.equal( plumbing.show( { name: 'test' }), 'w:10, t:[{"type":"name"}], v:{"name":"test","x":"abc"}COLOR:resetERASECR' ) t.end() }) t.test('setTemplate', function (t) { plumbing.setTemplate([{ type: 'name' }, { type: 'x' }]) t.equal( plumbing.show({ name: 'test' }), 'w:10, t:[{"type":"name"},{"type":"x"}], v:{"name":"test","x":"abc"}COLOR:resetERASECR' ) t.end() }) t.test('setWidth', function (t) { plumbing.setWidth(20) t.equal( plumbing.show({ name: 'test' }), 'w:20, t:[{"type":"name"},{"type":"x"}], v:{"name":"test","x":"abc"}COLOR:resetERASECR' ) t.end() }) ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/progress-bar.js��������������������������������������������������������������������0000664�0000000�0000000�00000002476�14220416173�0016543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const progressBar = require('../lib/progress-bar') t.test('progressBar', function (t) { var theme = { complete: '#', remaining: '-', } var result result = progressBar(theme, 10, 0) t.equal(result, '----------', '0% bar') result = progressBar(theme, 10, 0.5) t.equal(result, '#####-----', '50% bar') result = progressBar(theme, 10, 1) t.equal(result, '##########', '100% bar') result = progressBar(theme, 10, -100) t.equal(result, '----------', '0% underflow bar') result = progressBar(theme, 10, 100) t.equal(result, '##########', '100% overflow bar') result = progressBar(theme, 0, 0.5) t.equal(result, '', '0 width bar') var multicharTheme = { complete: '123', remaining: 'abc', } result = progressBar(multicharTheme, 10, 0) t.equal(result, 'abcabcabca', '0% bar') result = progressBar(multicharTheme, 10, 0.5) t.equal(result, '12312abcab', '50% bar') result = progressBar(multicharTheme, 10, 1) t.equal(result, '1231231231', '100% bar') result = progressBar(multicharTheme, 10, -100) t.equal(result, 'abcabcabca', '0% underflow bar') result = progressBar(multicharTheme, 10, 100) t.equal(result, '1231231231', '100% overflow bar') result = progressBar(multicharTheme, 0, 0.5) t.equal(result, '', '0 width bar') t.end() }) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/render-template.js�����������������������������������������������������������������0000664�0000000�0000000�00000006472�14220416173�0017225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const renderTemplate = require('../lib/render-template') t.test('renderTemplate', function (t) { var result result = renderTemplate(10, [{ type: 'name' }], { name: 'NAME' }) t.equal(result, 'NAME ', 'name substitution') result = renderTemplate(10, [{ type: 'name' }, { type: 'completionbar' }], { name: 'NAME', completionbar: function (values, theme, width) { return 'xx' + String(width) + 'xx' }, }) t.equal(result, 'NAMExx6xx ', 'name + 50%') result = renderTemplate(10, ['static'], {}) t.equal(result, 'static ', 'static text') result = renderTemplate(10, ['static', { type: 'name' }], { name: 'NAME' }) t.equal(result, 'staticNAME', 'static text + var') result = renderTemplate(10, ['static', { type: 'name', kerning: 1 }], { name: 'NAME' }) t.equal(result, 'static NAM', 'pre-separated') result = renderTemplate(10, [{ type: 'name', kerning: 1 }, 'static'], { name: 'NAME' }) t.equal(result, 'NAME stati', 'post-separated') result = renderTemplate(10, ['1', { type: 'name', kerning: 1 }, '2'], { name: '' }) t.equal(result, '12 ', 'separated no value') result = renderTemplate(10, ['1', { type: 'name', kerning: 1 }, '2'], { name: 'NAME' }) t.equal(result, '1 NAME 2 ', 'separated value') result = renderTemplate( 10, ['AB', { type: 'name', kerning: 1 }, { value: 'CD', kerning: 1 }], { name: 'NAME' } ) t.equal(result, 'AB NAME CD', 'multi kerning') result = renderTemplate(10, [{ type: 'name', length: '50%' }, 'static'], { name: 'N' }) t.equal(result, 'N stati', 'percent length') try { result = renderTemplate(10, [{ type: 'xyzzy' }, 'static'], {}) t.fail('missing type') } catch (e) { t.pass('missing type') } result = renderTemplate(10, [{ type: 'name', minLength: '20%' }, 'this long thing'], { name: 'N' }) t.equal(result, 'N this lon', 'percent minlength') result = renderTemplate(10, [{ type: 'name', maxLength: '20%' }, 'nope'], { name: 'NAME' }) t.equal(result, 'NAnope ', 'percent maxlength') result = renderTemplate(10, [{ type: 'name', padLeft: 2, padRight: 2 }, '||'], { name: 'NAME' }) t.equal(result, ' NAME ||', 'manual padding') result = renderTemplate(10, [{ value: 'ABC', minLength: 2, maxLength: 6 }, 'static'], {}) t.equal(result, 'ABC static', 'max hunk size < maxLength') result = renderTemplate(10, [{ value: function () { return '' } }], {}) t.equal(result, ' ', 'empty value') result = renderTemplate(10, [{ value: '12古34', align: 'center', length: '100%' }], {}) t.equal(result, ' 12古34 ', 'wide chars') result = renderTemplate(10, [{ type: 'test', value: 'abc' }], { preTest: '¡', postTest: '!' }) t.equal(result, '¡abc! ', 'pre/post values') result = renderTemplate(10, [{ type: 'test', value: 'abc' }], { preTest: '¡' }) t.equal(result, '¡abc ', 'pre values') result = renderTemplate(10, [{ type: 'test', value: 'abc' }], { postTest: '!' }) t.equal(result, 'abc! ', 'post values') result = renderTemplate(10, [{ value: 'abc' }, { value: '‼‼', length: 0 }, { value: 'def' }]) t.equal(result, 'abcdef ', 'post values') result = renderTemplate(10, [{ value: 'abc', align: 'xyzzy' }]) t.equal(result, 'abc ', 'unknown aligns are align left') t.end() }) ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/spin.js����������������������������������������������������������������������������0000664�0000000�0000000�00000000442�14220416173�0015075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const spin = require('../lib/spin') t.test('spin', function (t) { t.plan(2) const spinner = '123456' let result result = spin(spinner, 1) t.equal(result, '2', 'Spinner 1') result = spin(spinner, 10) t.equal(result, '5', 'Spinner 10') }) ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/template-item.js�������������������������������������������������������������������0000664�0000000�0000000�00000006662�14220416173�0016705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const TemplateItem = require('../lib/template-item.js') const width = 200 const defaults = { overallOutputLength: width, finished: false, type: null, value: null, length: null, maxLength: null, minLength: null, kerning: null, align: 'left', padLeft: 0, padRight: 0, index: null, first: null, last: null, } function got (values) { return new TemplateItem(values, width) } function expected (obj) { return Object.assign({}, defaults, obj) } t.test('new', function (t) { t.strictSame(got('test'), expected({ value: 'test' }), 'str item') t.strictSame( got({ value: 'test', length: 3 }), expected({ value: 'test', length: 3 }), 'obj item' ) t.strictSame(got({ length: '20%' }), expected({ length: 40 }), 'length %') t.strictSame(got({ maxLength: '10%' }), expected({ maxLength: 20 }), 'length %') t.strictSame(got({ minLength: '95%' }), expected({ minLength: 190 }), 'length %') t.end() }) t.test('getBaseLength', function (t) { var direct = got({ value: 'test', length: 3 }) t.equal(direct.getBaseLength(), 3, 'directly set') var intuit = got({ value: 'test' }) t.equal(intuit.getBaseLength(), 4, 'intuit') var varmax = got({ value: 'test', maxLength: 4 }) t.equal(varmax.getBaseLength(), null, 'variable max') var varmin = got({ value: 'test', minLength: 4 }) t.equal(varmin.getBaseLength(), null, 'variable min') t.end() }) t.test('getLength', function (t) { var direct = got({ value: 'test', length: 3 }) t.equal(direct.getLength(), 3, 'directly set') var intuit = got({ value: 'test' }) t.equal(intuit.getLength(), 4, 'intuit') var varmax = got({ value: 'test', maxLength: 4 }) t.equal(varmax.getLength(), null, 'variable max') var varmin = got({ value: 'test', minLength: 4 }) t.equal(varmin.getLength(), null, 'variable min') var pardleft = got({ value: 'test', length: 3, padLeft: 3 }) t.equal(pardleft.getLength(), 6, 'pad left') var padright = got({ value: 'test', length: 3, padLeft: 5 }) t.equal(padright.getLength(), 8, 'pad right') var padboth = got({ value: 'test', length: 3, padLeft: 5, padRight: 1 }) t.equal(padboth.getLength(), 9, 'pad both') t.end() }) t.test('getMaxLength', function (t) { var nomax = got({ value: 'test' }) t.equal(nomax.getMaxLength(), null, 'no max length') var direct = got({ value: 'test', maxLength: 5 }) t.equal(direct.getMaxLength(), 5, 'max length') var padleft = got({ value: 'test', maxLength: 5, padLeft: 3 }) t.equal(padleft.getMaxLength(), 8, 'max length + padLeft') var padright = got({ value: 'test', maxLength: 5, padRight: 3 }) t.equal(padright.getMaxLength(), 8, 'max length + padRight') var padboth = got({ value: 'test', maxLength: 5, padLeft: 2, padRight: 3 }) t.equal(padboth.getMaxLength(), 10, 'max length + pad both') t.end() }) t.test('getMinLength', function (t) { var nomin = got({ value: 'test' }) t.equal(nomin.getMinLength(), null, 'no min length') var direct = got({ value: 'test', minLength: 5 }) t.equal(direct.getMinLength(), 5, 'min length') var padleft = got({ value: 'test', minLength: 5, padLeft: 3 }) t.equal(padleft.getMinLength(), 8, 'min length + padLeft') var padright = got({ value: 'test', minLength: 5, padRight: 3 }) t.equal(padright.getMinLength(), 8, 'min length + padRight') var padboth = got({ value: 'test', minLength: 5, padLeft: 2, padRight: 3 }) t.equal(padboth.getMinLength(), 10, 'min length + pad both') t.end() }) ������������������������������������������������������������������������������gauge-4.0.4/test/theme-set.js�����������������������������������������������������������������������0000664�0000000�0000000�00000006566�14220416173�0016034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const ThemeSet = require('../lib/theme-set.js') const themes = new ThemeSet() themes.addTheme('fallback', { id: 0 }) themes.addTheme('test1', { id: 1 }) themes.addTheme('test2', { id: 2 }) themes.addTheme('test3', { id: 3 }) themes.addTheme('test4', { id: 4 }) themes.addTheme('testz', themes.getTheme('fallback'), { id: 'z' }) themes.setDefault('fallback') themes.setDefault({ platform: 'aa', hasUnicode: false, hasColor: false }, 'test1') themes.setDefault({ platform: 'bb', hasUnicode: true, hasColor: true }, 'test2') themes.setDefault({ platform: 'ab', hasUnicode: false, hasColor: true }, 'test3') themes.setDefault({ platform: 'ba', hasUnicode: true, hasColor: false }, 'test4') themes.setDefault({ platform: 'zz', hasUnicode: false, hasColor: false }, 'test1') themes.setDefault({ platform: 'zz', hasUnicode: true, hasColor: true }, 'test2') themes.setDefault({ platform: 'zz', hasUnicode: false, hasColor: true }, 'test3') themes.setDefault({ platform: 'zz', hasUnicode: true, hasColor: false }, 'test4') t.test('themeset', function (t) { t.equal(themes().id, 0, 'fallback') t.equal(themes({ platform: 'aa' }).id, 1, 'aa ff') t.equal(themes({ platform: 'aa', hasUnicode: true }).id, 1, 'aa tf') t.equal(themes({ platform: 'aa', hasColor: true }).id, 1, 'aa ft') t.equal(themes({ platform: 'aa', hasUnicode: true, hasColor: true }).id, 1, 'aa tt') t.equal(themes({ platform: 'bb' }).id, 0, 'bb ff') t.equal(themes({ platform: 'bb', hasUnicode: true }).id, 0, 'bb tf') t.equal(themes({ platform: 'bb', hasColor: true }).id, 0, 'bb ft') t.equal(themes({ platform: 'bb', hasUnicode: true, hasColor: true }).id, 2, 'bb tt') t.equal(themes({ platform: 'ab' }).id, 0, 'ab ff') t.equal(themes({ platform: 'ab', hasUnicode: true }).id, 0, 'ab tf') t.equal(themes({ platform: 'ab', hasColor: true }).id, 3, 'ab ft') t.equal(themes({ platform: 'ab', hasUnicode: true, hasColor: true }).id, 3, 'ab tt') t.equal(themes({ platform: 'ba' }).id, 0, 'ba ff') t.equal(themes({ platform: 'ba', hasUnicode: true }).id, 4, 'ba tf') t.equal(themes({ platform: 'ba', hasColor: true }).id, 0, 'ba ft') t.equal(themes({ platform: 'ba', hasUnicode: true, hasColor: true }).id, 4, 'ba tt') t.equal(themes({ platform: 'zz' }).id, 1, 'zz ff') t.equal(themes({ platform: 'zz', hasUnicode: true }).id, 4, 'zz tf') t.equal(themes({ platform: 'zz', hasColor: true }).id, 3, 'zz ft') t.equal(themes({ platform: 'zz', hasUnicode: true, hasColor: true }).id, 2, 'zz tt') try { themes.getTheme('does not exist') t.fail('missing theme') } catch (ex) { t.equal(ex.code, 'EMISSINGTHEME', 'missing theme') } t.equal(themes.getTheme('testz').id, 'z', 'testz') var empty = new ThemeSet() try { empty() t.fail('no themes') } catch (ex) { t.equal(ex.code, 'EMISSINGTHEME', 'no themes') } empty.addTheme('exists', { id: 'exists' }) empty.setDefault({ hasUnicode: true, hasColor: true }, 'exists') try { empty() t.fail('no fallback') } catch (ex) { t.equal(ex.code, 'EMISSINGTHEME', 'no fallback') } t.end() }) t.test('add-to-all', function (t) { themes.addToAllThemes({ xyz: 17, }) t.equal(themes.getTheme('test1').xyz, 17, 'existing themes updated') var newTheme = themes.newTheme({ id: 99 }) t.equal(newTheme.id, 99, 'new theme initialized') t.equal(newTheme.xyz, 17, 'new theme got extension') t.end() }) ������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/themes.js��������������������������������������������������������������������������0000664�0000000�0000000�00000001462�14220416173�0015414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const themes = require('../lib/themes.js') t.test('selector', function (t) { t.equal( themes({ hasUnicode: false, hasColor: false, platform: 'unknown' }), themes.getTheme('ASCII'), 'fallback' ) t.equal( themes({ hasUnicode: false, hasColor: false, platform: 'darwin' }), themes.getTheme('ASCII'), 'ff darwin' ) t.equal( themes({ hasUnicode: true, hasColor: false, platform: 'darwin' }), themes.getTheme('brailleSpinner'), 'tf drawin' ) t.equal( themes({ hasUnicode: false, hasColor: true, platform: 'darwin' }), themes.getTheme('colorASCII'), 'ft darwin' ) t.equal( themes({ hasUnicode: true, hasColor: true, platform: 'darwin' }), themes.getTheme('colorBrailleSpinner'), 'ft darwin' ) t.end() }) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gauge-4.0.4/test/wide-truncate.js�������������������������������������������������������������������0000664�0000000�0000000�00000003567�14220416173�0016712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������'use strict' const t = require('tap') const wideTruncate = require('../lib/wide-truncate.js') t.test('wideTruncate', function (t) { let result result = wideTruncate('abc', 6) t.equal(result, 'abc', 'narrow, no truncation') result = wideTruncate('古古古', 6) t.equal(result, '古古古', 'wide, no truncation') result = wideTruncate('abc', 2) t.equal(result, 'ab', 'narrow, truncation') result = wideTruncate('古古古', 2) t.equal(result, '古', 'wide, truncation') result = wideTruncate('古古', 3) t.equal(result, '古', 'wide, truncation, partial') result = wideTruncate('古', 1) t.equal(result, '', 'wide, truncation, no chars fit') result = wideTruncate('abc', 0) t.equal(result, '', 'zero truncation is empty') result = wideTruncate('', 10) t.equal(result, '', 'empty string') result = wideTruncate('abc古古古def', 12) t.equal(result, 'abc古古古def', 'mixed nwn, no truncation') result = wideTruncate('abcdef古古古', 12) t.equal(result, 'abcdef古古古', 'mixed nw, no truncation') result = wideTruncate('古古古abcdef', 12) t.equal(result, '古古古abcdef', 'mixed wn, no truncation') result = wideTruncate('古古abcdef古', 12) t.equal(result, '古古abcdef古', 'mixed wnw, no truncation') result = wideTruncate('abc古古古def', 6) t.equal(result, 'abc古', 'mixed nwn, truncation') result = wideTruncate('abcdef古古古', 6) t.equal(result, 'abcdef', 'mixed nw, truncation') result = wideTruncate('古古古abcdef', 6) t.equal(result, '古古古', 'mixed wn, truncation') result = wideTruncate('古古abcdef古', 6) t.equal(result, '古古ab', 'mixed wnw, truncation') result = wideTruncate('abc\x1b[0mdef', 6) t.equal(result, 'abc\x1b[0mdef', 'ansi codes are zero width') result = wideTruncate('abc\x1b[0mdef', 4) t.equal(result, 'abc\x1b[0md', 'ansi codes are zero width, clip text') t.end() }) �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������